/* ============================================================
   oZone Desk — Marketing Site
   Palette: white, light gray, dark gray + logo blue accent
   ============================================================ */

:root {
  --white: #ffffff;
  --gray-50: #f7f8fa;
  --gray-100: #f0f2f5;
  --gray-200: #e4e7ec;
  --gray-300: #d0d5dd;
  --gray-400: #98a2b3;
  --gray-500: #667085;
  --gray-600: #475467;
  --gray-700: #344054;
  --gray-800: #1d2939;
  --gray-900: #101828;
  --blue: #1877f2;
  --blue-dark: #0f5ec7;
  --navy: #122f4e;
  --blue-soft: #e8f1fe;
  --radius: 16px;
  --radius-lg: 24px;
  --shadow-sm: 0 1px 2px rgba(16, 24, 40, .05);
  --shadow-md: 0 8px 24px -6px rgba(16, 24, 40, .12);
  --shadow-lg: 0 24px 60px -12px rgba(16, 24, 40, .18);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  color: var(--gray-600);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

.container {
  width: min(1180px, 100% - 48px);
  margin-inline: auto;
}

h1, h2, h3, h4 { color: var(--gray-900); line-height: 1.15; letter-spacing: -0.02em; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 15.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: all .2s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; }

.btn-primary {
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(24, 119, 242, .35);
}
.btn-primary:hover { background: var(--blue-dark); transform: translateY(-2px); box-shadow: 0 8px 20px rgba(24, 119, 242, .4); }

.btn-dark {
  background: var(--gray-900);
  color: var(--white);
}
.btn-dark:hover { background: var(--gray-800); transform: translateY(-2px); }

.btn-ghost {
  background: var(--white);
  color: var(--gray-800);
  border-color: var(--gray-300);
}
.btn-ghost:hover { border-color: var(--gray-500); background: var(--gray-50); transform: translateY(-2px); }

.btn-white {
  background: var(--white);
  color: var(--gray-900);
}
.btn-white:hover { background: var(--gray-100); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 1px 0 rgba(16,24,40,.02);
  transition: box-shadow .25s;
}
.header::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -1px;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(24,119,242,.35) 30%, rgba(124,58,237,.35) 70%, transparent);
  opacity: .7;
}
.header.scrolled { box-shadow: 0 6px 18px -8px rgba(16,24,40,.12); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.nav-logo img { height: 54px; width: auto; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}
.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-600);
  transition: color .15s;
}
.nav-links a:hover { color: var(--gray-900); }

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-actions .signin {
  font-size: 15px;
  font-weight: 600;
  color: var(--gray-700);
  padding: 10px 14px;
}
.nav-actions .signin:hover { color: var(--gray-900); }
.nav-actions .btn { padding: 11px 20px; font-size: 14.5px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gray-800);
  margin: 5px 0;
  border-radius: 2px;
  transition: all .25s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: 170px 0 90px;
  background:
    radial-gradient(1000px 500px at 80% -10%, var(--blue-soft) 0%, transparent 60%),
    radial-gradient(800px 400px at 10% 10%, var(--gray-100) 0%, transparent 55%),
    var(--white);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--gray-200) 1px, transparent 1px),
    linear-gradient(90deg, var(--gray-200) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 10%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 0%, black 10%, transparent 70%);
  opacity: .5;
  pointer-events: none;
}

.hero-inner { position: relative; text-align: center; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 100px;
  padding: 7px 16px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  margin-bottom: 28px;
}
.hero-badge .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--blue-soft);
}

.hero h1 {
  font-size: clamp(38px, 6vw, 64px);
  font-weight: 800;
  max-width: 820px;
  margin: 0 auto 22px;
}
.hero h1 .accent { color: var(--blue); }

.hero-sub {
  font-size: clamp(17px, 2vw, 19.5px);
  max-width: 640px;
  margin: 0 auto 36px;
  color: var(--gray-500);
}

.hero-cta { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.hero-note { font-size: 13.5px; color: var(--gray-400); margin-bottom: 56px; }

/* Hero dashboard mockup */
.hero-visual {
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.dashboard {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  text-align: left;
}
.dash-top {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  background: var(--gray-50);
}
.dash-top .dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gray-300); }
.dash-top .addr {
  flex: 1;
  max-width: 320px;
  margin-inline: auto;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 8px;
  font-size: 12px;
  color: var(--gray-400);
  text-align: center;
  padding: 4px 12px;
}
.dash-body { display: grid; grid-template-columns: 200px 1fr; }

.dash-side {
  border-right: 1px solid var(--gray-100);
  padding: 20px 14px;
  background: var(--gray-50);
}
.dash-side .item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 500;
  color: var(--gray-500);
  margin-bottom: 2px;
}
.dash-side .item svg { width: 15px; height: 15px; flex: none; }
.dash-side .item.active { background: var(--blue-soft); color: var(--blue-dark); font-weight: 600; }

.dash-main { padding: 24px; }
.dash-title { font-size: 15px; font-weight: 700; color: var(--gray-900); margin-bottom: 16px; }

.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 18px; }
.stat-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
}
.stat-card .label { font-size: 12px; color: var(--gray-400); font-weight: 500; }
.stat-card .value { font-size: 22px; font-weight: 800; color: var(--gray-900); margin: 4px 0 2px; }
.stat-card .delta { font-size: 12px; font-weight: 600; color: #12805c; }

.dash-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 14px; }
.chart-card, .list-card {
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 16px;
  background: var(--white);
}
.chart-card .dash-title, .list-card .dash-title { font-size: 13px; margin-bottom: 10px; }
.chart-card svg { width: 100%; height: auto; }

.list-card .prod {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--gray-100);
}
.list-card .prod:last-child { border-bottom: none; }
.prod .thumb {
  width: 34px; height: 34px;
  border-radius: 9px;
  background: var(--gray-100);
  display: grid;
  place-items: center;
  font-size: 14px;
  flex: none;
}
.prod .meta { flex: 1; min-width: 0; }
.prod .name { font-size: 12.5px; font-weight: 600; color: var(--gray-800); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.prod .sold { font-size: 11px; color: var(--gray-400); }
.prod .amt { font-size: 12.5px; font-weight: 700; color: var(--gray-900); }

/* floating chips on hero */
.float-chip {
  position: absolute;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  box-shadow: var(--shadow-md);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-800);
  animation: float 5s ease-in-out infinite;
}
.float-chip .ic {
  width: 34px; height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--blue-soft);
  color: var(--blue);
  flex: none;
}
.float-chip .ic svg { width: 17px; height: 17px; }
.float-chip small { display: block; font-weight: 500; color: var(--gray-400); font-size: 11px; }
.chip-1 { top: 12%; left: -70px; animation-delay: 0s; }
.chip-2 { bottom: 24%; right: -80px; animation-delay: 2.2s; }
.chip-3 { top: 10%; right: -70px; animation-delay: 1.1s; }
.chip-4 { bottom: 20%; left: -85px; animation-delay: 3.1s; }
.chip-5 { top: 46%; left: -95px; animation-delay: 4s; }
@media (max-width: 1280px) { .chip-5 { display: none; } }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ---------- Trust bar ---------- */
.trustbar { padding: 44px 0 52px; background: var(--white); border-bottom: 1px solid var(--gray-100); }
.trustbar p {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gray-400);
  margin-bottom: 26px;
}
.trust-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px 34px;
}
.trust-logos span {
  font-size: 17px;
  font-weight: 700;
  color: var(--gray-400);
  letter-spacing: -.01em;
  transition: color .2s;
}
.trust-logos span:hover { color: var(--gray-700); }

/* ---------- Sections shared ---------- */
.section { padding: 100px 0; }
.section.gray { background: var(--gray-50); }

.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-soft);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 18px;
}
.section-head h2 { font-size: clamp(30px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.section-head p { font-size: 17.5px; color: var(--gray-500); }

/* ---------- Modules grid ---------- */
.modules-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.module-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 30px 28px;
  transition: all .25s ease;
  position: relative;
}
.module-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--gray-300);
}
.module-card .icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: var(--gray-900);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  transition: background .25s;
}
.module-card:hover .icon { background: var(--blue); }
.module-card .icon svg { width: 23px; height: 23px; }
.module-card h3 { font-size: 18.5px; font-weight: 700; margin-bottom: 8px; }
.module-card p { font-size: 14.5px; color: var(--gray-500); }

/* ---------- Platform (dark) ---------- */
.platform { background: var(--gray-900); color: var(--gray-400); }
.platform .eyebrow { background: rgba(24,119,242,.15); color: #6aa9f8; }
.platform .section-head h2 { color: var(--white); }
.platform .section-head p { color: var(--gray-400); }

.platform-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.p-card {
  background: var(--gray-800);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: all .25s;
}
.p-card:hover { border-color: rgba(255,255,255,.18); transform: translateY(-4px); }
.p-card .num {
  font-size: 13px;
  font-weight: 700;
  color: var(--blue);
  letter-spacing: .08em;
  margin-bottom: 14px;
  display: block;
}
.p-card h3 { color: var(--white); font-size: 19px; margin-bottom: 10px; }
.p-card p { font-size: 14.5px; }

/* ---------- Stats band ---------- */
.stats-band { padding: 80px 0; background: var(--white); }
.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.stat-big .n {
  font-size: clamp(36px, 4.5vw, 52px);
  font-weight: 800;
  color: var(--gray-900);
  letter-spacing: -.03em;
}
.stat-big .n em { font-style: normal; color: var(--blue); }
.stat-big .l { font-size: 15px; color: var(--gray-500); font-weight: 500; margin-top: 6px; }

/* ---------- Solutions ---------- */
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 26px 22px;
  text-align: center;
  transition: all .25s;
  cursor: pointer;
}
.sol-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--blue);
}
.sol-card .emoji { font-size: 30px; margin-bottom: 12px; }
.sol-card h3 { font-size: 15.5px; font-weight: 700; margin-bottom: 4px; }
.sol-card p { font-size: 13px; color: var(--gray-400); }

/* ---------- Why / features split ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 70px; align-items: center; }
.split h2 { font-size: clamp(28px, 3.6vw, 38px); font-weight: 800; margin-bottom: 18px; }
.split > div > p { font-size: 17px; color: var(--gray-500); margin-bottom: 30px; }

.check-list { list-style: none; display: grid; gap: 16px; }
.check-list li { display: flex; gap: 13px; align-items: flex-start; }
.check-list .ck {
  width: 24px; height: 24px;
  border-radius: 50%;
  background: var(--blue-soft);
  color: var(--blue);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 2px;
}
.check-list .ck svg { width: 13px; height: 13px; }
.check-list strong { display: block; color: var(--gray-900); font-size: 15.5px; }
.check-list span { font-size: 14px; color: var(--gray-500); }

.security-visual {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 44px 38px;
  color: var(--gray-300);
  position: relative;
  overflow: hidden;
}
.security-visual::after {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(24,119,242,.25), transparent 70%);
  top: -80px; right: -80px;
}
.sec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: relative;
  z-index: 1;
}
.sec-row:last-child { border-bottom: none; }
.sec-row .t { font-size: 15px; font-weight: 600; color: var(--white); display: flex; align-items: center; gap: 12px; }
.sec-row .t svg { width: 18px; height: 18px; color: var(--blue); flex: none; }
.sec-row .v { font-size: 13.5px; color: #4ade80; font-weight: 600; white-space: nowrap; }

/* ---------- Pricing ---------- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 38px 32px;
  display: flex;
  flex-direction: column;
  transition: all .25s;
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.price-card.featured {
  background: var(--gray-900);
  border-color: var(--gray-900);
  color: var(--gray-400);
  box-shadow: var(--shadow-lg);
}
.price-card .plan { font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; color: var(--blue); margin-bottom: 12px; }
.price-card h3 { font-size: 26px; font-weight: 800; margin-bottom: 8px; }
.price-card.featured h3 { color: var(--white); }
.price-card .desc { font-size: 14.5px; margin-bottom: 26px; color: var(--gray-500); }
.price-card.featured .desc { color: var(--gray-400); }
.price-card ul { list-style: none; display: grid; gap: 12px; margin-bottom: 32px; flex: 1; }
.price-card li { display: flex; gap: 10px; font-size: 14.5px; align-items: flex-start; }
.price-card li svg { width: 17px; height: 17px; color: var(--blue); flex: none; margin-top: 3px; }
.price-card.featured li { color: var(--gray-300); }
.badge-pop {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 100px;
  letter-spacing: .04em;
  white-space: nowrap;
}
.pricing-note { text-align: center; margin-top: 36px; font-size: 14.5px; color: var(--gray-500); }

/* ---------- Testimonial ---------- */
.rating-stars { color: #f59e0b; font-size: 22px; letter-spacing: 4px; margin-bottom: 20px; }
.testi-quote {
  font-size: clamp(20px, 2.6vw, 27px);
  font-weight: 600;
  color: var(--gray-900);
  max-width: 780px;
  margin: 0 auto 28px;
  line-height: 1.45;
  text-align: center;
}
.testi-meta { text-align: center; font-size: 15px; color: var(--gray-500); }
.testi-meta strong { color: var(--gray-900); display: block; font-size: 16px; }
.testi-wrap { text-align: center; }

/* ---------- CTA ---------- */
.cta {
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 76px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 20% 0%, rgba(24,119,242,.28), transparent 60%),
    radial-gradient(500px 260px at 85% 100%, rgba(24,119,242,.18), transparent 60%);
}
.cta > * { position: relative; }
.cta h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); font-weight: 800; margin-bottom: 16px; }
.cta p { color: var(--gray-400); font-size: 17.5px; max-width: 540px; margin: 0 auto 34px; }
.cta .hero-cta { margin-bottom: 0; }

/* ---------- Footer ---------- */
.footer { background: var(--gray-900); color: var(--gray-400); padding: 80px 0 36px; margin-top: 100px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand img { height: 46px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 14.5px; max-width: 300px; }
.footer h4 { color: var(--white); font-size: 14px; font-weight: 700; letter-spacing: .06em; text-transform: uppercase; margin-bottom: 20px; }
.footer ul { list-style: none; display: grid; gap: 12px; }
.footer ul a { font-size: 14.5px; color: var(--gray-400); transition: color .15s; }
.footer ul a:hover { color: var(--white); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  padding-top: 32px;
  font-size: 13.5px;
}
.footer-bottom .legal { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-bottom a:hover { color: var(--white); }

/* ============================================================
   V2 — extra animation & polish
   ============================================================ */

/* Animated gradient accent in hero headline */
.hero h1 .accent {
  background: linear-gradient(90deg, #1877f2, #4da3ff, #122f4e, #1877f2);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  animation: gradientShift 6s ease infinite;
}
@keyframes gradientShift {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}

/* Drifting glow blobs behind hero */
.hero .blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  pointer-events: none;
  z-index: 0;
}
.blob-1 {
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(24,119,242,.35), transparent 65%);
  top: -140px; left: -120px;
  animation: drift1 14s ease-in-out infinite;
}
.blob-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(18,47,78,.25), transparent 65%);
  top: 10%; right: -140px;
  animation: drift2 18s ease-in-out infinite;
}
@keyframes drift1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(70px, 50px) scale(1.15); }
}
@keyframes drift2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-60px, -40px) scale(1.1); }
}

/* Hero badge — shimmer sweep + sparkle */
.hero-badge {
  position: relative;
  overflow: hidden;
  border-color: rgba(24,119,242,.3);
}
.hero-badge::after {
  content: '';
  position: absolute;
  top: 0; left: -80%;
  width: 60%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(24,119,242,.14), transparent);
  animation: shimmer 3.2s ease infinite;
}
@keyframes shimmer {
  0% { left: -80%; }
  60%, 100% { left: 130%; }
}
.hero-badge .spark { font-size: 15px; animation: sparkle 2.4s ease infinite; }
@keyframes sparkle {
  0%, 100% { transform: scale(1) rotate(0deg); }
  50% { transform: scale(1.25) rotate(12deg); }
}

/* Button shine sweep */
.btn-primary, .btn-dark, .btn-white { position: relative; overflow: hidden; }
.btn-primary::after, .btn-dark::after, .btn-white::after {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255,255,255,.35), transparent);
  transform: skewX(-20deg);
  transition: left .6s ease;
}
.btn-primary:hover::after, .btn-dark:hover::after, .btn-white:hover::after { left: 130%; }

/* Live pulse dot on order chip */
.float-chip .ic.pulse { position: relative; }
.float-chip .ic.pulse::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 10px;
  border: 2px solid var(--blue);
  animation: pulseRing 2s ease-out infinite;
}
@keyframes pulseRing {
  0% { transform: scale(1); opacity: .8; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* Trust logos — infinite marquee */
.marquee {
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 12%, black 88%, transparent);
}
.marquee-track {
  display: flex;
  gap: 56px;
  width: max-content;
  animation: marquee 28s linear infinite;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.marquee-track span {
  font-size: 18px;
  font-weight: 700;
  color: var(--gray-400);
  white-space: nowrap;
  transition: color .2s;
}
.marquee-track span:hover { color: var(--gray-700); }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- Sub-page hero ---------- */
.page-hero {
  padding: 150px 0 70px;
  text-align: center;
  background:
    radial-gradient(800px 400px at 50% -10%, var(--blue-soft) 0%, transparent 60%),
    var(--white);
}
.page-hero h1 { font-size: clamp(34px, 5vw, 52px); font-weight: 800; margin-bottom: 16px; }
.page-hero p { font-size: 18px; color: var(--gray-500); max-width: 620px; margin: 0 auto; }

/* Module detail list inside cards */
.module-card ul.mini {
  list-style: none;
  margin-top: 16px;
  display: grid;
  gap: 8px;
}
.module-card ul.mini li {
  display: flex;
  gap: 9px;
  font-size: 13.5px;
  color: var(--gray-600);
  align-items: flex-start;
}
.module-card ul.mini svg { width: 14px; height: 14px; color: var(--blue); flex: none; margin-top: 3px; }

/* Solutions detail cards */
.sol-card.wide { text-align: left; cursor: default; }
.sol-card.wide .emoji { font-size: 34px; }
.sol-card.wide h3 { font-size: 17.5px; }
.sol-card.wide p { font-size: 14px; color: var(--gray-500); }

/* FAQ */
.faq { max-width: 760px; margin: 0 auto; display: grid; gap: 14px; }
.faq details {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 24px;
  transition: box-shadow .2s;
}
.faq details[open] { box-shadow: var(--shadow-sm); }
.faq summary {
  font-weight: 700;
  color: var(--gray-900);
  cursor: pointer;
  font-size: 16px;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; font-size: 22px; color: var(--gray-400); font-weight: 400; transition: transform .2s; }
.faq details[open] summary::after { transform: rotate(45deg); }
.faq details p { margin-top: 12px; font-size: 15px; color: var(--gray-500); }

/* ============================================================
   AI Package Assistant (sign-up wizard)
   ============================================================ */
.oz-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(16, 24, 40, .55);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.oz-overlay.open { opacity: 1; pointer-events: auto; }

.oz-modal {
  width: min(480px, 100%);
  max-height: min(680px, 92vh);
  background: var(--white);
  border-radius: 22px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(24px) scale(.97);
  transition: transform .35s cubic-bezier(.2, .9, .3, 1.2);
}
.oz-overlay.open .oz-modal { transform: translateY(0) scale(1); }

.oz-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 20px;
  background: var(--gray-900);
  color: var(--white);
}
.oz-head .oz-avatar { width: 42px; height: 42px; flex: none; }
.oz-head .t { flex: 1; }
.oz-head .t strong { display: block; font-size: 15px; }
.oz-head .t span { font-size: 12px; color: #4ade80; display: flex; align-items: center; gap: 6px; }
.oz-head .t span::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: #4ade80;
  animation: pulseDot 1.8s ease infinite;
}
@keyframes pulseDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74,222,128,.5); }
  50% { box-shadow: 0 0 0 5px rgba(74,222,128,0); }
}
.oz-close {
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  width: 32px; height: 32px;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  transition: background .2s;
}
.oz-close:hover { background: rgba(255,255,255,.22); }

.oz-body {
  flex: 1;
  overflow-y: auto;
  padding: 22px 18px;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 14px;
  scroll-behavior: smooth;
}

.oz-row { display: flex; gap: 10px; align-items: flex-end; }
.oz-row .oz-avatar { width: 30px; height: 30px; flex: none; margin-bottom: 2px; }

.oz-bubble {
  max-width: 82%;
  padding: 12px 16px;
  border-radius: 16px 16px 16px 4px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  font-size: 14.5px;
  color: var(--gray-700);
  box-shadow: var(--shadow-sm);
  animation: bubbleIn .35s ease both;
}
.oz-row.user { justify-content: flex-end; }
.oz-row.user .oz-bubble {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  border-radius: 16px 16px 4px 16px;
}
@keyframes bubbleIn {
  from { opacity: 0; transform: translateY(10px) scale(.96); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.oz-typing { display: inline-flex; gap: 5px; padding: 4px 2px; }
.oz-typing i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--gray-400);
  animation: typing 1.2s ease infinite;
}
.oz-typing i:nth-child(2) { animation-delay: .15s; }
.oz-typing i:nth-child(3) { animation-delay: .3s; }
@keyframes typing {
  0%, 60%, 100% { transform: translateY(0); opacity: .5; }
  30% { transform: translateY(-6px); opacity: 1; }
}

.oz-options {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  padding-left: 40px;
  animation: bubbleIn .35s ease both;
}
.oz-chip {
  background: var(--white);
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  padding: 9px 17px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-700);
  cursor: pointer;
  font-family: var(--font);
  transition: all .18s;
}
.oz-chip:hover {
  border-color: var(--blue);
  color: var(--blue);
  background: var(--blue-soft);
  transform: translateY(-2px);
}

.oz-result {
  background: var(--gray-900);
  border-radius: 18px;
  padding: 24px 22px;
  color: var(--gray-300);
  animation: bubbleIn .45s ease both;
  margin-left: 40px;
}
.oz-result .rec-badge {
  display: inline-block;
  background: rgba(24,119,242,.2);
  color: #6aa9f8;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  margin-bottom: 12px;
}
.oz-result h3 { color: var(--white); font-size: 22px; margin-bottom: 6px; }
.oz-result .why { font-size: 13.5px; margin-bottom: 14px; }
.oz-result .mods { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.oz-result .mods span {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gray-300);
  padding: 5px 12px;
}
.oz-result .btn { width: 100%; justify-content: center; }

/* Robot avatar bob + blinking eyes */
.oz-avatar { animation: bob 3.2s ease-in-out infinite; }
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}
.oz-eye {
  transform-box: fill-box;
  transform-origin: center;
  animation: blink 4s ease infinite;
}
@keyframes blink {
  0%, 44%, 56%, 100% { transform: scaleY(1); }
  50% { transform: scaleY(.12); }
}

/* ============================================================
   V3 — colorful hero, order journey, AI features, logo marquee
   ============================================================ */

/* Hero — more color */
.hero {
  background:
    radial-gradient(900px 460px at 82% -8%, rgba(24,119,242,.14) 0%, transparent 60%),
    radial-gradient(700px 400px at 8% 4%, rgba(124,58,237,.10) 0%, transparent 55%),
    radial-gradient(600px 340px at 50% 30%, rgba(6,182,212,.07) 0%, transparent 60%),
    var(--white);
}
.blob-1 { background: radial-gradient(circle, rgba(24,119,242,.42), transparent 65%); }
.blob-2 { background: radial-gradient(circle, rgba(124,58,237,.30), transparent 65%); }
.blob-3 {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(6,182,212,.28), transparent 65%);
  bottom: 8%; left: 12%;
  animation: drift1 16s ease-in-out infinite reverse;
}
.hero h1 .accent {
  background: linear-gradient(90deg, #1877f2, #06b6d4, #7c3aed, #1877f2);
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}
.hero .btn-primary {
  background: linear-gradient(120deg, #1877f2, #4f46e5);
  box-shadow: 0 4px 18px rgba(24, 119, 242, .4);
}
.hero .btn-primary:hover { background: linear-gradient(120deg, #0f5ec7, #4338ca); }
.hero-badge {
  border-color: rgba(124,58,237,.25);
  background: linear-gradient(var(--white), var(--white)) padding-box,
              linear-gradient(120deg, rgba(24,119,242,.5), rgba(124,58,237,.5)) border-box;
  border: 1.5px solid transparent;
}
.hero-badge .spark { color: #7c3aed; }
.stat-card .delta { color: #12805c; }
.dash-side .item.active { background: linear-gradient(120deg, var(--blue-soft), #ede9fe); }

/* Logo marquee with real logos */
.marquee-track { align-items: center; gap: 48px; }
.logo-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: var(--gray-500);
  white-space: nowrap;
  filter: grayscale(1) opacity(.65);
  transition: filter .25s;
}
.logo-item:hover { filter: grayscale(0) opacity(1); }
.logo-item img { height: 26px; width: auto; }
.logo-item .mark {
  width: 26px; height: 26px;
  border-radius: 8px;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 12.5px;
  font-weight: 800;
  flex: none;
}

/* ---------- Order journey ---------- */
.journey-band {
  position: relative;
  background: var(--gray-900);
  overflow: hidden;
}
.journey-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(700px 340px at 15% 0%, rgba(24,119,242,.22), transparent 60%),
    radial-gradient(600px 300px at 90% 100%, rgba(124,58,237,.16), transparent 60%);
}
.journey-band > .container { position: relative; }
.journey-band .eyebrow { background: rgba(24,119,242,.15); color: #6aa9f8; }
.journey-band .section-head h2 { color: var(--white); }
.journey-band .section-head p { color: var(--gray-400); }

.journey {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 44px;
}
.journey::before {
  content: '';
  position: absolute;
  top: 31px;
  left: 10%;
  right: 10%;
  height: 2px;
  background: rgba(255,255,255,.12);
}
.journey::after {
  content: '';
  position: absolute;
  top: 31px;
  left: 10%;
  width: 80%;
  height: 2px;
  background: linear-gradient(90deg, #1877f2, #06b6d4, #7c3aed);
  transform-origin: left;
  transform: scaleX(0);
  transition: transform 2.2s cubic-bezier(.4, 0, .2, 1) .3s;
}
.journey.visible::after { transform: scaleX(1); }

.j-step { text-align: center; padding: 0 10px; position: relative; }
.j-step .dot {
  width: 64px; height: 64px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: var(--gray-800);
  border: 2px solid rgba(255,255,255,.14);
  display: grid;
  place-items: center;
  color: var(--gray-400);
  position: relative;
  z-index: 1;
  transition: all .5s ease;
}
.j-step .dot svg { width: 26px; height: 26px; }
.journey.visible .j-step .dot {
  border-color: var(--blue);
  color: #6aa9f8;
  box-shadow: 0 0 24px rgba(24,119,242,.35);
}
.journey.visible .j-step:nth-child(1) .dot { transition-delay: .3s; }
.journey.visible .j-step:nth-child(2) .dot { transition-delay: .75s; }
.journey.visible .j-step:nth-child(3) .dot { transition-delay: 1.2s; }
.journey.visible .j-step:nth-child(4) .dot { transition-delay: 1.65s; }
.journey.visible .j-step:nth-child(5) .dot { transition-delay: 2.1s; }
.j-step h3 { color: var(--white); font-size: 15.5px; margin-bottom: 6px; }
.j-step p { font-size: 12.5px; color: var(--gray-400); }

.journey-foot {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.journey-foot .pill {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 100px;
  padding: 10px 20px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--gray-300);
}
.journey-foot .pill svg { width: 16px; height: 16px; color: #4ade80; flex: none; }

/* ---------- AI features ---------- */
.ai-section {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(124,58,237,.08), transparent 60%),
    radial-gradient(700px 380px at 10% 100%, rgba(24,119,242,.08), transparent 60%),
    var(--gray-50);
}
.ai-section .eyebrow {
  background: linear-gradient(120deg, #1877f2, #7c3aed);
  color: var(--white);
}
.ai-title-grad {
  background: linear-gradient(90deg, #1877f2, #7c3aed);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}
.ai-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.ai-card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px 28px;
  border: 1px solid var(--gray-200);
  transition: all .25s ease;
  overflow: hidden;
}
.ai-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1.5px;
  background: linear-gradient(135deg, rgba(24,119,242,.45), rgba(124,58,237,.45));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity .25s;
}
.ai-card:hover { transform: translateY(-6px); box-shadow: 0 18px 44px -10px rgba(79,70,229,.18); }
.ai-card:hover::before { opacity: 1; }
.ai-card .icon {
  width: 50px; height: 50px;
  border-radius: 13px;
  background: linear-gradient(135deg, #1877f2, #7c3aed);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.ai-card .icon svg { width: 23px; height: 23px; }
.ai-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; display: flex; align-items: center; gap: 8px; }
.ai-card p { font-size: 14.5px; color: var(--gray-500); }
.ai-card .soon {
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  background: #ede9fe;
  color: #7c3aed;
  border-radius: 100px;
  padding: 3px 9px;
}
.ai-demo {
  margin-top: 40px;
  background: var(--gray-900);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
}
.ai-demo .q {
  flex: 1;
  min-width: 260px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px;
  padding: 14px 20px;
  color: var(--gray-300);
  font-size: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.ai-demo .q .cursor {
  display: inline-block;
  width: 2px; height: 18px;
  background: #6aa9f8;
  animation: blinkCursor 1s step-end infinite;
}
@keyframes blinkCursor { 50% { opacity: 0; } }
.ai-demo .a { color: var(--white); font-size: 15px; font-weight: 600; }
.ai-demo .a small { display: block; color: #4ade80; font-weight: 600; font-size: 12.5px; margin-top: 2px; }

@media (max-width: 1024px) {
  .ai-grid { grid-template-columns: repeat(2, 1fr); }
  .journey { grid-template-columns: repeat(5, 1fr); }
  .j-step p { display: none; }
}
@media (max-width: 620px) {
  .ai-grid { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; gap: 20px; }
  .journey::before, .journey::after { display: none; }
  .j-step { display: flex; align-items: center; gap: 16px; text-align: left; }
  .j-step .dot { width: 52px; height: 52px; margin: 0; flex: none; }
  .j-step p { display: block; }
}

/* ============================================================
   V4 — bottom-of-page polish
   ============================================================ */

/* Testimonial — framed card with big quote mark */
.testi-wrap {
  position: relative;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 70px 48px 56px;
  overflow: hidden;
}
.testi-wrap::before {
  content: '"';
  position: absolute;
  top: -30px;
  left: 36px;
  font-size: 220px;
  font-weight: 800;
  line-height: 1;
  color: var(--gray-200);
  font-family: Georgia, serif;
  pointer-events: none;
}
.testi-wrap::after {
  content: '';
  position: absolute;
  inset: auto 0 0 0;
  height: 3px;
  background: linear-gradient(90deg, #1877f2, #06b6d4, #7c3aed);
}
.testi-wrap > * { position: relative; }

/* Footer — gradient top line, socials, newsletter */
.footer {
  position: relative;
  background:
    radial-gradient(700px 300px at 85% 0%, rgba(24,119,242,.10), transparent 60%),
    radial-gradient(500px 260px at 10% 100%, rgba(124,58,237,.08), transparent 60%),
    var(--gray-900);
}
.footer::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1877f2, #06b6d4, #7c3aed);
}
.footer-brand img { height: 56px; }

.footer-news {
  display: flex;
  gap: 8px;
  margin-top: 22px;
  max-width: 320px;
}
.footer-news input {
  flex: 1;
  min-width: 0;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 10px;
  padding: 11px 14px;
  color: var(--white);
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.footer-news input::placeholder { color: var(--gray-500); }
.footer-news input:focus { border-color: var(--blue); }
.footer-news .btn { padding: 11px 18px; font-size: 14px; }

.socials { display: flex; gap: 10px; margin-top: 22px; }
.socials a {
  width: 38px; height: 38px;
  border-radius: 11px;
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.1);
  display: grid;
  place-items: center;
  color: var(--gray-400);
  transition: all .2s;
}
.socials a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-3px);
}
.socials svg { width: 17px; height: 17px; }

/* ============================================================
   V5 — chat input, live chat widget, blog
   ============================================================ */

/* Text input row inside chat bubbles */
.oz-input-row {
  display: flex;
  gap: 8px;
  padding-left: 40px;
  animation: bubbleIn .35s ease both;
}
.oz-input-row input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: 12px;
  padding: 11px 15px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
  background: var(--white);
}
.oz-input-row input:focus { border-color: var(--blue); }
.oz-input-row input.err { border-color: #ef4444; }
.oz-input-row .btn { padding: 10px 15px; border-radius: 12px; }

/* Floating live-chat */
.chat-fab {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 150;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  background: linear-gradient(135deg, #1877f2, #4f46e5);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 30px rgba(24,119,242,.45);
  transition: transform .2s, opacity .25s;
}
.chat-fab:hover { transform: scale(1.08); }
.chat-fab.hidden { opacity: 0; pointer-events: none; transform: scale(.6); }
.chat-fab svg { width: 26px; height: 26px; }
.chat-fab .chat-dot {
  position: absolute;
  top: 4px; right: 4px;
  width: 13px; height: 13px;
  border-radius: 50%;
  background: #4ade80;
  border: 2.5px solid var(--white);
  animation: pulseDot 1.8s ease infinite;
}

.chat-panel {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 160;
  width: min(370px, calc(100vw - 32px));
  height: min(520px, calc(100vh - 100px));
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateY(20px) scale(.96);
  transform-origin: bottom right;
  transition: all .3s cubic-bezier(.2, .9, .3, 1.15);
}
.chat-panel.open { opacity: 1; pointer-events: auto; transform: translateY(0) scale(1); }

.chat-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--gray-900);
  color: var(--white);
}
.chat-head .oz-avatar { width: 36px; height: 36px; flex: none; }
.chat-head .t { flex: 1; }
.chat-head .t strong { display: block; font-size: 14.5px; }
.chat-head .t span { font-size: 11.5px; color: #4ade80; }
.chat-min {
  background: rgba(255,255,255,.1);
  border: none;
  color: var(--white);
  width: 30px; height: 30px;
  border-radius: 50%;
  font-size: 14px;
  cursor: pointer;
}
.chat-min:hover { background: rgba(255,255,255,.22); }

.chat-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 14px;
  background: var(--gray-50);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.chat-body .oz-bubble { font-size: 14px; }
.chat-body .oz-options { padding-left: 40px; }
.chat-body .oz-input-row { padding-left: 40px; }

/* Blog / Knowledge */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.blog-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all .25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.blog-card .cover {
  height: 150px;
  background: linear-gradient(135deg, var(--blue-soft), #ede9fe);
  display: grid;
  place-items: center;
  font-size: 44px;
}
.blog-card .pad { padding: 22px 24px 26px; flex: 1; display: flex; flex-direction: column; }
.blog-card .cat {
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 8px;
}
.blog-card h3 { font-size: 17.5px; margin-bottom: 8px; line-height: 1.35; }
.blog-card p { font-size: 14px; color: var(--gray-500); flex: 1; }
.blog-card .meta { font-size: 12.5px; color: var(--gray-400); margin-top: 14px; }

.article-body {
  max-width: 720px;
  margin: 0 auto;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--gray-600);
}
.article-body h2 { font-size: 24px; margin: 36px 0 14px; }
.article-body h3 { font-size: 19px; margin: 28px 0 10px; }
.article-body p { margin-bottom: 18px; }
.article-body ul, .article-body ol { margin: 0 0 18px 24px; }
.article-body li { margin-bottom: 8px; }
.article-meta { text-align: center; color: var(--gray-400); font-size: 14px; margin-bottom: 40px; }

@media (max-width: 1024px) { .blog-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .blog-grid { grid-template-columns: 1fr; } }

/* ============================================================
   V6 — nav dropdown, chat composer, infographics
   ============================================================ */

/* Solutions dropdown */
.nav-links .has-drop { position: relative; }
.nav-drop {
  position: absolute;
  top: calc(100% + 14px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  list-style: none;
  padding: 10px;
  min-width: 240px;
  opacity: 0;
  pointer-events: none;
  transition: all .2s ease;
  z-index: 120;
}
.nav-drop::before {
  content: '';
  position: absolute;
  top: -14px; left: 0; right: 0;
  height: 14px;
}
.has-drop:hover .nav-drop,
.has-drop:focus-within .nav-drop {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.nav-drop li a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 10px 14px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-600);
  transition: all .15s;
}
.nav-drop li a:hover { background: var(--blue-soft); color: var(--blue-dark); }
.nav-drop li a span { font-size: 17px; }
.nav-drop li.all a { font-weight: 700; color: var(--blue); justify-content: center; border-top: 1px solid var(--gray-100); border-radius: 0 0 10px 10px; margin-top: 6px; padding-top: 12px; }

@media (max-width: 820px) {
  .nav-drop {
    position: static;
    transform: none;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    padding: 4px 0 0 14px;
    min-width: 0;
    display: none;
  }
  .nav-links.mobile-open .has-drop .nav-drop { display: block; }
}

/* Chat composer */
.chat-composer {
  display: flex;
  gap: 8px;
  padding: 12px 14px;
  border-top: 1px solid var(--gray-200);
  background: var(--white);
}
.chat-composer input {
  flex: 1;
  min-width: 0;
  border: 1.5px solid var(--gray-300);
  border-radius: 100px;
  padding: 10px 18px;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.chat-composer input:focus { border-color: var(--blue); }
.chat-composer button {
  width: 42px; height: 42px;
  border-radius: 50%;
  border: none;
  background: var(--blue);
  color: var(--white);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: background .15s, transform .15s;
  flex: none;
}
.chat-composer button:hover { background: var(--blue-dark); transform: scale(1.06); }
.chat-composer button svg { width: 17px; height: 17px; }

/* Infographic stat rings */
.infographic-band {
  background: var(--gray-900);
  position: relative;
  overflow: hidden;
}
.infographic-band::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(600px 300px at 12% 0%, rgba(24,119,242,.2), transparent 60%),
    radial-gradient(500px 260px at 88% 100%, rgba(124,58,237,.15), transparent 60%);
}
.infographic-band > .container { position: relative; }
.infographic-band .eyebrow { background: rgba(24,119,242,.15); color: #6aa9f8; }
.infographic-band .section-head h2 { color: var(--white); }
.infographic-band .section-head p { color: var(--gray-400); }

.ring-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 860px;
  margin: 0 auto;
}
.ring-item { text-align: center; }
.ring-item .ring { position: relative; width: 150px; height: 150px; margin: 0 auto 18px; }
.ring-item svg { width: 150px; height: 150px; transform: rotate(-90deg); }
.ring-item .track { fill: none; stroke: rgba(255,255,255,.1); stroke-width: 10; }
.ring-item .bar {
  fill: none;
  stroke: url(#ringGrad);
  stroke-width: 10;
  stroke-linecap: round;
  stroke-dasharray: 264;
  stroke-dashoffset: 264;
  transition: stroke-dashoffset 1.6s cubic-bezier(.3, 0, .2, 1) .3s;
}
.ring-item.visible .bar { stroke-dashoffset: var(--off); }
.ring-item .val {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.02em;
}
.ring-item .lbl { font-size: 14.5px; color: var(--gray-400); max-width: 210px; margin: 0 auto; }
.ring-item .lbl strong { color: var(--white); display: block; font-size: 15.5px; margin-bottom: 3px; }

/* Industry benefit pills */
.ind-benefits {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  max-width: 900px;
  margin: 0 auto;
}
.ind-benefit {
  display: flex;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: all .25s;
  align-items: flex-start;
}
.ind-benefit:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.ind-benefit .em { font-size: 26px; flex: none; margin-top: 2px; }
.ind-benefit h3 { font-size: 16.5px; margin-bottom: 5px; }
.ind-benefit p { font-size: 14px; color: var(--gray-500); }

@media (max-width: 820px) {
  .ring-row { grid-template-columns: 1fr; gap: 36px; }
  .ind-benefits { grid-template-columns: 1fr; }
}

/* ============================================================
   V7 — full-colour pass across all pages
   ============================================================ */

/* Gradient eyebrow pills everywhere (dark sections keep their own) */
.eyebrow {
  background: linear-gradient(120deg, #1877f2, #7c3aed);
  color: var(--white);
}

/* Active nav link */
.nav-links a.active { color: var(--blue); font-weight: 700; }

/* Colourful page hero on sub-pages */
.page-hero { position: relative; overflow: hidden; }
.page-hero::before,
.page-hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  pointer-events: none;
}
.page-hero::before {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(24,119,242,.22), transparent 65%);
  top: -140px; left: -100px;
  animation: drift1 14s ease-in-out infinite;
}
.page-hero::after {
  width: 380px; height: 380px;
  background: radial-gradient(circle, rgba(124,58,237,.18), transparent 65%);
  bottom: -120px; right: -90px;
  animation: drift2 18s ease-in-out infinite;
}
.page-hero > .container { position: relative; z-index: 1; }

/* Module / feature card icons cycle through brand colours */
.modules-grid .module-card:nth-child(6n+1) .icon { background: #e8f1fe !important; color: #1877f2; }
.modules-grid .module-card:nth-child(6n+2) .icon { background: #ede9fe !important; color: #7c3aed; }
.modules-grid .module-card:nth-child(6n+3) .icon { background: #cffafe !important; color: #0891b2; }
.modules-grid .module-card:nth-child(6n+4) .icon { background: #fef3c7 !important; color: #d97706; }
.modules-grid .module-card:nth-child(6n+5) .icon { background: #fce7f3 !important; color: #db2777; }
.modules-grid .module-card:nth-child(6n+6) .icon { background: #d1fae5 !important; color: #059669; }
.modules-grid .module-card:nth-child(6n+1):hover .icon { background: #1877f2 !important; color: #fff; }
.modules-grid .module-card:nth-child(6n+2):hover .icon { background: #7c3aed !important; color: #fff; }
.modules-grid .module-card:nth-child(6n+3):hover .icon { background: #0891b2 !important; color: #fff; }
.modules-grid .module-card:nth-child(6n+4):hover .icon { background: #d97706 !important; color: #fff; }
.modules-grid .module-card:nth-child(6n+5):hover .icon { background: #db2777 !important; color: #fff; }
.modules-grid .module-card:nth-child(6n+6):hover .icon { background: #059669 !important; color: #fff; }

/* Top gradient accent appears on card hover, colour-matched */
.module-card { overflow: hidden; }
.module-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s ease;
}
.modules-grid .module-card:nth-child(6n+1)::after { background: linear-gradient(90deg, #1877f2, #4da3ff); }
.modules-grid .module-card:nth-child(6n+2)::after { background: linear-gradient(90deg, #7c3aed, #a78bfa); }
.modules-grid .module-card:nth-child(6n+3)::after { background: linear-gradient(90deg, #0891b2, #22d3ee); }
.modules-grid .module-card:nth-child(6n+4)::after { background: linear-gradient(90deg, #d97706, #fbbf24); }
.modules-grid .module-card:nth-child(6n+5)::after { background: linear-gradient(90deg, #db2777, #f472b6); }
.modules-grid .module-card:nth-child(6n+6)::after { background: linear-gradient(90deg, #059669, #34d399); }
.module-card:hover::after { transform: scaleX(1); }

/* Solution cards: tinted emoji circles + colourful hover borders */
.sol-card .emoji {
  width: 58px; height: 58px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  font-size: 26px;
}
.solutions-grid .sol-card:nth-child(6n+1) .emoji { background: #e8f1fe; }
.solutions-grid .sol-card:nth-child(6n+2) .emoji { background: #fce7f3; }
.solutions-grid .sol-card:nth-child(6n+3) .emoji { background: #fef3c7; }
.solutions-grid .sol-card:nth-child(6n+4) .emoji { background: #ede9fe; }
.solutions-grid .sol-card:nth-child(6n+5) .emoji { background: #cffafe; }
.solutions-grid .sol-card:nth-child(6n+6) .emoji { background: #d1fae5; }
.solutions-grid .sol-card:nth-child(6n+1):hover { border-color: #1877f2; }
.solutions-grid .sol-card:nth-child(6n+2):hover { border-color: #db2777; }
.solutions-grid .sol-card:nth-child(6n+3):hover { border-color: #d97706; }
.solutions-grid .sol-card:nth-child(6n+4):hover { border-color: #7c3aed; }
.solutions-grid .sol-card:nth-child(6n+5):hover { border-color: #0891b2; }
.solutions-grid .sol-card:nth-child(6n+6):hover { border-color: #059669; }

/* Industry benefit icons: tinted circles */
.ind-benefit .em {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-size: 24px;
  flex: none;
  margin-top: 0;
}
.ind-benefits .ind-benefit:nth-child(4n+1) .em { background: #e8f1fe; }
.ind-benefits .ind-benefit:nth-child(4n+2) .em { background: #ede9fe; }
.ind-benefits .ind-benefit:nth-child(4n+3) .em { background: #fef3c7; }
.ind-benefits .ind-benefit:nth-child(4n+4) .em { background: #d1fae5; }
.ind-benefits .ind-benefit:nth-child(4n+1):hover { border-color: #1877f2; }
.ind-benefits .ind-benefit:nth-child(4n+2):hover { border-color: #7c3aed; }
.ind-benefits .ind-benefit:nth-child(4n+3):hover { border-color: #d97706; }
.ind-benefits .ind-benefit:nth-child(4n+4):hover { border-color: #059669; }

/* Blog covers cycle gradients */
.blog-grid .blog-card:nth-child(3n+1) .cover { background: linear-gradient(135deg, #e8f1fe, #cffafe); }
.blog-grid .blog-card:nth-child(3n+2) .cover { background: linear-gradient(135deg, #ede9fe, #fce7f3); }
.blog-grid .blog-card:nth-child(3n+3) .cover { background: linear-gradient(135deg, #fef3c7, #ffe4e6); }
.blog-grid .blog-card:nth-child(3n+1):hover { border-color: #1877f2; }
.blog-grid .blog-card:nth-child(3n+2):hover { border-color: #7c3aed; }
.blog-grid .blog-card:nth-child(3n+3):hover { border-color: #d97706; }

/* Featured pricing card gets a glow */
.price-card.featured {
  background:
    radial-gradient(360px 200px at 85% 0%, rgba(24,119,242,.25), transparent 60%),
    radial-gradient(300px 180px at 10% 100%, rgba(124,58,237,.2), transparent 60%),
    var(--gray-900);
  box-shadow: 0 24px 60px -12px rgba(24,119,242,.35);
}
.price-card:not(.featured):hover { border-color: var(--blue); }

/* Sub-page gray sections get a soft colour wash */
.section.gray {
  background:
    radial-gradient(700px 340px at 90% 0%, rgba(24,119,242,.06), transparent 60%),
    radial-gradient(600px 300px at 5% 100%, rgba(124,58,237,.05), transparent 60%),
    var(--gray-50);
}

/* FAQ open state accent */
.faq details[open] { border-left: 3px solid var(--blue); }

/* Gradient primary buttons everywhere (matches hero) */
.btn-primary {
  background: linear-gradient(120deg, #1877f2, #4f46e5);
}
.btn-primary:hover { background: linear-gradient(120deg, #0f5ec7, #4338ca); }

/* Check-list ticks cycle colours */
.check-list li:nth-child(4n+1) .ck { background: #e8f1fe; color: #1877f2; }
.check-list li:nth-child(4n+2) .ck { background: #ede9fe; color: #7c3aed; }
.check-list li:nth-child(4n+3) .ck { background: #fef3c7; color: #d97706; }
.check-list li:nth-child(4n+4) .ck { background: #d1fae5; color: #059669; }

/* Dark "why" cards: coloured numbers */
.platform-grid .p-card:nth-child(6n+1) .num { color: #4da3ff; }
.platform-grid .p-card:nth-child(6n+2) .num { color: #a78bfa; }
.platform-grid .p-card:nth-child(6n+3) .num { color: #22d3ee; }
.platform-grid .p-card:nth-child(6n+4) .num { color: #fbbf24; }
.platform-grid .p-card:nth-child(6n+5) .num { color: #f472b6; }
.platform-grid .p-card:nth-child(6n+6) .num { color: #34d399; }

/* ============================================================
   V8 — industry hero illustrations
   ============================================================ */
.ind-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  text-align: left;
}
.ind-hero-grid h1 { font-size: clamp(32px, 4vw, 46px); }
.ind-hero-grid .hero-cta { justify-content: flex-start; }
.ind-hero-art svg {
  width: 100%;
  height: auto;
  display: block;
}
.ind-hero-art .fl {
  animation: float 5.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.ind-hero-art .fl2 { animation-delay: 2.4s; }
.ind-hero-art .fl3 { animation-delay: 1.2s; animation-duration: 7s; }
.ind-hero-art .spin {
  animation: orbitSpin 40s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes orbitSpin { to { transform: rotate(360deg); } }
.ind-hero-art .grow {
  transform: scaleY(0);
  transform-origin: bottom;
  transform-box: fill-box;
  transition: transform .9s cubic-bezier(.3, 0, .2, 1);
}
.ind-hero-art.visible .grow { transform: scaleY(1); }
.ind-hero-art.visible .grow:nth-of-type(2) { transition-delay: .15s; }

@media (max-width: 900px) {
  .ind-hero-grid { grid-template-columns: 1fr; gap: 36px; text-align: center; }
  .ind-hero-grid .hero-cta { justify-content: center; }
  .ind-hero-art { max-width: 440px; margin: 0 auto; }
}

/* ============================================================
   V9 — home page illustrations
   ============================================================ */
.head-split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
  margin-bottom: 64px;
}
.head-split .section-head {
  margin: 0;
  text-align: left;
  max-width: none;
}
.head-split.flip .section-art { order: -1; }
.section-art svg { width: 100%; height: auto; display: block; }
.section-art .fl {
  animation: float 5.5s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.section-art .fl2 { animation-delay: 2.2s; }
.section-art .fl3 { animation-delay: 1.1s; animation-duration: 7s; }
.section-art .spin {
  animation: orbitSpin 46s linear infinite;
  transform-box: fill-box;
  transform-origin: center;
}
.section-art .pulse-ring {
  animation: svgPulse 3s ease-in-out infinite;
  transform-box: fill-box;
  transform-origin: center;
}
@keyframes svgPulse {
  0%, 100% { transform: scale(1); opacity: .5; }
  50% { transform: scale(1.08); opacity: .9; }
}

.cta-art {
  position: absolute;
  right: 30px;
  bottom: -8px;
  width: 190px;
  pointer-events: none;
}
.cta-art svg { width: 100%; height: auto; }
.cta-art .fl { animation: float 5s ease-in-out infinite; transform-box: fill-box; transform-origin: center; }

@media (max-width: 900px) {
  .head-split { grid-template-columns: 1fr; gap: 36px; }
  .head-split .section-head { text-align: center; }
  .head-split .section-art { max-width: 400px; margin: 0 auto; }
  .head-split.flip .section-art { order: 0; }
  .cta-art { display: none; }
}

/* ============================================================
   V10 — unified footer
   ============================================================ */
.footer-brand img {
  height: 72px;
  margin-left: -8px;   /* compensate for whitespace baked into the logo PNG */
  margin-bottom: 14px;
}
.footer-grid {
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  align-items: start;
}
.footer h4 { margin-top: 6px; }
.footer-brand p { font-size: 14.5px; max-width: 320px; line-height: 1.65; }
.footer .socials { margin-top: 24px; }

/* ============================================================
   V11 — long-form article elements
   ============================================================ */
.article-body figure {
  margin: 32px 0;
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 26px 24px 18px;
}
.article-body figure svg { width: 100%; height: auto; display: block; }
.article-body figcaption {
  text-align: center;
  font-size: 13px;
  color: var(--gray-400);
  margin-top: 14px;
}
.article-body table {
  width: 100%;
  border-collapse: collapse;
  margin: 26px 0;
  font-size: 14.5px;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  overflow: hidden;
}
.article-body th {
  background: var(--gray-900);
  color: var(--white);
  padding: 12px 16px;
  text-align: left;
  font-size: 13px;
  letter-spacing: .03em;
}
.article-body td { padding: 12px 16px; border-bottom: 1px solid var(--gray-200); }
.article-body tr:last-child td { border-bottom: none; }
.article-body tr:nth-child(even) td { background: var(--gray-50); }
.article-body td.good { color: #059669; font-weight: 600; }
.article-body td.bad { color: #dc2626; font-weight: 600; }
.article-body blockquote {
  border-left: 4px solid var(--blue);
  background: var(--blue-soft);
  border-radius: 0 12px 12px 0;
  padding: 18px 24px;
  margin: 26px 0;
  font-weight: 600;
  color: var(--gray-800);
}
.article-body .toc {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 14px;
  padding: 20px 26px;
  margin: 26px 0;
  font-size: 15px;
}
.article-body .toc strong { display: block; margin-bottom: 10px; color: var(--gray-900); }
.article-body .toc a { color: var(--blue); display: block; padding: 3px 0; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal[data-delay="1"] { transition-delay: .1s; }
.reveal[data-delay="2"] { transition-delay: .2s; }
.reveal[data-delay="3"] { transition-delay: .3s; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .modules-grid, .platform-grid { grid-template-columns: repeat(2, 1fr); }
  .solutions-grid { grid-template-columns: repeat(3, 1fr); }
  .float-chip { display: none; }
  .split { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 820px) {
  .nav-links, .nav-actions .signin { display: none; }
  .nav-toggle { display: block; }
  .nav-links.mobile-open {
    display: flex;
    position: fixed;
    top: 80px;
    left: 0; right: 0;
    flex-direction: column;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    padding: 24px;
    gap: 20px;
    box-shadow: var(--shadow-md);
  }
  .dash-body { grid-template-columns: 1fr; }
  .dash-side { display: none; }
  .stats-row { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .section { padding: 68px 0; }
  .hero { padding: 130px 0 60px; }
  .modules-grid, .platform-grid { grid-template-columns: 1fr; }
  .solutions-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: 1fr; }
  .dash-stats { grid-template-columns: 1fr 1fr; }
  .dash-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta { padding: 56px 24px; }
}
