  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

  :root {
    --charcoal: #1a1a18;
    --obsidian: #111110;
    --gold: #c8963e;
    --gold-light: #e8b05a;
    --cream: #f5f0e8;
    --warm-white: #faf8f4;
    --bark: #4a3728;
    --stone: #8a7d70;
    --stone-light: #bfb5aa;
    --green: #3d5a3e;
    --red-cta: #c03a2b;
    --red-hover: #a32e1f;
  }

  html { scroll-behavior: smooth; }

  body {
    font-family: 'DM Sans', sans-serif;
    background: var(--warm-white);
    color: var(--charcoal);
    overflow-x: hidden;
  }

  /* ── STICKY NAV ── */
  .topbar {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    background: rgba(17,17,16,0.97);
    backdrop-filter: blur(8px);
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 32px;
    height: 64px;
    border-bottom: 1px solid rgba(200,150,62,0.25);
  }
  .topbar-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.5rem;
    color: var(--cream);
    letter-spacing: 0.08em;
    line-height: 1;
  }
  .topbar-logo span { color: var(--gold); }
  .topbar-phone {
    display: flex; align-items: center; gap: 10px;
    color: var(--cream);
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: color 0.2s;
  }
  .topbar-phone:hover { color: var(--gold); }
  .topbar-phone svg { width: 16px; height: 16px; fill: var(--gold); }
  .topbar-cta {
    background: var(--gold);
    color: var(--obsidian);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 9px 20px;
    border-radius: 3px;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
  }
  .topbar-cta:hover { background: var(--gold-light); transform: translateY(-1px); }

  /* ── HERO ── */
  .hero {
    min-height: 100vh;
    background:
      linear-gradient(to bottom, rgba(17,17,16,0.72) 0%, rgba(17,17,16,0.45) 55%, rgba(17,17,16,0.85) 100%),
      url('../images/hero-bg.jpg') center/cover no-repeat;
    display: flex; flex-direction: column; justify-content: center; align-items: flex-start;
    padding: 120px 8vw 80px;
    position: relative;
    overflow: hidden;
  }

  .hero::after {
    content: '';
    position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(200,150,62,0.18);
    border: 1px solid rgba(200,150,62,0.5);
    color: var(--gold-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 2px;
    margin-bottom: 24px;
    animation: fadeSlideUp 0.7s ease both;
  }

  .hero h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(3.2rem, 8vw, 7.5rem);
    line-height: 0.92;
    color: var(--cream);
    letter-spacing: 0.02em;
    max-width: 820px;
    animation: fadeSlideUp 0.7s 0.1s ease both;
  }

  .hero h1 span {
    color: var(--gold);
    display: block;
  }

  .hero-sub {
    margin-top: 24px;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    color: rgba(245,240,232,0.82);
    font-weight: 300;
    max-width: 560px;
    line-height: 1.65;
    animation: fadeSlideUp 0.7s 0.2s ease both;
  }

  .hero-actions {
    margin-top: 40px;
    display: flex; flex-wrap: wrap; gap: 14px;
    animation: fadeSlideUp 0.7s 0.3s ease both;
  }

  .btn-primary {
    background: var(--red-cta);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    padding: 18px 38px;
    border-radius: 3px;
    text-decoration: none;
    border: none; cursor: pointer;
    transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
    box-shadow: 0 6px 24px rgba(192,58,43,0.4);
    display: inline-flex; align-items: center; gap: 10px;
  }
  .btn-primary:hover {
    background: var(--red-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 32px rgba(192,58,43,0.5);
  }
  .btn-primary svg { width: 18px; height: 18px; fill: #fff; }

  .btn-secondary {
    background: transparent;
    color: var(--cream);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 18px 32px;
    border-radius: 3px;
    border: 1.5px solid rgba(245,240,232,0.4);
    text-decoration: none;
    transition: border-color 0.2s, color 0.2s;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-secondary:hover { border-color: var(--gold); color: var(--gold); }

  .hero-trust {
    display: flex; flex-wrap: wrap; gap: 28px; align-items: center;
    margin-top: 52px;
    animation: fadeSlideUp 0.7s 0.4s ease both;
  }
  .trust-item {
    display: flex; align-items: center; gap: 9px;
    color: rgba(245,240,232,0.75);
    font-size: 0.85rem;
    font-weight: 400;
  }
  .trust-item strong { color: var(--cream); font-weight: 600; }
  .stars { color: var(--gold); font-size: 0.9rem; letter-spacing: 1px; }

  /* ── FORM SECTION ── */
  .form-section {
    background: var(--obsidian);
    padding: 72px 8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
  }
  .form-left h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    color: var(--cream);
    letter-spacing: 0.03em;
    line-height: 1;
    margin-bottom: 18px;
  }
  .form-left h2 span { color: var(--gold); }
  .form-left p {
    color: var(--stone-light);
    font-size: 1rem;
    line-height: 1.7;
    font-weight: 300;
    margin-bottom: 32px;
  }
  .form-perks { list-style: none; display: flex; flex-direction: column; gap: 12px; }
  .form-perks li {
    display: flex; align-items: flex-start; gap: 12px;
    color: rgba(245,240,232,0.85);
    font-size: 0.95rem;
  }
  .perk-icon {
    width: 22px; height: 22px; min-width: 22px;
    background: rgba(200,150,62,0.15);
    border: 1px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-top: 1px;
  }
  .perk-icon svg { width: 11px; height: 11px; fill: var(--gold); }

  .form-card {
    background: var(--charcoal);
    border: 1px solid rgba(200,150,62,0.2);
    border-radius: 8px;
    padding: 40px 36px;
    box-shadow: 0 24px 64px rgba(0,0,0,0.5);
  }
  .form-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--cream);
    letter-spacing: 0.06em;
    margin-bottom: 6px;
  }
  .form-card .form-sub {
    color: var(--stone-light);
    font-size: 0.85rem;
    margin-bottom: 28px;
  }
  .form-card .form-sub span { color: var(--gold); font-weight: 600; }

  .form-group { margin-bottom: 16px; }
  .form-group label {
    display: block;
    color: var(--stone-light);
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 7px;
  }
  .form-group input,
  .form-group select,
  .form-group textarea {
    width: 100%;
    background: rgba(26,26,24,0.8);
    border: 1.5px solid rgba(138,125,112,0.3);
    border-radius: 4px;
    color: var(--cream);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    padding: 13px 16px;
    outline: none;
    transition: border-color 0.2s;
  }
  .form-group input:focus,
  .form-group select:focus,
  .form-group textarea:focus {
    border-color: var(--gold);
  }
  .form-group select option { background: var(--charcoal); }
  .form-group textarea { resize: vertical; min-height: 90px; }

  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

  .form-submit {
    width: 100%;
    background: var(--red-cta);
    color: #fff;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 8px;
    transition: background 0.2s, transform 0.15s;
    box-shadow: 0 6px 20px rgba(192,58,43,0.35);
  }
  .form-submit:hover { background: var(--red-hover); transform: translateY(-1px); }
  .form-guarantee {
    text-align: center;
    color: var(--stone);
    font-size: 0.78rem;
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
  }
  .form-guarantee svg { width: 13px; height: 13px; fill: var(--stone); }

  /* ── STATS BAR ── */
  .stats-bar {
    background: var(--gold);
    padding: 28px 8vw;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 24px;
  }
  .stat-item { text-align: center; }
  .stat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.6rem;
    color: var(--obsidian);
    letter-spacing: 0.03em;
    line-height: 1;
  }
  .stat-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(17,17,16,0.65);
    margin-top: 2px;
  }

  /* ── SERVICES ── */
  .services {
    background: var(--warm-white);
    padding: 88px 8vw;
  }
  .section-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
  }
  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.4rem, 4vw, 3.4rem);
    color: var(--charcoal);
    letter-spacing: 0.03em;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .section-title span { color: var(--gold); }
  .section-desc {
    color: var(--stone);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.7;
    margin-bottom: 56px;
    font-weight: 300;
  }

  .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
  }
  .service-card {
    background: var(--cream);
    border: 1px solid rgba(138,125,112,0.2);
    border-radius: 6px;
    overflow: hidden;
    transition: transform 0.25s, box-shadow 0.25s;
    cursor: default;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 48px rgba(74,55,40,0.15);
  }
  .service-img {
    height: 200px;
    object-fit: cover;
    width: 100%;
    display: block;
    filter: brightness(0.92) saturate(0.9);
  }
  .service-body { padding: 24px; }
  .service-icon {
    width: 40px; height: 40px;
    background: rgba(200,150,62,0.12);
    border-radius: 4px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 14px;
  }
  .service-icon svg { width: 20px; height: 20px; fill: var(--gold); }
  .service-body h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-bottom: 8px;
  }
  .service-body p {
    color: var(--stone);
    font-size: 0.9rem;
    line-height: 1.65;
    font-weight: 300;
  }
  .service-link {
    display: inline-flex; align-items: center; gap: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    text-decoration: none;
    margin-top: 14px;
    transition: gap 0.2s;
  }
  .service-link:hover { gap: 10px; }
  .service-link svg { width: 14px; height: 14px; fill: var(--gold); }

  /* ── WHY CHOOSE US ── */
  .why-section {
    background: var(--charcoal);
    padding: 88px 8vw;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
  }
  .why-image-col { position: relative; }
  .why-main-img {
    width: 100%;
    border-radius: 6px;
    display: block;
    filter: brightness(0.88) saturate(0.85);
  }
  .why-badge-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--gold);
    color: var(--obsidian);
    border-radius: 6px;
    padding: 20px 24px;
    box-shadow: 0 12px 32px rgba(0,0,0,0.4);
    text-align: center;
  }
  .why-badge-float .big-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.8rem;
    line-height: 1;
    letter-spacing: 0.03em;
  }
  .why-badge-float .small-txt {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-top: 2px;
  }
  .why-content .section-label { }
  .why-content .section-title { color: var(--cream); }
  .why-content .section-desc { color: var(--stone-light); margin-bottom: 36px; }

  .why-features { display: flex; flex-direction: column; gap: 20px; }
  .why-feat {
    display: flex; align-items: flex-start; gap: 18px;
    padding: 18px 20px;
    background: rgba(245,240,232,0.04);
    border: 1px solid rgba(245,240,232,0.08);
    border-radius: 5px;
    transition: background 0.2s, border-color 0.2s;
  }
  .why-feat:hover { background: rgba(200,150,62,0.07); border-color: rgba(200,150,62,0.25); }
  .feat-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: rgba(200,150,62,0.4);
    line-height: 1;
    min-width: 36px;
  }
  .feat-text h4 {
    font-weight: 700;
    color: var(--cream);
    font-size: 0.95rem;
    margin-bottom: 5px;
  }
  .feat-text p {
    color: var(--stone-light);
    font-size: 0.87rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── MATERIALS ── */
  .materials-section {
    background: var(--warm-white);
    padding: 88px 8vw;
  }
  .materials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
    margin-top: 48px;
  }
  .mat-card {
    background: var(--cream);
    border: 1px solid rgba(138,125,112,0.2);
    border-radius: 5px;
    padding: 28px 24px;
    text-align: center;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .mat-card:hover { border-color: var(--gold); box-shadow: 0 8px 24px rgba(200,150,62,0.12); }
  .mat-icon {
    width: 52px; height: 52px;
    background: rgba(200,150,62,0.1);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 14px;
  }
  .mat-icon svg { width: 24px; height: 24px; fill: var(--gold); }
  .mat-card h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.06em;
    color: var(--charcoal);
    margin-bottom: 6px;
  }
  .mat-card p { color: var(--stone); font-size: 0.83rem; line-height: 1.55; font-weight: 300; }

  /* ── PROCESS ── */
  .process-section {
    background: var(--cream);
    padding: 88px 8vw;
  }
  .process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0;
    margin-top: 56px;
    position: relative;
  }
  .process-steps::before {
    content: '';
    position: absolute;
    top: 36px; left: 10%; right: 10%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    z-index: 0;
  }
  .process-step { text-align: center; padding: 0 16px; position: relative; z-index: 1; }
  .step-num {
    width: 72px; height: 72px;
    background: var(--charcoal);
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    color: var(--gold);
    letter-spacing: 0.05em;
  }
  .process-step h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.25rem;
    letter-spacing: 0.05em;
    color: var(--charcoal);
    margin-bottom: 8px;
  }
  .process-step p {
    color: var(--stone);
    font-size: 0.85rem;
    line-height: 1.6;
    font-weight: 300;
  }

  /* ── TESTIMONIALS ── */
  .testimonials {
    background: var(--obsidian);
    padding: 88px 8vw;
  }
  .testimonials .section-title { color: var(--cream); }
  .testimonials .section-label { }
  .reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
  }
  .review-card {
    background: rgba(245,240,232,0.04);
    border: 1px solid rgba(245,240,232,0.1);
    border-radius: 6px;
    padding: 28px 28px 24px;
    transition: border-color 0.2s;
  }
  .review-card:hover { border-color: rgba(200,150,62,0.35); }
  .review-stars { color: var(--gold); font-size: 0.95rem; letter-spacing: 2px; margin-bottom: 16px; }
  .review-text {
    color: rgba(245,240,232,0.8);
    font-size: 0.93rem;
    line-height: 1.7;
    font-style: italic;
    font-weight: 300;
    margin-bottom: 20px;
  }
  .review-author {
    display: flex; align-items: center; gap: 12px;
  }
  .review-avatar {
    width: 40px; height: 40px;
    background: var(--bark);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Bebas Neue', sans-serif;
    color: var(--cream);
    font-size: 1rem;
    letter-spacing: 0.05em;
  }
  .review-name { color: var(--cream); font-weight: 600; font-size: 0.9rem; }
  .review-location { color: var(--stone); font-size: 0.78rem; }

  /* ── SERVICE AREAS ── */
  .areas-section {
    background: var(--warm-white);
    padding: 72px 8vw;
  }
  .areas-grid {
    display: flex; flex-wrap: wrap; gap: 10px;
    margin-top: 40px;
  }
  .area-pill {
    background: var(--cream);
    border: 1px solid rgba(138,125,112,0.25);
    color: var(--charcoal);
    font-size: 0.85rem;
    font-weight: 500;
    padding: 8px 18px;
    border-radius: 100px;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
  }
  .area-pill:hover { border-color: var(--gold); color: var(--gold); background: rgba(200,150,62,0.06); }

  /* ── FINAL CTA ── */
  .final-cta {
    background:
      linear-gradient(135deg, rgba(17,17,16,0.93) 0%, rgba(26,26,24,0.85) 100%),
      url('../images/final-cta-bg.jpg') center/cover no-repeat;
    padding: 88px 8vw;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .final-cta::before {
    content: '';
    position: absolute; top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }
  .final-cta h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(2.8rem, 5vw, 4.8rem);
    color: var(--cream);
    letter-spacing: 0.04em;
    line-height: 1.05;
    margin-bottom: 16px;
  }
  .final-cta h2 span { color: var(--gold); }
  .final-cta p {
    color: rgba(245,240,232,0.7);
    font-size: 1.05rem;
    font-weight: 300;
    max-width: 540px;
    margin: 0 auto 40px;
    line-height: 1.7;
  }
  .cta-buttons {
    display: flex; flex-wrap: wrap; gap: 16px; justify-content: center;
  }

  /* ── FOOTER ── */
  footer {
    background: var(--obsidian);
    padding: 40px 8vw;
    display: flex; flex-wrap: wrap; justify-content: space-between; align-items: center;
    gap: 20px;
    border-top: 1px solid rgba(200,150,62,0.15);
  }
  .footer-logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    color: var(--cream);
    letter-spacing: 0.08em;
  }
  .footer-logo span { color: var(--gold); }
  .footer-info {
    color: var(--stone);
    font-size: 0.82rem;
    line-height: 1.7;
    text-align: center;
  }
  .footer-info a { color: var(--gold-light); text-decoration: none; }
  .footer-links {
    display: flex; gap: 24px;
  }
  .footer-links a {
    color: var(--stone);
    font-size: 0.83rem;
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--gold); }

  /* ── ANIMATIONS ── */
  @keyframes fadeSlideUp {
    from { opacity: 0; transform: translateY(28px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.65s ease, transform 0.65s ease;
  }
  .reveal.visible {
    opacity: 1;
    transform: translateY(0);
  }

  /* ── FLOATING PHONE CTA (mobile) ── */
  .float-cta {
    display: none;
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 200;
    background: var(--red-cta);
    color: #fff;
    text-align: center;
    font-family: 'DM Sans', sans-serif;
    font-weight: 700;
    font-size: 1rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 18px;
    text-decoration: none;
    box-shadow: 0 -4px 20px rgba(192,58,43,0.4);
  }

  /* ── THANK YOU POPUP ── */
  .thankyou-overlay {
    display: none;
    position: fixed; inset: 0; z-index: 1000;
    background: rgba(17,17,16,0.75);
    backdrop-filter: blur(4px);
    align-items: center; justify-content: center;
  }
  .thankyou-overlay.active { display: flex; }
  .thankyou-modal {
    background: var(--warm-white);
    border-radius: 8px;
    padding: 48px 40px;
    max-width: 460px;
    width: 90%;
    text-align: center;
    box-shadow: 0 24px 64px rgba(0,0,0,0.35);
    animation: fadeSlideUp 0.35s ease both;
  }
  .thankyou-icon {
    width: 64px; height: 64px;
    background: var(--green);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin: 0 auto 24px;
  }
  .thankyou-icon svg {
    width: 32px; height: 32px;
    stroke: #fff; stroke-width: 2.5; fill: none;
    stroke-linecap: round; stroke-linejoin: round;
  }
  .thankyou-modal h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    color: var(--charcoal);
    margin-bottom: 12px;
    letter-spacing: 0.05em;
  }
  .thankyou-modal p { color: var(--stone); line-height: 1.6; margin-bottom: 12px; }
  .thankyou-phone { font-size: 0.95rem; }
  .thankyou-phone a { color: var(--gold); font-weight: 700; text-decoration: none; }
  .thankyou-close {
    margin-top: 24px;
    background: var(--gold);
    color: var(--obsidian);
    border: none;
    padding: 12px 32px;
    font-weight: 700;
    font-size: 0.9rem;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s;
  }
  .thankyou-close:hover { background: var(--gold-light); }

  /* ── RESPONSIVE ── */
  @media (max-width: 900px) {
    .form-section { grid-template-columns: 1fr; gap: 48px; }
    .why-section { grid-template-columns: 1fr; }
    .why-image-col { display: none; }
    .process-steps::before { display: none; }
    .topbar-phone { display: none; }
    .float-cta { display: block; }
    body { padding-bottom: 62px; }
  }
  @media (max-width: 600px) {
    .topbar { padding: 0 20px; }
    .hero { padding: 100px 5vw 60px; }
    .form-section, .services, .why-section, .materials-section,
    .process-section, .testimonials, .areas-section, .final-cta { padding-left: 5vw; padding-right: 5vw; }
    .form-row { grid-template-columns: 1fr; }
    .stats-bar { justify-content: center; }
    footer { flex-direction: column; align-items: flex-start; }
  }
