    /* =====================================================================
       SOUTHCREST ABA - REDESIGN
       Design system: warm clinical, feng-shui informed, conversion-led
       Palette: Deep teal · Sage · Apricot · Cream
       Type: DM Sans (headlines) · Inter (UI/body)
       ===================================================================== */

    :root {
      /* --- Color: water (deep teal) --- */
      --teal: #2d7a8a;
      --teal-dark: #1f5f6f;
      --teal-soft: #4da8ba;

      /* --- Color: wood (sage) --- */
      --sage: #7dd4a0;
      --sage-deep: #3dbf7e;
      --sage-pale: #d8f5e5;
      --sage-mist: #e8faf0;

      /* --- Color: fire (apricot) --- */
      --apricot: #ffb347;
      --apricot-deep: #ff9f1c;
      --apricot-pale: #fff0c8;

      /* --- Color: earth (cream / ink) --- */
      --cream: #fffef9;
      --cream-deep: #fdf6ea;
      --ink: #1a2630;
      --ink-soft: #4a5764;
      --ink-muted: #8a95a0;

      --sky: #b3e0f7;
      --sky-deep: #7cc8e8;
      --coral: #ff6b8a;
      --coral-pale: #ffe0e8;
      --sunshine: #ffcc33;
      --sunshine-pale: #fff2b3;

      --line: #e6dfd0;

      /* --- Tokens --- */
      --radius-sm: 12px;
      --radius: 20px;
      --radius-lg: 32px;
      --radius-xl: 40px;
      --shadow-sm: 0 2px 8px -2px rgba(13,79,92,0.08);
      --shadow: 0 16px 40px -20px rgba(13,79,92,0.18);
      --shadow-lg: 0 30px 60px -28px rgba(13,79,92,0.28);
      --maxw: 1180px;
      --ease: cubic-bezier(0.16, 1, 0.3, 1);
    }

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

    html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

    body {
      font-family: "Inter", system-ui, -apple-system, sans-serif;
      color: var(--ink);
      background: var(--cream);
      font-size: 1.02rem;
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      overflow-x: hidden;
    }

    h1, h2, h3, h4, h5, h6 {
      font-family: "DM Sans", system-ui, sans-serif;
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.025em;
      color: var(--teal);
    }

    p { color: var(--ink-soft); }
    a { color: var(--teal); text-decoration: none; }
    img { max-width: 100%; display: block; }

    .container { max-width: var(--maxw); margin: 0 auto; padding: 0 28px; }

    /* ===== UNDERLINE ACCENT (hand-drawn) ===== */
    .accent { position: relative; display: inline-block; white-space: nowrap; }
    .accent::after {
      content: "";
      position: absolute;
      left: -2%;
      right: -2%;
      bottom: -0.12em;
      height: 0.35em;
      background: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 20' preserveAspectRatio='none'><path d='M0 10 Q 15 2, 30 10 T 60 10 T 90 10 T 120 10 T 150 10 T 180 10 T 210 10 T 240 10 T 270 10 T 300 10' stroke='%23ffe8a3' stroke-width='8' fill='none' stroke-linecap='round'/></svg>") no-repeat center / 100% 100%;
      pointer-events: none;
      z-index: -1;
    }

    /* ===== ORGANIC BLOB BACKGROUND DECOR ===== */
    .blob {
      position: absolute;
      pointer-events: none;
      z-index: 0;
      filter: blur(40px);
      opacity: 0.55;
    }

    /* ===== HEADER ===== */
    .site-header {
      position: sticky;
      top: 0;
      z-index: 100;
      background: rgba(251, 248, 243, 0.85);
      backdrop-filter: saturate(160%) blur(14px);
      -webkit-backdrop-filter: saturate(160%) blur(14px);
      border-bottom: 1px solid transparent;
      transition: transform 0.4s var(--ease), border-color 0.3s, background 0.3s;
    }
    .site-header.scrolled { border-bottom-color: var(--line); background: rgba(251,248,243,0.96); }
    .site-header.header--hidden { transform: translateY(-100%); }

    .header-inner {
      max-width: var(--maxw);
      margin: 0 auto;
      padding: 14px 28px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }

    .brand { display: flex; align-items: center; gap: 12px; }
    .brand img { height: 48px; width: auto; display: block; }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 4px;
    }
    .nav-links a {
      font-family: "Inter", sans-serif;
      font-size: 0.92rem;
      font-weight: 500;
      color: var(--ink);
      padding: 10px 16px;
      border-radius: 10px;
      transition: color 0.2s, background 0.2s;
    }
    .nav-links a:hover { color: var(--teal); background: var(--sage-pale); }

    .header-cta { display: flex; align-items: center; gap: 12px; }
    .header-phone {
      font-family: "DM Sans", sans-serif;
      font-size: 1rem;
      font-weight: 600;
      color: var(--teal);
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }
    .header-phone svg { width: 18px; height: 18px; stroke: var(--apricot); }

    .lang-toggle {
      background: transparent;
      border: 1px solid var(--line);
      padding: 8px 14px;
      border-radius: 100px;
      font-family: "Inter", sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      cursor: pointer;
      color: var(--ink-soft);
      transition: all 0.2s;
    }
    .lang-toggle:hover { color: var(--teal); border-color: var(--teal); }

    /* ===== BUTTONS ===== */
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 13px 24px;
      border-radius: 100px;
      font-family: "Inter", sans-serif;
      font-size: 0.98rem;
      font-weight: 600;
      letter-spacing: -0.005em;
      cursor: pointer;
      text-decoration: none;
      border: 1.5px solid transparent;
      transition: all 0.3s var(--ease);
      white-space: nowrap;
    }
    .btn svg { width: 18px; height: 18px; transition: transform 0.3s var(--ease); }

    .btn-primary {
      background: var(--apricot);
      color: var(--teal-dark);
      box-shadow: 0 12px 28px -10px rgba(244,162,97,0.55);
      position: relative;
      overflow: hidden;
    }
    .btn-primary::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, transparent 0%, rgba(255,255,255,0.2) 50%, transparent 100%);
      transform: translateX(-100%);
      transition: transform 0.6s var(--ease);
    }
    .btn-primary:hover::before { transform: translateX(100%); }
    .btn-primary:hover {
      background: var(--apricot-deep);
      color: white;
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 22px 44px -14px rgba(224,133,64,0.7);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .btn-primary:hover svg { transform: translateX(4px); }

    .btn-secondary {
      background: transparent;
      color: var(--teal);
      border-color: var(--teal);
    }
    .btn-secondary:hover {
      background: var(--teal);
      color: var(--cream);
      transform: translateY(-2px);
    }

    .btn-ghost {
      background: white;
      color: var(--teal);
      border: 1px solid var(--line);
      padding: 12px 20px;
      font-size: 0.9rem;
      box-shadow: var(--shadow-sm);
    }
    .btn-ghost:hover { background: var(--sage-pale); border-color: var(--sage); }

    .btn-sm { padding: 10px 20px; font-size: 0.9rem; }

    /* ===== HERO ===== */
    .hero {
      position: relative;
      padding: clamp(32px, 4vw, 56px) 0 clamp(40px, 5vw, 64px);
      overflow: hidden;
    }
    .hero .blob-1 {
      width: 700px; height: 700px;
      background: var(--sky-deep);
      border-radius: 60% 40% 55% 45% / 50% 60% 40% 50%;
      top: -200px; left: -200px;
      opacity: 0.4;
    }
    .hero .blob-2 {
      width: 600px; height: 600px;
      background: var(--sunshine);
      border-radius: 45% 55% 40% 60% / 55% 45% 60% 40%;
      bottom: -200px; right: -160px;
      opacity: 0.45;
    }

    .hero-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1.05fr 1fr;
      gap: clamp(36px, 5vw, 72px);
      align-items: center;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      font-family: "Inter", sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--teal-soft);
      padding: 8px 16px;
      background: var(--sage-pale);
      border-radius: 100px;
      margin-bottom: 16px;
    }
    .eyebrow .dot {
      width: 7px; height: 7px;
      background: var(--coral);
      border-radius: 50%;
      box-shadow: 0 0 0 3px var(--coral-pale);
      animation: dot-pulse 2s ease-in-out infinite;
    }
    @keyframes dot-pulse {
      0%, 100% { box-shadow: 0 0 0 3px var(--coral-pale); }
      50% { box-shadow: 0 0 0 6px var(--sunshine-pale); }
    }

    .hero h1 {
      font-size: clamp(2.8rem, 6.5vw, 5.6rem);
      font-weight: 700;
      letter-spacing: -0.035em;
      color: var(--teal-dark);
      margin-bottom: 28px;
      line-height: 1.05;
    }
    .hero h1 em {
      font-style: italic;
      font-weight: 500;
      color: var(--teal);
    }

    .hero-sub {
      font-size: clamp(0.98rem, 1.2vw, 1.08rem);
      color: var(--ink-soft);
      max-width: 500px;
      margin-bottom: 22px;
      line-height: 1.55;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      align-items: center;
      margin-bottom: 22px;
    }

    .hero-trust {
      display: flex;
      flex-wrap: wrap;
      gap: 16px 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }
    .trust-pill {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 0.88rem;
      font-weight: 500;
      color: var(--ink-soft);
    }
    .trust-pill svg {
      width: 18px; height: 18px;
      stroke: var(--sage-deep);
      flex-shrink: 0;
    }

    /* Hero image */
    .hero-visual {
      position: relative;
      aspect-ratio: 4 / 4.5;
      max-height: 520px;
    }
    .hero-image-frame {
      position: relative;
      width: 100%;
      height: 100%;
      border-radius: var(--radius-lg);
      overflow: hidden;
      background: var(--cream);
    }
    .hero-image {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
      transition: transform 1s var(--ease);
    }
    .hero-image:hover { transform: scale(1.02) rotate(-0.5deg); }

    /* ===== INSURANCE SECTION ===== */
    .insurance-section {
      padding: clamp(48px, 6vw, 72px) 0;
      background: var(--cream-deep);
      position: relative;
      overflow: hidden;
      border-top: 1px solid var(--sage-pale);
      border-bottom: 1px solid var(--sage-pale);
    }
    .insurance-section .label {
      text-align: center;
      font-family: "Inter", sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      text-transform: uppercase;
      letter-spacing: 0.16em;
      color: var(--ink-muted);
      margin-bottom: 28px;
      position: relative;
      z-index: 1;
    }
    .logo-track-wrapper {
      overflow: hidden;
      mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
      -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
    }
    .logo-track {
      display: flex;
      gap: 64px;
      align-items: center;
      width: max-content;
      animation: slide 50s linear infinite;
    }
    .logo-track:hover { animation-play-state: paused; }
    .logo-track img {
      height: 44px;
      width: auto;
      max-width: 180px;
      object-fit: contain;
      opacity: 0.82;
      transition: all 0.3s;
    }
    .logo-track img:hover { opacity: 1; transform: translateY(-2px); }
    @keyframes slide {
      from { transform: translateX(0); }
      to { transform: translateX(-50%); }
    }

    /* ===== SECTIONS ===== */
    section { position: relative; }
    .section { padding: clamp(48px, 6vw, 72px) 0; }
    .section-sage { background: var(--sage-mist); }
    .section-cream { background: var(--cream); }
    .section-sky { background: linear-gradient(180deg, var(--sky) 0%, var(--cream) 100%); }

    .section-head {
      max-width: 720px;
      margin: 0 auto clamp(32px, 4vw, 48px);
      text-align: center;
    }
    .section-head .eyebrow { margin-bottom: 18px; }
    .section-head h2 {
      font-size: clamp(2.4rem, 5.5vw, 4.2rem);
      font-weight: 700;
      margin-bottom: 22px;
      line-height: 1.05;
    }
    .section-head h2 em { font-style: italic; font-weight: 500; }
    .section-head p {
      font-size: 1.12rem;
      color: var(--ink-soft);
      max-width: 560px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* ===== HOW IT WORKS ===== */
    .steps {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      position: relative;
    }
    .steps::before {
      content: "";
      position: absolute;
      top: 36px;
      left: 16%;
      right: 16%;
      height: 2px;
      background: repeating-linear-gradient(to right, var(--sage) 0 8px, transparent 8px 16px);
      z-index: 0;
    }
    .step {
      position: relative;
      z-index: 1;
      text-align: center;
      padding: 0 8px;
    }
    .step-num {
      width: 64px; height: 64px;
      background: var(--apricot);
      border: none;
      color: var(--teal-dark);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-family: "DM Sans", sans-serif;
      font-size: 1.8rem;
      font-weight: 700;
      margin: 0 auto 22px;
      box-shadow: 0 16px 32px -12px rgba(244,162,97,0.5);
      transition: all 0.4s var(--ease);
    }
    .step:hover .step-num {
      transform: translateY(-6px) scale(1.12);
      box-shadow: 0 24px 48px -16px rgba(244,162,97,0.6);
      transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    }
    .step h3 {
      font-size: 1.25rem;
      font-weight: 600;
      margin-bottom: 10px;
    }
    .step p {
      font-size: 0.95rem;
      line-height: 1.65;
      color: var(--ink-soft);
    }

    /* ===== WHY US (4 cards, 2x2) ===== */
    .why-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
    }
    .why-card {
      background: white;
      padding: 32px 28px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      transition: all 0.5s var(--ease);
      position: relative;
      overflow: hidden;
    }
    .why-card::before {
      content: "";
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 4px;
      background: linear-gradient(90deg, var(--apricot), var(--sage));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform 0.5s var(--ease);
    }
    .why-card:hover::before { transform: scaleX(1); }
    .why-card:hover {
      transform: translateY(-10px) rotate(0.5deg);
      border-color: transparent;
      box-shadow: 0 32px 64px -24px rgba(13,79,92,0.22);
    }
    .why-icon {
      width: 52px; height: 52px;
      background: var(--sage-pale);
      border-radius: 18px;
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 18px;
      transition: background 0.3s;
    }
    .why-icon svg { width: 24px; height: 24px; stroke: var(--teal); stroke-width: 1.75; }
    .why-card:hover .why-icon { filter: brightness(1.05); }
    .why-card:hover .why-icon svg { stroke: var(--teal); }
    .why-card h3 {
      font-size: 1.4rem;
      font-weight: 600;
      margin-bottom: 12px;
    }
    .why-card p {
      font-size: 0.98rem;
      line-height: 1.65;
    }

    /* ===== ABOUT / FOUNDER ===== */
    .about-grid {
      display: grid;
      grid-template-columns: 1fr 1.2fr;
      gap: clamp(32px, 4vw, 56px);
      align-items: center;
    }
    .about-image {
      position: relative;
      aspect-ratio: 1 / 1;
      max-width: 460px;
    }
    .about-image img {
      width: 100%; height: 100%;
      object-fit: contain;
      padding: 12px;
      background: var(--cream);
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow);
    }
    .about-image .blob {
      width: 100%; height: 100%;
      background: var(--apricot);
      border-radius: 60% 40% 50% 50% / 45% 55% 45% 55%;
      top: 24px; left: 24px;
      opacity: 0.18;
      filter: blur(24px);
    }
    .about-content .eyebrow { margin-bottom: 20px; }
    .about-content h2 {
      font-size: clamp(2.2rem, 4.5vw, 3.6rem);
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1.05;
    }
    .about-content h2 em { font-style: italic; }
    .about-content p {
      font-size: 1.05rem;
      line-height: 1.75;
      margin-bottom: 18px;
    }
    .about-signature {
      margin-top: 28px;
      padding-top: 24px;
      border-top: 1px solid var(--line);
    }
    .about-signature strong {
      font-family: "DM Sans", sans-serif;
      font-size: 1.1rem;
      color: var(--teal);
    }
    .about-signature span {
      display: block;
      font-size: 0.88rem;
      color: var(--ink-muted);
      margin-top: 2px;
    }

    /* ===== SERVICE AREA / ZIP CHECKER ===== */
    .area-band {
      background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 40%, var(--teal-soft) 100%);
      color: white;
      padding: clamp(48px, 6vw, 80px) 0;
      position: relative;
      overflow: hidden;
    }
    .area-band .blob {
      width: 600px; height: 600px;
      background: var(--sage);
      border-radius: 50%;
      top: -300px; right: -200px;
      opacity: 0.18;
      filter: blur(60px);
    }
    .area-inner {
      position: relative;
      z-index: 1;
      max-width: 720px;
      margin: 0 auto;
      text-align: center;
    }
    .area-band .eyebrow {
      background: rgba(255,255,255,0.12);
      color: rgba(255,255,255,0.92);
    }
    .area-band h2 {
      color: white;
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 18px;
      line-height: 1.05;
    }
    .area-band p {
      color: rgba(255,255,255,0.82);
      font-size: 1.05rem;
      margin-bottom: 32px;
    }
    .zip-form {
      display: flex;
      align-items: center;
      gap: 12px;
      max-width: 460px;
      margin: 0 auto;
      background: white;
      padding: 8px;
      border-radius: 100px;
      box-shadow: var(--shadow-lg);
    }
    .zip-form input {
      flex: 1;
      border: none;
      outline: none;
      padding: 14px 22px;
      font-family: "Inter", sans-serif;
      font-size: 1rem;
      font-weight: 500;
      color: var(--ink);
      background: transparent;
      min-width: 0;
    }
    .zip-form input::placeholder { color: var(--ink-muted); }
    .zip-form button {
      background: var(--apricot);
      color: var(--teal-dark);
      border: none;
      padding: 14px 28px;
      border-radius: 100px;
      font-family: "Inter", sans-serif;
      font-size: 0.95rem;
      font-weight: 600;
      cursor: pointer;
      transition: all 0.2s;
    }
    .zip-form button:hover { background: var(--apricot-deep); color: white; }
    #zipcode-result { margin-top: 18px; min-height: 24px; font-weight: 500; }
    .zipcode-success { color: #b8e8c0; }
    .zipcode-error { color: #ffd5b8; }

    /* ===== FAQ ===== */
    .faq-list {
      max-width: 800px;
      margin: 0 auto;
    }
    .faq-item {
      border-bottom: 1px solid var(--line);
      transition: all 0.3s;
    }
    .faq-item:first-child { border-top: 1px solid var(--line); }
    .faq-question {
      width: 100%;
      background: none;
      border: none;
      padding: 22px 8px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      cursor: pointer;
      text-align: left;
      font-family: "DM Sans", sans-serif;
      font-size: 1.2rem;
      font-weight: 600;
      color: var(--teal);
      transition: color 0.3s, padding-left 0.3s;
    }
    .faq-question:hover { padding-left: 12px; }
    .faq-question:hover { color: var(--apricot-deep); }
    .faq-toggle {
      flex-shrink: 0;
      width: 36px; height: 36px;
      border-radius: 50%;
      background: var(--sage-pale);
      display: flex; align-items: center; justify-content: center;
      transition: all 0.3s var(--ease);
    }
    .faq-toggle svg {
      width: 16px; height: 16px;
      stroke: var(--teal);
      transition: transform 0.3s var(--ease);
    }
    .faq-item.active .faq-toggle { background: var(--coral); }
    .faq-item.active .faq-toggle svg { stroke: white; transform: rotate(45deg); }
    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.45s var(--ease);
    }
    .faq-answer p {
      padding: 0 8px 28px;
      font-size: 1rem;
      line-height: 1.7;
      color: var(--ink-soft);
      max-width: 680px;
    }
    .faq-item.active .faq-answer { max-height: 400px; }

    /* ===== FINAL CTA / FORM ===== */
    .cta-section {
      padding: clamp(48px, 6vw, 80px) 0;
      background: var(--sage-mist);
      position: relative;
      overflow: hidden;
    }
    .cta-section .blob-1 {
      width: 480px; height: 480px;
      background: var(--apricot);
      border-radius: 50%;
      top: -200px; left: -150px;
      opacity: 0.18;
    }
    .cta-section .blob-2 {
      width: 520px; height: 520px;
      background: var(--sage);
      border-radius: 50%;
      bottom: -260px; right: -180px;
      opacity: 0.3;
    }
    .cta-grid {
      position: relative;
      z-index: 1;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: clamp(32px, 4vw, 56px);
      align-items: center;
    }
    .cta-content h2 {
      font-size: clamp(2.4rem, 5vw, 4rem);
      font-weight: 700;
      margin-bottom: 24px;
      line-height: 1.05;
    }
    .cta-content h2 em { font-style: italic; }
    .cta-content > p {
      font-size: 1.08rem;
      line-height: 1.7;
      margin-bottom: 32px;
    }
    .cta-benefits { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .cta-benefits li {
      display: flex;
      align-items: center;
      gap: 14px;
      font-size: 0.98rem;
      color: var(--ink);
      font-weight: 500;
    }
    .cta-benefits svg {
      width: 22px; height: 22px;
      flex-shrink: 0;
      stroke: white;
      background: var(--sage-deep);
      border-radius: 50%;
      padding: 4px;
    }

    .form-card {
      background: white;
      padding: clamp(32px, 4vw, 48px);
      border-radius: var(--radius-lg);
      box-shadow: 0 40px 80px -32px rgba(13,79,92,0.25);
      border: 1px solid var(--line);
      transition: box-shadow 0.5s var(--ease);
    }
    .form-card:hover {
      box-shadow: 0 48px 96px -36px rgba(13,79,92,0.3);
    }
    .form-card h3 {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .form-card .form-sub {
      font-size: 0.92rem;
      color: var(--ink-muted);
      margin-bottom: 28px;
    }

    .field { margin-bottom: 18px; position: relative; }
    .field label {
      display: block;
      font-family: "Inter", sans-serif;
      font-size: 0.82rem;
      font-weight: 500;
      color: var(--ink-soft);
      margin-bottom: 8px;
      letter-spacing: 0.01em;
    }
    .field input {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid var(--line);
      border-radius: var(--radius-sm);
      font-family: "Inter", sans-serif;
      font-size: 0.98rem;
      font-weight: 500;
      color: var(--ink);
      background: var(--cream);
      transition: all 0.2s;
    }
    .field input::placeholder { color: var(--ink-muted); font-weight: 400; }
    .field input:focus {
      outline: none;
      border-color: var(--teal);
      background: white;
      box-shadow: 0 0 0 4px rgba(45,122,138,0.08);
    }
    /* Checkmark icon when field is valid */
    .field::after {
      content: "";
      position: absolute;
      right: 14px;
      top: 42px;
      width: 22px;
      height: 22px;
      background: var(--sage-deep);
      border-radius: 50%;
      background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'><polyline points='20 6 9 17 4 12'/></svg>");
      background-size: 60%;
      background-position: center;
      background-repeat: no-repeat;
      opacity: 0;
      transform: scale(0.4);
      transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
      pointer-events: none;
    }
    .field:has(input:valid:not(:placeholder-shown))::after,
    .field:has(textarea:valid:not(:placeholder-shown))::after {
      opacity: 1;
      transform: scale(1);
    }
    .field:has(input:valid:not(:placeholder-shown)) input,
    .field:has(textarea:valid:not(:placeholder-shown)) textarea {
      padding-right: 46px;
    }

    .field textarea {
      width: 100%;
      padding: 14px 18px;
      border: 1.5px solid var(--line);
      border-radius: var(--radius-sm);
      font-family: "Inter", sans-serif;
      font-size: 0.98rem;
      font-weight: 500;
      color: var(--ink);
      background: var(--cream);
      transition: all 0.2s;
      resize: vertical;
      min-height: 80px;
    }
    .field textarea::placeholder { color: var(--ink-muted); font-weight: 400; }
    .field textarea:focus {
      outline: none;
      border-color: var(--teal);
      background: white;
      box-shadow: 0 0 0 4px rgba(45,122,138,0.08);
    }

    .form-submit {
      width: 100%;
      padding: 18px;
      background: var(--apricot);
      color: var(--teal-dark);
      border: none;
      border-radius: 100px;
      font-family: "Inter", sans-serif;
      font-size: 1rem;
      font-weight: 600;
      cursor: pointer;
      margin-top: 8px;
      text-align: center;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: 0 14px 28px -10px rgba(244,162,97,0.55);
      transition: all 0.3s var(--ease);
    }
    .form-submit:hover:not(:disabled) {
      background: var(--apricot-deep);
      color: white;
      transform: translateY(-2px);
      box-shadow: 0 18px 32px -10px rgba(224,133,64,0.6);
    }
    .form-submit:disabled { opacity: 0.7; cursor: wait; }
    .form-privacy {
      text-align: center;
      font-size: 0.78rem;
      color: var(--ink-muted);
      margin-top: 16px;
    }
    .form-consent {
      font-size: 0.74rem;
      color: var(--ink-muted);
      line-height: 1.5;
      margin: 4px 0 16px;
      text-align: center;
    }
    .form-success { text-align: center; padding: 32px 12px; }
    .form-success-icon {
      width: 64px; height: 64px;
      background: var(--sage-pale);
      border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px;
    }
    .form-success-icon svg { width: 32px; height: 32px; stroke: var(--sage-deep); }
    .form-success h3 { font-size: 1.6rem; margin-bottom: 10px; }
    .form-success p { color: var(--ink-soft); }

    /* ===== FOOTER ===== */
    .site-footer {
      background: var(--teal-dark);
      color: rgba(251,248,243,0.78);
      padding: 56px 0 28px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
      gap: 40px;
      margin-bottom: 40px;
    }
    .footer-brand img {
      height: 44px;
      width: auto;
      margin-bottom: 18px;
      filter: brightness(0) invert(1);
      opacity: 0.95;
    }
    .footer-brand p {
      font-size: 0.92rem;
      line-height: 1.7;
      color: rgba(251,248,243,0.6);
      max-width: 320px;
    }
    .footer-tagline {
      font-family: "DM Sans", sans-serif;
      font-style: italic;
      color: var(--apricot);
      margin-top: 14px;
      font-size: 0.95rem;
    }
    .site-footer h4 {
      font-family: "Inter", sans-serif;
      font-size: 0.78rem;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--apricot);
      margin-bottom: 18px;
    }
    .site-footer ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .site-footer a {
      color: rgba(251,248,243,0.7);
      font-size: 0.92rem;
      transition: color 0.2s;
    }
    .site-footer a:hover { color: var(--apricot); }
    .footer-contact p { font-size: 0.92rem; color: rgba(251,248,243,0.7); margin-bottom: 8px; }
    .footer-contact strong { color: white; font-weight: 500; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,0.08);
      padding-top: 28px;
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 14px;
    }
    .footer-bottom p { font-size: 0.82rem; color: rgba(251,248,243,0.45); }
    .footer-bottom-links { display: flex; gap: 24px; }
    .footer-bottom-links a { font-size: 0.82rem; color: rgba(251,248,243,0.45); }

    /* ===== STICKY BUTTONS (Call, Text, WhatsApp) ===== */
    .sticky-buttons { position: fixed; right: 18px; bottom: 18px; z-index: 90; display: flex; flex-direction: column; gap: 12px; }
    .sticky-btn {
      width: 52px; height: 52px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      color: white; text-decoration: none;
      box-shadow: 0 8px 24px -8px rgba(0,0,0,0.3);
      transition: all 0.3s var(--ease);
    }
    .sticky-btn svg { width: 22px; height: 22px; }
    .sticky-btn:hover { transform: translateY(-3px) scale(1.08); box-shadow: 0 14px 32px -10px rgba(0,0,0,0.4); }
    .sticky-btn-call { background: var(--sage-deep); }
    .sticky-btn-text { background: var(--teal-soft); }
    .sticky-btn-whatsapp { background: #25D366; }

    /* ===== INSURANCE BADGES ===== */
    .insurance-badges { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; margin: 32px 0; position: relative; z-index: 1; }
    .insurance-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(255,255,255,0.1);
      padding: 12px 22px;
      border-radius: 100px;
      font-weight: 600;
      font-size: 0.92rem;
      color: white;
      border: 1px solid rgba(255,255,255,0.2);
      backdrop-filter: blur(4px);
      transition: all 0.3s;
    }
    .insurance-badge:hover { background: rgba(255,255,255,0.18); transform: translateY(-2px); }
    .insurance-badge svg { width: 18px; height: 18px; }

    /* ===== SERVICES GRID ===== */
    .services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

    /* ===== CONTACT CARDS ===== */
    .contact-section { padding: 80px 0; text-align: center; }
    .contact-section h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 10px; }
    .contact-section > p { color: var(--ink-soft); margin-bottom: 36px; font-size: 1.05rem; }
    .contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 640px; margin: 0 auto 36px; }
    .contact-card {
      background: white;
      padding: 28px;
      border-radius: var(--radius-lg);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
      text-align: center;
      transition: all 0.4s var(--ease);
    }
    .contact-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .contact-card h3 { font-size: 1rem; margin-bottom: 10px; }
    .contact-card a { color: var(--apricot-deep); font-weight: 700; font-size: 1.15rem; }
    .contact-card a:hover { color: var(--apricot); }

    /* ===== STICKY MOBILE CALL ===== */
    .mobile-call {
      display: none;
      position: fixed;
      bottom: 20px; right: 20px;
      width: 56px; height: 56px;
      background: var(--apricot);
      color: var(--teal-dark);
      border-radius: 50%;
      align-items: center; justify-content: center;
      box-shadow: 0 12px 30px -8px rgba(244,162,97,0.6);
      z-index: 90;
      transition: transform 0.2s;
    }
    .mobile-call:hover { transform: scale(1.05); }
    .mobile-call svg { width: 24px; height: 24px; stroke: currentColor; }

    /* ===== SCROLL REVEAL ===== */
    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: opacity 1s var(--ease), transform 1.2s var(--ease);
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }
    .reveal-delay-1 { transition-delay: 0.15s; }
    .reveal-delay-2 { transition-delay: 0.3s; }
    .reveal-delay-3 { transition-delay: 0.45s; }

    /* slide-in from left/right for asymmetric sections */
    .reveal-left {
      opacity: 0;
      transform: translateX(-60px);
      transition: opacity 1s var(--ease), transform 1.2s var(--ease);
    }
    .reveal-left.visible { opacity: 1; transform: translateX(0); }
    .reveal-right {
      opacity: 0;
      transform: translateX(60px);
      transition: opacity 1s var(--ease), transform 1.2s var(--ease);
    }
    .reveal-right.visible { opacity: 1; transform: translateX(0); }

    /* scale-in for hero elements */
    .reveal-scale {
      opacity: 0;
      transform: scale(0.9);
      transition: opacity 1s var(--ease), transform 1.4s var(--ease);
    }
    .reveal-scale.visible { opacity: 1; transform: scale(1); }

    /* ===== BOUNCY EASING ===== */
    @keyframes gentle-bounce {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-4px); }
    }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
      .nav-links { display: none; }
      .hero-grid { grid-template-columns: 1fr; gap: 56px; }
      .hero-visual { max-width: 480px; margin: 0 auto; aspect-ratio: 4/4.5; }
      .hero h1 { font-size: clamp(2.2rem, 7vw, 3.4rem); }
      .why-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .sticky-buttons { right: 14px; bottom: 14px; }
      .sticky-btn { width: 46px; height: 46px; }
      .contact-cards { grid-template-columns: 1fr; }
      .services-grid { grid-template-columns: 1fr; max-width: 520px; margin: 0 auto; }
      .steps { grid-template-columns: 1fr 1fr; row-gap: 40px; }
      .steps::before { display: none; }
      .about-grid { grid-template-columns: 1fr; gap: 48px; }
      .about-image { max-width: 420px; margin: 0 auto; }
      .cta-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
      .header-phone span { display: none; }
      .mobile-call { display: flex; }
    }

    @media (max-width: 640px) {
      .doodle { display: none; }
      .container { padding: 0 20px; }
      .header-inner { padding: 12px 20px; gap: 12px; }
      .brand img { height: 44px; }
      .header-cta .btn { display: none; }
      .sticky-buttons { display: none; }
      .lang-toggle { padding: 7px 12px; font-size: 0.78rem; }
      .header-phone svg { width: 20px; height: 20px; }
      .hero { padding: 40px 0 64px; }
      .hero h1 { font-size: 2.1rem; }
      .hero-actions { flex-direction: column; align-items: stretch; }
      .hero-actions .btn { justify-content: center; width: 100%; }
      .hero-visual { max-width: 100%; }
      .steps { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 32px; }
      .footer-bottom { flex-direction: column; align-items: flex-start; text-align: left; }
      .zip-form { flex-direction: column; padding: 14px; border-radius: var(--radius); gap: 10px; }
      .zip-form input { text-align: center; padding: 12px; }
      .zip-form button { width: 100%; padding: 14px; }
    }

    @media (prefers-reduced-motion: reduce) {
      .logo-track { animation: none; }
      .reveal { opacity: 1; transform: none; transition: none; }
      *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
    }
