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

  :root {
    --teal:        #4dc8c8;
    --teal-dark:   #2aa8a8;
    --teal-deeper: #1a8888;
    --teal-light:  #e8f8f8;
    --teal-mid:    #c5efef;
    --navy:        #0d3d5c;
    --navy-2:      #0a2e45;
    --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, .nav-links a.active { 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; align-items: center; 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; }

  /* ====================== HERO ====================== */
  .hero-section { padding: 120px 48px 80px; background: var(--white); position: relative; overflow: hidden; }
  .hero-section::before { content:''; position:absolute; right:-60px; top:-60px; width:520px; height:520px; border-radius:50%; background:radial-gradient(circle, rgba(77,200,200,0.12) 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(--teal-light); color: var(--teal-deeper); 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(77,200,200,0.25); }
  .hero-pill-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--teal); 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-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-trust { display: flex; align-items: flex-start; gap: 16px; margin-bottom: 36px; padding: 16px 20px; background: var(--teal-light); border-radius: 14px; border: 1px solid rgba(77,200,200,0.25); max-width: 480px; }
  .hero-trust-icon { font-size: 26px; flex-shrink: 0; }
  .hero-trust-text strong { display: block; font-size: 15px; font-weight: 900; color: var(--navy); margin-bottom: 4px; }
  .hero-trust-text span { font-size: 13px; color: var(--muted); font-weight: 700; }

  .hero-actions { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
  .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-visual { position: relative; display: flex; align-items: center; justify-content: center; }
  .hero-img { width: 100%; max-width: 460px; display: block; filter: drop-shadow(0 24px 50px rgba(13,61,92,0.14)); }
  .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: 30px; left: -20px; display:flex; align-items:center; gap:12px; animation-delay:0s; }
  .hero-stat.s-b { top: 30px; right: -20px; text-align:center; animation-delay:1.5s; }
  .hstat-icon { width:40px; height:40px; border-radius:12px; background:var(--teal-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:28px; font-weight:900; color:var(--teal-dark); line-height:1; }
  .hstat-sub { font-size:11px; color:var(--muted); font-weight:700; margin-top:3px; }

  /* ====================== STATS STRIP ====================== */
  .stats-strip { background: var(--navy); padding: 48px; }
  .stats-inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:repeat(4,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; }

  /* ====================== 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; }
  h2.stitle .hl { color:var(--teal-dark); }
  .slead { font-size:16px; color:var(--muted); line-height:1.75; font-weight:700; }
  .btn-teal { background:var(--teal); 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(77,200,200,0.35); display:inline-block; }
  .btn-teal:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(77,200,200,0.45); }

  /* ====================== FEATURES ====================== */
  .features-section { background: var(--white); }
  .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(77,200,200,0.1); line-height:1; margin-bottom:-16px; display:block; }
  .feature-eyebrow { display:inline-flex; align-items:center; gap:8px; background:var(--teal-light); color:var(--teal-deeper); 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(--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(--teal-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-visual img { width:100%; max-width:480px; display:block; border-radius:20px; box-shadow:0 24px 70px rgba(13,61,92,0.12); }
  .feature-visual img.png-free { border-radius:0; box-shadow:none; filter:drop-shadow(0 20px 50px rgba(13,61,92,0.14)); }
  .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(--teal-light); display:flex; align-items:center; justify-content:center; font-size:18px; }
  .fbadge-val { font-size:20px; font-weight:900; color:var(--navy); }
  .fbadge-lbl { font-size:11px; color:var(--muted); font-weight:700; }

  /* ====================== NEW OPTIONS ====================== */
  .options-section { background: var(--navy); padding: 100px 48px; }
  .options-inner { max-width:1240px; margin:0 auto; }
  .options-header { text-align:center; margin-bottom:60px; }
  .options-header h2 { color:var(--white); }
  .options-header .slead { color:rgba(255,255,255,0.5); margin:0 auto; max-width:560px; }

  .options-grid { display:grid; grid-template-columns:1fr 1fr; gap:24px; }
  .option-card { background:rgba(255,255,255,0.05); border-radius:22px; padding:40px; border:1px solid rgba(245,166,35,0.2); transition:background 0.25s,transform 0.25s; }
  .option-card:hover { background:rgba(255,255,255,0.08); transform:translateY(-4px); }
  .opt-new-tag { display:inline-flex; align-items:center; gap:6px; background:var(--orange); color:var(--white); padding:5px 12px; border-radius:100px; font-size:10px; font-weight:900; letter-spacing:0.1em; text-transform:uppercase; margin-bottom:24px; }
  .opt-icon { width:64px; height:64px; border-radius:18px; background:rgba(245,166,35,0.15); display:flex; align-items:center; justify-content:center; margin-bottom:22px; }
  .opt-title { font-size:22px; font-weight:900; color:var(--white); margin-bottom:14px; }
  .opt-desc { font-size:14px; line-height:1.8; color:rgba(255,255,255,0.55); margin-bottom:28px; font-weight:700; }
  .opt-bullets { display:flex; flex-direction:column; gap:10px; }
  .opt-bullet { display:flex; align-items:flex-start; gap:10px; font-size:13px; color:rgba(255,255,255,0.65); line-height:1.5; font-weight:700; }
  .opt-dot { width:6px; height:6px; border-radius:50%; background:var(--orange); flex-shrink:0; margin-top:5px; }

  /* ====================== PRICING ====================== */
  .pricing-section { background: var(--cream); padding: 100px 48px; }
  .pricing-inner { max-width:1240px; margin:0 auto; }
  .pricing-header { text-align:center; margin-bottom:60px; }
  .pricing-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; align-items:start; }

  .price-card { background:var(--white); border-radius:24px; padding:40px; border:1.5px solid var(--border); transition:transform 0.25s,box-shadow 0.25s; position:relative; overflow:hidden; }
  .price-card:hover { transform:translateY(-6px); box-shadow:0 24px 60px rgba(13,61,92,0.1); }
  .price-card.featured { background:var(--teal); border-color:transparent; box-shadow:0 20px 60px rgba(77,200,200,0.3); }
  .price-card.featured::before { content:'Populaire'; position:absolute; top:20px; right:20px; background:var(--orange); color:var(--white); padding:4px 12px; border-radius:100px; font-size:11px; font-weight:900; }
  .price-badge { display:inline-flex; padding:5px 12px; border-radius:100px; margin-bottom:20px; font-size:11px; font-weight:900; letter-spacing:0.08em; text-transform:uppercase; background:var(--teal-light); color:var(--teal-deeper); }
  .price-card.featured .price-badge { background:rgba(255,255,255,0.2); color:var(--white); }
  .price-amount { font-size:clamp(38px,5vw,54px); font-weight:900; color:var(--navy); line-height:1; margin-bottom:4px; }
  .price-card.featured .price-amount { color:var(--white); }
  .price-free { font-size:48px; font-weight:900; color:var(--teal-dark); }
  .price-period { font-size:13px; color:var(--muted); margin-bottom:6px; font-weight:700; }
  .price-card.featured .price-period { color:rgba(255,255,255,0.6); }
  .price-sub { font-size:12px; color:var(--muted); margin-bottom:28px; font-weight:700; }
  .price-card.featured .price-sub { color:rgba(255,255,255,0.5); }
  .price-divider { height:1px; background:var(--border); margin-bottom:28px; }
  .price-card.featured .price-divider { background:rgba(255,255,255,0.2); }
  .price-features { display:flex; flex-direction:column; gap:13px; margin-bottom:36px; }
  .price-feature { display:flex; align-items:flex-start; gap:10px; font-size:14px; color:var(--text); line-height:1.5; font-weight:700; }
  .price-card.featured .price-feature { color:rgba(255,255,255,0.85); }
  .check-circle { width:20px; height:20px; border-radius:50%; background:var(--teal-light); display:flex; align-items:center; justify-content:center; flex-shrink:0; margin-top:1px; }
  .price-card.featured .check-circle { background:rgba(255,255,255,0.2); }
  .btn-card { display:block; text-align:center; text-decoration:none; padding:14px; border-radius:100px; font-size:14px; font-weight:900; background:var(--teal); color:var(--white); box-shadow:0 4px 16px rgba(77,200,200,0.3); transition:transform 0.2s,box-shadow 0.2s; }
  .btn-card:hover { transform:translateY(-2px); box-shadow:0 8px 24px rgba(77,200,200,0.4); }
  .price-card.featured .btn-card { background:var(--white); color:var(--teal-dark); }

  /* ====================== INTEGRATIONS ====================== */
  .integ-section { background:var(--white); padding:80px 48px; }
  .integ-inner { max-width:1240px; margin:0 auto; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }
  .integ-title { font-weight:900; font-size:clamp(28px,3.5vw,42px); color:var(--navy); line-height:1.15; margin-bottom:16px; letter-spacing:-0.02em; }
  .integ-desc { font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:36px; font-weight:700; }
  .logos-grid { display:grid; grid-template-columns:repeat(4,1fr); gap:14px; }
  .logo-chip { background:var(--cream); border-radius:16px; padding:16px; display:flex; align-items:center; justify-content:center; min-height:80px; border:1.5px solid rgba(77,200,200,0.15); transition:border-color 0.2s,transform 0.2s; }
  .logo-chip:hover { border-color:var(--teal); transform:translateY(-2px); }
  .logo-chip img { height:48px; max-width:100px; object-fit:contain; display:block; }

  /* ====================== 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){
    /* === Google RWG block === */
    .google-rwg-inner { grid-template-columns:1fr !important; gap:40px !important; }
    /* === App block responsive === */
    .app-block-inner { grid-template-columns:1fr !important; gap:40px !important; }
    .app-block-phone { display:none !important; }
    .app-stats-row { gap:16px !important; flex-wrap:wrap; }
    /* === Feature visuals: cap width on mobile === */
    .feature-visual > div { max-width:100% !important; }
    /* === SVG illustrations === */
    .feature-visual svg { max-width:100%; }
    /* === Options/pricing sections === */
    .options-grid { grid-template-columns:1fr !important; }
    .pricing-grid { grid-template-columns:1fr !important; max-width:100% !important; }
    /* === General section padding === */
    .options-section { padding:60px 20px !important; }
    .pricing-section { padding:60px 20px !important; }
    .features-inner { padding:60px 20px !important; }
    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-visual img { max-width:320px; }
    .hero-stat { display:none; }
    .stats-strip { padding:40px 24px; }
    .stats-inner { grid-template-columns:repeat(2,1fr); gap:24px; }
    .stat-cell { border-right:none; border-bottom:1px solid rgba(255,255,255,0.08); padding-bottom:20px; }
    .stat-cell:nth-child(3),.stat-cell:nth-child(4){ border-bottom:none; }
    .features-inner { padding:60px 24px; }
    .feature-row { grid-template-columns:1fr; gap:40px; direction:ltr !important; margin-bottom:60px; }
    .options-section { padding:70px 24px; }
    .options-grid { grid-template-columns:1fr; }
    .pricing-section { padding:70px 24px; }
    .pricing-grid { grid-template-columns:1fr; max-width:440px; margin:0 auto; }
    .integ-inner { grid-template-columns:1fr; gap:40px; padding:60px 24px; }
    .integ-section { padding:60px 24px; }
    .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; }
    .logos-grid { grid-template-columns:repeat(2,1fr); }
  }
  @media(max-width:499px){
    .hero-actions { flex-direction:column; align-items:flex-start; }
    .hero-trust { flex-direction:column; }
  
    .app-store-buttons { flex-direction:column; }
    .app-stats-row > div { min-width:0; }
  }
