/* =========================================================
   RESET
========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
img    { display: block; max-width: 100%; }
a      { text-decoration: none; color: inherit; }
input, select, button { font-family: inherit; }
iframe { border: none; display: block; }

/* =========================================================
   BASE
========================================================= */
body {
  font-family: 'Inter', sans-serif;
  font-size: 16px; line-height: 1.5;
  color: #0a0a0a; background: #0A0F1E;
  overflow-x: hidden;
  padding-bottom: 72px;
}

.container        { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 1024px; margin: 0 auto; }
.container-sm     { max-width: 672px;  margin: 0 auto; }
.text-center      { text-align: center; }

/* =========================================================
   SECTIONS & BACKGROUNDS
========================================================= */
.section  { padding: 70px 0; }
.bg-white { background: #ffffff; }
.bg-light { background: #f8fafc; }
.bg-navy  { background: #0f172b; }

/* =========================================================
   TYPOGRAPHY
========================================================= */
.section-heading {
  font-size: 36px; font-weight: 700;
  text-align: center; color: #0a0a0a;
  margin-bottom: 12px; line-height: 1.15;
}
.section-heading.white      { color: #ffffff; }
.section-heading.align-left { text-align: left; }

.section-sub {
  font-size: 16px; color: #45556c;
  text-align: center; margin-bottom: 48px;
}
.section-sub.white { color: #e0f2fe; }
.section-sub.faded { color: #90a1b9; }

.section-tag {
  font-size: 12px; font-weight: 700; color: #008CE4;
  text-transform: uppercase; letter-spacing: 1.2px;
  text-align: center; margin-bottom: 12px;
}

.section-cta-row {
  display: flex; justify-content: center; margin-top: 40px;
}

/* =========================================================
   BUTTONS
========================================================= */
.btn-primary {
  display: inline-block;
  background: linear-gradient(135deg, #008CE4 0%, #00AF9E 100%);
  color: #ffffff; border: none;
  border-radius: 10px; padding: 12px 24px;
  font-size: 14px; font-weight: 600; cursor: pointer; white-space: nowrap;
}
.btn-primary:hover { opacity: 0.88; }

.btn-ghost {
  display: inline-block;
  background: transparent; color: #ffffff;
  border: 1px solid rgba(255,255,255,0.30); border-radius: 10px;
  padding: 12px 24px; font-size: 14px; font-weight: 500; cursor: pointer;
}
.btn-ghost:hover { background: rgba(255,255,255,0.10); border-color: rgba(255,255,255,0.60); }

.btn-submit {
  width: 100%;
  background: linear-gradient(135deg, #008CE4 0%, #00AF9E 100%);
  color: #ffffff; border: none; border-radius: 10px;
  padding: 13px 24px; font-size: 15px; font-weight: 700; cursor: pointer;
  margin-top: 4px;
}
.btn-submit:hover { opacity: 0.88; }

.btn-sticky {
  display: inline-block;
  background: linear-gradient(135deg, #008CE4 0%, #00AF9E 100%);
  color: #ffffff; border: none; border-radius: 8px;
  padding: 10px 24px; font-size: 14px; font-weight: 600;
  cursor: pointer; white-space: nowrap;
}
.btn-sticky:hover { opacity: 0.88; }

/* =========================================================
   CARD BASE
========================================================= */
.card { border: 1px solid transparent; }
.card:hover { border-color: #a5d8ff; }

/* =========================================================
   MODAL OVERLAY
========================================================= */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(10, 15, 30, 0.65);
  z-index: 500;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
  opacity: 0; pointer-events: none;
}
.modal-overlay.open { opacity: 1; pointer-events: all; }

.modal-box {
  background: #ffffff; border-radius: 16px;
  padding: 36px 32px; width: 100%; max-width: 520px;
  position: relative; max-height: 90vh; overflow-y: auto;
}

.modal-close {
  position: absolute; top: 16px; right: 20px;
  background: none; border: none; font-size: 20px;
  color: #62748e; cursor: pointer; line-height: 1;
}
.modal-close:hover { color: #0a0a0a; }

.form-title { font-size: 22px; font-weight: 700; color: #0a0a0a; margin-bottom: 4px; }
.form-sub   { font-size: 14px; color: #62748e; margin-bottom: 20px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: 13px; font-weight: 600; color: #374151; }

.form-group input,
.form-group select {
  border: 1px solid #d1d5db; border-radius: 8px;
  padding: 10px 14px; font-size: 13px; color: #111827;
  outline: none; width: 100%; background: #fff;
}
.form-group input:focus,
.form-group select:focus { border-color: #008CE4; }

.form-success { display: none; color: #16a34a; font-size: 13px; margin-top: 8px; text-align: center; }
.form-error   { display: none; color: #dc2626; font-size: 13px; margin-top: 8px; text-align: center; }

/* =========================================================
   NAV
========================================================= */
.nav {
  background: #0a0f1e;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 14px 0; position: sticky; top: 0; z-index: 200;
}
.nav-inner { display: flex; align-items: center; gap: 40px; }
.nav-logo  { display: flex; align-items: center; margin-right: auto; text-decoration: none; }
.logo-img        { height: 36px; width: auto; display: block; }
.logo-img-footer { height: 32px; }
.nav-links { display: flex; gap: 28px; }
.nav-links a { font-size: 14px; color: #cad5e2; }
.nav-links a:hover { color: #ffffff; }

/* =========================================================
   HERO
========================================================= */
.hero {
  background: linear-gradient(142deg, #0a0f1e 0%, #0f172b 55%, #162036 100%);
  padding: 80px 0 60px; border-radius: 0 0 24px 24px;
}
.hero-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: start; }

.badge {
  display: inline-block;
  background: rgba(255,255,255,0.10); border-radius: 8px;
  padding: 5px 14px; font-size: 12px; font-weight: 500;
  color: #ffffff; margin-bottom: 24px;
}

.hero-heading { font-size: 46px; font-weight: 700; line-height: 1.2; color: #ffffff; margin-bottom: 20px; }
.hero-para { font-size: 16px; color: #cad5e2; line-height: 1.65; margin-bottom: 32px; }

.hero-pills {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 10px; margin-bottom: 32px;
}
.pill {
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 10px; padding: 11px 14px;
  color: #ffffff; font-size: 14px;
}
.pill img { width: 16px; height: 16px; flex-shrink: 0; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero Inline Form */
.hero-form-card {
  background: #ffffff; border-radius: 14px;
  padding: 28px 24px; box-shadow: 0 24px 64px rgba(0,0,0,0.22);
}
.hero-form-card .form-title { font-size: 20px; margin-bottom: 20px; }
.hero-form-card .demo-form { display: flex; flex-direction: column; gap: 14px; }
.hero-form-card .form-group input,
.hero-form-card .form-group select {
  padding: 9px 14px; font-size: 13px;
}

/* brand strip removed – replaced by .logo-strip-section */

/* =========================================================
   CLIENT LOGO STRIP – auto-sliding marquee
========================================================= */
.logo-strip-section {
  background: #ffffff;
  padding: 36px 0;
  border-top: 1px solid #f1f5f9;
  border-bottom: 1px solid #f1f5f9;
  overflow: hidden;
}

.logo-track-wrap {
  overflow: hidden;
  position: relative;
}

/* Fade edges */
.logo-track-wrap::before,
.logo-track-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.logo-track-wrap::before { left: 0;  background: linear-gradient(to right, #ffffff, transparent); }
.logo-track-wrap::after  { right: 0; background: linear-gradient(to left,  #ffffff, transparent); }

.logo-track {
  display: flex;
  gap: 64px;
  width: max-content;
  animation: logoScroll 30s linear infinite;
}

.logo-track:hover { animation-play-state: paused; }

@keyframes logoScroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

.logo-item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 90px;
  flex-shrink: 0;
  opacity: 0.65;
}

.logo-item:hover { opacity: 1; }

.logo-item img {
  height: 100%;
  width: auto;
  max-width: 215px;
  object-fit: contain;
  filter: grayscale(100%);
}

.logo-item:hover img { filter: grayscale(0%); }



/* =========================================================
   GRIDS
========================================================= */
.grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 24px; }

/* =========================================================
   FEATURE CARDS
========================================================= */
.feature-card { background: #ffffff; border-radius: 14px; overflow: hidden; text-align: center; padding-bottom: 20px; border-color: #f1f5f9; }
.feature-card:hover { border-color: #a5d8ff; }
.feature-img { aspect-ratio: 4/3; overflow: hidden; margin-bottom: 18px; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; }
.feature-card h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; padding: 0 14px; }
.feature-card p  { font-size: 14px; color: #45556c; line-height: 1.6; padding: 0 14px; }

/* =========================================================
   GROW TILES
========================================================= */
.grow-tile { background: #ffffff; border-radius: 14px; padding: 24px; border-color: #f1f5f9; }
.grow-tile:hover { border-color: #a5d8ff; }
.tile-icon { width: 46px; height: 46px; background: #e0f7fa; border-radius: 10px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; }
.tile-icon img { width: 24px; height: 24px; }
.grow-tile h3 { font-size: 17px; font-weight: 700; margin-bottom: 8px; }
.grow-tile p  { font-size: 14px; color: #45556c; line-height: 1.6; }

/* =========================================================
   WHATSAPP SECTION  – #008CE4 → #00AF9E gradient
========================================================= */
.wa-section {
  padding: 80px 0;
  background: linear-gradient(135deg, #0a2540 0%, #008CE4 40%, #00AF9E 100%);
}

.wa-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.wa-para { font-size: 16px; color: rgba(255,255,255,0.85); line-height: 1.7; margin: 16px 0 28px; }

.wa-list { display: flex; flex-direction: column; gap: 12px; }

.wa-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 10px; padding: 16px;
}
.wa-item:hover { border-color: rgba(255,255,255,0.45); }

.green-dot {
  width: 26px; height: 26px; min-width: 26px;
  background: #00c950; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}

.wa-item h4 { font-size: 15px; font-weight: 700; color: #ffffff; margin-bottom: 4px; }
.wa-item p  { font-size: 13px; color: rgba(255,255,255,0.78); }

/* ── Automation Flow UI (right) ── */
.wa-right { position: relative; padding-top: 48px; }

/* Floating top badge */
.flow-badge-wrap { position: absolute; top: 0; left: 0; z-index: 2; }
.flow-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: #ffffff; border-radius: 12px; padding: 8px 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  font-size: 12px;
}
.flow-badge-icon { font-size: 16px; }
.flow-badge-title { font-weight: 700; color: #0a0a0a; font-size: 11px; }
.flow-badge-sub   { color: #62748e; font-size: 9px; }
.flow-running {
  display: flex; align-items: center; gap: 4px;
  background: #f0fdf4; border: 1px solid #bbf7d0;
  border-radius: 999px; padding: 2px 8px;
  font-size: 9px; font-weight: 600; color: #16a34a;
}
.live-dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }
.live-dot.green { background: #22c55e; }

/* Main flow card */
.flow-card {
  background: #ffffff; border-radius: 18px;
  padding: 16px 20px; position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
}

.flow-card-header {
  display: flex; align-items: center; justify-content: space-between;
  padding-bottom: 10px; margin-bottom: 6px;
  border-bottom: 1px solid #f3f4f6;
}
.flow-header-left { display: flex; align-items: center; gap: 8px; }
.flow-header-icon  { font-size: 16px; }
.flow-header-label { font-size: 13px; color: #ef4444; font-weight: 500; }
.flow-live-badge   { display: flex; align-items: center; gap: 5px; font-size: 11px; color: #16a34a; font-weight: 600; }

/* Stat overlays */
.flow-stat-right {
  position: absolute; top: 80px; right: -72px;
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 10px; padding: 6px 10px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.flow-stat-left {
  position: absolute; bottom: 130px; left: -72px;
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 10px; padding: 6px 10px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.flow-stat-bottom {
  position: absolute; bottom: 60px; right: -72px;
  background: #ffffff; border: 1px solid #e5e7eb;
  border-radius: 10px; padding: 6px 10px; text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}
.stat-number { display: block; font-size: 13px; font-weight: 700; }
.stat-number.teal { color: #00AF9E; }
.stat-number.blue { color: #008CE4; }
.stat-label  { display: block; font-size: 9px; color: #9ca3af; }

/* Steps */
.flow-steps { display: flex; flex-direction: column; padding: 4px 0; }

.flow-step { display: flex; gap: 14px; align-items: flex-start; }

.step-col { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 44px; }

.step-icon-ring {
  width: 44px; height: 44px; border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; position: relative; flex-shrink: 0;
}
.red-ring  { background: rgba(239,68,68,0.08);  border: 1px solid rgba(239,68,68,0.20); }
.gray-ring { background: rgba(156,163,175,0.08); border: 1px solid rgba(156,163,175,0.20); }
.wa-ring   { background: rgba(0,175,158,0.08);   border: 1px solid rgba(0,175,158,0.20); }
.pink-ring { background: rgba(236,72,153,0.08);  border: 1px solid rgba(236,72,153,0.20); }

.step-check-badge {
  position: absolute; top: -5px; right: -5px;
  width: 18px; height: 18px; background: #22c55e;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
}

.step-connector { width: 2px; flex: 1; min-height: 14px; border-radius: 2px; margin: 3px 0; }
.purple-conn { background: linear-gradient(180deg, rgba(139,92,246,0.5), rgba(99,102,241,0.5)); }
.gray-conn   { background: linear-gradient(180deg, rgba(99,102,241,0.5), rgba(156,163,175,0.4)); }
.green-conn  { background: linear-gradient(180deg, rgba(156,163,175,0.4), rgba(0,175,158,0.5)); }
.pink-conn   { background: linear-gradient(180deg, rgba(0,175,158,0.5), rgba(236,72,153,0.5)); }

.step-body { padding: 10px 0; }
.step-name   { font-size: 13px; font-weight: 500; color: #111827; }
.step-status { font-size: 10px; margin-top: 2px; }
.green-status  { color: #16a34a; }
.orange-status { color: #d97706; }

/* AI Suggestion */
.ai-suggestion {
  display: flex; align-items: flex-start; gap: 8px;
  background: #fef9f9; border: 1px solid rgba(239,68,68,0.30);
  border-radius: 10px; padding: 10px 12px; margin-top: 8px;
}
.ai-icon { font-size: 16px; flex-shrink: 0; margin-top: 2px; }
.ai-suggestion p { font-size: 12px; color: #374151; line-height: 1.5; }
.ai-suggestion strong { color: #ef4444; }

/* =========================================================
   STOP / REPLACE
========================================================= */
.stop-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; align-items: center; margin-top: 40px; }
.stop-cards { display: flex; flex-direction: column; gap: 16px; }
.compare-card { border-radius: 12px; padding: 22px 24px; }
.compare-card.bad  { background: #fef2f2; border-left: 4px solid #fca5a5; }
.compare-card.good { background: #f0fdf4; border-left: 4px solid #4ade80; }
.compare-card h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.compare-card p  { font-size: 14px; color: #374151; line-height: 1.6; }
.compare-visual { background: #f1f5f9; border-radius: 14px; height: 220px; display: flex; align-items: center; justify-content: center; color: #62748e; font-size: 15px; border: 1px solid #e2e8f0; }

/* =========================================================
   CMP TABLE
========================================================= */
.table-scroll { overflow-x: auto; }
.cmp-table { width: 100%; border-collapse: collapse; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; font-size: 15px; }
.cmp-table thead th { background: #0093d7; color: #ffffff; font-weight: 700; padding: 16px; text-align: left; }
.cmp-table tbody td { padding: 14px 16px; border-bottom: 1px solid #e2e8f0; }
.cmp-table tbody tr:nth-child(even) td { background: #f8fafc; }
.cmp-table tbody tr:last-child td { border-bottom: none; }
.td-yes     { color: #008CE4; font-weight: 600; }
.td-no      { color: #9ca3af; }
.td-neutral { color: #374151; }

/* =========================================================
   TRUST – Educator Slider
========================================================= */
.trust-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 36px; gap: 24px; flex-wrap: wrap; }
.trust-heading { font-size: 36px; font-weight: 700; line-height: 1.2; max-width: 560px; }
.trust-heading .gold { color: #f0b100; }
.trust-sub { font-size: 16px; color: #45556c; text-align: right; max-width: 380px; }

.edu-slider-wrap { position: relative; overflow: hidden; }

.edu-slider {
  display: flex;
  gap: 16px;
  will-change: transform;
}

.edu-img {
  border-radius: 14px; overflow: hidden; aspect-ratio: 1;
  border-color: #f1f5f9; flex-shrink: 0;
  width: calc((100% - 5 * 16px) / 6);
}
.edu-img:hover { border-color: #008CE4; }
.edu-img img { width: 100%; height: 100%; object-fit: cover; }

/* Slider arrows (hidden — slideshow is auto) */
.slider-arrow { display: none; }

/* =========================================================
   RATINGS
========================================================= */
/* .ratings-table { width: 100%; border-collapse: collapse; border: 1px solid #e2e8f0; border-radius: 14px; overflow: hidden; background: #f8fafc; font-size: 15px; margin-top: 40px; }
.ratings-table thead th { background: #ffffff; border-bottom: 1px solid #e2e8f0; padding: 16px 24px; font-size: 16px; font-weight: 600; text-align: left; }
.ratings-table tbody td { padding: 18px 24px; border-bottom: 1px solid #e2e8f0; vertical-align: middle; }
.ratings-table tbody tr:last-child td { border-bottom: none; }

.rating-platform { display: flex; align-items: center; gap: 10px; }
.platform-logo { width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 700; flex-shrink: 0; color: #fff; }
.capterra   { background: #ff9d28; }
.trustpilot { background: #00b67a; }
.ease       { background: #4285f4; }
.gplay      { background: #01875f; }
.gbiz       { background: #ea4335; }

.score       { font-size: 22px; font-weight: 700; color: #0a0a0a; }
.score small { font-size: 13px; font-weight: 400; color: #62748e; }
.stars       { color: #fdc700; font-size: 15px; margin-top: 3px; }
.ratings-note { font-size: 12px; color: #62748e; text-align: right; margin-top: 10px; } */


.ratings-cards {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 0px;
}

.rating-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 20px 22px;
  flex: 1 1 170px;
  max-width: 200px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.rating-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
}

.platform-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #fff;
}

.capterra   { background: #ff9d28; }
.trustpilot { background: #00b67a; }
.ease       { background: #4285f4; }
.gplay      { background: #01875f; }
.gbiz       { background: #ea4335; }

.platform-name { font-size: 15px; font-weight: 700; color: #1a202c; }
.score         { font-size: 30px; font-weight: 800; color: #0a0a0a; line-height: 1; }
.score small   { font-size: 14px; font-weight: 400; color: #62748e; }
.stars         { color: #fdc700; font-size: 18px; letter-spacing: 1px; }
.ratings-note  { font-size: 12px; color: #62748e; text-align: right; margin-top: 14px; }
/* =========================================================
   RESULTS
========================================================= */
.result-card { border-radius: 14px; overflow: hidden; background: transparent; border-color: transparent; }
.result-card:hover { border-color: #2d3f5a; }
.video-embed { position: relative; aspect-ratio: 16/9; border-radius: 12px; overflow: hidden; margin-bottom: 14px; }
.video-embed iframe { position: absolute; inset: 0; width: 100%; height: 100%; }
.testimonial { font-size: 13px; font-style: italic; color: #cad5e2; line-height: 1.6; text-align: center; }

/* =========================================================
   INDUSTRY GRID
========================================================= */
.industry-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 14px; }
.industry-card {
  background: #ffffff; border-radius: 12px;
  padding: 16px 18px; font-size: 14px; font-weight: 500;
  color: #0a0a0a; border-color: #e2e8f0;
  display: flex; align-items: center; gap: 8px; cursor: pointer;
  text-align: left;
}
.industry-card:hover { border-color: #008CE4; color: #008CE4; background: #f0f9ff; }
.industry-card.others { background: #f0f9ff; border-color: #bae6fd; color: #008CE4; font-weight: 600; }

/* =========================================================
   FOOTER
========================================================= */
.footer { background: #0a0f1e; padding: 28px 0; border-top: 1px solid rgba(255,255,255,0.08); }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.footer-logo { display: flex; align-items: center; text-decoration: none; }
.footer p     { font-size: 14px; color: #62748e; }

/* =========================================================
   STICKY BAR
========================================================= */
.sticky-bar {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #0a0f1e; border-top: 1px solid rgba(255,255,255,0.10);
  z-index: 300; padding: 12px 0;
}
.sticky-bar-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.sticky-bar-text { display: flex; flex-direction: column; }
.sticky-bar-text strong { font-size: 15px; font-weight: 700; color: #ffffff; }
.sticky-bar-text span   { font-size: 13px; color: #90a1b9; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 1100px) {
  .flow-stat-right,
  .flow-stat-left,
  .flow-stat-bottom { display: none; }
}

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

@media (max-width: 960px) {
  .hero-inner  { grid-template-columns: 1fr; }
  .wa-inner    { grid-template-columns: 1fr; }
  .stop-inner  { grid-template-columns: 1fr; }
  .grid-4      { grid-template-columns: repeat(2,1fr); }
  .grid-3      { grid-template-columns: repeat(2,1fr); }

  .hero        { padding: 28px 0 40px; }
  .hero-heading    { font-size: 36px; }
  .section-heading { font-size: 28px; }

  .trust-header { flex-direction: column; align-items: flex-start; }
  .trust-sub    { text-align: left; }

  .edu-img { width: calc((100% - 2 * 16px) / 3); }

  .wa-right { padding-top: 24px; }
  .sticky-bar-text span { display: none; }
}

@media (max-width: 600px) {
  .grid-4         { grid-template-columns: 1fr; }
  .grid-3         { grid-template-columns: 1fr; }
  .platform-grid  { grid-template-columns: 1fr; }
  .industry-grid  { grid-template-columns: repeat(2,1fr); }
  .hero-pills     { grid-template-columns: 1fr; }
  .nav-links      { display: none; }
  .hero           { padding: 20px 0 32px; }
  .hero-heading   { font-size: 28px; }
  .section-heading { font-size: 22px; }
  .trust-heading  { font-size: 24px; }
  .brand-strip    { display: none; }
  .form-row       { grid-template-columns: 1fr; }
  .modal-box      { padding: 24px 20px; }
  .edu-img        { width: calc((100% - 16px) / 2); }
  .sticky-bar-text strong { font-size: 13px; }
}
