:root {
  --black: #0a0a0a;
  --charcoal: #141517;
  --panel: #1b1c1f;
  --steel-dark: #5a6068;
  --steel: #8a9099;
  --silver: #c2c7ce;
  --silver-light: #eef1f5;
  --white: #ffffff;
  --text-muted: #9aa0a8;
  --radius: 10px;
  --max-width: 1140px;
  --steel-grad: linear-gradient(135deg, #eef1f5 0%, #b9bfc7 35%, #7c828b 70%, #aeb4bc 100%);
}

* { box-sizing: border-box; }
.hidden { display: none; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: var(--black);
  color: var(--silver-light);
  line-height: 1.6;
}
h1, h2, h3, .brand-text, .step-num {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin: 0;
}
a { color: var(--silver-light); text-decoration: none; }
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(8,8,8,0.94);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid #2a2c30;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
}
.brand { display: flex; align-items: center; gap: 10px; }
.brand-logo {
  width: 46px;
  height: 46px;
  border-radius: 8px;
  object-fit: contain;
  background: #000;
}
.brand-text {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
}
.brand-text span {
  color: var(--silver);
  font-size: 0.7em;
  display: block;
  letter-spacing: 0.15em;
}
.main-nav { display: flex; gap: 24px; }
.main-nav a {
  color: var(--silver);
  font-weight: 500;
  font-size: 0.95rem;
}
.main-nav a:hover { color: var(--white); }
.call-btn {
  background: var(--steel-grad);
  color: #111;
  padding: 10px 18px;
  border-radius: var(--radius);
  font-weight: 700;
  white-space: nowrap;
}
.call-btn:hover { filter: brightness(1.08); }
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--silver-light); display: block; }
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--charcoal);
  border-top: 1px solid #2a2c30;
}
.mobile-nav a {
  padding: 14px 20px;
  color: var(--silver-light);
  border-bottom: 1px solid #2a2c30;
}
.mobile-nav.open { display: flex; }
.mobile-nav .call-btn { margin: 14px 20px; text-align: center; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.btn-primary { background: var(--steel-grad); color: #111; }
.btn-primary:hover { filter: brightness(1.08); }
.btn-secondary {
  background: transparent;
  border: 2px solid var(--steel);
  color: var(--silver-light);
}
.btn-secondary:hover { border-color: var(--white); color: var(--white); }
.btn-block { width: 100%; }

/* Hero (Safelite-style: copy + quote card) */
.hero {
  position: relative;
  background: radial-gradient(circle at 25% 15%, #1d1f22 0%, #0a0a0a 70%);
  padding: 70px 0;
  overflow: hidden;
}
.hero-crack {
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(115deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 60px),
              repeating-linear-gradient(25deg, rgba(255,255,255,0.035) 0px, rgba(255,255,255,0.035) 1px, transparent 1px, transparent 80px);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
}
.hero-eyebrow {
  color: var(--steel);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
  margin: 0 0 12px;
}
.hero h1 {
  font-size: 3rem;
  line-height: 1.05;
  color: var(--white);
  margin-bottom: 18px;
}
.hero h1 span {
  background: var(--steel-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-tagline {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.02em;
  margin: 0 0 18px;
  background: var(--steel-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-sub {
  max-width: 520px;
  color: var(--text-muted);
  font-size: 1.05rem;
  margin: 0 0 24px;
}
.hero-trust {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  color: var(--silver);
  font-size: 0.9rem;
}

/* Quote card */
.quote-card {
  background: var(--panel);
  border: 1px solid #2c2e33;
  border-top: 3px solid var(--steel);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.quote-card h2 {
  font-size: 1.5rem;
  color: var(--white);
  text-align: left;
  margin-bottom: 6px;
}
.quote-card > p { color: var(--text-muted); font-size: 0.92rem; margin: 0 0 18px; }
.quote-card form { display: flex; flex-direction: column; gap: 14px; }
.quote-card label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.82rem;
  color: var(--silver);
  font-weight: 600;
}
.quote-card select, .quote-card input {
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid #34373d;
  background: #0e0e0f;
  color: var(--silver-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.quote-card select:focus, .quote-card input:focus { outline: none; border-color: var(--steel); }
.quote-or { text-align: center; color: var(--text-muted); font-size: 0.9rem; margin: 14px 0 0; }
.quote-or a { color: var(--white); font-weight: 600; }

/* How it works */
.how { padding: 80px 0; background: var(--charcoal); }
.how h2, .services h2, .why-us h2, .areas h2, .contact h2 {
  text-align: center;
  font-size: 2rem;
  color: var(--white);
}
.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 10px auto 44px;
}
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.step { text-align: center; padding: 0 12px; }
.step-num {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  color: #111;
  background: var(--steel-grad);
  border-radius: 50%;
}
.step h3 { color: var(--white); font-size: 1.15rem; margin-bottom: 8px; }
.step p { color: var(--text-muted); font-size: 0.95rem; margin: 0; }

/* Services */
.services { padding: 80px 0; background: var(--black); }
.card-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--panel);
  border: 1px solid #2a2c30;
  border-radius: var(--radius);
  padding: 28px 22px;
  transition: border-color 0.2s, transform 0.2s;
}
.service-card:hover { border-color: var(--steel); transform: translateY(-4px); }
.card-icon { font-size: 1.8rem; margin-bottom: 12px; }
.service-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 0.92rem; margin: 0; }

/* Why us */
.why-us { padding: 80px 0; background: var(--charcoal); }
.why-inner { display: grid; grid-template-columns: 1.3fr 0.7fr; gap: 40px; align-items: center; }
.why-text h2 { text-align: left; margin-bottom: 20px; }
.why-list { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-direction: column; gap: 14px; }
.why-list li { color: var(--text-muted); padding-left: 28px; position: relative; }
.why-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--silver);
  font-weight: 700;
}
.why-list strong { color: var(--white); }
.why-visual { display: flex; justify-content: center; }
.why-logo {
  width: 260px;
  height: 260px;
  object-fit: contain;
  background: #000;
  border-radius: 14px;
  box-shadow: 0 0 40px rgba(194,199,206,0.18);
}

/* Areas */
.areas { padding: 70px 0; background: var(--black); text-align: center; }
.area-tags { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.area-tags span {
  background: var(--panel);
  border: 1px solid #2a2c30;
  color: var(--silver);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Contact */
.contact { padding: 80px 0; background: var(--charcoal); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; }
.contact-info h2 { text-align: left; margin-bottom: 14px; }
.contact-info p { color: var(--text-muted); margin-bottom: 24px; }
.contact-row { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; font-size: 1.05rem; }
.contact-icon { font-size: 1.2rem; }
.contact-form {
  background: var(--panel);
  border: 1px solid #2a2c30;
  border-top: 3px solid var(--steel);
  border-radius: var(--radius);
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form h3 { color: var(--white); margin-bottom: 6px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius);
  border: 1px solid #34373d;
  background: #0e0e0f;
  color: var(--silver-light);
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #6b7178; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--steel); }
.form-note { color: var(--text-muted); font-size: 0.85rem; margin: 0; }
.form-note a { color: var(--white); }

/* Footer */
.site-footer { background: var(--black); border-top: 1px solid #2a2c30; padding: 36px 0; text-align: center; }
.footer-logo { width: 56px; height: 56px; border-radius: 8px; object-fit: contain; background: #000; margin-bottom: 12px; }
.footer-inner p { color: var(--text-muted); margin: 4px 0; font-size: 0.85rem; }
.footer-slogan {
  font-family: 'Oswald', sans-serif;
  font-style: italic;
  font-weight: 600;
  font-size: 1.05rem !important;
  margin: 0 0 14px !important;
  background: var(--steel-grad);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Sticky call (mobile) */
.sticky-call {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--steel-grad);
  color: #111;
  text-align: center;
  padding: 14px;
  font-weight: 700;
  z-index: 200;
}

/* Responsive */
@media (max-width: 900px) {
  .hero-inner, .why-inner, .contact-inner { grid-template-columns: 1fr; }
  .why-visual { order: -1; }
  .card-grid, .steps { grid-template-columns: repeat(2, 1fr); }
  .hero h1 { font-size: 2.4rem; }
}

@media (max-width: 640px) {
  .main-nav, .header-inner .call-btn { display: none; }
  .nav-toggle { display: flex; }
  .card-grid, .steps { grid-template-columns: 1fr; }
  .hero { padding: 48px 0 70px; }
  .hero h1 { font-size: 2rem; }
  .why-logo { width: 180px; height: 180px; }
  .sticky-call { display: block; }
  body { padding-bottom: 56px; }
}
