
    /* ─────────────────────────────────────────
       RESET & BASE
    ───────────────────────────────────────── */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Inter', sans-serif;
      background: #FBF7ED;
      color: #212B36;
      font-size: 16px;
      line-height: 1.6;
    }
    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }

    /* ─────────────────────────────────────────
       TOKENS
    ───────────────��───────────────────────── */
    :root {
      --dark:      #13544E;
      --heading:   #095D40;
      --accent:    #6C9A40;
      --cta:       #008060;
      --lime:      #D3E162;
      --lime-lt:   #E4F577;
      --bg:        #FBF7ED;
      --alt-bg:    #E0EDD4;
      --text:      #212B36;
      --white:     #ffffff;
      --radius:    12px;
      --radius-lg: 20px;
      --shadow:    0 4px 24px rgba(9,93,64,.10);
      --shadow-lg: 0 8px 40px rgba(9,93,64,.14);
      --transition: .25s ease;
    
    /* ── Compatibility aliases for nav/footer CSS ── */
    --bg-alt:       #E0EDD4;
    --navy:         #212B36;
    --r-sm:         8px;
    --r-md:         12px;
    --r-lg:         20px;
    --shadow-sm:    0 2px 12px rgba(9,93,64,0.06);
    --ease:         all 0.25s ease;
    --font-display: 'Nunito', sans-serif;
    --font-body:    'Inter', sans-serif;
    }

    /* ─────────────────────────────────────────
       TYPOGRAPHY
    ───────────────────────────────────────── */
    h1,h2,h3,h4,h5 { color: var(--heading); font-weight: 800; line-height: 1.2; }
    h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
    h2 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
    h3 { font-size: clamp(1.2rem, 2.5vw, 1.6rem); }
    h4 { font-size: 1.1rem; }
    p  { color: #4A5568; line-height: 1.75; }

    /* ─────────────────────────────────────────
       UTILITY
    ───────────────────────────────────────── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section    { padding: 64px 0; }
    .section-alt { background: var(--alt-bg); }
    .section-dark { background: var(--dark); }

    .eyebrow {
      display: inline-flex; align-items: center; gap: 8px;
      background: var(--lime); color: var(--heading);
      font-size: .8rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
      padding: 6px 14px; border-radius: 100px; margin-bottom: 20px;
    }

    .badge {
      display: inline-block;
      background: var(--lime); color: var(--heading);
      font-size: .75rem; font-weight: 700; padding: 3px 10px; border-radius: 100px;
    }

    /* Buttons */
    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: .95rem; font-weight: 700;
      padding: 14px 28px; border-radius: var(--radius);
      cursor: pointer; transition: var(--transition); border: 2px solid transparent;
    }
    .btn-primary {
      background: var(--cta); color: var(--white);
    }
    .btn-primary:hover { background: var(--heading); transform: translateY(-2px); box-shadow: var(--shadow); }
    .btn-secondary {
      background: transparent; color: var(--cta); border-color: var(--cta);
    }
    .btn-secondary:hover { background: var(--cta); color: var(--white); transform: translateY(-2px); }
    .btn-white {
      background: var(--white); color: var(--heading);
    }
    .btn-white:hover { background: var(--lime); transform: translateY(-2px); }
    .btn-outline-white {
      background: transparent; color: var(--white); border-color: rgba(255,255,255,.5);
    }
    .btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: var(--white); }

    /* Section header */
    .section-header { text-align: center; max-width: 720px; margin: 0 auto 64px; }
    .section-header p { font-size: 1.05rem; margin-top: 16px; }

    /* ────────────────���────────────────────────
       1. ANNOUNCEMENT BAR
    ───────────────────────────────────────── */
    .announcement-bar {
      background: var(--heading); color: var(--white);
      text-align: center; padding: 10px 16px; font-size: .875rem; font-weight: 500;
      position: relative; z-index: 200;
    }
    .announcement-bar a { color: var(--lime); font-weight: 700; text-decoration: underline; }
    .announcement-bar .close-bar {
      position: absolute; right: 16px; top: 50%; transform: translateY(-50%);
      background: none; border: none; color: rgba(255,255,255,.7); cursor: pointer; font-size: 1rem;
    }

    /* ─────────────────────────────────────────
       2. NAVIGATION
    ───────────────────────────────────────── */
    .site-nav {
      background: var(--white); position: sticky; top: 0; z-index: 100;
      box-shadow: 0 1px 0 rgba(0,0,0,.08);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 72px; gap: 32px;
    }
    .nav-logo img { height: 40px; }
    .nav-logo-text {
      font-size: 1.4rem; font-weight: 900; color: var(--heading);
      display: flex; align-items: center; gap: 8px;
    }
    .nav-logo-text span { color: var(--cta); }
    .nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
    .nav-links > li > a {
      display: flex; align-items: center; gap: 5px;
      padding: 8px 14px; border-radius: 8px;
      font-size: .9rem; font-weight: 600; color: var(--text);
      transition: var(--transition);
    }
    .nav-links > li > a:hover, .nav-links > li > a.active { color: var(--cta); background: var(--alt-bg); }
    .nav-cta-wrap { display: flex; align-items: center; gap: 12px; }
    .nav-cta-wrap .btn { padding: 10px 20px; font-size: .875rem; }
    .mobile-toggle { display: none; background: none; border: none; font-size: 1.4rem; color: var(--text); cursor: pointer; }

    /* Breadcrumb */
    .breadcrumb-bar {
      background: var(--alt-bg); padding: 10px 0; border-bottom: 1px solid rgba(9,93,64,.1);
    }
    .breadcrumb {
      display: flex; align-items: center; gap: 8px; font-size: .825rem; color: #6B7280;
    }
    .breadcrumb a { color: var(--cta); font-weight: 600; }
    .breadcrumb a:hover { text-decoration: underline; }
    .breadcrumb i { font-size: .7rem; }

    /* ─────────────────────────────────────────
       3. PAGE HERO
    ───────────────────────────────────────── */
    .page-hero {
      background: var(--dark);
      padding: 64px 0 56px;
      position: relative; overflow: hidden;
    }
    .page-hero::before {
      content: '';
      position: absolute; inset: 0;
      background: url('https://images.unsplash.com/photo-1522071820081-009f0129c71c?w=1400&q=80') center/cover no-repeat;
      opacity: .12;
    }
    .page-hero::after {
      content: '';
      position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
      background: linear-gradient(to bottom, transparent, var(--bg));
    }
    .page-hero .container { position: relative; z-index: 1; text-align: center; max-width: 800px; }
    .page-hero h1 { color: var(--white); margin-bottom: 20px; }
    .page-hero h1 span { color: var(--lime); }
    .page-hero .hero-sub {
      color: rgba(255,255,255,.85); font-size: 1.15rem; max-width: 600px; margin: 0 auto 36px;
    }
    .hero-trust-row {
      display: flex; align-items: center; justify-content: center; gap: 24px;
      flex-wrap: wrap; margin-top: 12px;
    }
    .hero-trust-item {
      display: flex; align-items: center; gap: 8px;
      color: rgba(255,255,255,.8); font-size: .875rem; font-weight: 500;
    }
    .hero-trust-item i { color: var(--lime); }

    /* ─────────────────────────────────────────
       4. OUR STORY
    ───────────────────────────────────────── */
    .story-grid {
      display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
    }
    .story-content .eyebrow { margin-bottom: 16px; }
    .story-content h2 { margin-bottom: 20px; }
    .story-content p { margin-bottom: 16px; }
    .story-content .story-highlight {
      background: var(--alt-bg); border-left: 4px solid var(--cta);
      padding: 16px 20px; border-radius: 0 var(--radius) var(--radius) 0;
      margin: 24px 0; font-style: italic; color: var(--heading); font-weight: 600;
    }
    .story-image-wrap { position: relative; }
    .story-image-wrap img {
      width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg);
      object-fit: cover; aspect-ratio: 4/5;
    }
    .story-badge {
      position: absolute; bottom: 24px; left: -24px;
      background: var(--white); border-radius: var(--radius);
      padding: 16px 20px; box-shadow: var(--shadow-lg);
      display: flex; align-items: center; gap: 12px;
    }
    .story-badge-icon {
      width: 48px; height: 48px; background: var(--lime); border-radius: 50%;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.3rem; color: var(--heading);
    }
    .story-badge strong { display: block; font-weight: 800; color: var(--heading); font-size: 1.1rem; }
    .story-badge span { font-size: .8rem; color: #6B7280; }

    /* ─────────────────────────────────────────
       5. MISSION, VISION & VALUES
    ───────────────────────────────────────── */
    .mvv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 64px; }
    .mvv-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 36px; box-shadow: var(--shadow);
      border-top: 4px solid var(--cta);
    }
    .mvv-card .mvv-icon {
      width: 56px; height: 56px; background: var(--alt-bg);
      border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
      font-size: 1.5rem; color: var(--cta); margin-bottom: 20px;
    }
    .mvv-card h3 { margin-bottom: 12px; }
    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
    .value-item {
      background: var(--white); border-radius: var(--radius);
      padding: 28px 20px; text-align: center; box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .value-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .value-item .vi-icon {
      width: 52px; height: 52px; background: var(--lime);
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 1.25rem; color: var(--heading); margin: 0 auto 16px;
    }
    .value-item h4 { font-size: .95rem; color: var(--heading); margin-bottom: 8px; }
    .value-item p { font-size: .875rem; }

    /* ─────────────────────────────────────────
       6. STATS STRIP
    ───────────────────────────────────────── */
    .stats-strip { background: var(--dark); padding: 56px 0; }
    .stats-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 0; }
    .stat-item {
      text-align: center; padding: 20px 16px;
      border-right: 1px solid rgba(255,255,255,.12);
    }
    .stat-item:last-child { border-right: none; }
    .stat-number {
      font-size: clamp(2rem, 4vw, 2.8rem); font-weight: 900;
      color: var(--lime); line-height: 1; margin-bottom: 8px;
    }
    .stat-label { color: rgba(255,255,255,.75); font-size: .875rem; font-weight: 500; }

    /* ─────────────────────────────────────────
       7. MEET THE TEAM
    ───────────────────────────────────────── */
    .team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
    .team-card {
      background: var(--white); border-radius: var(--radius-lg);
      overflow: hidden; box-shadow: var(--shadow);
      transition: var(--transition);
    }
    .team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
    .team-card-img {
      width: 100%; aspect-ratio: 1/1; object-fit: cover;
      background: var(--alt-bg);
    }
    .team-card-img-placeholder {
      width: 100%; aspect-ratio: 1/1;
      background: linear-gradient(135deg, var(--dark) 0%, var(--accent) 100%);
      display: flex; align-items: center; justify-content: center;
      font-size: 3.5rem; color: rgba(255,255,255,.5);
    }
    .team-card-body { padding: 24px; }
    .team-card-body h3 { font-size: 1.15rem; margin-bottom: 4px; }
    .team-role { color: var(--cta); font-size: .875rem; font-weight: 700; margin-bottom: 10px; }
    .team-bio { font-size: .875rem; color: #6B7280; margin-bottom: 16px; }
    .team-linkedin {
      display: inline-flex; align-items: center; gap: 6px;
      color: var(--cta); font-size: .8rem; font-weight: 600;
      transition: var(--transition);
    }
    .team-linkedin:hover { color: var(--heading); }
    /* Founder spotlight */
    .founder-card {
      display: grid; grid-template-columns: 360px 1fr; gap: 0;
      background: var(--white); border-radius: var(--radius-lg);
      box-shadow: var(--shadow-lg); overflow: hidden;
    }
    .founder-img-col {
      display: flex; align-items: stretch;
      padding: 0; min-height: 420px;
    }
    .founder-img-col img {
      width: 100%; height: 100%; object-fit: cover; object-position: top center;
      display: block; border-radius: 0;
    }
    .founder-content { padding: 48px; }
    .founder-content .eyebrow { margin-bottom: 12px; }
    .founder-content h2 { font-size: 1.8rem; margin-bottom: 6px; }
    .founder-title { color: var(--cta); font-weight: 700; margin-bottom: 20px; font-size: 1rem; }
    .founder-content p { margin-bottom: 14px; }
    .founder-signature {
      font-family: 'Georgia', serif; font-style: italic;
      font-size: 1.4rem; color: var(--heading); margin-top: 24px; margin-bottom: 4px;
    }
    .founder-sig-label { font-size: .825rem; color: #9CA3AF; }
    .founder-social { display: flex; gap: 12px; margin-top: 20px; }
    .founder-social a {
      width: 38px; height: 38px; border-radius: 50%;
      background: var(--alt-bg); color: var(--heading);
      display: flex; align-items: center; justify-content: center;
      font-size: .9rem; transition: var(--transition);
    }
    .founder-social a:hover { background: var(--cta); color: var(--white); }

    /* ─────────────────────────────────────────
       8. WHY CHOOSE US
    ───────────────────────────────────────── */
    .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .why-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 32px; box-shadow: var(--shadow);
      transition: var(--transition); border: 2px solid transparent;
    }
    .why-card:hover { border-color: var(--cta); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .why-icon {
      width: 56px; height: 56px; border-radius: var(--radius);
      background: var(--alt-bg); display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem; color: var(--cta); margin-bottom: 20px;
    }
    .why-card h3 { font-size: 1.05rem; margin-bottom: 10px; }
    .why-card p { font-size: .875rem; }

    /* ─────────────────────────────────────────
       9. TECH STACK
    ───────────────────────────────────────── */
    .tech-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px; }
    .tech-item {
      background: var(--white); border-radius: var(--radius);
      padding: 24px 16px; text-align: center;
      box-shadow: var(--shadow); transition: var(--transition);
    }
    .tech-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
    .tech-icon {
      width: 56px; height: 56px; border-radius: var(--radius);
      background: var(--alt-bg); margin: 0 auto 12px;
      display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--cta);
    }
    .tech-item span { font-size: .875rem; font-weight: 600; color: var(--heading); }

    /* ─────────────────────────────────────────
       10. TESTIMONIALS
    ───────────────────────────────────────── */
    .testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
    .testimonial-card {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 32px; box-shadow: var(--shadow); position: relative;
    }
    .testimonial-card::before {
      content: '\201C'; font-size: 4rem; color: var(--lime);
      font-family: Georgia, serif; line-height: 1; display: block;
      margin-bottom: -8px; opacity: .8;
    }
    .testimonial-stars { color: #F59E0B; font-size: .875rem; margin-bottom: 14px; letter-spacing: 2px; }
    .testimonial-card blockquote { font-size: .925rem; color: #374151; margin-bottom: 20px; line-height: 1.7; }
    .testimonial-result {
      background: var(--alt-bg); border-radius: var(--radius);
      padding: 10px 14px; display: inline-flex; align-items: center; gap: 8px;
      font-size: .8rem; font-weight: 700; color: var(--heading); margin-bottom: 20px;
    }
    .testimonial-result i { color: var(--cta); }
    .t-author { display: flex; align-items: center; gap: 12px; }
    .t-avatar {
      width: 44px; height: 44px; border-radius: 50%;
      background: var(--dark); color: var(--lime);
      display: flex; align-items: center; justify-content: center;
      font-weight: 800; font-size: .875rem; flex-shrink: 0;
    }
    .t-author strong { display: block; font-size: .9rem; color: var(--heading); }
    .t-author span { font-size: .8rem; color: #9CA3AF; }

    /* ─────────────────────────────────────────
       11. CERTIFICATIONS
    ───────────────────────────────────────── */
    .cert-grid { display: flex; align-items: center; justify-content: center; gap: 32px; flex-wrap: wrap; }
    .cert-item {
      background: var(--white); border-radius: var(--radius-lg);
      padding: 28px 36px; box-shadow: var(--shadow);
      display: flex; align-items: center; gap: 16px; min-width: 200px;
    }
    .cert-icon {
      width: 56px; height: 56px; background: var(--alt-bg);
      border-radius: var(--radius); display: flex; align-items: center; justify-content: center;
      font-size: 1.6rem; color: var(--cta); flex-shrink: 0;
    }
    .cert-text strong { display: block; font-weight: 800; color: var(--heading); font-size: .95rem; }
    .cert-text span { font-size: .8rem; color: #6B7280; }

    /* ─────────────────────────────────────────
       12. FINAL CTA
    ───────────────────────────────────────── */
    .final-cta { background: var(--dark); padding: 64px 0; text-align: center; position: relative; overflow: hidden; }
    .final-cta::before {
      content: '';
      position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(211,225,98,.08) 0%, transparent 70%);
      pointer-events: none;
    }
    .final-cta .container { position: relative; z-index: 1; }
    .final-cta .availability-badge {
      display: inline-flex; align-items: center; gap: 8px;
      background: rgba(211,225,98,.15); border: 1px solid rgba(211,225,98,.3);
      color: var(--lime); font-size: .8rem; font-weight: 700; letter-spacing: .06em;
      padding: 6px 16px; border-radius: 100px; margin-bottom: 24px; text-transform: uppercase;
    }
    .final-cta .pulse-dot {
      width: 8px; height: 8px; background: var(--lime); border-radius: 50%;
      animation: pulse 2s infinite;
    }
    @keyframes pulse {
      0%,100% { opacity:1; transform:scale(1); }
      50%      { opacity:.5; transform:scale(1.4); }
    }
    .final-cta h2 { color: var(--white); margin-bottom: 16px; }
    .final-cta p  { color: rgba(255,255,255,.75); max-width: 560px; margin: 0 auto 36px; font-size: 1.05rem; }
    .final-cta-btns { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; }
    .final-cta-guarantees {
      display: flex; align-items: center; justify-content: center; gap: 32px;
      flex-wrap: wrap; margin-top: 36px;
    }
    .guarantee-item { display: flex; align-items: center; gap: 8px; color: rgba(255,255,255,.7); font-size: .875rem; }
    .guarantee-item i { color: var(--lime); }

    /* ─────────────────────────────────────────
       FOOTER  (reuses index.html structure)
    ───────────────────────────────────────── */
    .site-footer { background: var(--dark); padding: 72px 0 0; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; padding-bottom: 56px; }
    .footer-brand p { color: rgba(255,255,255,.65); font-size: .875rem; margin-top: 16px; max-width: 280px; }
    .footer-brand-logo { font-size: 1.4rem; font-weight: 900; color: var(--white); display: flex; align-items: center; gap: 8px; }
    .footer-brand-logo span { color: var(--lime); }
    .footer-social { display: flex; gap: 10px; margin-top: 20px; }
    .footer-social a {
      width: 36px; height: 36px; border-radius: 50%;
      background: rgba(255,255,255,.1); color: var(--white);
      display: flex; align-items: center; justify-content: center;
      font-size: .875rem; transition: var(--transition);
    }
    .footer-social a:hover { background: var(--lime); color: var(--heading); }
    .footer-col h4 { color: var(--white); font-size: .95rem; font-weight: 800; margin-bottom: 20px; }
    .footer-col ul li { margin-bottom: 10px; }
    .footer-col ul li a { color: rgba(255,255,255,.65); font-size: .875rem; transition: var(--transition); display: flex; align-items: center; gap: 8px; }
    .footer-col ul li a:hover { color: var(--lime); }
    .footer-col ul li a i { font-size: .75rem; }
    .footer-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 24px; }
    .footer-stat { background: rgba(255,255,255,.07); border-radius: var(--radius); padding: 14px; }
    .footer-stat strong { display: block; font-size: 1.25rem; font-weight: 900; color: var(--lime); }
    .footer-stat span { font-size: .75rem; color: rgba(255,255,255,.6); }
    .footer-trust { display: flex; flex-direction: column; gap: 10px; }
    .footer-trust-item {
      background: rgba(255,255,255,.07); border-radius: var(--radius);
      padding: 12px 14px; display: flex; align-items: center; gap: 10px;
      color: rgba(255,255,255,.75); font-size: .8rem;
    }
    .footer-trust-item i { color: var(--lime); }
    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 20px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
    }
    .footer-bottom p { color: rgba(255,255,255,.5); font-size: .825rem; }
    .footer-bottom ul { display: flex; gap: 20px; }
    .footer-bottom ul li a { color: rgba(255,255,255,.5); font-size: .825rem; transition: var(--transition); }
    .footer-bottom ul li a:hover { color: var(--lime); }

    /* ─────────────────────────────────────────
       RESPONSIVE
    ───────────────────────────────────────── */
    @media (max-width: 1024px) {
      .story-grid    { grid-template-columns: 1fr; gap: 40px; }
      .story-image-wrap { max-width: 420px; margin: 0 auto; }
      .story-badge   { left: 0; }
      .mvv-grid      { grid-template-columns: 1fr; }
      .values-grid   { grid-template-columns: repeat(2, 1fr); }
      .founder-card  { grid-template-columns: 1fr; }
      .founder-img-col { min-height: 320px; max-height: 380px; }
      .team-grid     { grid-template-columns: repeat(2, 1fr); }
      .why-grid      { grid-template-columns: repeat(2, 1fr); }
      .tech-grid     { grid-template-columns: repeat(4, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr 1fr; }
      .footer-grid   { grid-template-columns: 1fr 1fr; }
      .stats-row     { grid-template-columns: repeat(3, 1fr); }
    }
    @media (max-width: 768px) {
      .section { padding: 64px 0; }
      .nav-links, .nav-cta-wrap { display: none; }
      .mobile-toggle { display: block; }
      .team-grid     { grid-template-columns: 1fr; }
      .why-grid      { grid-template-columns: 1fr; }
      .values-grid   { grid-template-columns: 1fr 1fr; }
      .tech-grid     { grid-template-columns: repeat(3, 1fr); }
      .testimonials-grid { grid-template-columns: 1fr; }
      .stats-row     { grid-template-columns: repeat(2, 1fr); }
      .stat-item     { border-right: none; border-bottom: 1px solid rgba(255,255,255,.12); }
      .footer-grid   { grid-template-columns: 1fr; gap: 32px; }
      .final-cta-btns { flex-direction: column; align-items: stretch; }
      .final-cta-btns .btn { justify-content: center; }
      .cert-grid     { flex-direction: column; align-items: stretch; }
      .cert-item     { min-width: unset; }
    }
    @media (max-width: 480px) {
      .values-grid { grid-template-columns: 1fr; }
      .tech-grid   { grid-template-columns: repeat(2, 1fr); }
      h1 { font-size: 2rem; }
      h2 { font-size: 1.7rem; }
    }
  
    /* Fix for fixed nav+announcement bar */
    body { padding-top: 115px; }
  