    :root {
      --blue:      #2563EB;
      --blue2:     #3B82F6;
      --blue3:     #60A5FA;
      --blue-dim:  rgba(37,99,235,0.07);
      --blue-mid:  rgba(37,99,235,0.14);
      --white:     #FFFFFF;
      --bg:        #F3F7FF;
      --bg2:       #FFFFFF;
      --bg3:       #EBF2FF;
      --text:      #0F172A;
      --muted:     #64748B;
      --border:    rgba(37,99,235,0.18);
      --border2:   rgba(0,0,0,0.07);
      --red:       #EF4444;
      --green:     #10B981;
      --amber:     #F59E0B;
      --radius:    8px;
      --rad-lg:    16px;
      --shadow:    0 4px 24px rgba(37,99,235,0.07);
      --shadow-hv: 0 20px 56px rgba(37,99,235,0.15);
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body { background: var(--bg); color: var(--text); font-family: 'DM Sans', sans-serif; font-size: 14px; line-height: 1.6; overflow-x: hidden; }
    a { color: inherit; text-decoration: none; }
    button { cursor: pointer; border: none; background: none; font-family: inherit; }
    img { max-width: 100%; display: block; }

    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-track { background: var(--bg3); }
    ::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

    /* ── TOPBAR ──────────────────────────────────────────────── */
    .topbar { background: #4287f5; color: #fff; text-align: center; padding: 8px 20px; font-size: 12px; font-weight: 500; letter-spacing: .3px; position: relative; }
    .topbar span { opacity: .55; margin: 0 10px; }
    .topbar-close { position: absolute; right: 16px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.65); font-size: 18px; line-height: 1; }
    .topbar-close:hover { color: #fff; }

    /* ── HEADER ──────────────────────────────────────────────── */
    header { background: #fff; border-bottom: 1px solid var(--border2); position: sticky; top: 0; z-index: 1000; box-shadow: 0 1px 20px rgba(37,99,235,.06); }
    .header-inner { max-width: 1440px; margin: 0 auto; padding: 0 28px; display: flex; align-items: center; gap: 24px; height: 68px; }
    .logo { font-family: 'Cormorant Garamond', serif; font-size: 26px; font-weight: 700; color: var(--blue); flex-shrink: 0; display: flex; align-items: center; gap: 5px; letter-spacing: .5px; }
    .logo-dot { width: 7px; height: 7px; background: var(--blue); border-radius: 50%; margin-top: 2px; }
    .nav-main { display: flex; gap: 2px; }
    .nav-main a { padding: 7px 14px; font-size: 13px; font-weight: 500; color: var(--muted); border-radius: var(--radius); transition: all .2s; }
    .nav-main a:hover { color: var(--text); background: var(--bg3); }
    .nav-main a.active { color: var(--blue); background: var(--blue-dim); font-weight: 600; }
    .header-spacer { flex: 1; }
    .header-actions { display: flex; align-items: center; gap: 6px; }
    .icon-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; border: 1px solid var(--border2); color: var(--muted); transition: all .2s; position: relative; }
    .icon-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
    .icon-btn svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.8; }
    .hd-badge { position: absolute; top: 1px; right: 1px; min-width: 17px; height: 17px; background: var(--blue); color: #fff; font-size: 9px; font-weight: 700; border-radius: 50%; display: flex; align-items: center; justify-content: center; padding: 0 2px; }
    .btn-account { background: var(--blue); color: #fff; padding: 8px 20px; border-radius: 100px; font-size: 12px; font-weight: 600; display: flex; align-items: center; gap: 6px; transition: all .2s; }
    .btn-account:hover { background: var(--blue2); transform: translateY(-1px); }

    /* ── ABOUT HERO ──────────────────────────────────────────── */
    .about-hero { background: #fff; padding: 76px 28px 64px; position: relative; overflow: hidden; border-bottom: 1px solid var(--border2); }
    .about-hero::before { content: ''; position: absolute; top: -220px; right: -200px; width: 620px; height: 620px; border-radius: 50%; background: radial-gradient(circle, rgba(37,99,235,.07) 0%, transparent 70%); pointer-events: none; }
    .about-hero::after { content: ''; position: absolute; bottom: -180px; left: -100px; width: 460px; height: 460px; border-radius: 50%; background: radial-gradient(circle, rgba(96,165,250,.06) 0%, transparent 70%); pointer-events: none; }
    .ah-center { max-width: 760px; margin: 0 auto; position: relative; z-index: 1; text-align: center; }
    .hero-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-dim); border: 1px solid var(--border); color: var(--blue); font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 100px; margin-bottom: 22px; }
    .hero-tag::before { content: ''; width: 6px; height: 6px; background: var(--blue); border-radius: 50%; animation: pulse-dot 2s ease-in-out infinite; }
    @keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:.3} }
    .about-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: 58px; font-weight: 700; line-height: 1.08; margin-bottom: 18px; }
    .about-hero h1 em { color: var(--blue); font-style: italic; }
    .about-hero p { color: var(--muted); font-size: 16px; line-height: 1.75; max-width: 560px; margin: 0 auto; }

    .ah-stats { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; margin-top: 48px; }
    .ah-stat { text-align: center; }
    .ah-stat strong { font-family: 'Cormorant Garamond', serif; font-size: 34px; font-weight: 700; color: var(--blue); display: block; line-height: 1; }
    .ah-stat small { font-size: 11px; color: var(--muted); text-transform: uppercase; letter-spacing: .8px; }

    /* ── SECTION HEADERS ─────────────────────────────────────── */
    .sec { max-width: 1440px; margin: 0 auto; padding: 80px 28px; }
    .sec-tag { display: inline-flex; align-items: center; gap: 7px; background: var(--blue-dim); border: 1px solid var(--border); color: var(--blue); font-size: 10.5px; font-weight: 700; letter-spacing: 1.4px; text-transform: uppercase; padding: 5px 14px; border-radius: 100px; margin-bottom: 16px; }

    /* ── MISSION / STORY ─────────────────────────────────────── */
    .mission { background: #fff; }
    .mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
    .mission-text h2 { font-family: 'Cormorant Garamond', serif; font-size: 38px; font-weight: 700; line-height: 1.18; margin-bottom: 20px; }
    .mission-text h2 em { color: var(--blue); font-style: italic; }
    .mission-text p { color: var(--muted); font-size: 14.5px; line-height: 1.85; margin-bottom: 16px; }
    .mission-text p:last-of-type { margin-bottom: 0; }

    .mission-visual {
      position: relative; border-radius: var(--rad-lg);
      background: linear-gradient(150deg, var(--blue) 0%, #1D4ED8 100%);
      padding: 44px 40px; min-height: 360px;
      display: flex; flex-direction: column; justify-content: center;
      overflow: hidden; color: #fff;
    }
    .mv-circle1 { position: absolute; top: -60px; right: -60px; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,255,255,.07); }
    .mv-circle2 { position: absolute; bottom: -90px; left: -50px; width: 260px; height: 260px; border-radius: 50%; background: rgba(255,255,255,.05); }
    .mv-quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 80px; line-height: 1; opacity: .35; margin-bottom: -16px; position: relative; z-index: 1; }
    .mv-quote { font-family: 'Cormorant Garamond', serif; font-size: 24px; font-weight: 500; line-height: 1.45; margin-bottom: 24px; position: relative; z-index: 1; }
    .mv-author { display: flex; align-items: center; gap: 12px; position: relative; z-index: 1; }
    .mv-avatar { width: 44px; height: 44px; border-radius: 50%; background: rgba(255,255,255,.15); border: 1px solid rgba(255,255,255,.3); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 14px; flex-shrink: 0; }
    .mv-author-name { font-weight: 700; font-size: 13px; }
    .mv-author-role { font-size: 11.5px; opacity: .75; }

    /* ── VALUES ──────────────────────────────────────────────── */
    .values { background: var(--bg); }
    .sec-head { max-width: 600px; margin-bottom: 44px; }
    .sec-head h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; margin-bottom: 12px; line-height: 1.15; }
    .sec-head p { color: var(--muted); font-size: 14.5px; line-height: 1.7; }

    .values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
    .value-card { background: #fff; border: 1px solid var(--border2); border-radius: var(--rad-lg); padding: 30px 26px; transition: all .3s; }
    .value-card:hover { border-color: var(--border); transform: translateY(-5px); box-shadow: var(--shadow-hv); }
    .vc-icon { width: 52px; height: 52px; border-radius: 14px; background: var(--blue-dim); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
    .vc-icon svg { width: 24px; height: 24px; fill: none; stroke: var(--blue); stroke-width: 1.8; }
    .value-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
    .value-card p { color: var(--muted); font-size: 13px; line-height: 1.7; }

    /* ── HOW WE WORK ─────────────────────────────────────────── */
    .howwe { background: #fff; }
    .how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; border: 1px solid var(--border2); border-radius: var(--rad-lg); overflow: hidden; }
    .how-item { padding: 32px 26px; position: relative; border-right: 1px solid var(--border2); }
    .how-item:last-child { border-right: none; }
    .how-num { font-family: 'Cormorant Garamond', serif; font-size: 42px; font-weight: 700; color: var(--blue-dim); -webkit-text-stroke: 1.5px var(--blue); color: transparent; display: block; margin-bottom: 14px; line-height: 1; }
    .how-item h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 8px; }
    .how-item p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

    /* ── TIMELINE ────────────────────────────────────────────── */
    .timeline-sec { background: var(--bg); }
    .timeline { max-width: 760px; margin: 0 auto; position: relative; padding-left: 32px; }
    .timeline::before { content: ''; position: absolute; left: 5px; top: 6px; bottom: 6px; width: 2px; background: var(--border); }
    .tl-item { position: relative; padding-bottom: 36px; }
    .tl-item:last-child { padding-bottom: 0; }
    .tl-dot { position: absolute; left: -32px; top: 2px; width: 12px; height: 12px; border-radius: 50%; background: var(--blue); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--blue); }
    .tl-item.future .tl-dot { background: #fff; box-shadow: 0 0 0 2px var(--border); }
    .tl-date { font-size: 11px; font-weight: 700; color: var(--blue); letter-spacing: .8px; text-transform: uppercase; margin-bottom: 6px; }
    .tl-card { background: #fff; border: 1px solid var(--border2); border-radius: var(--radius); padding: 18px 22px; }
    .tl-item.future .tl-card { border-style: dashed; background: transparent; }
    .tl-card h4 { font-size: 14.5px; font-weight: 700; margin-bottom: 6px; display: flex; align-items: center; gap: 8px; }
    .tl-badge { font-size: 9.5px; font-weight: 700; letter-spacing: .6px; text-transform: uppercase; padding: 2px 8px; border-radius: 100px; }
    .tl-badge.today { background: var(--blue); color: #fff; }
    .tl-badge.soon { background: var(--bg3); color: var(--blue); border: 1px solid var(--border); }
    .tl-card p { font-size: 12.5px; color: var(--muted); line-height: 1.65; }

    /* ── TEAM ────────────────────────────────────────────────── */
    .team { background: #fff; }
    .team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
    .team-card { background: var(--bg); border-radius: var(--rad-lg); padding: 30px 22px; text-align: center; transition: all .3s; border: 1px solid transparent; }
    .team-card:hover { transform: translateY(-5px); border-color: var(--border); background: #fff; box-shadow: var(--shadow-hv); }
    .team-avatar { width: 76px; height: 76px; border-radius: 50%; margin: 0 auto 18px; display: flex; align-items: center; justify-content: center; font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 26px; color: #fff; }
    .team-card h4 { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
    .team-role { font-size: 11.5px; color: var(--blue); font-weight: 600; margin-bottom: 12px; text-transform: uppercase; letter-spacing: .5px; }
    .team-bio { font-size: 12.5px; color: var(--muted); line-height: 1.6; margin-bottom: 16px; }
    .team-social { display: flex; align-items: center; justify-content: center; gap: 8px; }
    .ts-btn { width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--muted); transition: all .2s; }
    .ts-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
    .ts-btn svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }

    /* ── TRUST STRIP ─────────────────────────────────────────── */
    .stats-strip { background: var(--blue); padding: 32px 28px; }
    .stats-inner { max-width: 1440px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; gap: 32px; flex-wrap: wrap; }
    .stat-it { display: flex; align-items: center; gap: 12px; color: rgba(255,255,255,.9); flex: 1; min-width: 220px; }
    .stat-it .si-ico { width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
    .stat-it svg { width: 18px; height: 18px; fill: none; stroke: #fff; stroke-width: 2; }
    .stat-it strong { color: #fff; font-size: 13.5px; font-weight: 700; display: block; }
    .stat-it span.sub { font-size: 11.5px; opacity: .75; }

    /* ── CTA ─────────────────────────────────────────────────── */
    .cta-sec { background: var(--bg); }
    .cta-box {
      max-width: 1440px; margin: 0 auto; padding: 0 28px;
    }
    .cta-inner {
      background: linear-gradient(135deg, #1E3A8A 0%, var(--blue) 55%, var(--blue3) 100%);
      border-radius: var(--rad-lg); padding: 64px 48px;
      text-align: center; position: relative; overflow: hidden; color: #fff;
    }
    .cta-inner::before { content: '✦'; position: absolute; font-size: 240px; opacity: .06; top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none; }
    .cta-inner h2 { font-family: 'Cormorant Garamond', serif; font-size: 36px; font-weight: 700; margin-bottom: 14px; position: relative; z-index: 1; }
    .cta-inner p { font-size: 14.5px; opacity: .9; max-width: 480px; margin: 0 auto 30px; line-height: 1.7; position: relative; z-index: 1; }
    .cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; position: relative; z-index: 1; }
    .btn-cta-primary { background: #fff; color: var(--blue); padding: 14px 30px; border-radius: 100px; font-weight: 700; font-size: 13px; transition: all .2s; display: inline-flex; align-items: center; gap: 8px; }
    .btn-cta-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.18); }
    .btn-cta-outline { border: 1.5px solid rgba(255,255,255,.5); color: #fff; padding: 14px 30px; border-radius: 100px; font-weight: 600; font-size: 13px; transition: all .2s; }
    .btn-cta-outline:hover { border-color: #fff; background: rgba(255,255,255,.1); }

    /* ── CART SIDEBAR ────────────────────────────────────────── */
    .overlay { position: fixed; inset: 0; background: rgba(0,0,0,.5); z-index: 1999; opacity: 0; pointer-events: none; transition: opacity .3s; backdrop-filter: blur(4px); }
    .overlay.on { opacity: 1; pointer-events: all; }
    .cart-sb { position: fixed; right: 0; top: 0; bottom: 0; width: 420px; background: #fff; border-left: 1px solid var(--border2); z-index: 2000; transform: translateX(100%); transition: transform .35s cubic-bezier(.4,0,.2,1); display: flex; flex-direction: column; }
    .cart-sb.on { transform: translateX(0); }
    .cart-hd { padding: 24px; border-bottom: 1px solid var(--border2); display: flex; align-items: center; justify-content: space-between; }
    .cart-hd h3 { font-family: 'Cormorant Garamond', serif; font-size: 22px; font-weight: 700; }
    .cart-cls { width: 34px; height: 34px; border-radius: var(--radius); border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--muted); }
    .cart-cls:hover { border-color: var(--red); color: var(--red); }
    .cart-cls svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
    .cart-body { flex: 1; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; }
    .cart-empty-st { display: flex; flex-direction: column; align-items: center; justify-content: center; height: 100%; color: var(--muted); gap: 12px; }
    .cart-empty-st span { font-size: 48px; }
    .ci { background: var(--bg); border: 1px solid var(--border2); border-radius: 12px; padding: 14px; display: flex; gap: 12px; }
    .ci-img { width: 60px; height: 60px; border-radius: 8px; background: var(--bg3); display: flex; align-items: center; justify-content: center; font-size: 26px; flex-shrink: 0; }
    .ci-info { flex: 1; min-width: 0; }
    .ci-name { font-size: 13px; font-weight: 500; margin-bottom: 3px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
    .ci-price { font-family: 'Cormorant Garamond', serif; font-size: 17px; font-weight: 700; color: var(--blue); }
    .ci-qty { display: flex; align-items: center; gap: 8px; margin-top: 8px; }
    .qb { width: 26px; height: 26px; border-radius: 6px; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 600; transition: all .15s; }
    .qb:hover { border-color: var(--blue); color: var(--blue); }
    .qn { font-size: 13px; font-weight: 600; min-width: 22px; text-align: center; }
    .del { width: 28px; height: 28px; border-radius: var(--radius); display: flex; align-items: center; justify-content: center; color: var(--muted); align-self: flex-start; }
    .del:hover { color: var(--red); }
    .del svg { width: 13px; height: 13px; fill: none; stroke: currentColor; stroke-width: 2; }
    .cart-ft { padding: 20px; border-top: 1px solid var(--border2); }
    .cart-tots { margin-bottom: 16px; }
    .ct-row { display: flex; justify-content: space-between; font-size: 13px; margin-bottom: 8px; }
    .ct-row .lbl { color: var(--muted); }
    .ct-row.ttl { font-size: 15px; font-weight: 600; padding-top: 10px; border-top: 1px solid var(--border2); margin-top: 10px; }
    .ct-row.ttl .amt { font-family: 'Cormorant Garamond', serif; font-size: 22px; color: var(--blue); }
    .btn-ckout { width: 100%; background: var(--blue); color: #fff; padding: 14px; border-radius: 100px; font-weight: 700; font-size: 14px; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all .2s; margin-bottom: 10px; }
    .btn-ckout:hover { background: var(--blue2); }
    .btn-cont { width: 100%; background: none; border: 1px solid var(--border2); color: var(--muted); padding: 11px; border-radius: 100px; font-size: 12px; }
    .btn-cont:hover { border-color: var(--blue); color: var(--blue); }

    /* ── TOAST ───────────────────────────────────────────────── */
    .toast { position: fixed; bottom: 28px; left: 50%; transform: translateX(-50%) translateY(80px); background: #0F172A; border: 1px solid rgba(255,255,255,.1); color: #fff; padding: 12px 22px; border-radius: 100px; font-size: 13px; font-weight: 500; z-index: 3000; display: flex; align-items: center; gap: 10px; transition: transform .3s cubic-bezier(.4,0,.2,1); white-space: nowrap; pointer-events: none; }
    .toast.on { transform: translateX(-50%) translateY(0); }
    .t-ico { width: 20px; height: 20px; background: var(--green); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 11px; flex-shrink: 0; }

    /* ── BACK TO TOP ─────────────────────────────────────────── */
    .btt { position: fixed; bottom: 28px; right: 28px; width: 44px; height: 44px; background: var(--blue); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 500; opacity: 0; transform: translateY(20px); transition: all .3s; }
    .btt.on { opacity: 1; transform: translateY(0); }
    .btt:hover { background: var(--blue2); }
    .btt svg { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 2.5; }

    /* ── FOOTER ──────────────────────────────────────────────── */
  footer { background: #fff; border-top: 1px solid var(--border2); padding: 60px 24px 0; }
  .footer-grid { max-width: 1400px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 60px; padding-bottom: 48px; border-bottom: 1px solid var(--border2); }
  .footer-brand .logo { font-size: 24px; margin-bottom: 14px; }
  .footer-brand p { color: var(--muted); font-size: 13px; line-height: 1.7; max-width: 240px; margin-bottom: 20px; }
  .social-links { display: flex; gap: 8px; }
  .social-btn { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--border2); display: flex; align-items: center; justify-content: center; color: var(--muted); font-size: 14px; transition: all 0.2s; }
  .social-btn:hover { border-color: var(--blue); color: var(--blue); background: var(--blue-dim); }
  .footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text); margin-bottom: 18px; }
  .footer-links { display: flex; flex-direction: column; gap: 10px; }
  .footer-links a { font-size: 13px; color: var(--muted); transition: color 0.2s; }
  .footer-links a:hover { color: var(--blue); }
  .footer-bottom { max-width: 1400px; margin: 0 auto; padding: 20px 0; display: flex; align-items: center; justify-content: space-between; }
  .footer-bottom p { font-size: 12px; color: var(--muted); }
  .payment-icons { display: flex; gap: 8px; }
  .pay-icon { background: #fff; border: 1px solid var(--border2); border-radius: 10px; padding: 4px 10px; font-size: 11px; font-weight: 600; color: var(--muted); }

    /* ── RESPONSIVE ──────────────────────────────────────────── */
    @media (max-width: 1100px) {
      .values-grid { grid-template-columns: repeat(2, 1fr); }
      .how-grid { grid-template-columns: repeat(2, 1fr); }
      .how-item { border-bottom: 1px solid var(--border2); }
      .how-item:nth-child(2n) { border-right: none; }
      .team-grid { grid-template-columns: repeat(2, 1fr); }
    }
    @media (max-width: 900px) {
      .mission-grid { grid-template-columns: 1fr; gap: 40px; }
      .mission-visual { min-height: 280px; }
    }
    @media (max-width: 768px) {
      .nav-main { display: none; }
      .about-hero { padding: 52px 20px 44px; }
      .about-hero h1 { font-size: 38px; }
      .ah-stats { gap: 24px; }
      .sec { padding: 56px 20px; }
      .sec-head h2 { font-size: 28px; }
      .values-grid { grid-template-columns: 1fr; }
      .how-grid { grid-template-columns: 1fr; }
      .how-item { border-right: none !important; }
      .team-grid { grid-template-columns: 1fr; }
      .stats-inner { flex-direction: column; align-items: flex-start; }
      .cta-inner { padding: 44px 24px; }
      .cta-inner h2 { font-size: 28px; }
      .ft-inner { flex-direction: column; text-align: center; }
      .ft-links { justify-content: center; }
      .cart-sb { width: 100%; }
      .timeline { padding-left: 26px; }
    }
