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

  :root {
    --teal:        #4dc8c8;   /* hero bg / primary brand teal */
    --teal-dark:   #2aa8a8;
    --teal-deeper: #1a8888;
    --teal-light:  #e8f8f8;
    --teal-mid:    #c5efef;
    --navy:        #0d3d5c;   /* dark title color */
    --navy-2:      #0a2e45;
    --orange:      #f5a623;   /* CTA orange */
    --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; }

  /* Trigger button style */
  .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 panel */
  .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;
  }

  /* Solutions grid in mega */
  .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;
  }

  /* Pour qui grid */
  .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; }

  /* Divider between sections */
  .mega-divider { height: 1px; background: var(--border); margin: 28px 0; }

  /* Overlay */
  .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);
  }
  .hero-card {
    max-width: 1240px; margin: 0 auto;
    display: grid; grid-template-columns: 1.1fr 0.9fr;
    gap: 80px; align-items: center;
    animation: fadeIn 0.8s ease forwards;
    position: relative;
  }
  @keyframes fadeIn { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

  /* Soft teal blob behind image */
  .hero-card::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; z-index: 0;
  }

  .hero-text { position: relative; z-index: 1; }
  .hero-pro-tag {
    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: 28px; border: 1px solid rgba(77,200,200,0.25);
  }
  .hero-pro-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)} }

  .hero-card 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;
  }
  .hero-card h1 .hl-teal { color: var(--teal-dark); }
  .hero-card h1 .hl-orange { color: var(--orange); }

  .hero-sub {
    font-size: 17px; line-height: 1.75; color: var(--muted);
    margin-bottom: 40px; max-width: 480px; 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 right */
  .hero-visual {
    position: relative; z-index: 1;
    display: flex; align-items: center; justify-content: center;
  }
  .hero-visual img {
    width: 100%; max-width: 500px; display: block;
    filter: drop-shadow(0 24px 50px rgba(13,61,92,0.14));
  }

  /* Floating stat cards on hero */
  .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; }

  /* ====================== KEY NUMBERS 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; }

  /* ====================== SOLUTIONS ====================== */
  .solutions-section { background: var(--cream); padding: 100px 48px; }
  .solutions-inner { max-width:1240px; margin:0 auto; }

  .section-header { margin-bottom: 56px; }
  .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-family:'Nunito',sans-serif; 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 em { color:var(--teal-dark); font-style:normal; font-weight:900; }
  .slead { font-size:16px; color:var(--muted); line-height:1.75; max-width:520px; font-weight:700; }

  /* Grid — 4 colonnes égales */
  .sol-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    align-items: start;
  }

  @media(max-width:899px){
    /* === Google RWG block === */
    .google-rwg-inner { grid-template-columns:1fr !important; gap:40px !important; }
    .sol-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media(max-width:499px){
    .sol-grid { grid-template-columns: 1fr; }
  
    .app-store-buttons { flex-direction:column; }
    .app-stats-row > div { min-width:0; }
  }

  .sol-card {
    background: var(--cream); border-radius: 20px; padding: 24px;
    border: 1.5px solid var(--border);
    transition: transform 0.25s, box-shadow 0.25s;
    text-decoration: none; color: inherit; display: block;
    position: relative; overflow: hidden;
  }
  .sol-card::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(77,200,200,0.04), transparent);
    pointer-events: none;
  }
  .sol-card:hover { transform: translateY(-5px); box-shadow: 0 20px 50px rgba(13,61,92,0.09); }

  .sol-card.hero-card {
    background: var(--teal); border-color: transparent;
    display: block;
    box-shadow: 0 8px 28px rgba(77,200,200,0.3);
  }
  .sol-card.hero-card .sol-desc { flex-grow: 0; }
  .sol-card.hero-card::before { background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent); }
  .sol-card.new-card {
    background: var(--navy); color: var(--white); border-color: transparent;
  }
  .sol-card.new-card::before { background: linear-gradient(135deg, rgba(245,166,35,0.15), transparent); }
  .sol-card.new-badge-card {
    background: #0f2d44; color: var(--white); border-color: transparent;
  }
  .sol-card.new-badge-card::before { background: linear-gradient(135deg, rgba(245,166,35,0.12), transparent); }
  .sol-card.site-card { justify-content: flex-end; }

  .hero-card-img { flex-shrink: 0; }
  .hero-card-img img { width: 260px; border-radius: 14px; opacity: 0.92; display: block; }

  .new-tag {
    display: inline-flex; align-items: center; gap: 5px;
    background: var(--orange); color: var(--white);
    padding: 3px 9px; border-radius: 100px;
    font-size: 9px; font-weight: 900; letter-spacing: 0.08em; text-transform: uppercase;
    margin-bottom: 12px; width: fit-content;
  }

  .sol-icon { width: 52px; height: 52px; border-radius: 14px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; }
  .sol-icon.teal-bg  { background: rgba(255,255,255,0.2); }
  .sol-icon.light    { background: var(--teal-light); }
  .sol-icon.orange-bg{ background: rgba(245,166,35,0.18); }

  .sol-title { font-size: 16px; font-weight: 900; margin-bottom: 8px; line-height: 1.25; color: var(--navy); }
  .sol-card.hero-card .sol-title { color: var(--white); font-size: 20px; }
  .sol-card.new-card .sol-title,
  .sol-card.new-badge-card .sol-title { color: var(--white); }

  .sol-desc { font-size: 13px; line-height: 1.65; color: var(--muted); font-weight: 700; margin-bottom: 14px; }
  .sol-card.hero-card .sol-desc,
  .sol-card.new-card .sol-desc,
  .sol-card.new-badge-card .sol-desc { color: rgba(255,255,255,0.65); }

  .sol-link { display: inline-flex; align-items: center; gap: 6px; font-size: 13px; font-weight: 900; color: var(--teal-dark); text-decoration: none; transition: gap 0.2s; }
  .sol-link.white     { color: rgba(255,255,255,0.9); }
  .sol-link.orange-link { color: var(--orange); }
  .sol-link:hover { gap: 11px; }

  /* ====================== ROI BLOCK ====================== */
  .roi-wrap { background:var(--orange-light); border-top:1px solid rgba(245,166,35,0.2); border-bottom:1px solid rgba(245,166,35,0.2); }
  .roi-inner { max-width:1240px; margin:0 auto; padding:80px 48px; display:grid; grid-template-columns:1fr 1fr; gap:80px; align-items:center; }

  .roi-title { font-family:'Nunito',sans-serif; font-weight:900; font-size:clamp(28px,3.5vw,44px); color:var(--navy); line-height:1.12; margin-bottom:16px; letter-spacing:-0.02em; }
  .roi-title em { color:var(--orange-dark); font-style:normal; font-weight:900; }
  .roi-desc { font-size:15px; color:var(--muted); line-height:1.75; margin-bottom:32px; font-weight:700; }
  .btn-roi { display:inline-flex; align-items:center; gap:12px; 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.4); }
  .btn-roi:hover { transform:translateY(-3px); box-shadow:0 12px 36px rgba(245,166,35,0.5); }

  .roi-card { background:var(--white); border-radius:24px; padding:36px; border:1px solid rgba(245,166,35,0.25); box-shadow:0 16px 50px rgba(245,166,35,0.1); }
  .roi-card-hd { display:flex; align-items:center; gap:14px; margin-bottom:26px; padding-bottom:20px; border-bottom:1px solid rgba(245,166,35,0.15); }
  .roi-card-ico { width:52px; height:52px; border-radius:14px; background:var(--orange-light); display:flex; align-items:center; justify-content:center; font-size:24px; flex-shrink:0; }
  .roi-card-ttl { font-size:16px; font-weight:900; color:var(--navy); }
  .roi-card-sub { font-size:13px; color:var(--muted); font-weight:700; margin-top:3px; }
  .roi-metrics { display:flex; flex-direction:column; gap:12px; margin-bottom:24px; }
  .roi-metric { display:flex; justify-content:space-between; align-items:center; padding:14px 18px; background:var(--cream); border-radius:12px; }
  .roi-metric-lbl { font-size:14px; color:var(--muted); font-weight:700; }
  .roi-metric-val { font-size:22px; font-weight:900; color:var(--navy); }
  .roi-metric-val.teal { color:var(--teal-dark); }
  .roi-metric-val.ora  { color:var(--orange-dark); }
  .roi-cta-inline { display:flex; align-items:center; justify-content:space-between; gap:14px; background:linear-gradient(135deg,var(--orange),var(--orange-dark)); border-radius:16px; padding:18px 22px; }
  .roi-cta-txt { color:var(--white); font-size:14px; font-weight:900; line-height:1.4; }
  .roi-cta-txt span { display:block; font-size:12px; opacity:0.75; font-weight:700; margin-top:3px; }
  .roi-cta-btn { flex-shrink:0; background:rgba(255,255,255,0.2); color:var(--white); padding:10px 18px; border-radius:100px; font-size:13px; font-weight:900; text-decoration:none; white-space:nowrap; border:1.5px solid rgba(255,255,255,0.35); transition:background 0.2s; }
  .roi-cta-btn:hover { background:rgba(255,255,255,0.3); }

  /* ====================== 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-family:'Nunito',sans-serif; 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; }

  .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); }

  /* ====================== TESTIMONIALS ====================== */
  .testi-wrap { background:var(--teal-light); padding:100px 48px; }
  .testi-inner { max-width:1240px; margin:0 auto; }
  .testi-hd { display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:end; margin-bottom:56px; }
  .testi-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
  .testi-card { background:var(--white); border-radius:22px; padding:32px; border:1.5px solid rgba(77,200,200,0.15); transition:transform 0.2s; }
  .testi-card:hover { transform:translateY(-4px); }
  .testi-stars { color:var(--orange); font-size:16px; margin-bottom:14px; letter-spacing:2px; }
  .testi-txt { font-size:14px; line-height:1.8; color:var(--text); margin-bottom:22px; font-style:italic; font-weight:700; }
  .testi-author { display:flex; align-items:center; gap:12px; }
  .testi-av { width:42px; height:42px; border-radius:50%; background:var(--teal); display:flex; align-items:center; justify-content:center; color:var(--white); font-weight:900; font-size:14px; flex-shrink:0; }
  .testi-name { font-size:14px; font-weight:900; color:var(--navy); }
  .testi-role { font-size:12px; color:var(--muted); font-weight:700; }

  /* ====================== CTA FINAL ====================== */
  .cta-section {
    /* Same teal rounded hero card style = visual consistency with public site */
    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-family:'Nunito',sans-serif; font-weight:900; font-size:clamp(32px,5vw,56px); 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; }
  .rd3 { transition-delay:0.3s; }

  /* ====================== RESPONSIVE ====================== */
  /* Burger button */
  .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, width 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 */
  .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); }

  @media(max-width:899px){
    /* === 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; }
    .hero-section { padding:88px 16px 60px; }
    .hero-card { grid-template-columns:1fr; gap:40px; }
    .hero-card::before { display:none; }
    .hero-visual img { max-width:340px; }
    .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; }
    .solutions-section { padding:60px 24px; }
    .sol-grid { grid-template-columns: repeat(2,1fr) !important; }
    .roi-inner { grid-template-columns:1fr; gap:40px; padding:60px 24px; }
    .integ-inner { grid-template-columns:1fr; gap:40px; padding:60px 24px; }
    .integ-section { padding:60px 24px; }
    .testi-wrap { padding:60px 24px; }
    .testi-hd { grid-template-columns:1fr; gap:16px; }
    .testi-grid { grid-template-columns:1fr; }
    .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); }
    .mega-menu { display: none !important; }
  }
  @media(max-width:499px){
    .sol-grid { grid-template-columns: 1fr !important; }
    .hero-actions { flex-direction:column; align-items:flex-start; }
  }

  @media(max-width:899px){
    #logosGrid4 { grid-template-columns: repeat(2,1fr) !important; }
  }
