@charset "utf-8";
.section-eyebrow {
  display: inline-block;
  color: var(--orange);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.section-title {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  color: var(--text);
  line-height: 1.25;
  margin-bottom: 12px;
}
.section-sub {
  color: var(--text-light);
  font-size: 14px;
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.75;
}
.center { text-align: center; }

/* ─── Layout ─── */
section { padding: 72px 0; }
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 6px;
  font-family: 'Poppins', sans-serif; font-weight: 600; font-size: 15px;
  text-decoration: none; cursor: pointer; border: none; transition: all .22s ease;
}
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,97,26,.35); }
.btn-white { background: #fff; color: var(--orange); font-weight: 700; box-shadow: 0 4px 16px rgba(0,0,0,.14); }
.btn-white:hover { transform: translateY(-1px); box-shadow: 0 8px 24px rgba(0,0,0,.18); }
.hero {
  background: linear-gradient(135deg, #0d1b2a 0%, #152840 60%, #0a1e35 100%);
  padding: 80px 0 90px;
  position: relative; overflow: hidden; text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 75% 40%, rgba(30,136,229,.15) 0%, transparent 55%),
    radial-gradient(ellipse at 20% 70%, rgba(245,97,26,.12) 0%, transparent 50%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--orange), var(--blue), var(--teal));
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(245,97,26,.18); border: 1px solid rgba(245,97,26,.45);
  color: #ffb085; padding: 5px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase;
  margin-bottom: 22px; position: relative;
}
.hero h1 {
  font-size: clamp(26px, 4.5vw, 46px); font-weight: 800; color: #fff;
  line-height: 1.12; max-width: 800px; margin: 0 auto 16px; position: relative;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  color: rgba(255,255,255,.68); font-size: 15px; max-width: 600px;
  margin: 0 auto 34px; position: relative; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; position: relative; }
.hero-stats {
  display: flex; justify-content: center; flex-wrap: wrap;
  margin-top: 60px; position: relative;
  border-top: 1px solid rgba(255,255,255,.1); padding-top: 40px;
}
.hero-stat { text-align: center; padding: 0 40px; border-right: 1px solid rgba(255,255,255,.1); }
.hero-stat:last-child { border-right: none; }
.hero-stat-num { font-size: 32px; font-weight: 800; color: #fff; line-height: 1; margin-bottom: 6px; }
.hero-stat-num span { color: var(--orange); }
.hero-stat-label { color: rgba(255,255,255,.5); font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

/* ═══════════════════════════════════════════
   PLATFORM LOGOS STRIP
═══════════════════════════════════════════ */
.platforms-strip { background: #fff; border-bottom: 1px solid var(--gray-100); padding: 26px 0; }
.strip-inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.strip-label { color: var(--gray-500); font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: .1em; }
.strip-divider { width: 1px; height: 28px; background: var(--gray-100); }
.platform-logo-item { display: flex; align-items: center; gap: 8px; opacity: .72; transition: opacity .2s; }
.platform-logo-item:hover { opacity: 1; }
.platform-logo-item img { height: 26px; object-fit: contain; }
.platform-logo-item .plat-name { font-size: 18px; font-weight: 800; color: #005eb8; letter-spacing: -.5px; }

/* ═══════════════════════════════════════════
   WHY CHOOSE US — 3 columns
═══════════════════════════════════════════ */
.why-section { background: #fff; }
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 46px;
}
.why-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 32px 22px 28px; text-align: center;
  transition: box-shadow .25s, transform .25s;
}
.why-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,.09); transform: translateY(-4px); }
.why-card-icon { font-size: 36px; margin-bottom: 14px; line-height: 1; }
.why-card h3 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 9px; }
.why-card p { font-size: 14px; color: var(--text-light); line-height: 1.7; }

/* ═══════════════════════════════════════════
   PLATFORM TABS
═══════════════════════════════════════════ */
.platforms-section { background: var(--navy); padding: 72px 0; }
.platforms-section .section-title { color: #fff; }
.platforms-section .section-sub { color: rgba(255,255,255,.80); }
.platform-tabs-nav {
  display: flex; justify-content: center; max-width:620px;
  margin: 36px auto 40px;
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px; overflow: hidden;
}
.ptab {
  flex: 1; padding: 13px 10px; background: transparent; border: none;
  color: rgba(255,255,255,.55); font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 13px; cursor: pointer; transition: all .22s;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border-right: 1px solid rgba(255,255,255,.08);
}
.ptab:last-child { border-right: none; }
.ptab img { height: 18px; filter: grayscale(1) brightness(2); transition: filter .22s; }
.ptab.active, .ptab:hover { background: var(--orange); color: #fff; }
.ptab.active img, .ptab:hover img { filter: grayscale(0) brightness(1); }

.platform-panel { display: none; }
.platform-panel.active { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }

.pp-content h3 { font-size: 24px; font-weight: 700; color: #fff; margin-bottom: 12px; }
.pp-content > p { font-size: 14px; color: rgba(255,255,255,.78); line-height: 1.8; margin-bottom: 24px; }
.pp-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(245,97,26,.18); border: 1px solid rgba(245,97,26,.35);
  color: #ffb085; padding: 4px 14px; border-radius: 100px;
  font-size: 11px; font-weight: 600; margin-bottom: 20px;
}
.pp-features { list-style: none; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px; }
.pp-features li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.5; }
.pp-features li .ck { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.pp-img-wrap { position: relative; border-radius: 14px; overflow: hidden; }
.pp-img-wrap img { width: 100%; display: block; border-radius: 14px; aspect-ratio: 4/3; object-fit: cover; }
.pp-overlay-badge {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(13,27,42,.85); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,.12); border-radius: 8px;
  padding: 10px 16px; color: #fff;
}
.pp-overlay-badge strong { display: block; color: var(--green); font-size: 15px; font-weight: 700; }
.pp-overlay-badge span { font-size: 11px; color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   PROCESS — Zigzag Timeline
═══════════════════════════════════════════ */
.process-section { background: var(--gray-50); }
.process-timeline { margin-top: 54px; position: relative; max-width: 1000px; margin-left: auto; margin-right: auto; }

/* vertical spine */
.process-timeline::before {
  content: '';
  position: absolute;
  left: 50%; top: 28px; bottom: 28px; width: 2px;
  background: linear-gradient(180deg, var(--orange) 0%, var(--blue) 50%, var(--teal) 100%);
  transform: translateX(-50%); z-index: 0;
}

.pt-step {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: center;
  margin-bottom: 24px;
  position: relative;
}
.pt-step:last-child { margin-bottom: 0; }

/* LEFT-side card */
.pt-step.left .pt-card  { grid-column: 1; grid-row: 1; justify-self: end; text-align: right; margin-right: 16px; }
.pt-step.left .pt-dot   { grid-column: 2; grid-row: 1; }
.pt-step.left .pt-blank { grid-column: 3; grid-row: 1; }

/* RIGHT-side card */
.pt-step.right .pt-blank { grid-column: 1; grid-row: 1; }
.pt-step.right .pt-dot   { grid-column: 2; grid-row: 1; }
.pt-step.right .pt-card  { grid-column: 3; grid-row: 1; justify-self: start; text-align: left; margin-left: 16px; }

.pt-dot {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--navy); border: 3px solid var(--orange);
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; z-index: 2; position: relative;
  justify-self: center; flex-shrink: 0;
}
.pt-step:nth-child(2) .pt-dot { border-color: var(--blue);  background: var(--blue); }
.pt-step:nth-child(3) .pt-dot { border-color: var(--orange); }
.pt-step:nth-child(4) .pt-dot { border-color: var(--teal);  background: var(--teal); }
.pt-step:nth-child(5) .pt-dot { border-color: var(--blue); }

.pt-card {
  background: #fff; border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 22px 24px; max-width: 550px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  transition: box-shadow .22s, transform .22s;
}
.pt-card:hover { box-shadow: 0 8px 28px rgba(0,0,0,.1); transform: translateY(-2px); }
.pt-step-num {
  font-size: 1rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .1em; color: var(--orange); margin-bottom: 6px;
}
/*.pt-step:nth-child(2) .pt-step-num { color: var(--blue); }
.pt-step:nth-child(4) .pt-step-num { color: var(--teal); }*/
.pt-card h4 { font-size: 1.2rem; font-weight: 700; color: var(--text); margin-bottom: 7px; }
.pt-card p { font-size: 0.85rem; color: var(--text); line-height: 1.65; }

/* ═══════════════════════════════════════════
   WHO IS IT FOR — 3 columns
═══════════════════════════════════════════ */
.who-section { background: #fff; }
.who-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.who-card {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 26px 20px; text-align: center; transition: all 0.5s !important;
}
.who-card:hover { background: #fff; box-shadow: 0 10px 28px rgba(0,0,0,.08); transform: translateY(-3px); }
.who-icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.who-card h4 { font-size: 16px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.who-card p { font-size: 14px; color: var(--text-light); line-height: 1.65; }

/* ═══════════════════════════════════════════
   PLATFORM COMPARISON
═══════════════════════════════════════════ */
.compare-section { background: var(--navy); padding: 72px 0; }
.compare-section .section-title { color: #fff; }
.compare-section .section-sub { color: rgba(255,255,255,.58); }
.compare-wrap { overflow-x: auto; margin-top: 44px; }
.compare-table {
  width: 100%; border-collapse: separate; border-spacing: 0;
  border-radius: 14px; overflow: hidden; font-size: 13px;
}
.compare-table thead tr { background: var(--bg); }
.compare-table thead th { padding: 16px 20px; color: var(--dark); font-weight: 600; font-size: 13px; text-align: left; }
.compare-table thead th:first-child { width: 30%; }
.compare-table tbody tr { background: rgba(255,255,255,.04); }
.compare-table tbody tr:nth-child(even) { background: rgba(255,255,255,.07); }
.compare-table tbody tr:hover { background: rgba(255,255,255,.11); }
.compare-table td { padding: 13px 20px; color: rgba(255,255,255,.90); border-bottom: 1px solid rgba(255,255,255,.06); }
.compare-table td:first-child { color:var(--gn); font-size: 14px; }
.tick { color: var(--green); font-weight: 700; }
.cross { color: #f87171; }
.neutral { color: #67e8f9; }


/* ═══════════════════════════════════════════
   ADD-ONS — 4 columns
═══════════════════════════════════════════ */
.addons-section { background: #fff; }
.addons-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 46px; }
.addon-card {
  background: var(--gray-50); border: 1px solid var(--gray-100); border-radius: 12px;
  padding: 26px 18px; text-align: center; transition: all .25s;
}
.addon-card:hover { background: #fff; box-shadow: 0 10px 26px rgba(0,0,0,.08); transform: translateY(-3px); border-color: var(--gray-300); }
.addon-icon { font-size: 32px; margin-bottom: 12px; line-height: 1; }
.addon-card h4 { font-size: 13.5px; font-weight: 700; color: var(--text); margin-bottom: 5px; }
.addon-price { color: var(--orange); font-weight: 700; font-size: 13px; margin-bottom: 8px; }
.addon-card p { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* ═══════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════ */
.testi-section { background: var(--gray-50); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 46px; }
.testi-card {
  background: #fff; border-radius: 12px; padding: 26px 22px;
  border: 1px solid var(--gray-100); box-shadow: 0 2px 12px rgba(0,0,0,.04);
  border-top: 3px solid var(--orange);
}
.testi-stars { color: #f59e0b; font-size: 13px; letter-spacing: 2px; margin-bottom: 12px; }
.testi-quote { font-size: 13px; color: var(--gray-700); line-height: 1.75; margin-bottom: 18px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av { width: 42px; height: 42px; border-radius: 50%; object-fit: cover; }
.testi-name { font-size: 13px; font-weight: 700; color: var(--text); }
.testi-role { font-size: 11px; color: var(--text-light); }

/* ═══════════════════════════════════════════
   DON'T KNOW WHAT TO CHOOSE
═══════════════════════════════════════════ */
.decide-section { background: var(--navy); padding: 72px 0; }
.decide-section .section-title { color: #fff; }
.decide-section .section-sub { color: rgba(255,255,255,.80); }
.decide-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 50px; align-items: start; }

.quiz-side h3 { font-size: 17px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.quiz-side > p { font-size: 13px; color: rgba(255,255,255,.7); margin-bottom: 26px; }
.quiz-q-label {
  font-size: 11px; font-weight:600; letter-spacing: .08em;
  text-transform: uppercase; color: rgba(255,255,255,.60); margin-bottom: 10px;
}
.quiz-opts { display: flex; flex-direction: column; gap: 8px; margin-bottom: 20px; }
.quiz-opt {
  display: flex; align-items: center; gap: 12px;
  background: rgba(255,255,255,.05); border: 1.5px solid rgba(255,255,255,.1);
  border-radius: 8px; padding: 11px 15px; cursor: pointer;
  transition: all .2s; color: rgba(255,255,255,.72); font-size: 13px; user-select: none;
}
.quiz-opt:hover { border-color: rgba(245,97,26,.6); background: rgba(245,97,26,.08); }
.quiz-opt.selected { border-color: var(--orange); background: rgba(245,97,26,.15); color: #fff; }
.quiz-opt-icon { font-size: 16px; flex-shrink: 0; }
.quiz-result {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-left: 3px solid var(--orange); border-radius: 10px;
  padding: 18px 20px; display: none; margin-top: 4px;
}
.quiz-result.show { display: block; }
.quiz-result h4 { font-size: 14px; font-weight: 700; color: var(--orange); margin-bottom: 7px; }
.quiz-result p { font-size: 13px; color: rgba(255,255,255,.68); line-height: 1.65; }

.form-card {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.1);
  border-radius: 16px; padding: 34px 30px;
}
.form-card h3 { font-size: 18px; font-weight: 700; color: #fff; margin-bottom: 6px; }
.form-card > p { font-size: 13px; color: rgba(255,255,255,.5); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.form-group { margin-bottom: 14px; }
.form-group label {
  display: block; font-size: 11px; font-weight: 600; text-transform: uppercase;
  letter-spacing: .07em; color: rgba(255,255,255,.45); margin-bottom: 6px;
}
.form-control {
  width: 100%; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.14);
  border-radius: 7px; padding: 11px 14px; color: #fff;
  font-family: 'Poppins', sans-serif; font-size: 13px; outline: none;
  transition: border-color .2s, background .2s;
}
.form-control:focus { border-color: var(--orange); background: rgba(255,255,255,.1); }
.form-control::placeholder { color: rgba(255,255,255,.28); }
select.form-control option { background: #1a2d42; color: #fff; }
textarea.form-control { resize: vertical; min-height: 100px; }
.form-submit {
  width: 100%; background: var(--orange); color: #fff; border: none;
  border-radius: 7px; padding: 13px; font-family: 'Poppins', sans-serif;
  font-weight: 600; font-size: 13px; cursor: pointer; transition: all .22s; margin-top: 4px;
}
.form-submit:hover { background: var(--orange-h); transform: translateY(-1px); box-shadow: 0 6px 20px rgba(245,97,26,.4); }
.form-privacy { text-align: center; color: rgba(255,255,255,.7); font-size: 14px; margin-top: 10px; }
.form-success { display: none; text-align: center; padding: 24px 0; }
.form-success .fs-icon { font-size: 48px; margin-bottom: 12px; }
.form-success h4 { font-size: 16px; font-weight: 700; color: var(--green); margin-bottom: 8px; }
.form-success p { font-size: 13px; color: rgba(255,255,255,.6); }

/* ═══════════════════════════════════════════
   CTA STRIP
═══════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, var(--orange) 0%, #c9450d 100%);
  padding: 64px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(circle at 80% 50%, rgba(255,255,255,.08) 0%, transparent 50%),
    radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 50%);
}
.cta-strip h2 { font-size: clamp(22px, 3vw, 32px); font-weight: 800; color: #fff; margin-bottom: 12px; position: relative; }
.cta-strip p { color: rgba(255,255,255,.82); font-size: 14px; max-width: 480px; margin: 0 auto 28px; position: relative; }

/* ═══════════════════════════════════════════
   SCROLL ANIMATIONS
═══════════════════════════════════════════ */
.anim { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.anim.visible { opacity: 1; transform: translateY(0); }
.stagger .anim:nth-child(1) { transition-delay: .05s; }
.stagger .anim:nth-child(2) { transition-delay: .12s; }
.stagger .anim:nth-child(3) { transition-delay: .19s; }
.stagger .anim:nth-child(4) { transition-delay: .26s; }
.stagger .anim:nth-child(5) { transition-delay: .33s; }
.stagger .anim:nth-child(6) { transition-delay: .40s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .why-grid, .who-grid { grid-template-columns: repeat(2, 1fr); }
  .addons-grid { grid-template-columns: repeat(2, 1fr); }
  .testi-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 820px) {
  section { padding: 52px 0; }
  .platform-panel.active { grid-template-columns: 1fr; gap: 30px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .decide-grid { grid-template-columns: 1fr; gap: 36px; }
  .form-row { grid-template-columns: 1fr; }
  .process-timeline::before { display: none; }
  .pt-step { grid-template-columns: 1fr; }
  .pt-step.left .pt-card,
  .pt-step.right .pt-card { grid-column: 1; grid-row: 2; justify-self: stretch; text-align: left; margin: 0; }
  .pt-step.left .pt-dot,
  .pt-step.right .pt-dot { grid-column: 1; grid-row: 1; justify-self: start; margin-bottom: 12px; }
  .pt-blank { display: none; }
}
@media (max-width: 600px) {
  .why-grid, .who-grid, .testi-grid { grid-template-columns: 1fr; }
  .hero-stat { padding: 0 20px; }
}

