    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    :root {
      --navy:        #0F2557;
      --navy-dark:   #0A1A3F;
      --royal:       #1E40AF;
      --royal-light: #2563EB;
      --cta:         #C4961A;   /* warm metallic gold — harmonizes with navy */
      --cta-dark:    #A67F15;
      --cta-light:   #D4AF37;
      --gold:        #F59E0B;   /* star ratings */
      --white:       #FFFFFF;
      --off-white:   #F0F4FF;
      --gray:        #6B7280;
      --gray-light:  #E5E7EB;
      --green:       #16A34A;
      --text-dark:   #0F172A;
      --text-mid:    #374151;
    }
    html { scroll-behavior: smooth; }
    body { font-family: 'Inter', sans-serif; color: var(--text-dark); background: var(--white); line-height: 1.6; }
    a { text-decoration: none; color: inherit; }
    img { max-width: 100%; display: block; }
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

    /* ── TOP BAR ── */
    .top-bar {
      background: var(--navy);
      color: var(--white);
      padding: 10px 0;
    }
    .top-bar-inner {
      display: flex; align-items: center; justify-content: space-between;
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
    }
    .top-bar-left {
      display: flex; align-items: center; gap: 10px;
    }
    .top-bar-left .logo img { height: 30px; width: auto; }
    .top-bar-name {
      color: var(--white); font-size: 14px; font-weight: 800;
      letter-spacing: 0.01em;
    }
    .top-bar-center {
      display: flex; align-items: center; gap: 18px;
      font-size: 12px; font-weight: 600;
    }
    .top-bar-center span { display: flex; align-items: center; gap: 5px; }
    .top-bar-center .highlight { color: var(--cta-light); font-weight: 800; }
    .top-bar-sep { width: 1px; height: 14px; background: rgba(255,255,255,0.2); }
    .top-bar-phone {
      display: inline-flex; flex-direction: column; align-items: center;
      background: var(--cta); color: var(--white);
      white-space: nowrap;
      padding: 8px 24px; border-radius: 10px;
      box-shadow: 0 2px 12px rgba(196,150,26,0.4);
      transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
      animation: topCtaPulse 2.5s ease-in-out infinite;
    }
    .top-bar-phone .cta-label {
      font-size: 9px; font-weight: 800; letter-spacing: 0.14em;
      text-transform: uppercase; opacity: 0.9;
    }
    .top-bar-phone .cta-number {
      font-size: 15px; font-weight: 900; letter-spacing: 0.01em;
    }
    .top-bar-phone:hover {
      background: var(--cta-dark);
      transform: translateY(-1px);
      box-shadow: 0 4px 14px rgba(196,150,26,0.5);
    }
    @keyframes topCtaPulse {
      0%, 100% { box-shadow: 0 2px 12px rgba(196,150,26,0.4); }
      50% { box-shadow: 0 4px 20px rgba(196,150,26,0.6); }
    }

    /* ── HERO ── */
    .hero {
      position: relative;
      min-height: 620px;
      display: flex;
      align-items: center;
      overflow: hidden;
      background-color: var(--navy-dark);
    }
    .hero-bg {
      position: absolute; inset: 0;
      width: 100%; height: 100%;
      object-fit: cover;
      z-index: 0;
      filter: brightness(1) saturate(1.1);
    }
    .hero-overlay {
      position: absolute; inset: 0;
      z-index: 0;
      background: linear-gradient(
        105deg,
        rgba(10,26,63,0.75) 0%,
        rgba(10,26,63,0.55) 32%,
        rgba(10,26,63,0.18) 62%,
        rgba(10,26,63,0.0) 100%
      );
    }
    .hero-inner {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 400px;
      gap: 52px;
      align-items: center;
      max-width: 1200px;
      margin: 0 auto;
      padding: 32px 24px 48px;
      width: 100%;
    }

    /* Hero badge */
    .hero-badge {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(196,150,26,0.15);
      border: 1px solid rgba(196,150,26,0.45);
      color: var(--cta-light);
      font-size: 12px;
      font-weight: 700;
      padding: 6px 16px;
      border-radius: 100px;
      margin-bottom: 20px;
      text-transform: uppercase;
      letter-spacing: 0.07em;
    }
    .hero h1 {
      font-size: clamp(34px, 4.8vw, 60px);
      font-weight: 900;
      color: var(--white);
      line-height: 1.08;
      margin-bottom: 18px;
      letter-spacing: -0.035em;
      text-shadow: 0 2px 20px rgba(0,0,0,0.3);
    }
    .hero h1 em { color: var(--cta-light); font-style: normal; }
    .hero-sub {
      color: rgba(255,255,255,0.72);
      font-size: 17px;
      line-height: 1.65;
      margin-bottom: 28px;
      max-width: 500px;
    }
    .hero-bullets {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 34px;
    }
    .hero-bullet {
      display: flex;
      align-items: center;
      gap: 10px;
      color: rgba(255,255,255,0.88);
      font-size: 15px;
      font-weight: 500;
    }
    .hero-bullet-icon {
      width: 22px; height: 22px;
      background: var(--cta);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 12px; color: var(--white); flex-shrink: 0;
      font-weight: 700;
    }
    .hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }
    .btn-hero-call {
      display: inline-flex; flex-direction: column; align-items: center;
      background: var(--cta);
      color: var(--white);
      padding: 20px 48px;
      border-radius: 16px;
      border: none;
      cursor: pointer;
      text-decoration: none;
      transition: background 0.2s, transform 0.15s, box-shadow 0.15s;
      box-shadow: 0 10px 32px rgba(196,150,26,0.5), 0 0 0 0 rgba(196,150,26,0.4);
      animation: ctaPulse 2.8s ease-in-out infinite;
      line-height: 1;
    }
    .btn-hero-call .label {
      font-size: 12px; font-weight: 800;
      letter-spacing: 0.16em; text-transform: uppercase;
      opacity: 0.95; margin-bottom: 8px;
    }
    .btn-hero-call .number {
      font-size: 30px; font-weight: 900; letter-spacing: -0.01em;
    }
    .btn-hero-call:hover {
      background: var(--cta-dark);
      transform: translateY(-2px);
      box-shadow: 0 14px 36px rgba(196,150,26,0.55);
      animation: none;
    }
    @keyframes ctaPulse {
      0%, 100% { box-shadow: 0 8px 28px rgba(196,150,26,0.45), 0 0 0 0 rgba(196,150,26,0.35); }
      50%       { box-shadow: 0 8px 28px rgba(196,150,26,0.45), 0 0 0 10px rgba(196,150,26,0); }
    }
    /* Promise — plain text info, not a CTA */
    .hero-promise {
      display: inline-flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,0.85);
      font-size: 15px; font-weight: 600;
    }
    .hero-promise-check {
      color: var(--green); font-size: 18px;
    }

    /* Hero form card */
    .hero-form-card {
      background: var(--white);
      border-radius: 18px;
      padding: 32px 28px 28px;
      box-shadow: 0 28px 72px rgba(0,0,0,0.42), 0 0 0 1px rgba(255,255,255,0.06);
      border-top: 4px solid var(--cta);
    }
    .hero-form-card h3 {
      font-size: 20px; font-weight: 800;
      color: var(--navy); margin-bottom: 4px;
    }
    .hero-form-card > p {
      font-size: 13px; color: var(--gray); margin-bottom: 18px;
    }

    /* Forms */
    .form-group { margin-bottom: 13px; }
    .form-group label {
      display: block; font-size: 11px; font-weight: 700;
      color: var(--text-mid); margin-bottom: 5px;
      text-transform: uppercase; letter-spacing: 0.05em;
    }
    .form-group input, .form-group select, .form-group textarea {
      width: 100%; padding: 11px 13px;
      border: 1.5px solid var(--gray-light);
      border-radius: 8px; font-size: 14px;
      font-family: inherit; color: var(--text-dark);
      transition: border-color 0.2s; background: var(--white);
    }
    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
      outline: none; border-color: var(--royal);
    }
    .form-group textarea { resize: vertical; min-height: 80px; }
    .btn-form {
      width: 100%; background: var(--cta);
      color: var(--white); font-size: 15px; font-weight: 800;
      padding: 15px; border: none; border-radius: 50px;
      cursor: pointer; transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
      margin-top: 6px;
      box-shadow: 0 4px 16px rgba(196,150,26,0.35);
      letter-spacing: 0.01em;
    }
    .btn-form:hover { background: var(--cta-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(196,150,26,0.45); }
    .form-trust {
      display: flex; align-items: center; gap: 5px;
      color: var(--gray); font-size: 11px;
      margin-top: 9px; justify-content: center;
    }
    .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }

    /* ── MINI REVIEWS STRIP ── */
    .mini-reviews {
      background: var(--navy);
      padding: 18px 0;
      border-bottom: 1px solid rgba(255,255,255,0.07);
    }
    .mini-reviews-inner {
      display: flex; align-items: center;
      max-width: 1200px; margin: 0 auto; padding: 0 24px; gap: 0;
    }
    .mini-reviews-label {
      display: flex; align-items: center; gap: 10px;
      flex-shrink: 0; margin-right: 24px; padding-right: 24px;
      border-right: 1px solid rgba(255,255,255,0.12);
    }
    .g-icon-sm { width: 26px; height: 26px; flex-shrink: 0; }
    .g-wordmark-sm {
      font-size: 22px; font-weight: 700; line-height: 1; flex-shrink: 0;
      font-family: 'Product Sans', 'Inter', Arial, sans-serif;
    }
    .g-wordmark-sm .g-blue { color: #4285F4; }
    .g-wordmark-sm .g-red { color: #EA4335; }
    .g-wordmark-sm .g-yellow { color: #FBBC05; }
    .g-wordmark-sm .g-green { color: #34A853; }
    .mini-reviews-label-text strong { display: block; font-size: 15px; font-weight: 800; color: var(--white); }
    .mini-reviews-label-text span { font-size: 11px; color: rgba(255,255,255,0.5); }
    .stars-sm { color: var(--gold); font-size: 13px; }
    .mini-pills { display: flex; gap: 10px; overflow-x: auto; flex: 1; scrollbar-width: none; }
    .mini-pills::-webkit-scrollbar { display: none; }
    .mini-pill {
      background: rgba(255,255,255,0.06);
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 100px; padding: 7px 16px;
      display: flex; align-items: center; gap: 9px;
      white-space: nowrap; flex-shrink: 0;
    }
    .mini-pill-avatar {
      width: 26px; height: 26px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 10px; font-weight: 700; color: var(--white); flex-shrink: 0;
    }
    .mini-pill-text strong { display: block; font-size: 12px; font-weight: 700; color: var(--white); }
    .mini-pill-text span { font-size: 11px; color: rgba(255,255,255,0.5); }
    .mini-pill-stars { color: var(--gold); font-size: 11px; }

    /* ── TRUST BAR ── */
    .trust-bar { background: var(--royal); padding: 16px 0; }
    .trust-items {
      display: flex; justify-content: center; align-items: center;
      flex-wrap: wrap; gap: 0;
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
    }
    .trust-item {
      display: flex; align-items: center; gap: 7px;
      color: var(--white); font-size: 13px; font-weight: 600;
      padding: 5px 20px;
    }
    .trust-item:not(:last-child) { border-right: 1px solid rgba(255,255,255,0.2); }
    .trust-icon { font-size: 15px; }

    /* ── TICKER ── */
    .ticker-wrap {
      background: var(--off-white);
      overflow: hidden; padding: 10px 0;
      border-bottom: 1px solid var(--gray-light);
    }
    .ticker-track {
      display: flex; width: max-content;
      animation: ticker 32s linear infinite;
    }
    .ticker-track:hover { animation-play-state: paused; }
    @keyframes ticker { from{transform:translateX(0)} to{transform:translateX(-50%)} }
    .ticker-item {
      display: flex; align-items: center; gap: 8px;
      padding: 0 28px; font-size: 13px; font-weight: 600;
      color: var(--navy); white-space: nowrap;
    }
    .ticker-dot { color: var(--cta); font-size: 7px; }

    /* ── SERVICES ── */
    .services-section { padding: 88px 0; background: var(--white); }
    .section-header { text-align: center; margin-bottom: 52px; }
    .section-eyebrow {
      display: inline-block;
      background: rgba(30,64,175,0.08);
      color: var(--royal);
      font-size: 11px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.1em;
      padding: 5px 14px; border-radius: 100px; margin-bottom: 14px;
      border: 1px solid rgba(30,64,175,0.15);
    }
    .section-title {
      font-size: clamp(26px, 3.5vw, 40px);
      font-weight: 900; color: var(--navy);
      letter-spacing: -0.03em; line-height: 1.15; margin-bottom: 12px;
    }
    .section-title em { color: var(--cta); font-style: normal; }
    .section-sub { color: var(--gray); font-size: 16px; max-width: 540px; margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .service-card {
      border-radius: 16px; overflow: hidden;
      border: 1px solid var(--gray-light);
      transition: box-shadow 0.3s, transform 0.3s;
      background: var(--white);
    }
    .service-card:hover { box-shadow: 0 18px 44px rgba(15,37,87,0.13); transform: translateY(-5px); }
    .service-card:hover .service-img { transform: scale(1.04); }
    .service-img {
      width: 100%; height: 200px; object-fit: cover;
      transition: transform 0.4s ease;
    }
    .service-body { padding: 22px 24px; }
    .service-body h3 { font-size: 17px; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
    .service-body p { font-size: 14px; color: var(--gray); line-height: 1.6; margin-bottom: 16px; }
    .service-link {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--cta); font-size: 13px; font-weight: 700;
      transition: gap 0.2s;
    }
    .service-link:hover { gap: 10px; }

    /* ── URGENCY ── */
    .urgency-strip {
      background: var(--navy-dark);
      padding: 20px 0; text-align: center;
      border-top: 3px solid var(--cta);
    }
    .urgency-strip p { color: var(--white); font-size: 16px; font-weight: 700; }
    .urgency-strip span { color: var(--cta-light); }
    .urgency-strip a {
      display: inline-block; margin-left: 18px;
      background: var(--cta); color: var(--white);
      font-weight: 700; font-size: 14px;
      padding: 9px 22px; border-radius: 7px;
      transition: background 0.2s;
    }
    .urgency-strip a:hover { background: var(--cta-dark); }

    /* ── ABOUT ── */
    .about-section { padding: 88px 0; background: var(--white); }
    .about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .about-img-main {
      width: 100%; border-radius: 18px; object-fit: cover;
      height: 440px;
      box-shadow: 0 24px 60px rgba(15,37,87,0.18), 0 0 0 1px rgba(15,37,87,0.06);
    }
    .about-images { position: relative; }
    .about-badge {
      position: absolute; bottom: -18px; right: -18px;
      background: var(--navy); color: var(--white);
      border-radius: 12px; padding: 16px 20px;
      font-weight: 800; font-size: 15px; line-height: 1.3;
      text-align: center; box-shadow: 0 8px 24px rgba(10,26,63,0.35);
      border: 2px solid var(--cta);
    }
    .about-badge small { display: block; font-size: 11px; font-weight: 500; opacity: 0.7; }
    .about-content h2 {
      font-size: clamp(26px, 3vw, 36px); font-weight: 900;
      color: var(--navy); margin-bottom: 16px;
      letter-spacing: -0.03em; line-height: 1.2;
    }
    .about-content h2 em { color: var(--cta); font-style: normal; }
    .about-content p { color: var(--text-mid); font-size: 15px; line-height: 1.75; margin-bottom: 14px; }
    .about-points { list-style: none; margin: 22px 0; display: flex; flex-direction: column; gap: 11px; }
    .about-points li {
      display: flex; align-items: flex-start; gap: 11px;
      font-size: 15px; color: var(--text-mid); font-weight: 500;
    }
    .about-points li::before {
      content: '✓'; width: 21px; height: 21px;
      background: var(--green); color: var(--white);
      border-radius: 50%; display: flex; align-items: center;
      justify-content: center; font-size: 11px; font-weight: 800;
      flex-shrink: 0; margin-top: 2px;
    }
    .about-cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 26px; }
    .btn-solid {
      background: var(--cta); color: var(--white);
      font-weight: 800; font-size: 15px; padding: 13px 28px;
      border-radius: 50px; border: none; cursor: pointer;
      transition: background 0.2s, transform 0.1s, box-shadow 0.2s;
      box-shadow: 0 4px 16px rgba(196,150,26,0.35);
    }
    .btn-solid:hover { background: var(--cta-dark); transform: translateY(-1px); box-shadow: 0 6px 22px rgba(196,150,26,0.42); }
    .btn-ghost-navy {
      background: transparent; color: var(--navy);
      font-weight: 700; font-size: 15px; padding: 12px 26px;
      border-radius: 50px; border: 2px solid var(--navy);
      cursor: pointer; transition: background 0.2s, color 0.2s;
    }
    .btn-ghost-navy:hover { background: var(--navy); color: var(--white); }

    /* ── QUOTE SECTION ── */
    .quote-section { padding: 80px 0; background: var(--off-white); }
    .quote-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
    .quote-content h2 {
      font-size: clamp(26px, 3vw, 38px); font-weight: 900;
      color: var(--navy); margin-bottom: 14px;
      letter-spacing: -0.03em; line-height: 1.2;
    }
    .quote-content h2 em { color: var(--cta); font-style: normal; }
    .quote-content p { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
    .quote-bullets { display: flex; flex-direction: column; gap: 11px; }
    .quote-bullet { display: flex; align-items: center; gap: 10px; color: var(--text-mid); font-size: 14px; font-weight: 500; }
    .quote-bullet-dot { width: 7px; height: 7px; background: var(--cta); border-radius: 50%; flex-shrink: 0; }
    .quote-form-card {
      background: var(--white); border-radius: 16px;
      padding: 34px 30px; box-shadow: 0 12px 40px rgba(15,37,87,0.1);
      border-top: 4px solid var(--cta);
    }
    .quote-form-card h3 { font-size: 20px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
    .quote-form-card .subtitle { font-size: 13px; color: var(--gray); margin-bottom: 22px; }

    /* ── STATS ── */
    .stats-section {
      padding: 70px 0;
      background: var(--white);
      border-top: 1px solid var(--gray-light);
      border-bottom: 1px solid var(--gray-light);
    }
    .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
    .stat-item { text-align: center; padding: 24px 16px; position: relative; }
    .stat-item:not(:last-child)::after {
      content: ''; position: absolute; right: 0; top: 15%; bottom: 15%;
      width: 1px; background: var(--gray-light);
    }
    .stat-num { font-size: clamp(38px, 4.5vw, 54px); font-weight: 900; color: var(--navy); letter-spacing: -0.04em; }
    .stat-num em { color: var(--cta); font-style: normal; }
    .stat-label { font-size: 13px; color: var(--gray); font-weight: 500; margin-top: 4px; letter-spacing: 0.02em; }

    /* ── GOOGLE REVIEWS ── */
    .reviews-section { padding: 80px 0; background: var(--navy-dark); }
    .reviews-header {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 0; margin-bottom: 48px;
    }
    .google-hero-badge {
      display: flex; flex-direction: column; align-items: center; gap: 6px;
      padding: 40px 60px 36px; text-align: center;
    }
    .google-wordmark {
      font-size: 64px; font-weight: 700; line-height: 1;
      font-family: 'Product Sans', 'Inter', Arial, sans-serif;
      letter-spacing: -1px;
    }
    .google-wordmark .g-blue { color: #4285F4; }
    .google-wordmark .g-red { color: #EA4335; }
    .google-wordmark .g-yellow { color: #FBBC05; }
    .google-wordmark .g-green { color: #34A853; }
    .google-hero-stars {
      color: var(--gold); font-size: 42px; letter-spacing: 6px;
      margin: 8px 0 4px;
    }
    .google-hero-label {
      font-size: 48px; font-weight: 900; color: var(--white);
      letter-spacing: 2px;
    }
    .google-hero-sub {
      font-size: 15px; color: rgba(255,255,255,0.5); margin-top: 8px; font-weight: 500;
    }
    .google-badge {
      display: flex; align-items: center; gap: 12px;
      background: var(--off-white); border: 1px solid var(--gray-light);
      border-radius: 12px; padding: 14px 20px;
    }
    .g-icon { width: 34px; height: 34px; flex-shrink: 0; }
    .google-stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }
    .google-badge-text strong { display: block; font-size: 17px; font-weight: 900; color: var(--navy); }
    .google-badge-text span { font-size: 13px; color: var(--gray); }
    .reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .review-card {
      background: var(--white); border: 1px solid var(--gray-light);
      border-radius: 14px; padding: 22px;
      transition: box-shadow 0.3s, transform 0.3s, border-color 0.3s;
      position: relative;
    }
    .review-card:hover {
      box-shadow: 0 12px 34px rgba(15,37,87,0.1);
      transform: translateY(-4px);
      border-color: rgba(196,150,26,0.35);
    }
    .review-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
    .review-avatar {
      width: 42px; height: 42px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; font-weight: 700; color: var(--white); flex-shrink: 0; overflow: hidden;
    }
    .review-avatar img { width: 100%; height: 100%; object-fit: cover; }
    .review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
    .review-date { font-size: 12px; color: var(--gray); }
    .review-stars { color: var(--gold); font-size: 13px; margin-bottom: 9px; }
    .review-text { font-size: 14px; color: var(--text-mid); line-height: 1.65; }
    .reviews-cta { text-align: center; margin-top: 38px; }
    .reviews-cta a {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--white); border: 2px solid var(--gray-light);
      color: var(--navy); font-weight: 700; font-size: 14px;
      padding: 12px 26px; border-radius: 10px;
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .reviews-cta a:hover { border-color: var(--royal); box-shadow: 0 4px 16px rgba(30,64,175,0.1); }

    /* ── APPOINTMENT ── */
    .appt-section { padding: 80px 0; background: var(--off-white); }
    .appt-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .appt-content h2 {
      font-size: clamp(24px, 3vw, 36px); font-weight: 900;
      color: var(--navy); margin-bottom: 14px;
      letter-spacing: -0.03em; line-height: 1.2;
    }
    .appt-content h2 em { color: var(--cta); font-style: normal; }
    .appt-content p { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
    .appt-steps { display: flex; flex-direction: column; gap: 18px; }
    .appt-step { display: flex; gap: 14px; align-items: flex-start; }
    .appt-step-num {
      width: 34px; height: 34px; background: var(--cta); color: var(--white);
      border-radius: 50%; font-weight: 800; font-size: 15px;
      display: flex; align-items: center; justify-content: center; flex-shrink: 0;
    }
    .appt-step-text h4 { font-size: 15px; font-weight: 700; color: var(--navy); margin-bottom: 3px; }
    .appt-step-text p { font-size: 13px; color: var(--gray); line-height: 1.5; margin: 0; }
    .appt-form-card {
      background: var(--white); border-radius: 16px;
      padding: 32px 28px; box-shadow: 0 8px 28px rgba(15,37,87,0.09);
      border-top: 4px solid var(--cta);
    }
    .appt-form-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
    .appt-form-card .subtitle { font-size: 13px; color: var(--gray); margin-bottom: 20px; }
    .time-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px; }
    .time-btn {
      padding: 9px 6px; border: 1.5px solid var(--gray-light);
      border-radius: 7px; background: var(--white);
      font-size: 12px; font-weight: 600; color: var(--text-mid);
      cursor: pointer; transition: all 0.2s; text-align: center;
    }
    .time-btn:hover { border-color: var(--cta); color: var(--cta); }
    .time-btn.selected { border-color: var(--cta); background: var(--cta); color: var(--white); }

    /* ── WHY US ── */
    .why-section { padding: 80px 0; background: var(--off-white); }
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
    .why-card {
      background: var(--white);
      border: 1px solid var(--gray-light);
      border-top: 3px solid var(--royal);
      border-radius: 14px; padding: 28px 24px;
      transition: box-shadow 0.3s, transform 0.3s, border-top-color 0.3s;
    }
    .why-card:hover { box-shadow: 0 14px 38px rgba(15,37,87,0.12); transform: translateY(-5px); border-top-color: var(--cta); }
    .why-icon { font-size: 30px; margin-bottom: 12px; }
    .why-card h3 { font-size: 16px; font-weight: 700; color: var(--navy); margin-bottom: 7px; }
    .why-card p { font-size: 14px; color: var(--gray); line-height: 1.65; }

    /* ── CTA BANNER ── */
    .cta-section {
      padding: 90px 0; text-align: center;
      background: linear-gradient(130deg, var(--navy-dark) 0%, var(--navy) 55%, var(--royal) 100%);
      position: relative; overflow: hidden;
    }
    .cta-section::before {
      content: ''; position: absolute; inset: 0;
      background: url('https://garagedoorwarriors.com/wp-content/uploads/2023/07/WhatsApp-Image-2023-07-06-at-4.18.02-PM-2.jpeg') center/cover;
      opacity: 0.05;
    }
    .cta-section > .container { position: relative; z-index: 1; }
    .cta-section h2 {
      font-size: clamp(26px, 4vw, 44px); font-weight: 900;
      color: var(--white); letter-spacing: -0.03em; margin-bottom: 12px;
    }
    .cta-section p {
      font-size: 17px; color: rgba(255,255,255,0.75);
      margin-bottom: 34px; max-width: 520px; margin-left: auto; margin-right: auto;
    }
    .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
    .btn-cta-gold {
      background: var(--cta); color: var(--white);
      font-weight: 800; font-size: 16px; padding: 15px 34px;
      border-radius: 10px; border: none; cursor: pointer;
      transition: transform 0.15s, box-shadow 0.15s, background 0.2s;
      box-shadow: 0 6px 24px rgba(196,150,26,0.4);
    }
    .btn-cta-gold:hover { background: var(--cta-dark); transform: translateY(-2px); box-shadow: 0 10px 32px rgba(196,150,26,0.45); }
    .btn-cta-outline {
      background: transparent; color: var(--white);
      font-weight: 700; font-size: 16px; padding: 14px 30px;
      border-radius: 10px; border: 1.5px solid rgba(255,255,255,0.35);
      cursor: pointer; transition: border-color 0.2s, background 0.2s;
    }
    .btn-cta-outline:hover { border-color: rgba(255,255,255,0.7); background: rgba(255,255,255,0.07); }

    /* ── FAQ ── */
    .faq-section { padding: 80px 0; background: var(--white); }
    .faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .faq-aside h2 {
      font-size: clamp(24px, 2.8vw, 34px); font-weight: 900;
      color: var(--navy); margin-bottom: 14px; letter-spacing: -0.03em;
    }
    .faq-aside p { color: var(--gray); font-size: 15px; line-height: 1.7; margin-bottom: 22px; }
    .faq-contact {
      background: var(--off-white); border-radius: 12px; padding: 20px;
      border-left: 4px solid var(--cta);
    }
    .faq-contact p { color: var(--text-mid); font-size: 13px; margin-bottom: 3px; }
    .faq-contact a { color: var(--cta); font-weight: 700; font-size: 17px; display: block; }
    .faq-list { display: flex; flex-direction: column; gap: 10px; }
    .faq-item { border: 1px solid var(--gray-light); border-radius: 12px; overflow: hidden; }
    .faq-q {
      width: 100%; background: var(--white); border: none;
      padding: 16px 20px; text-align: left; font-size: 14px;
      font-weight: 700; color: var(--navy); cursor: pointer;
      display: flex; justify-content: space-between; align-items: center;
      gap: 12px; transition: background 0.2s; font-family: inherit;
    }
    .faq-q:hover { background: var(--off-white); }
    .faq-q.open { background: var(--navy); color: var(--white); }
    .faq-chevron { font-size: 16px; transition: transform 0.25s; flex-shrink: 0; }
    .faq-q.open .faq-chevron { transform: rotate(180deg); }
    .faq-a { display: none; padding: 14px 20px; font-size: 14px; color: var(--text-mid); line-height: 1.7; background: var(--off-white); }
    .faq-a.open { display: block; }

    /* ── CONTACT ── */
    .contact-section { padding: 80px 0; background: var(--off-white); }
    .contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
    .contact-info h2 {
      font-size: clamp(24px, 2.8vw, 36px); font-weight: 900;
      color: var(--navy); margin-bottom: 14px; letter-spacing: -0.03em;
    }
    .contact-info p { color: var(--text-mid); font-size: 15px; line-height: 1.7; margin-bottom: 26px; }
    .contact-details { display: flex; flex-direction: column; gap: 15px; }
    .contact-detail { display: flex; align-items: center; gap: 13px; }
    .contact-detail-icon {
      width: 42px; height: 42px; background: var(--navy);
      border-radius: 10px; display: flex; align-items: center;
      justify-content: center; font-size: 17px; flex-shrink: 0;
    }
    .contact-detail-text strong { display: block; font-size: 13px; color: var(--navy); font-weight: 700; }
    .contact-detail-text span { font-size: 14px; color: var(--text-mid); }
    .contact-form-card {
      background: var(--white); border-radius: 16px;
      padding: 34px 30px; box-shadow: 0 8px 28px rgba(15,37,87,0.08);
      border-top: 4px solid var(--cta);
    }
    .contact-form-card h3 { font-size: 19px; font-weight: 800; color: var(--navy); margin-bottom: 4px; }
    .contact-form-card .subtitle { font-size: 13px; color: var(--gray); margin-bottom: 20px; }

    /* ── FOOTER ── */
    .footer { background: var(--navy-dark); padding: 60px 0 0; border-top: 3px solid var(--cta); }
    .footer-top {
      display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
      gap: 40px; padding-bottom: 44px;
      border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .footer-logo { height: 48px; width: auto; margin-bottom: 14px; }
    .footer-about { color: rgba(255,255,255,0.5); font-size: 13px; line-height: 1.7; margin-bottom: 18px; }
    .footer-phone { color: var(--cta-light); font-size: 19px; font-weight: 800; display: block; margin-bottom: 5px; }
    .footer-email { color: rgba(255,255,255,0.5); font-size: 13px; }
    .footer-col h4 {
      color: var(--white); font-size: 12px; font-weight: 700;
      text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 14px;
    }
    .footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
    .footer-links a { color: rgba(255,255,255,0.5); font-size: 13px; transition: color 0.2s; }
    .footer-links a:hover { color: var(--cta-light); }
    .footer-bottom {
      padding: 18px 24px; text-align: center;
      color: rgba(255,255,255,0.3); font-size: 12px;
    }

    /* ── MOBILE CALL BAR ── */
    .mobile-call-bar {
      display: none; position: fixed; bottom: 0; left: 0; right: 0;
      background: var(--navy); border-top: 3px solid var(--cta);
      z-index: 9999; padding: 12px 16px;
      flex-direction: column; align-items: center; gap: 2px;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.25);
    }
    .mobile-call-bar a { color: var(--cta-light); font-weight: 800; font-size: 19px; letter-spacing: -0.02em; }
    .mobile-call-bar span { color: rgba(255,255,255,0.6); font-size: 11px; }

    /* ── OFFER BANNER ── */
    .offer-banner {
      padding: 52px 0;
      background: linear-gradient(135deg, #FFF7ED 0%, #FFFBEB 50%, #FFF7ED 100%);
      border-top: 1px solid #FDE68A;
      border-bottom: 1px solid #FDE68A;
    }
    .offer-inner {
      display: flex; align-items: center; justify-content: center;
      gap: 40px; flex-wrap: wrap;
      max-width: 1200px; margin: 0 auto; padding: 0 24px;
    }
    .offer-badge {
      background: var(--cta); color: var(--white);
      width: 110px; height: 110px; border-radius: 50%;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      flex-shrink: 0; box-shadow: 0 8px 28px rgba(196,150,26,0.35);
      animation: offerPulse 3s ease-in-out infinite;
    }
    .offer-badge .percent { font-size: 36px; font-weight: 900; line-height: 1; }
    .offer-badge .off-label { font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.1em; }
    @keyframes offerPulse {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.06); }
    }
    .offer-text h3 { font-size: 24px; font-weight: 900; color: var(--navy); margin-bottom: 6px; }
    .offer-text p { font-size: 15px; color: var(--gray); max-width: 400px; line-height: 1.6; }
    .offer-cta {
      background: var(--cta); color: var(--white);
      font-weight: 800; font-size: 16px; padding: 15px 34px;
      border-radius: 10px; border: none; cursor: pointer;
      box-shadow: 0 4px 18px rgba(196,150,26,0.35);
      transition: background 0.2s, transform 0.15s;
      white-space: nowrap;
    }
    .offer-cta:hover { background: var(--cta-dark); transform: translateY(-2px); }

    /* ── REVEAL ── */
    .reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal.visible { opacity: 1; transform: none; }
    .reveal-left { opacity: 0; transform: translateX(-30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-left.visible { opacity: 1; transform: none; }
    .reveal-right { opacity: 0; transform: translateX(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
    .reveal-right.visible { opacity: 1; transform: none; }
    .reveal-scale { opacity: 0; transform: scale(0.92); transition: opacity 0.6s ease, transform 0.6s ease; }
    .reveal-scale.visible { opacity: 1; transform: none; }

    /* ── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .services-grid { grid-template-columns: repeat(2, 1fr); }
      .why-grid { grid-template-columns: repeat(2, 1fr); }
      .footer-top { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .hero { min-height: 100svh; align-items: flex-start; }
      .hero-overlay {
        background: linear-gradient(
          180deg,
          rgba(10,26,63,0.82) 0%,
          rgba(10,26,63,0.7) 50%,
          rgba(10,26,63,0.55) 100%
        ) !important;
      }
      .hero-inner { grid-template-columns: 1fr; gap: 0; padding: 24px 20px 32px; }
      .hero-form-card { display: none; }
      .hero-badge { font-size: 11px; padding: 5px 14px; margin-bottom: 14px; }
      .hero h1 { font-size: 32px; margin-bottom: 12px; }
      .hero-sub { font-size: 15px; margin-bottom: 16px; }
      .hero-bullets { margin-bottom: 20px; }
      .hero-bullet { font-size: 14px; padding: 5px 0; }
      .hero-ctas { flex-direction: column; align-items: stretch; gap: 12px; }
      .btn-hero-call { width: 100%; text-align: center; padding: 16px 20px; border-radius: 14px; }
      .btn-hero-call .number { font-size: 24px; }
      .hero-promise { display: none; }

      /* Mobile lead form CTA button */
      .mobile-form-cta {
        display: flex !important; align-items: center; justify-content: center; gap: 8px;
        background: var(--white); color: var(--navy);
        font-size: 16px; font-weight: 800;
        padding: 16px 20px; border-radius: 14px;
        box-shadow: 0 4px 16px rgba(0,0,0,0.15);
        text-align: center;
      }
      .mobile-form-cta:hover { background: var(--off-white); }

      .about-inner, .quote-inner, .appt-inner, .faq-inner, .contact-inner { grid-template-columns: 1fr; gap: 30px; }
      .about-badge { position: static; margin-top: 16px; display: inline-block; }
      .services-grid, .why-grid, .reviews-grid { grid-template-columns: 1fr; }
      .stats-grid { grid-template-columns: repeat(2, 1fr); }
      .form-row { grid-template-columns: 1fr; }
      .trust-items { flex-direction: column; gap: 6px; }
      .trust-item { border-right: none !important; }
      .time-grid { grid-template-columns: repeat(2, 1fr); }
      .top-bar-center { display: none; }
      .top-bar-phone .cta-label { font-size: 8px; }
      .top-bar-phone .cta-number { font-size: 12px; }
      .top-bar-phone { padding: 6px 14px; }
      .mobile-call-bar { display: none; }
      .mini-reviews-label { display: none; }
      .footer-top { grid-template-columns: 1fr; }
    }
    @media (max-width: 480px) {
      .cta-buttons { flex-direction: column; align-items: center; }
      .about-cta { flex-direction: column; }
    }
