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

  :root {
    --teal:        #4dc8c8;
    --teal-dark:   #2aa8a8;
    --teal-deeper: #1a8888;
    --teal-light:  #e8f8f8;
    --navy:        #0d3d5c;
    --orange:      #f5a623;
    --orange-dark: #d98c10;
    --orange-light:#fff4e0;
    --white:       #ffffff;
    --cream:       #f7fdfd;
    --muted:       #5d7f8c;
    --border:      rgba(77,200,200,0.2);
    --text:        #1a3d4f;
  }

  html { scroll-behavior: smooth; }
  body { font-family: 'Nunito', sans-serif; background: var(--white); color: var(--text); overflow-x: hidden; }

  /* ====================== NAV ====================== */
  nav { position:fixed; top:0; left:0; right:0; z-index:200; padding:0 48px; height:72px; display:flex; align-items:center; justify-content:space-between; background:rgba(255,255,255,0.97); backdrop-filter:blur(12px); border-bottom:1px solid var(--border); }
  .nav-logo { display:flex; align-items:center; gap:10px; }
  .nav-logo img { height:38px; }
  .nav-badge { background:var(--teal); color:var(--white); font-size:10px; font-weight:900; letter-spacing:0.1em; padding:3px 10px; border-radius:100px; text-transform:uppercase; }
  .nav-links { display:flex; gap:32px; list-style:none; align-items:center; }
  .nav-links > li { position:relative; }
  .nav-links a { text-decoration:none; color:var(--navy); font-size:14px; font-weight:800; transition:color 0.2s; }
  .nav-links a:hover { color:var(--teal-dark); }
  .nav-login { color:var(--muted) !important; font-weight:700 !important; }
  .nav-cta { background:var(--orange) !important; color:var(--white) !important; padding:11px 26px; border-radius:100px; font-weight:900 !important; transition:transform 0.2s,box-shadow 0.2s !important; box-shadow:0 4px 18px rgba(245,166,35,0.4); font-size:14px !important; }
  .nav-cta:hover { transform:translateY(-2px); box-shadow:0 8px 28px rgba(245,166,35,0.5) !important; }
  .nav-trigger { display:flex; align-items:center; gap:5px; background:none; border:none; cursor:pointer; color:var(--navy); font-size:14px; font-weight:800; font-family:'Nunito',sans-serif; padding:0; transition:color 0.2s; }
  .nav-trigger:hover { color:var(--teal-dark); }
  .nav-trigger svg { transition:transform 0.25s; }
  .nav-has-mega.open .nav-trigger { color:var(--teal-dark); }
  .nav-has-mega.open .nav-trigger svg { transform:rotate(180deg); }
  .mega-menu { display:none; position:fixed; top:72px; left:0; right:0; background:var(--white); border-bottom:1px solid var(--border); box-shadow:0 16px 48px rgba(13,61,92,0.1); z-index:199; animation:megaIn 0.2s ease forwards; }
  @keyframes megaIn { from{opacity:0;transform:translateY(-8px)} to{opacity:1;transform:translateY(0)} }
  .nav-has-mega.open .mega-menu { display:block; }
  .mega-inner { max-width:1240px; margin:0 auto; padding:36px 48px 40px; }
  .mega-label { font-size:10px; font-weight:900; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); margin-bottom:20px; display:block; }
  .mega-solutions { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
  .mega-sol-item { display:flex; align-items:flex-start; gap:14px; padding:16px 18px; border-radius:16px; text-decoration:none; color:inherit; border:1.5px solid transparent; transition:background 0.2s,border-color 0.2s; }
  .mega-sol-item:hover { background:var(--cream); border-color:var(--border); }
  .mega-sol-icon { width:42px; height:42px; border-radius:12px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
  .msi-teal { background:var(--teal-light); }
  .msi-dark { background:rgba(13,61,92,0.08); }
  .mega-sol-name { font-size:14px; font-weight:900; color:var(--navy); margin-bottom:3px; }
  .mega-sol-desc { font-size:12px; color:var(--muted); font-weight:700; line-height:1.5; }
  .mega-sol-new { display:inline-flex; background:var(--orange); color:var(--white); padding:1px 7px; border-radius:100px; font-size:9px; font-weight:900; letter-spacing:0.08em; text-transform:uppercase; margin-left:6px; vertical-align:middle; }
  .mega-pourqui { display:grid; grid-template-columns:repeat(3,1fr); gap:14px; max-width:720px; }
  .mega-pq-item { display:flex; align-items:center; gap:12px; padding:14px 18px; border-radius:14px; text-decoration:none; color:inherit; border:1.5px solid transparent; transition:background 0.2s,border-color 0.2s; }
  .mega-pq-item:hover { background:var(--cream); border-color:var(--border); }
  .mega-pq-icon { width:36px; height:36px; border-radius:10px; flex-shrink:0; background:var(--teal-light); display:flex; align-items:center; justify-content:center; font-size:18px; }
  .mega-pq-name { font-size:14px; font-weight:900; color:var(--navy); }
  .mega-pq-desc { font-size:12px; color:var(--muted); font-weight:700; }
  .mega-overlay { display:none; position:fixed; inset:72px 0 0 0; background:rgba(13,61,92,0.15); z-index:198; }
  .mega-overlay.visible { display:block; }

  /* ====================== SHARED ====================== */
  .eyebrow { display:inline-flex; align-items:center; gap:8px; background:var(--teal-light); color:var(--teal-deeper); padding:6px 14px; border-radius:100px; font-size:11px; font-weight:900; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:18px; }
  .eyebrow.or-tag { background:var(--orange-light); color:var(--orange-dark); }
  h2.stitle { font-weight:900; font-size:clamp(30px,4vw,48px); color:var(--navy); line-height:1.12; letter-spacing:-0.02em; margin-bottom:14px; }
  .slead { font-size:16px; color:var(--muted); line-height:1.75; font-weight:700; }
  .btn-orange { background:var(--orange); color:var(--white); padding:15px 34px; border-radius:100px; font-size:15px; font-weight:900; text-decoration:none; transition:transform 0.2s,box-shadow 0.2s; box-shadow:0 6px 24px rgba(245,166,35,0.45); display:inline-block; }
  .btn-orange:hover { transform:translateY(-3px); box-shadow:0 10px 36px rgba(245,166,35,0.55); }
  .btn-teal-outline { color:var(--teal-dark); font-size:15px; font-weight:900; text-decoration:none; display:inline-flex; align-items:center; gap:8px; padding:14px 26px; border-radius:100px; border:2px solid rgba(77,200,200,0.4); transition:border-color 0.2s,color 0.2s; }
  .btn-teal-outline:hover { border-color:var(--teal); color:var(--teal-dark); }

  /* ====================== HERO ====================== */
  .hero-section { padding:120px 48px 80px; background:var(--white); position:relative; overflow:hidden; }
  .hero-section::before { content:''; position:absolute; right:-80px; top:-80px; width:560px; height:560px; border-radius:50%; background:radial-gradient(circle, rgba(245,166,35,0.09) 0%, transparent 70%); pointer-events:none; }
  .hero-inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1.1fr 0.9fr; gap:80px; align-items:center; position:relative; z-index:1; animation:fadeIn 0.8s ease forwards; }
  @keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

  .breadcrumb { display:flex; align-items:center; gap:8px; font-size:13px; color:var(--muted); margin-bottom:24px; font-weight:700; }
  .breadcrumb a { color:var(--muted); text-decoration:none; transition:color 0.2s; }
  .breadcrumb a:hover { color:var(--teal-dark); }
  .breadcrumb span { color:var(--teal-dark); font-weight:900; }

  .hero-pill { display:inline-flex; align-items:center; gap:8px; background:var(--orange-light); color:var(--orange-dark); padding:7px 16px; border-radius:100px; font-size:12px; font-weight:900; letter-spacing:0.08em; text-transform:uppercase; margin-bottom:24px; border:1px solid rgba(245,166,35,0.3); }
  .hero-pill-dot { width:7px; height:7px; border-radius:50%; background:var(--orange); display:block; animation:pulse 2s infinite; }
  @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.5)} }

  h1 { font-size:clamp(38px,4.5vw,60px); font-weight:900; line-height:1.1; color:var(--navy); margin-bottom:20px; letter-spacing:-0.02em; }
  h1 .hl-orange { color:var(--orange-dark); }
  h1 .hl-teal { color:var(--teal-dark); }

  .hero-sub { font-size:17px; line-height:1.75; color:var(--muted); margin-bottom:28px; max-width:480px; font-weight:700; }

  .hero-reassurance { display:flex; align-items:flex-start; gap:16px; margin-bottom:36px; padding:16px 20px; background:var(--orange-light); border-radius:14px; border:1px solid rgba(245,166,35,0.3); max-width:480px; }
  .hero-reassurance-icon { font-size:26px; flex-shrink:0; }
  .hero-reassurance-text strong { display:block; font-size:15px; font-weight:900; color:var(--navy); margin-bottom:4px; }
  .hero-reassurance-text span { font-size:13px; color:var(--muted); font-weight:700; }

  .hero-actions { display:flex; gap:14px; align-items:center; flex-wrap:wrap; }

  /* Hero visual */
  .hero-visual { display:flex; align-items:center; justify-content:center; position:relative; }
  .hero-icon-card { background:var(--navy); border-radius:32px; padding:52px; display:flex; align-items:center; justify-content:center; box-shadow:0 40px 100px rgba(13,61,92,0.2); position:relative; overflow:hidden; }
  .hero-icon-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(245,166,35,0.15),transparent); pointer-events:none; }
  .hero-icon-card svg { position:relative; z-index:1; }
  .hero-stat { position:absolute; background:var(--white); border-radius:18px; padding:14px 20px; box-shadow:0 8px 32px rgba(13,61,92,0.12); border:1.5px solid rgba(77,200,200,0.2); animation:floatAnim 3s ease-in-out infinite; white-space:nowrap; }
  @keyframes floatAnim { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-7px)} }
  .hero-stat.s-a { bottom:10px; left:-30px; display:flex; align-items:center; gap:12px; animation-delay:0s; }
  .hero-stat.s-b { top:10px; right:-30px; text-align:center; animation-delay:1.5s; }
  .hstat-icon { width:40px; height:40px; border-radius:12px; background:var(--orange-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .hstat-val { font-size:22px; font-weight:900; color:var(--navy); line-height:1; }
  .hstat-lbl { font-size:11px; color:var(--muted); font-weight:700; margin-top:2px; }
  .hstat-big { font-size:26px; font-weight:900; color:var(--orange-dark); line-height:1; }
  .hstat-sub { font-size:11px; color:var(--muted); font-weight:700; margin-top:3px; }

  /* ====================== STATS ====================== */
  .stats-strip { background:var(--navy); padding:48px; }
  .stats-inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(3,1fr); }
  .stat-cell { text-align:center; padding:0 20px; border-right:1px solid rgba(255,255,255,0.1); }
  .stat-cell:last-child { border-right:none; }
  .stat-val { font-size:clamp(36px,4.5vw,54px); font-weight:900; color:var(--teal); display:block; line-height:1; }
  .stat-val.or { color:var(--orange); }
  .stat-lbl { font-size:13px; color:rgba(255,255,255,0.5); margin-top:8px; font-weight:700; }

  /* ====================== HOW IT WORKS ====================== */
  .how-section { background:var(--cream); padding:100px 48px; }
  .how-inner { max-width:1240px; margin:0 auto; }
  .how-header { text-align:center; margin-bottom:64px; }
  .how-steps { display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
  .how-step { background:var(--white); border-radius:20px; padding:32px 24px; text-align:center; border:1.5px solid var(--border); transition:transform 0.25s,box-shadow 0.25s; }
  .how-step:hover { transform:translateY(-4px); box-shadow:0 16px 40px rgba(13,61,92,0.08); }
  .how-step-icon { font-size:36px; margin-bottom:18px; display:block; }
  .how-step-num { width:36px; height:36px; border-radius:50%; margin:0 auto 16px; background:var(--orange-light); border:2px solid rgba(245,166,35,0.3); display:flex; align-items:center; justify-content:center; font-size:15px; font-weight:900; color:var(--orange-dark); }
  .how-step-title { font-size:16px; font-weight:900; color:var(--navy); margin-bottom:10px; }
  .how-step-desc { font-size:13px; color:var(--muted); line-height:1.7; font-weight:700; }

  /* ====================== USE CASES ====================== */
  .usecases-section { background:var(--white); padding:100px 48px; }
  .usecases-inner { max-width:1240px; margin:0 auto; }
  .usecases-header { text-align:center; margin-bottom:60px; }
  .usecases-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .usecase-card { background:var(--cream); border-radius:22px; padding:36px; border:1.5px solid var(--border); transition:transform 0.25s,box-shadow 0.25s; }
  .usecase-card:hover { transform:translateY(-5px); box-shadow:0 20px 50px rgba(13,61,92,0.09); }
  .usecase-card.highlight { background:var(--navy); border-color:transparent; }
  .usecase-card.highlight::before { content:'⭐ Idéal'; position:absolute; /* none */ }
  .usecase-emoji { font-size:40px; margin-bottom:18px; display:block; }
  .usecase-title { font-size:18px; font-weight:900; color:var(--navy); margin-bottom:10px; }
  .usecase-card.highlight .usecase-title { color:var(--white); }
  .usecase-desc { font-size:14px; color:var(--muted); line-height:1.75; font-weight:700; margin-bottom:18px; }
  .usecase-card.highlight .usecase-desc { color:rgba(255,255,255,0.6); }
  .usecase-example { display:inline-flex; align-items:center; gap:8px; background:var(--orange-light); color:var(--orange-dark); padding:6px 14px; border-radius:100px; font-size:12px; font-weight:900; }
  .usecase-card.highlight .usecase-example { background:rgba(245,166,35,0.2); color:var(--orange); }

  /* ====================== FEATURES ====================== */
  .features-section { background:var(--cream); }
  .features-inner { max-width:1240px; margin:0 auto; padding:100px 48px; }
  .features-header { text-align:center; margin-bottom:80px; }

  .feature-row { display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; margin-bottom:100px; }
  .feature-row:last-child { margin-bottom:0; }
  .feature-row.reverse { direction:rtl; }
  .feature-row.reverse > * { direction:ltr; }

  .feature-num { font-size:72px; font-weight:900; color:rgba(245,166,35,0.1); line-height:1; margin-bottom:-16px; display:block; }
  .feature-eyebrow { display:inline-flex; align-items:center; gap:8px; background:var(--orange-light); color:var(--orange-dark); padding:5px 12px; border-radius:100px; font-size:10.5px; font-weight:900; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:16px; }
  .feature-title { font-size:clamp(26px,3vw,36px); font-weight:900; color:var(--navy); line-height:1.2; margin-bottom:14px; letter-spacing:-0.02em; }
  .feature-title .hl { color:var(--orange-dark); }
  .feature-title .hl-teal { color:var(--teal-dark); }
  .feature-desc { font-size:15px; line-height:1.8; color:var(--muted); margin-bottom:24px; font-weight:700; }
  .feature-bullets { display:flex; flex-direction:column; gap:12px; margin-bottom:32px; }
  .feature-bullet { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:var(--text); line-height:1.6; font-weight:700; }
  .bullet-check { width:22px; height:22px; border-radius:50%; background:var(--orange-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }

  .feature-visual { position:relative; display:flex; align-items:center; justify-content:center; }
  .feature-card { background:var(--navy); border-radius:24px; padding:40px; width:100%; max-width:420px; box-shadow:0 24px 70px rgba(13,61,92,0.16); position:relative; overflow:hidden; }
  .feature-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(245,166,35,0.1),transparent); pointer-events:none; }
  .feature-card-icon { width:56px; height:56px; border-radius:16px; background:rgba(245,166,35,0.15); display:flex; align-items:center; justify-content:center; margin-bottom:20px; }
  .feature-card-title { font-size:16px; font-weight:900; color:var(--white); margin-bottom:16px; position:relative; }
  .feature-card-list { display:flex; flex-direction:column; gap:12px; position:relative; }
  .feature-card-item { display:flex; align-items:center; gap:12px; }
  .feature-card-dot { width:8px; height:8px; border-radius:50%; background:var(--orange); flex-shrink:0; }
  .feature-card-text { font-size:14px; color:rgba(255,255,255,0.7); font-weight:700; line-height:1.5; }

  .feature-badge { position:absolute; bottom:-16px; right:-16px; background:var(--white); border-radius:16px; padding:14px 20px; box-shadow:0 8px 32px rgba(13,61,92,0.1); border:1.5px solid var(--border); display:flex; align-items:center; gap:12px; }
  .fbadge-icon { width:38px; height:38px; border-radius:10px; background:var(--orange-light); display:flex; align-items:center; justify-content:center; font-size:18px; }
  .fbadge-text strong { display:block; font-size:14px; font-weight:900; color:var(--navy); }
  .fbadge-text span { font-size:11px; color:var(--muted); font-weight:700; }

  /* ====================== STRIPE ====================== */
  .stripe-section { background:var(--navy); padding:72px 48px; }
  .stripe-inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
  .stripe-title { font-weight:900; font-size:clamp(26px,3.5vw,40px); color:var(--white); line-height:1.15; margin-bottom:16px; letter-spacing:-0.02em; }
  .stripe-title .hl { color:var(--teal); }
  .stripe-desc { font-size:15px; color:rgba(255,255,255,0.55); line-height:1.75; margin-bottom:32px; font-weight:700; }
  .stripe-badges { display:flex; flex-wrap:wrap; gap:14px; }
  .stripe-badge { display:flex; align-items:center; gap:10px; background:rgba(255,255,255,0.07); border-radius:12px; padding:12px 18px; border:1px solid rgba(255,255,255,0.1); }
  .stripe-badge-icon { font-size:20px; }
  .stripe-badge-text { font-size:13px; font-weight:900; color:rgba(255,255,255,0.8); }

  .stripe-visual { display:flex; align-items:center; justify-content:center; }
  .stripe-card { background:rgba(255,255,255,0.05); border-radius:24px; padding:40px; border:1px solid rgba(255,255,255,0.1); width:100%; max-width:380px; }
  .stripe-card-header { display:flex; align-items:center; gap:14px; margin-bottom:28px; padding-bottom:22px; border-bottom:1px solid rgba(255,255,255,0.1); }
  .stripe-logo { background:rgba(99,91,255,0.2); border-radius:12px; padding:10px 16px; }
  .stripe-logo-text { font-size:22px; font-weight:900; color:#7c6aff; letter-spacing:-0.02em; }
  .stripe-card-title { font-size:15px; font-weight:900; color:var(--white); }
  .stripe-card-sub { font-size:12px; color:rgba(255,255,255,0.5); font-weight:700; margin-top:3px; }
  .stripe-features-list { display:flex; flex-direction:column; gap:14px; }
  .stripe-feature { display:flex; align-items:center; gap:12px; }
  .stripe-check { width:24px; height:24px; border-radius:50%; background:rgba(77,200,200,0.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; }
  .stripe-feature-text { font-size:14px; color:rgba(255,255,255,0.7); font-weight:700; }

  /* ====================== PRICING ====================== */
  .pricing-section { background:var(--white); padding:100px 48px; }
  .pricing-inner { max-width:640px; margin:0 auto; }
  .pricing-header { text-align:center; margin-bottom:48px; }

  .price-card { background:var(--navy); border-radius:28px; padding:48px; border:1.5px solid transparent; position:relative; overflow:hidden; text-align:center; box-shadow:0 24px 70px rgba(13,61,92,0.2); }
  .price-card::before { content:''; position:absolute; inset:0; background:linear-gradient(135deg,rgba(245,166,35,0.12),transparent); pointer-events:none; }
  .price-badge { display:inline-flex; padding:5px 16px; border-radius:100px; margin-bottom:24px; font-size:12px; font-weight:900; letter-spacing:0.08em; text-transform:uppercase; background:rgba(245,166,35,0.2); color:var(--orange); position:relative; z-index:1; }
  .price-amount { font-size:clamp(52px,7vw,72px); font-weight:900; color:var(--white); line-height:1; position:relative; z-index:1; }
  .price-period { font-size:18px; color:rgba(255,255,255,0.5); font-weight:700; margin-bottom:6px; position:relative; z-index:1; }
  .price-sub { font-size:13px; color:rgba(255,255,255,0.4); margin-bottom:36px; font-weight:700; position:relative; z-index:1; }
  .price-divider { height:1px; background:rgba(255,255,255,0.1); margin-bottom:32px; position:relative; z-index:1; }
  .price-features { display:flex; flex-direction:column; gap:14px; margin-bottom:40px; text-align:left; position:relative; z-index:1; }
  .price-feature { display:flex; align-items:flex-start; gap:12px; font-size:14px; color:rgba(255,255,255,0.8); line-height:1.5; font-weight:700; }
  .check-circle { width:22px; height:22px; border-radius:50%; background:rgba(77,200,200,0.2); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
  .btn-price { display:block; text-align:center; text-decoration:none; padding:16px; border-radius:100px; font-size:16px; font-weight:900; background:var(--orange); color:var(--white); box-shadow:0 6px 24px rgba(245,166,35,0.4); transition:transform 0.2s,box-shadow 0.2s; position:relative; z-index:1; }
  .btn-price:hover { transform:translateY(-2px); box-shadow:0 10px 32px rgba(245,166,35,0.5); }
  .pricing-note { text-align:center; margin-top:28px; font-size:13px; color:var(--muted); font-weight:700; }
  .pricing-note a { color:var(--teal-dark); text-decoration:none; font-weight:900; }
  .pricing-note a:hover { text-decoration:underline; }

  /* ====================== CTA ====================== */
  .cta-section { padding:0 48px 80px; background:var(--white); }
  .cta-card { max-width:1240px; margin:0 auto; background:var(--teal); border-radius:32px; padding:72px 80px; text-align:center; position:relative; overflow:hidden; }
  .cta-card::before { content:''; position:absolute; inset:0; background:repeating-linear-gradient(-45deg,transparent,transparent 40px,rgba(255,255,255,0.05) 40px,rgba(255,255,255,0.05) 41px); pointer-events:none; }
  .cta-card::after { content:''; position:absolute; inset:0; background:radial-gradient(ellipse 70% 80% at 50% 110%,rgba(255,255,255,0.1),transparent); pointer-events:none; }
  .cta-eyebrow { display:inline-flex; align-items:center; gap:8px; background:rgba(255,255,255,0.2); color:var(--white); padding:6px 18px; border-radius:100px; font-size:11px; font-weight:900; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:24px; position:relative; z-index:1; }
  .cta-card h2 { font-weight:900; font-size:clamp(30px,5vw,54px); color:var(--navy); line-height:1.1; margin-bottom:16px; letter-spacing:-0.02em; position:relative; z-index:1; }
  .cta-card p { color:rgba(255,255,255,0.8); font-size:17px; margin-bottom:40px; font-weight:700; position:relative; z-index:1; }
  .cta-card .btn-orange { position:relative; z-index:1; font-size:16px; padding:16px 44px; }

  /* ====================== FOOTER ====================== */
  footer { background:var(--navy); padding:44px 48px; border-top:1px solid rgba(255,255,255,0.06); }
  .footer-inner { max-width:1240px; margin:0 auto; display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:20px; }
  .footer-logo img { height:32px; filter:brightness(0) invert(1); opacity:0.5; }
  .footer-links { display:flex; gap:28px; flex-wrap:wrap; }
  .footer-links a { color:rgba(255,255,255,0.35); font-size:13px; text-decoration:none; font-weight:700; transition:color 0.2s; }
  .footer-links a:hover { color:rgba(255,255,255,0.75); }
  .footer-copy { color:rgba(255,255,255,0.2); font-size:12px; font-weight:700; }

  /* ====================== REVEAL ====================== */
  .reveal { opacity:0; transform:translateY(26px); transition:opacity 0.75s ease,transform 0.75s ease; }
  .reveal.visible { opacity:1; transform:none; }
  .rd1 { transition-delay:0.1s; }
  .rd2 { transition-delay:0.2s; }

  /* ====================== BURGER & DRAWER ====================== */
  .nav-burger { display:none; flex-direction:column; justify-content:center; gap:5px; width:40px; height:40px; padding:8px; background:none; border:none; cursor:pointer; border-radius:10px; transition:background 0.2s; }
  .nav-burger:hover { background:var(--cream); }
  .nav-burger span { display:block; height:2.5px; border-radius:2px; background:var(--navy); transition:transform 0.3s,opacity 0.3s; transform-origin:center; }
  .nav-burger.open span:nth-child(1) { transform:translateY(7.5px) rotate(45deg); }
  .nav-burger.open span:nth-child(2) { opacity:0; transform:scaleX(0); }
  .nav-burger.open span:nth-child(3) { transform:translateY(-7.5px) rotate(-45deg); }
  .mobile-drawer { display:none; position:fixed; top:72px; left:0; right:0; bottom:0; background:var(--white); z-index:199; overflow-y:auto; transform:translateX(100%); transition:transform 0.3s cubic-bezier(0.16,1,0.3,1); }
  .mobile-drawer.open { transform:translateX(0); }
  .drawer-inner { padding:24px 24px 48px; }
  .drawer-section-label { font-size:10px; font-weight:900; letter-spacing:0.12em; text-transform:uppercase; color:var(--muted); padding:0 4px; margin-bottom:10px; display:block; }
  .drawer-divider { height:1px; background:var(--border); margin:20px 0; }
  .drawer-sol-item { display:flex; align-items:center; gap:14px; padding:14px 12px; border-radius:14px; text-decoration:none; color:inherit; transition:background 0.2s; }
  .drawer-sol-item:hover { background:var(--cream); }
  .drawer-sol-icon { width:40px; height:40px; border-radius:11px; flex-shrink:0; display:flex; align-items:center; justify-content:center; }
  .dsi-teal { background:var(--teal-light); }
  .dsi-dark { background:rgba(13,61,92,0.08); }
  .drawer-sol-name { font-size:14px; font-weight:900; color:var(--navy); }
  .drawer-sol-desc { font-size:12px; color:var(--muted); font-weight:700; }
  .drawer-new { display:inline-flex; background:var(--orange); color:var(--white); padding:1px 7px; border-radius:100px; font-size:9px; font-weight:900; letter-spacing:0.08em; text-transform:uppercase; margin-left:6px; vertical-align:middle; }
  .drawer-pq-item { display:flex; align-items:center; gap:12px; padding:12px 12px; border-radius:12px; text-decoration:none; color:inherit; transition:background 0.2s; }
  .drawer-pq-item:hover { background:var(--cream); }
  .drawer-pq-icon { width:36px; height:36px; border-radius:10px; background:var(--teal-light); display:flex; align-items:center; justify-content:center; font-size:17px; flex-shrink:0; }
  .drawer-pq-name { font-size:14px; font-weight:900; color:var(--navy); }
  .drawer-pq-desc { font-size:12px; color:var(--muted); font-weight:700; }
  .drawer-actions { display:flex; flex-direction:column; gap:12px; margin-top:28px; }
  .drawer-link { display:block; text-align:center; text-decoration:none; padding:14px; border-radius:100px; font-size:15px; font-weight:900; }
  .drawer-link.primary { background:var(--orange); color:var(--white); box-shadow:0 4px 16px rgba(245,166,35,0.35); }
  .drawer-link.secondary { background:var(--cream); color:var(--navy); border:1.5px solid var(--border); }

  /* ====================== RESPONSIVE ====================== */
  @media(max-width:899px){
    nav { padding:0 20px; }
    .nav-links { display:none; }
    .nav-burger { display:flex; }
    .mobile-drawer { display:block; }
    .mega-menu { display:none !important; }
    .hero-section { padding:88px 16px 60px; }
    .hero-inner { grid-template-columns:1fr; gap:40px; }
    .hero-section::before { display:none; }
    .hero-stat { display:none; }
    .stats-strip { padding:40px 24px; }
    .stats-inner { grid-template-columns:1fr; gap:24px; }
    .stat-cell { border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); padding-bottom:20px; }
    .stat-cell:last-child { border-bottom:none; }
    .how-section { padding:60px 24px; }
    .how-steps { grid-template-columns:1fr 1fr; }
    .usecases-section { padding:60px 24px; }
    .usecases-grid { grid-template-columns:1fr; }
    .features-inner { padding:60px 24px; }
    .feature-row { grid-template-columns:1fr; gap:40px; direction:ltr !important; margin-bottom:60px; }
    .stripe-section { padding:60px 24px; }
    .stripe-inner { grid-template-columns:1fr; gap:40px; }
    .pricing-section { padding:70px 24px; }
    .pricing-inner { max-width:100%; }
    .cta-section { padding:0 16px 60px; }
    .cta-card { padding:52px 32px; border-radius:24px; }
    footer { padding:32px 24px; }
    .footer-inner { flex-direction:column; align-items:flex-start; }
  
    .how-section { padding:60px 20px !important; }
    .how-steps { grid-template-columns:repeat(2,1fr) !important; gap:20px !important; }
    .usecases-section { padding:60px 20px !important; }
    .usecases-grid { grid-template-columns:1fr !important; }
    .features-inner { padding:60px 20px !important; }
    .feature-row { grid-template-columns:1fr !important; gap:40px !important; direction:ltr !important; margin-bottom:60px !important; }
    .feature-visual > div { max-width:100% !important; }
    .stripe-section { padding:60px 20px !important; }
    .stripe-inner { grid-template-columns:1fr !important; gap:40px !important; }
    .pricing-section { padding:60px 20px !important; }
    .pricing-inner { max-width:100% !important; }
    .cta-section { padding:0 16px 60px !important; }
    .cta-card { padding:48px 24px !important; border-radius:24px !important; }
  }
  @media(max-width:499px){
    .hero-actions { flex-direction:column; align-items:flex-start; }
    .how-steps { grid-template-columns:1fr; }
  
    .how-steps { grid-template-columns:1fr !important; }
  }
