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

    :root {
      --navy:        #0C2D55;
      --navy-mid:    #185FA5;
      --blue:        #378ADD;
      --blue-light:  #B5D4F4;
      --blue-tint:   #E6F1FB;
      --usa-red:     #A32D2D;
      --usa-red-lt:  #FCEBEB;
      --green:       #3B6D11;
      --green-lt:    #EAF3DE;
      --purple:      #534AB7;
      --purple-lt:   #EEEDFE;
      --white:       #ffffff;
      --gray-50:     #F7F8FA;
      --gray-100:    #EAEDF2;
      --gray-300:    #C0C7D4;
      --gray-500:    #6B7694;
      --gray-800:    #1E2640;
      --text:        #1E2640;
      --text-muted:  #5A6480;
      --radius-sm:   6px;
      --radius-md:   10px;
      --radius-lg:   16px;
      --radius-xl:   24px;
      --shadow-sm:   0 1px 4px rgba(12,45,85,.06);
      --shadow-md:   0 4px 20px rgba(12,45,85,.10);
      --shadow-lg:   0 12px 40px rgba(12,45,85,.14);
      --font-display: 'DM Serif Display', Georgia, serif;
      --font-body:    'DM Sans', system-ui, sans-serif;
      --max-w:       1120px;
      --section-gap: 6rem;
      /* Alias variables for compat */
      --font-sans: var(--font-body);
      --font-serif: var(--font-display);
      --blue-pale: var(--blue-tint);
      --gray-light: var(--gray-100);
      --off-white: var(--gray-50);
      --radius: var(--radius-md);
      --shadow: var(--shadow-sm);
    }

    html { scroll-behavior: smooth; }
    /* Anchor offset for sticky nav */
    [id] { scroll-margin-top: 90px; }
    body {
      font-family: var(--font-body);
      font-size: 16px;
      line-height: 1.65;
      color: var(--text);
      background: var(--white);
      -webkit-font-smoothing: antialiased;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }

    /* ── Utility ── */
    .container { max-width: var(--max-w); margin: 0 auto; padding: 0 1.5rem; }
    .sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; }
    .text-muted { color: var(--text-muted); }

    /* ── Top bar ── */
    .topbar {
      background: var(--navy);
      color: rgba(255,255,255,.75);
      font-size: 13px;
      padding: .5rem 0;
    }
    .topbar .container {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 1rem;
      flex-wrap: wrap;
    }
    .topbar a { color: rgba(255,255,255,.85); transition: color .2s; }
    .topbar a:hover { color: #fff; }
    .topbar-left { display: flex; gap: 1.25rem; align-items: center; flex-wrap: wrap; }
    .topbar-left span { display: flex; align-items: center; gap: .4rem; }
    .topbar-trust { display: flex; gap: 1rem; align-items: center; }
    .trust-pill {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: 11px; font-weight: 500;
      padding: 2px 9px; border-radius: 100px;
    }
    .trust-pill.usa { background: rgba(163,45,45,.25); color: #ffb3b3; border: .5px solid rgba(163,45,45,.5); }
    .trust-pill.local { background: rgba(59,109,17,.25); color: #b3dda0; border: .5px solid rgba(59,109,17,.5); }

    /* ── Nav ── */
    nav {
      position: sticky; top: 0; z-index: 100;
      background: var(--white);
      border-bottom: 1px solid var(--gray-100);
      box-shadow: var(--shadow-sm);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px; gap: 1rem;
    }

    /* Logo */
    .logo { display: flex; align-items: center; gap: .65rem; flex-shrink: 0; }
    .logo-svg { width: 38px; height: 38px; }
    .logo-text { display: flex; flex-direction: column; line-height: 1.1; }
    .logo-text .line1 { font-family: var(--font-display); font-size: 17px; color: var(--navy); }
    .logo-text .line2 { font-size: 10px; font-weight: 500; letter-spacing: .07em; color: var(--text-muted); text-transform: uppercase; }

    /* Nav links */
    .nav-links {
      display: flex; align-items: center; gap: .25rem;
      list-style: none;
    }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: var(--gray-800);
      padding: .5rem .85rem; border-radius: var(--radius-sm);
      transition: background .15s, color .15s;
    }
    .nav-links a:hover { background: var(--blue-tint); color: var(--navy-mid); }

    /* Dropdown */
    .nav-drop { position: relative; }
    .nav-drop > a::after { content: ' ▾'; font-size: 10px; opacity: .6; }
    .dropdown {
      display: none; position: absolute; top: calc(100% + 4px); z-index: 200; left: 0;
      background: var(--white); border: 1px solid var(--gray-100);
      border-radius: var(--radius-md); box-shadow: var(--shadow-md);
      min-width: 200px; padding: .5rem;
      animation: fadeDown .15s ease;
    }
    .dropdown.open { display: block; }
    .dropdown a {
      display: block; font-size: 13.5px; padding: .5rem .85rem;
      border-radius: var(--radius-sm); color: var(--text);
    }
    .dropdown a:hover { background: var(--blue-tint); color: var(--navy); }

    .nav-cta {
      display: inline-flex; align-items: center; gap: .45rem;
      background: var(--blue); color: var(--white);
      font-size: 14px; font-weight: 500;
      padding: .55rem 1.2rem; border-radius: var(--radius-md);
      border: none; cursor: pointer;
      transition: background .2s, transform .1s;
      white-space: nowrap;
    }
    .nav-cta:hover { background: var(--navy-mid); }
    .nav-cta:active { transform: scale(.98); }

    /* Hamburger */
    .hamburger {
      display: none; background: none; border: 1px solid var(--gray-100);
      border-radius: var(--radius-sm); padding: .45rem .55rem; cursor: pointer;
    }
    .hamburger span { display: block; width: 20px; height: 2px; background: var(--text); margin: 4px 0; border-radius: 2px; transition: .25s; }

    /* Mobile nav drawer */
    .mobile-nav {
      display: flex; flex-direction: column;
      background: var(--white); border-top: 1px solid var(--gray-100);
      padding: 0 1.5rem;
      gap: .25rem;
      max-height: 0; overflow: hidden; visibility: hidden;
      transition: max-height .25s ease, padding .25s ease, visibility .25s;
    }
    .mobile-nav.open { max-height:600px; padding:1rem 1.5rem 1.5rem; visibility:visible; }
    .mobile-nav a {
      font-size: 15px; font-weight: 500; color: var(--text);
      padding: .6rem 0; border-bottom: 1px solid var(--gray-100);
    }
    .mobile-nav .mobile-cta {
      margin-top: .75rem;
      display: block; text-align: center;
      background: var(--blue); color: var(--white);
      padding: .75rem; border-radius: var(--radius-md);
      font-weight: 500; font-size: 15px;
    }

    /* ── Hero ── */
    .hero {
      background: var(--navy);
      position: relative; overflow: hidden;
      padding: 5rem 0 4.5rem;
    }
    .hero::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 60% at 75% 50%, rgba(55,138,221,.18) 0%, transparent 70%);
      pointer-events: none;
    }
    .hero-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 3rem; align-items: center;
      position: relative;
    }
    .hero-eyebrow {
      display: inline-flex; align-items: center; gap: .45rem;
      background: rgba(255,255,255,.10); color: rgba(255,255,255,.88);
      font-size: 12px; font-weight: 500;
      padding: .3rem .9rem; border-radius: 100px;
      border: .5px solid rgba(255,255,255,.2);
      margin-bottom: 1.25rem;
    }
    .hero-eyebrow svg { width: 13px; height: 13px; flex-shrink: 0; }
    .hero h1 {
      font-family: var(--font-display);
      font-size: clamp(2rem, 4vw, 3rem);
      font-weight: 400;
      color: var(--white);
      line-height: 1.18;
      margin-bottom: 1.1rem;
    }
    .hero h1 em { font-style: italic; color: var(--blue-light); }
    .hero-sub {
      font-size: 17px; color: rgba(255,255,255,.72);
      max-width: 460px; margin-bottom: 2rem; line-height: 1.7;
    }
    .hero-actions { display: flex; gap: .75rem; flex-wrap: wrap; }
    .btn-primary {
      display: inline-flex; align-items: center; gap: .45rem;
      background: var(--blue); color: var(--white);
      font-size: 15px; font-weight: 500;
      padding: .75rem 1.5rem; border-radius: var(--radius-md);
      border: none; cursor: pointer;
      transition: background .2s, transform .1s;
    }
    .btn-primary:hover { background: #2672c0; }
    .btn-ghost {
      display: inline-flex; align-items: center; gap: .45rem;
      background: rgba(255,255,255,.08); color: rgba(255,255,255,.9);
      font-size: 15px; font-weight: 500;
      padding: .75rem 1.5rem; border-radius: var(--radius-md);
      border: .5px solid rgba(255,255,255,.25); cursor: pointer;
      transition: background .2s;
    }
    .btn-ghost:hover { background: rgba(255,255,255,.14); }

    .hero-trust {
      display: flex; gap: 1.5rem; flex-wrap: wrap;
      margin-top: 2rem; padding-top: 1.5rem;
      border-top: .5px solid rgba(255,255,255,.15);
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: .45rem;
      font-size: 13px; color: rgba(255,255,255,.72);
    }
    .hero-trust-item svg { width: 15px; height: 15px; opacity: .8; flex-shrink: 0; }

    /* Hero image card */
    .hero-visual {
      position: relative;
      display: flex; justify-content: center; align-items: center;
    }
    .hero-img-card {
      background: rgba(255,255,255,.06);
      border: .5px solid rgba(255,255,255,.15);
      border-radius: var(--radius-xl);
      overflow: hidden;
      width: 100%; max-width: 420px;
    }
    .hero-img-placeholder {
      aspect-ratio: 4/3;
      background: #f0f4f8;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: .75rem; overflow: hidden;
    }
    .hero-img-placeholder img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
    .hero-img-placeholder svg { width: 48px; height: 48px; opacity: .35; }
    .hero-img-placeholder p { font-size: 13px; color: rgba(255,255,255,.4); }
    .hero-img-caption {
      padding: .85rem 1.1rem;
      display: flex; align-items: center; gap: .6rem;
    }
    .hero-img-caption svg { width: 18px; height: 18px; color: var(--blue-light); flex-shrink: 0; }
    .hero-img-caption span { font-size: 13px; color: rgba(255,255,255,.72); }

    .hero-badge-text .b1 { font-size: 12px; font-weight: 600; color: var(--text); }
    .hero-badge-text .b2 { font-size: 11px; color: var(--text-muted); }

    /* ── Trust bar ── */
    .trust-bar {
      background: var(--white);
      border-bottom: 1px solid var(--gray-100);
      padding: 1.25rem 0;
    }
    .trust-bar-inner {
      display: flex; align-items: center; justify-content: center;
      gap: 2.5rem; flex-wrap: wrap;
    }
    .tb-item {
      display: flex; align-items: center; gap: .55rem;
      font-size: 14px; font-weight: 500; color: var(--text);
    }
    .tb-item svg { width: 18px; height: 18px; color: var(--blue); flex-shrink: 0; }
    .tb-divider { width: 1px; height: 24px; background: var(--gray-100); }

    /* ── Section headings ── */
    .section-tag {
      display: inline-flex; align-items: center; gap: .4rem;
      font-size: 12px; font-weight: 500;
      padding: .25rem .75rem; border-radius: 100px;
      margin-bottom: .85rem;
    }
    .section-tag.blue { background: var(--blue-tint); color: var(--navy-mid); border: .5px solid var(--blue-light); }
    .section-tag.green { background: var(--green-lt); color: var(--green); border: .5px solid #97C459; }
    .section-tag.red { background: var(--usa-red-lt); color: var(--usa-red); border: .5px solid #F09595; }
    .section-tag.purple { background: var(--purple-lt); color: var(--purple); border: .5px solid #AFA9EC; }
    /* Dark background variants */
    .section-tag.red-dark { background: rgba(163,45,45,.25); color: #ffb3b3; border: .5px solid rgba(163,45,45,.45); }
    .section-tag.blue-dark { background: rgba(55,138,221,.2); color: var(--blue-light); border: .5px solid rgba(55,138,221,.4); }

    .section-heading {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.25rem);
      font-weight: 400; color: var(--navy);
      line-height: 1.25; margin-bottom: .75rem;
    }
    .section-heading em { font-style: italic; color: var(--blue); }
    .section-sub { font-size: 17px; color: var(--text-muted); max-width: 580px; line-height: 1.7; }

    /* Dark-section overrides - higher specificity to win cascade */
    .usa-section .usa-content .section-heading { color: #ffffff !important; }
    .usa-section .usa-content .section-heading em { color: #B5D4F4 !important; }
    .usa-section .usa-content .section-sub { color: rgba(255,255,255,.7) !important; }
    .usa-section .section-tag.red-dark { background: rgba(163,45,45,.3); color: #ffb3b3; border: .5px solid rgba(163,45,45,.5); }

    /* ── About intro ── */
    .about-section { padding: var(--section-gap) 0; }
    .about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
    .about-img-wrap {
      background: var(--navy); border-radius: var(--radius-xl);
      overflow: hidden; aspect-ratio: 16/10;
      display: flex; align-items: center; justify-content: center; position: relative;
    }
    .img-placeholder {
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: .75rem; width: 100%; height: 100%;
      padding: 2rem;
    }
    .img-placeholder img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .img-placeholder svg { width: 48px; height: 48px; color: var(--blue); opacity: .4; }
    .img-placeholder p { font-size: 13px; color: var(--text-muted); text-align: center; }
    .product-img {
      width: 100%; height: 200px; object-fit: cover;
      padding: 0; background: var(--gray-50);
      border-radius: var(--radius-lg) var(--radius-lg) 0 0;
      display: block;
    }
    .about-points { list-style: none; margin: 1.5rem 0 2rem; display: flex; flex-direction: column; gap: .75rem; }
    .about-points li {
      display: flex; align-items: flex-start; gap: .75rem;
      font-size: 15px; color: var(--text);
    }
    .check-icon {
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--blue-tint); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0; margin-top: .15rem;
    }
    .check-icon svg { width: 11px; height: 11px; color: var(--navy-mid); }
    .about-points li strong { font-weight: 600; color: var(--navy); }

    /* ── Services ── */
    .services-section { padding: var(--section-gap) 0; background: var(--gray-50); }
    .services-header { text-align: center; margin-bottom: 3rem; }
    .services-header .section-sub { margin: 0 auto; }
    .services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 1.5rem; }
    .service-card {
      background: var(--white); border-radius: var(--radius-xl);
      border: 1px solid var(--gray-100);
      overflow: hidden;
      transition: box-shadow .2s, transform .2s;
      display: flex; flex-direction: column;
    }
    .service-card > .service-icon,
    .service-card > h3,
    .service-card > p,
    .service-card > .service-bullets,
    .service-card > .service-link,
    .service-card > div {
      padding-left: 1.5rem;
      padding-right: 1.5rem;
    }
    .service-card > div:last-of-type { padding-bottom: 1.75rem; }
    .service-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
    .service-icon {
      width: 48px; height: 48px; border-radius: var(--radius-md);
      display: flex; align-items: center; justify-content: center;
      margin-bottom: 1.1rem;
    }
    .service-icon svg { width: 24px; height: 24px; }
    .service-icon.blue { background: var(--blue-tint); color: var(--navy-mid); }
    .service-icon.green { background: var(--green-lt); color: var(--green); }
    .service-icon.purple { background: var(--purple-lt); color: var(--purple); }
    .service-icon.red { background: var(--usa-red-lt); color: var(--usa-red); }
    .service-card h3 { font-size: 17px; font-weight: 600; color: var(--navy); margin-bottom: .5rem; }
    .service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.65; flex: 1; }
    .service-bullets { list-style: none; margin: 1rem 0 1.25rem; display: flex; flex-direction: column; gap: .35rem; }
    .service-bullets li { font-size: 13px; color: var(--text); display: flex; align-items: center; gap: .5rem; }
    .service-bullets li::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: var(--blue); flex-shrink: 0; }
    .service-link {
      display: inline-flex; align-items: center; gap: .35rem;
      font-size: 13.5px; font-weight: 500; color: var(--navy-mid);
      margin-top: auto; padding-top: .75rem;
      border-top: 1px solid var(--gray-100);
      transition: gap .2s;
    }
    .service-link:hover { gap: .6rem; }
    .service-link svg { width: 14px; height: 14px; }

    /* USA badge on service cards */
    .usa-badge {
      display: inline-flex; align-items: center; gap: .3rem;
      font-size: 11px; font-weight: 500;
      background: var(--usa-red-lt); color: var(--usa-red);
      border: .5px solid #F09595; border-radius: 100px;
      padding: 2px 8px; margin-bottom: .75rem;
    }

    /* ── Process ── */
    .process-section { padding: var(--section-gap) 0; }
    .process-header { text-align: center; margin-bottom: 3rem; }
    .process-steps {
      display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
      gap: 0; position: relative;
    }
    .process-step {
      text-align: center; padding: 1.5rem 1rem;
      position: relative;
    }
    .process-step:not(:last-child)::after {
      content: '';
      position: absolute; top: 2.25rem; right: 0;
      width: 1px; height: 24px;
      background: var(--gray-100);
    }
    .step-num {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--navy); color: var(--white);
      font-size: 16px; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto .85rem;
    }
    .process-step h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: .35rem; }
    .process-step p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

    /* ── Local / brand section ── */
    /* ── Brand & credentials strip ── */
    .credentials-section {
      padding: 4rem 0;
      background: var(--navy);
      border-top: .5px solid rgba(255,255,255,.08);
    }
    .cred-section-label {
      text-align: center;
      font-family: var(--font-display);
      font-size: clamp(1.3rem, 2.5vw, 1.75rem);
      font-weight: 400;
      color: #ffffff;
      margin-bottom: .5rem;
    }
    .cred-section-sub {
      text-align: center;
      font-size: 15px;
      color: rgba(255,255,255,.55);
      margin-bottom: 2.5rem;
    }
    /* Row 1: certification badges — grid so they wrap cleanly on all screens */
    .cred-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
      gap: 1.25rem;
      margin-bottom: 2rem;
    }
    .cred-logo-item {
      display: flex; flex-direction: column; align-items: center;
      gap: .6rem;
      background: rgba(255,255,255,.05);
      border: .5px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      padding: 1.25rem .75rem;
      text-align: center;
    }
    .cred-logo-item img {
      height: 64px; width: auto; max-width: 100%;
      object-fit: contain;
      filter: drop-shadow(0 1px 4px rgba(0,0,0,.35));
    }
    .cred-logo-item span {
      font-size: 12px; font-weight: 500;
      color: rgba(255,255,255,.7);
      line-height: 1.35; text-align: center;
    }
    /* Row 2: brand logos + credential badges */
    .cred-row2 {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
      gap: 1rem;
      padding-top: 2rem;
      border-top: .5px solid rgba(255,255,255,.08);
    }
    .cred-brand-item {
      display: flex; flex-direction: column; align-items: center;
      gap: .6rem;
      background: rgba(255,255,255,.05);
      border: .5px solid rgba(255,255,255,.1);
      border-radius: var(--radius-lg);
      padding: 1.25rem 1rem;
      text-align: center;
    }
    .cred-brand-item img {
      height: 32px; width: auto; max-width: 160px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: .85;
    }
    .cred-brand-item span {
      font-size: 12px; font-weight: 500;
      color: rgba(255,255,255,.6);
    }
    .cred-badge {
      display: flex; align-items: flex-start; gap: .75rem;
      background: rgba(255,255,255,.07); border: .5px solid rgba(255,255,255,.14);
      border-radius: var(--radius-lg); padding: 1rem 1.1rem;
    }
    .cred-badge svg { width: 22px; height: 22px; color: var(--blue-light); flex-shrink: 0; margin-top: .1rem; }
    .cred-badge-text .bt1 { font-size: 14px; font-weight: 600; color: var(--white); line-height: 1.3; }
    .cred-badge-text .bt2 { font-size: 12px; color: rgba(255,255,255,.55); margin-top: .25rem; }
    .bbb-wrap { display:flex; flex-direction:column; align-items:center; gap:.6rem; }
    .bbb-wrap img { height: 52px; width: auto; display: block; }
    .bbb-wrap span { font-size: 12px; font-weight: 500; color: rgba(255,255,255,.7); }
    
    /* ── Page hero (inner pages) ── */
    .page-hero { background:var(--navy); padding:3.5rem 0; position:relative; overflow:hidden; }
    .page-hero::before { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 60% 80% at 80% 50%,rgba(55,138,221,.18),transparent); pointer-events:none; }
    .page-hero-inner { position:relative; max-width:700px; }
    .page-hero-eyebrow { display:inline-flex; align-items:center; gap:.45rem; background:rgba(255,255,255,.1); color:rgba(255,255,255,.85); font-size:12px; font-weight:500; padding:.3rem .9rem; border-radius:100px; border:.5px solid rgba(255,255,255,.2); margin-bottom:1rem; }
    .page-hero h1 { font-family:var(--font-display); font-size:clamp(1.75rem,4vw,2.75rem); font-weight:400; color:#fff; line-height:1.2; margin-bottom:.85rem; }
    .page-hero h1 em { font-style:italic; color:var(--blue-light); }
    .page-hero p { font-size:17px; color:rgba(255,255,255,.7); line-height:1.7; max-width:560px; margin-bottom:1.75rem; }
    .page-hero-ctas { display:flex; gap:.75rem; flex-wrap:wrap; }
    .breadcrumb { font-size:12px; color:rgba(255,255,255,.45); margin-bottom:1rem; display:flex; gap:.4rem; align-items:center; }
    .breadcrumb a { color:rgba(255,255,255,.55); }

    .btn-outline { display:inline-flex; align-items:center; gap:.45rem; background:transparent; color:var(--navy); font-size:15px; font-weight:500; padding:.7rem 1.4rem; border-radius:var(--radius-md); border:1.5px solid var(--navy); cursor:pointer; transition:background .2s,color .2s; }
    .btn-outline:hover { background:var(--navy); color:#fff; }

    .content-section { padding:var(--section-gap) 0; }
    .content-section.gray { background:var(--gray-50); }

    .two-col { display:grid; grid-template-columns:1fr 1fr; gap:3.5rem; align-items:start; }
    .two-col.center { align-items:center; }

    .card-grid { display:grid; grid-template-columns:repeat(auto-fit,minmax(240px,1fr)); gap:1.25rem; }
    .info-card { background:var(--white); border:1px solid var(--gray-100); border-radius:var(--radius-xl); padding:1.5rem; }
    .info-card-icon { width:44px; height:44px; border-radius:var(--radius-md); display:flex; align-items:center; justify-content:center; margin-bottom:1rem; }
    .info-card-icon svg { width:22px; height:22px; }
    .info-card-icon.blue { background:var(--blue-tint); color:var(--navy-mid); }
    .info-card-icon.green { background:var(--green-lt); color:var(--green); }
    .info-card-icon.purple { background:var(--purple-lt); color:var(--purple); }
    .info-card h3 { font-size:16px; font-weight:600; color:var(--navy); margin-bottom:.4rem; }
    .info-card p { font-size:14px; color:var(--text-muted); line-height:1.6; }

    .feature-list { list-style:none; display:flex; flex-direction:column; gap:.85rem; margin:1.5rem 0 2rem; }
    .feature-list li { display:flex; align-items:flex-start; gap:.75rem; font-size:15px; }
    .check { width:20px; height:20px; border-radius:50%; background:var(--blue-tint); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:.15rem; }
    .check svg { width:11px; height:11px; color:var(--navy-mid); }
    .feature-list li strong { font-weight:600; color:var(--navy); }

    .cta-strip { background:var(--navy); padding:4rem 0; text-align:center; }
    .cta-strip h2 { font-family:var(--font-display); font-size:clamp(1.5rem,3vw,2.1rem); color:#fff; margin-bottom:.65rem; }
    .cta-strip p { font-size:16px; color:rgba(255,255,255,.65); margin-bottom:1.75rem; }
    .cta-strip-btns { display:flex; gap:1rem; justify-content:center; flex-wrap:wrap; }

@media (max-width: 640px) {
      .cred-grid { grid-template-columns: repeat(2, 1fr); gap: .85rem; }
      .cred-row2 { grid-template-columns: 1fr; }
      .cred-logo-item img { height: 52px; }
    }
    @media (max-width: 380px) {
      .cred-grid { grid-template-columns: repeat(2, 1fr); }
    }

    /* ── Local assembly section ── */
    .usa-section {
      padding: var(--section-gap) 0;
      background: var(--navy);
      position: relative; overflow: hidden;
    }
    .usa-section::before {
      content: '';
      position: absolute; top: 0; right: 0;
      width: 50%; height: 100%;
      background: radial-gradient(ellipse 80% 80% at 80% 50%, rgba(163,45,45,.15), transparent);
      pointer-events: none;
    }
    .usa-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; position: relative; }
    .usa-pillars { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-top: 2rem; }
    .usa-pillar {
      background: rgba(255,255,255,.07); border: .5px solid rgba(255,255,255,.12);
      border-radius: var(--radius-md); padding: 1rem;
    }
    .usa-pillar svg { width: 20px; height: 20px; color: var(--blue-light); margin-bottom: .5rem; }
    .usa-pillar h3 { font-size: 13.5px; font-weight: 600; color: var(--white); margin-bottom: .25rem; }
    .usa-pillar p { font-size: 12.5px; color: rgba(255,255,255,.55); line-height: 1.5; }
    .usa-flag-card {
      background: rgba(255,255,255,.06); border: .5px solid rgba(255,255,255,.12);
      border-radius: var(--radius-xl); padding: 2rem;
      text-align: center;
    }
    .flag-graphic {
      width: 120px; height: 80px; margin: 0 auto 1.25rem;
      border-radius: var(--radius-sm); overflow: hidden;
      border: 2px solid rgba(255,255,255,.15);
    }
    .flag-graphic svg { width: 100%; height: 100%; }
    .usa-flag-card h3 { font-family: var(--font-display); font-size: 22px; color: var(--white); margin-bottom: .5rem; }
    .usa-flag-card p { font-size: 14px; color: rgba(255,255,255,.6); line-height: 1.6; }
    .central-il-tag {
      display: inline-flex; align-items: center; gap: .4rem;
      background: var(--green-lt); color: var(--green);
      font-size: 12px; font-weight: 500;
      padding: .3rem .85rem; border-radius: 100px;
      margin-top: 1rem;
    }
    .central-il-tag svg { width: 13px; height: 13px; }

    /* ── Privacy ── */
    .privacy-section { padding: var(--section-gap) 0; background: var(--gray-50); }
    .privacy-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
    .privacy-cards { display: flex; flex-direction: column; gap: 1rem; }
    .privacy-card {
      background: var(--white); border-radius: var(--radius-lg);
      border: 1px solid var(--gray-100); padding: 1.1rem 1.25rem;
      display: flex; align-items: flex-start; gap: 1rem;
    }
    .privacy-card-icon {
      width: 38px; height: 38px; border-radius: var(--radius-sm);
      background: var(--blue-tint); display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .privacy-card-icon svg { width: 18px; height: 18px; color: var(--navy-mid); }
    .privacy-card h3 { font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: .25rem; }
    .privacy-card p { font-size: 13px; color: var(--text-muted); line-height: 1.55; }

    /* ── Reviews ── */
    .reviews-section { padding: var(--section-gap) 0; }
    .reviews-header { text-align: center; margin-bottom: 3rem; }
    .reviews-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 1.25rem; }
    .review-card {
      background: var(--white); border: 1px solid var(--gray-100);
      border-radius: var(--radius-xl); padding: 1.5rem;
    }
    .review-stars { display: flex; gap: 2px; margin-bottom: .75rem; }
    .review-stars svg { width: 14px; height: 14px; color: #F59E0B; fill: #F59E0B; }
    .review-text { font-size: 14px; color: var(--text); line-height: 1.65; margin-bottom: 1rem; }
    .review-author { display: flex; align-items: center; gap: .65rem; }
    .review-avatar {
      width: 36px; height: 36px; border-radius: 50%;
      background: var(--blue-tint); color: var(--navy-mid);
      font-size: 13px; font-weight: 600;
      display: flex; align-items: center; justify-content: center;
      flex-shrink: 0;
    }
    .review-name { font-size: 13px; font-weight: 600; color: var(--navy); }
    .review-source { font-size: 11px; color: var(--text-muted); }

    /* ── Areas ── */
    .areas-section { padding: var(--section-gap) 0; background: var(--blue-tint); }
    .areas-header { text-align: center; margin-bottom: 2.5rem; }
    .areas-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: .75rem; }
    .area-pill {
      background: var(--white); border: 1px solid var(--blue-light);
      border-radius: var(--radius-md); padding: .6rem .85rem;
      font-size: 13.5px; font-weight: 500; color: var(--navy);
      text-align: center; display: flex; align-items: center; justify-content: center; gap: .35rem;
    }
    .area-pill.featured { background: var(--navy); color: var(--white); border-color: var(--navy); }
    .area-pill svg { width: 13px; height: 13px; }

    /* ── CTA strip ── */
    .cta-section {
      padding: 5rem 0;
      background: var(--navy);
      text-align: center;
    }
    .cta-section h2 {
      font-family: var(--font-display);
      font-size: clamp(1.6rem, 3vw, 2.25rem);
      color: var(--white); margin-bottom: .75rem;
    }
    .cta-section p { font-size: 17px; color: rgba(255,255,255,.65); margin-bottom: 2rem; }
    .cta-btns { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

    /* ── Footer ── */
    footer {
      background: var(--gray-800); color: rgba(255,255,255,.65);
      padding: 4rem 0 2rem;
    }
    .footer-grid {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 3rem; margin-bottom: 3rem;
    }
    .footer-brand .logo-text .line1 { color: var(--white); }
    .footer-brand .logo-text .line2 { color: rgba(255,255,255,.45); }
    .footer-brand p { font-size: 13.5px; color: rgba(255,255,255,.5); line-height: 1.65; margin: 1rem 0; }
    .footer-trust { display: flex; gap: .5rem; flex-wrap: wrap; margin-top: .5rem; }
    .ft-badge {
      display: inline-flex; align-items: center; gap: .3rem;
      font-size: 11px; font-weight: 500;
      padding: 2px 8px; border-radius: 100px;
    }
    .ft-badge.usa { background: rgba(163,45,45,.25); color: #ffb3b3; border: .5px solid rgba(163,45,45,.4); }
    .ft-badge.il { background: rgba(59,109,17,.2); color: #b3dda0; border: .5px solid rgba(59,109,17,.4); }
    .ft-badge.prv { background: rgba(83,74,183,.2); color: #c5c1f5; border: .5px solid rgba(83,74,183,.4); }
    .footer-col h3 { font-size: 13px; font-weight: 600; color: var(--white); margin-bottom: .85rem; letter-spacing: .04em; text-transform: uppercase; }
    .footer-col ul { list-style: none; display: flex; flex-direction: column; gap: .5rem; }
    .footer-col ul li a { font-size: 13.5px; color: rgba(255,255,255,.5); transition: color .15s; }
    .footer-col ul li a:hover { color: var(--white); }
    .footer-contact-item { display: flex; align-items: flex-start; gap: .6rem; margin-bottom: .6rem; }
    .footer-contact-item svg { width: 15px; height: 15px; margin-top: .2rem; flex-shrink: 0; opacity: .6; }
    .footer-contact-item span { font-size: 13px; color: rgba(255,255,255,.5); line-height: 1.5; }
    .footer-contact-item a { color: rgba(255,255,255,.7); }
    .footer-bottom {
      border-top: .5px solid rgba(255,255,255,.1);
      padding-top: 1.5rem;
      display: flex; justify-content: space-between; align-items: center;
      flex-wrap: wrap; gap: .75rem;
      font-size: 12px; color: rgba(255,255,255,.35);
    }
    .footer-bottom a { color: rgba(255,255,255,.45); }
    .footer-bottom a:hover { color: rgba(255,255,255,.7); }
    .privacy-note {
      display: flex; align-items: center; gap: .4rem;
      font-size: 11.5px; color: rgba(255,255,255,.35);
    }
    .privacy-note svg { width: 12px; height: 12px; opacity: .5; }

    /* ── Animations ── */
    @keyframes fadeDown { from { opacity:0; transform:translateY(-6px); } to { opacity:1; transform:translateY(0); } }
    @keyframes fadeUp   { from { opacity:0; transform:translateY(16px);  } to { opacity:1; transform:translateY(0); } }

    .fade-up { animation: fadeUp .5s ease forwards; opacity: 1; }
    .fade-up.d1 { animation-delay: .08s; }
    .fade-up.d2 { animation-delay: .16s; }
    .fade-up.d3 { animation-delay: .24s; }
    .fade-up.d4 { animation-delay: .32s; }
    /* Ensure content is always visible even if animation doesn't fire */
    .hero h1, .hero-sub, .hero-actions, .hero-trust, .hero-eyebrow { opacity: 1; }

    /* ── Responsive ── */
    @media (max-width: 900px) {
      :root { --section-gap: 4rem; }
      .two-col { grid-template-columns:1fr; }
      .hero-grid, .about-grid, .usa-grid, .privacy-grid { grid-template-columns: 1fr; }
      .hero-visual { display: none; }
      .usa-pillars { grid-template-columns: 1fr 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 640px) {
      :root { --section-gap: 3rem; }
      .page-hero { padding:2.5rem 0; }
      .topbar { display: none; }
      .nav-links { display: none; }
      .nav-cta { display: none; }
      .hamburger { display: block; }
      .hero { padding: 3rem 0 3rem; }
      .hero h1 { font-size: 2rem; }
      .hero-trust { gap: .85rem; }
      .hero-trust-item { font-size: 12px; }
      .trust-bar-inner { gap: 1rem; }
      .tb-divider { display: none; }
      .usa-pillars { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
      .footer-bottom { flex-direction: column; text-align: center; }
      .process-step:not(:last-child)::after { display: none; }
      .process-steps { grid-template-columns: 1fr 1fr; }
    }

    @media (max-width: 380px) {
      .hero-actions { flex-direction: column; }
      .btn-primary, .btn-ghost { justify-content: center; }
    }