/* ── RESET & TOKENS ─────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --red:       #e8201a;
  --red-dk:    #c01814;
  --red-glow:  rgba(232,32,26,0.12);
  --black:     #080808;
  --dark:      #0f0f0f;
  --card:      #ffffff;
  --card-2:    #f5f7fa;
  --border:    #e5e7eb;
  --border-lt: #f0f2f5;
  --white:     #ffffff;
  --text:      #111827;
  --sub:       #6b7280;
  --dim:       #9ca3af;
  --green:     #10b981;
  --blue:      #3b82f6;
  --amber:     #f59e0b;
  --r:         10px;
  --r-lg:      16px;
  --r-xl:      24px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: #ffffff;
  color: var(--text);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

.container { max-width: 1140px; margin: 0 auto; padding: 0 28px; }
.section    { padding: 96px 0; }
.section-sm { padding: 64px 0; }

/* ── TYPE ───────────────────────────────────────────────────── */
.overline {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 14px;
}
h1, h2, h3, h4 { font-family: 'Rajdhani', system-ui, sans-serif; }
h1 { font-size: clamp(52px, 7vw, 88px); font-weight: 700; line-height: 0.97; letter-spacing: -1px; color: var(--text); }
h2 { font-size: clamp(34px, 4.5vw, 58px); font-weight: 700; line-height: 1.05; letter-spacing: -0.5px; color: var(--text); }
h3 { font-size: 24px; font-weight: 600; color: var(--text); }
h4 { font-size: 16px; font-weight: 600; color: var(--text); }
.lead   { font-size: 18px; color: var(--sub); line-height: 1.65; }
.caption{ font-size: 13px; color: var(--dim); }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 13px 24px; border-radius: 8px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: all 0.15s; white-space: nowrap; border: none;
}
.btn-primary  { background: var(--red); color: #fff; }
.btn-primary:hover { background: var(--red-dk); transform: translateY(-1px); }
.btn-outline  { background: transparent; color: var(--text); border: 1px solid #d1d5db; }
.btn-outline:hover { border-color: #9ca3af; background: var(--card-2); }
.btn-lg { padding: 16px 32px; font-size: 16px; }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.arrow  { transition: transform 0.15s; }
.btn:hover .arrow { transform: translateX(3px); }

/* ── NAV ────────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px; padding: 0 28px; max-width: 1140px; margin: 0 auto;
}
.nav-logo { font-size: 18px; font-weight: 900; letter-spacing: -0.5px; color: var(--text); display: flex; align-items: center; gap: 10px; }
.nav-logo-mark { width: 28px; height: 28px; background: var(--red); border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 13px; font-weight: 900; color: #fff; }
.nav-links { display: flex; align-items: center; gap: 4px; }
.nav-link  { padding: 7px 12px; font-size: 14px; color: var(--sub); border-radius: 6px; transition: color 0.15s; }
.nav-link:hover { color: var(--text); }
.nav-cta   { display: flex; align-items: center; gap: 10px; }

/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; padding: 120px 0 100px; overflow: hidden;
  background: var(--black);
  background-image: url('images/hero/hero.jpg');
  background-size: cover; background-position: 65% center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(to right, rgba(8,8,8,0.92) 0%, rgba(8,8,8,0.85) 35%, rgba(8,8,8,0.45) 60%, rgba(8,8,8,0) 80%),
              radial-gradient(ellipse 900px 600px at 65% 30%, rgba(232,32,26,0.07) 0%, transparent 70%),
              radial-gradient(ellipse 500px 400px at 5% 90%, rgba(232,32,26,0.04) 0%, transparent 60%);
}
.hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse at 50% 0%, black 20%, transparent 75%);
}

/* ── VIDEO SECTION ──────────────────────────────────────────── */
.video-section { background: var(--black); line-height: 0; }
.video-section video { width: 100%; display: block; object-fit: cover; }
.hero-content { position: relative; max-width: 820px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.12);
  border-radius: 100px; font-size: 12px; font-weight: 600; color: rgba(255,255,255,0.55); margin-bottom: 32px;
}
.hero-badge-dot { width: 6px; height: 6px; background: var(--red); border-radius: 50%; }
.hero h1 { margin-bottom: 24px; color: #ffffff; }
.hero h1 span { color: var(--red); }
.hero .lead { max-width: 560px; margin-bottom: 40px; color: rgba(255,255,255,0.6); }
.hero .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.25); }
.hero .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.hero-proof {
  margin-top: 64px; padding-top: 40px; border-top: 1px solid var(--border);
  display: flex; align-items: center; gap: 48px; flex-wrap: wrap;
}
.proof-stat .number { font-size: 28px; font-weight: 800; letter-spacing: -1px; color: var(--white); }
.proof-stat .label  { font-size: 12px; color: var(--sub); margin-top: 2px; }
.proof-divider      { width: 1px; height: 40px; background: var(--border); }
.proof-source       { font-size: 12px; color: var(--dim); }
.proof-source strong{ color: var(--sub); }

/* ── PROBLEM ────────────────────────────────────────────────── */
.problem { background: #f5f7fa; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problem-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.problem-cost  { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 32px; }
.cost-row { display: flex; justify-content: space-between; align-items: center; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.cost-row:last-child { border-bottom: none; }
.cost-label { color: var(--sub); }
.cost-value        { font-weight: 700; color: var(--text); }
.cost-value.bad    { color: #ef4444; }
.cost-value.good   { color: var(--green); }
.cost-value.big    { font-size: 22px; letter-spacing: -0.5px; color: var(--text); }

/* ── CUSTOMER MODES ─────────────────────────────────────────── */
.modes { background: #ffffff; border-top: 1px solid var(--border); }
.modes-header { text-align: center; margin-bottom: 16px; }
.modes-header h2 { margin-bottom: 16px; }
.modes-intro { text-align: center; max-width: 700px; margin: 0 auto 56px; }

/* Branch diagram — flat grid so every row aligns across all 3 columns */
.branches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto auto auto auto auto; /* header + 4 steps + connector */
  gap: 2px;
}
.branch-head {
  padding: 20px 24px 18px;
  border: 1px solid var(--border);
  border-bottom: none;
  border-radius: 12px 12px 0 0;
  background: var(--card);
}
.branch-head.b1 { border-top: 3px solid #4a9eff; }
.branch-head.b2 { border-top: 3px solid var(--red); }
.branch-head.b3 { border-top: 3px solid #4caf82; }
.branch-icon { font-size: 22px; margin-bottom: 10px; }
.branch-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 4px; }
.branch-label.b1 { color: #4a9eff; }
.branch-label.b2 { color: var(--red); }
.branch-label.b3 { color: #4caf82; }
.branch-name { font-size: 16px; font-weight: 800; color: var(--text); margin-bottom: 6px; }
.branch-sub { font-size: 13px; color: var(--sub); line-height: 1.5; }

.branch-steps { flex: 1; display: flex; flex-direction: column; border-left: 1px solid var(--border); border-right: 1px solid var(--border); background: var(--card); padding: 0 24px; }
.branch-step { display: flex; align-items: flex-start; gap: 12px; padding: 14px 0; border-bottom: 1px solid var(--border); }
.branch-step:last-child { border-bottom: none; }
.bstep-num { font-size: 18px; font-weight: 900; color: var(--dim); min-width: 24px; padding-top: 1px; line-height: 1; }
.bstep-num.b1 { color: #4a9eff; }
.bstep-num.b2 { color: var(--red); }
.bstep-num.b3 { color: #4caf82; }
.bstep-text strong { display: block; font-size: 13px; font-weight: 600; color: var(--text); margin-bottom: 2px; }
.bstep-text span { font-size: 12px; color: var(--sub); line-height: 1.4; }

/* Converging connector */
.branch-connector { height: 48px; display: flex; flex-direction: column; align-items: center; position: relative; }
.branch-connector::before { content: ''; position: absolute; top: 0; left: 50%; width: 1px; height: 100%; background: var(--border); }
.branch-connector.b1::before { background: #4a9eff; opacity: 0.4; }
.branch-connector.b2::before { background: var(--red); opacity: 0.4; }
.branch-connector.b3::before { background: #4caf82; opacity: 0.4; }
.branch-connector-arrow { width: 6px; height: 6px; border-right: 2px solid var(--border); border-bottom: 2px solid var(--border); transform: rotate(45deg); margin-top: auto; margin-bottom: 4px; position: relative; z-index: 1; }

/* Convergence row */
.converge-row { display: flex; align-items: flex-start; margin-top: 0; position: relative; }
.converge-line-wrap { flex: 1; height: 40px; position: relative; overflow: visible; }
.converge-outcome {
  background: var(--card);
  border: 1px solid var(--border);
  border-top: 3px solid var(--red);
  border-radius: 12px;
  padding: 28px 36px;
  text-align: center;
  margin: 0 auto;
  max-width: 560px;
  position: relative;
  z-index: 2;
}
.converge-flag { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.converge-title { font-size: 22px; font-weight: 800; color: var(--text); margin-bottom: 8px; }
.converge-desc { font-size: 14px; color: var(--sub); line-height: 1.6; }

/* SVG converge lines */
.converge-svg-wrap { position: relative; height: 56px; margin: 0; overflow: visible; }
.converge-svg-wrap svg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: visible; }

.modes-unifier {
  border-radius: var(--r-xl); border: 1px solid var(--border);
  overflow: hidden; display: flex; flex-direction: column;
  transition: border-color 0.2s;
}
.mode-card:hover { border-color: var(--border-lt); }
.mode-card.featured { border-color: var(--red); }

.mode-header {
  padding: 28px 28px 24px;
  border-bottom: 1px solid var(--border);
}
.mode-icon-row { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.mode-icon {
  width: 48px; height: 48px; border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 22px;
  background: var(--card-2); border: 1px solid var(--border-lt); flex-shrink: 0;
}
.mode-card.featured .mode-icon { background: var(--red-glow); border-color: rgba(232,32,26,0.3); }
.mode-number { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); }
.mode-title  { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: var(--white); margin-bottom: 8px; }
.mode-desc   { font-size: 14px; color: var(--sub); line-height: 1.6; }

.mode-journey { padding: 24px 28px; background: var(--card); flex: 1; }
.journey-label { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--dim); margin-bottom: 16px; }
.journey-steps { display: flex; flex-direction: column; gap: 0; }
.journey-step  { display: flex; align-items: flex-start; gap: 12px; position: relative; }
.journey-step + .journey-step { margin-top: 0; }
.step-connector { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; }
.step-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--border-lt); margin-top: 5px; flex-shrink: 0; }
.mode-card.featured .step-dot { background: var(--red); }
.step-line { width: 1px; height: 20px; background: var(--border); margin: 2px 0; }
.step-text { font-size: 13px; color: var(--sub); padding-bottom: 20px; line-height: 1.4; }
.step-text strong { color: var(--text); display: block; font-size: 13px; margin-bottom: 1px; }
.journey-step:last-child .step-line { display: none; }
.journey-step:last-child .step-text { padding-bottom: 0; }

.mode-footer { padding: 20px 28px; border-top: 1px solid var(--border); background: var(--card); }
.mode-who    { font-size: 12px; color: var(--sub); line-height: 1.5; }
.mode-who strong { color: var(--text); display: block; margin-bottom: 4px; font-size: 12px; }

.modes-unifier {
  margin-top: 40px; padding: 28px 36px;
  background: var(--card); border: 1px solid var(--border-lt);
  border-radius: var(--r-lg); text-align: center;
}
.modes-unifier h3 { margin-bottom: 10px; }
.modes-unifier p  { font-size: 15px; color: var(--sub); max-width: 680px; margin: 0 auto; }

/* ── PRODUCT OVERVIEW ───────────────────────────────────────── */
.product-overview { background: #ffffff; border-top: 1px solid var(--border); }
#operate { background: #f5f7fa; border-top: 1px solid var(--border); }
#engage  { background: #f5f7fa; border-top: 1px solid var(--border); }
.overview-header { text-align: center; max-width: 680px; margin: 0 auto 52px; }
.overview-header h2 { margin-bottom: 14px; }
.overview-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.overview-card {
  background: var(--card-2); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px 28px 28px;
  display: flex; flex-direction: column; gap: 10px;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s, opacity 0.5s, translate 0.5s;
  opacity: 0; transform: translateY(28px);
}
.overview-card.visible { opacity: 1; transform: translateY(0); }
.overview-card:hover { border-color: #d1d5db; box-shadow: 0 8px 28px rgba(0,0,0,0.08); transform: translateY(-4px); }
.overview-card-tag { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); line-height: 1; margin-bottom: 6px; }
.overview-card-subtitle { font-size: 14px; font-weight: 600; color: var(--red); margin-bottom: 12px; }
.overview-card p { font-size: 14px; color: var(--sub); line-height: 1.65; flex: 1; }
.overview-card-footer { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.overview-card-price { font-size: 12px; color: var(--dim); font-weight: 500; }
.overview-card-link { font-size: 13px; font-weight: 600; color: var(--red); display: inline-flex; align-items: center; gap: 4px; }
.overview-card-link:hover { gap: 6px; }

/* ── PRODUCT DETAIL SECTIONS ────────────────────────────────── */
.product-section { border-top: 1px solid var(--border); }
#operate { background: #f5f7fa; }
#launch  { background: #ffffff; }
#engage  { background: #f5f7fa; }

/* Full-width section header */
.ps-header { margin-bottom: 48px; }

/* Two-column: intro text + sticky screenshot */
.ps-intro {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 64px; align-items: start; margin-bottom: 40px;
}

/* Full-width feature tile grid */
.ps-features-full {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 16px; margin-bottom: 32px;
}

.product-label {
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 20px;
}
.product-label-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--red);
}
.product-label-price {
  font-size: 13px; font-weight: 600;
  color: var(--sub); background: var(--card-2);
  border: 1px solid var(--border); border-radius: 6px;
  padding: 2px 10px;
}
.product-section h2 { margin-bottom: 16px; }
.product-section .lead { margin-bottom: 28px; }

.feature-block {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 18px 20px;
  cursor: default;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.feature-block { cursor: pointer; }
.feature-block:hover,
.feature-block.ps-active { border-color: var(--red); box-shadow: 0 2px 12px rgba(232,32,26,0.08); }
.feature-block-icon { font-size: 20px; }
.feature-block-header { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.feature-block h4   { font-size: 16px; margin: 0; }
.feature-block p    { font-size: 13px; color: var(--sub); line-height: 1.5; }

.headline-feature {
  background: var(--card); border: 1px solid var(--border-lt);
  border-left: 3px solid var(--red); border-radius: var(--r);
  padding: 18px 20px; margin-bottom: 20px;
  cursor: default;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.headline-feature { cursor: pointer; }
.headline-feature:hover,
.headline-feature.ps-active { border-color: var(--red); box-shadow: 0 2px 16px rgba(232,32,26,0.1); }
.headline-feature .hf-label { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.headline-feature h4  { font-family: 'Rajdhani', sans-serif; font-size: 26px; font-weight: 700; margin-bottom: 4px; line-height: 1.1; }
.headline-feature .hf-subtitle { font-size: 13px; font-weight: 600; color: var(--sub); margin-bottom: 10px; }
.headline-feature p   { font-size: 13px; color: var(--sub); line-height: 1.5; }

/* Screenshot placeholder */
.screenshot-area {
  position: sticky; top: 80px;
}
.screenshot-main {
  background: #141414; border: 1px solid #2a2a2a;
  border-radius: var(--r-xl); overflow: hidden;
  aspect-ratio: 16/10;
  display: flex; flex-direction: column;
}
.screenshot-topbar {
  background: #1a1a1a; border-bottom: 1px solid #2a2a2a;
  padding: 10px 16px; display: flex; align-items: center; gap: 8px;
}
.sb-dot { width: 10px; height: 10px; border-radius: 50%; }
.sb-dot.r { background: #ef4444; }
.sb-dot.y { background: #f59e0b; }
.sb-dot.g { background: #10b981; }
.sb-url { margin-left: 12px; background: #111; border: 1px solid #2a2a2a; border-radius: 6px; padding: 3px 14px; font-size: 12px; color: #555; flex: 1; max-width: 260px; }
.screenshot-body {
  flex: 1; display: flex; align-items: center; justify-content: center;
  flex-direction: column; gap: 12px;
}
.screenshot-ph-icon { font-size: 36px; opacity: 0.2; }
.screenshot-ph-text { font-size: 13px; color: var(--dim); text-align: center; line-height: 1.5; }
.screenshot-ph-tag  { font-size: 11px; font-weight: 600; padding: 4px 12px; background: var(--card-2); border: 1px dashed var(--border-lt); border-radius: 6px; color: var(--dim); }
.screenshot-screen { display: none; }
.screenshot-screen.active { display: flex; }

.screenshot-thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: 12px; }
.screenshot-thumb {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--r); aspect-ratio: 16/10;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; color: var(--dim); cursor: pointer;
  transition: border-color 0.15s;
}
.screenshot-thumb:hover { border-color: var(--border-lt); }
.screenshot-thumb.active { border-color: var(--red); color: var(--red); }

/* ── PIPELINE / RACE READY ───────────────────────────────────── */
.pipeline { text-align: center; background: #f5f7fa; border-top: 1px solid var(--border); }
.pipeline h2 { margin-bottom: 16px; }
.pipeline .lead { max-width: 580px; margin: 0 auto 60px; }
.pipeline-steps {
  display: flex; align-items: flex-start; justify-content: center;
  gap: 0; position: relative;
}
.pipeline-steps::before {
  content: ''; position: absolute; top: 30px; left: 8%; right: 8%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-lt) 20%, var(--border-lt) 80%, transparent);
}
.pipeline-step { flex: 1; max-width: 170px; display: flex; flex-direction: column; align-items: center; gap: 14px; position: relative; z-index: 1; }
.step-icon {
  width: 60px; height: 60px; background: var(--card); border: 1px solid var(--border-lt);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 22px;
}
.step-icon.red { background: var(--red-glow); border-color: rgba(232,32,26,0.35); }
.step-title { font-size: 13px; font-weight: 700; color: var(--text); text-align: center; }
.step-sub   { font-size: 12px; color: var(--dim); text-align: center; line-height: 1.4; }
.pipe-arrow { font-size: 16px; color: var(--border-lt); margin-top: 20px; flex-shrink: 0; }
.pipeline-callout {
  margin-top: 44px; display: inline-flex; align-items: center; gap: 10px;
  padding: 13px 24px; background: var(--red-glow); border: 1px solid rgba(232,32,26,0.25);
  border-radius: 100px; font-size: 14px; font-weight: 600; color: var(--red);
}

/* ── PRICING SUMMARY ─────────────────────────────────────────── */
.pricing-summary { background: #f5f7fa; border-top: 1px solid var(--border); }
.pricing-summary-header { text-align: center; margin-bottom: 52px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.price-card {
  background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 20px; transition: border-color 0.2s;
}
.price-card:hover { border-color: var(--border-lt); }
.price-card.featured { border-color: var(--red); position: relative; background: linear-gradient(160deg, rgba(232,32,26,0.04) 0%, var(--card) 50%); }
.featured-pill { position: absolute; top: -1px; right: 20px; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; padding: 4px 10px; border-radius: 0 0 8px 8px; }
.price-tier    { font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--red); }
.price-name    { font-size: 24px; font-weight: 800; letter-spacing: -0.5px; color: var(--text); margin-top: 4px; }
.price-desc    { font-size: 13px; color: var(--sub); line-height: 1.55; }
.price-box     { border-top: 1px solid var(--border); padding-top: 18px; }
.price-amount  { font-size: 30px; font-weight: 800; letter-spacing: -1px; color: var(--text); }
.price-unit    { font-size: 12px; color: var(--sub); margin-top: 3px; }
.price-note    { font-size: 12px; color: var(--dim); margin-top: 8px; line-height: 1.4; }
.price-note.highlight { color: var(--green); font-weight: 600; }
.price-features{ list-style: none; display: flex; flex-direction: column; gap: 9px; flex: 1; }
.price-features li { font-size: 13px; color: var(--text); display: flex; align-items: flex-start; gap: 9px; line-height: 1.4; }
.pf-check { color: var(--green); font-size: 13px; flex-shrink: 0; margin-top: 1px; }
.pf-text strong { color: var(--text); font-weight: 600; }

/* ── ROI ─────────────────────────────────────────────────────── */
.roi { background: #f5f7fa; border-top: 1px solid var(--border); }
.roi-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.roi-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: 32px; }
.roi-stat  { background: var(--card); border: 1px solid var(--border); border-radius: var(--r); padding: 18px 22px; }
.roi-stat .number { font-size: 30px; font-weight: 900; letter-spacing: -1.5px; color: var(--text); }
.roi-stat .number span { color: var(--text); }
.roi-stat .label  { font-size: 12px; color: var(--sub); margin-top: 3px; }
.roi-math  { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 26px 30px; }
.math-row  { display: flex; justify-content: space-between; align-items: baseline; padding: 10px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.math-row:last-child { border-bottom: none; }
.math-label { color: var(--sub); }
.math-value { font-weight: 700; color: var(--text); text-align: right; }
.math-value.bad  { color: #ef4444; }
.math-value.good { color: var(--green); }
.math-row.total .math-label { font-weight: 700; color: var(--text); font-size: 15px; }
.math-row.total .math-value { font-size: 22px; letter-spacing: -0.5px; }
.roi-source { margin-top: 14px; font-size: 12px; color: var(--dim); }

/* ── COMPARE ─────────────────────────────────────────────────── */
.comparison { background: #ffffff; border-top: 1px solid var(--border); }
.comparison .container { max-width: 920px; }
.compare-table { width: 100%; border-collapse: separate; border-spacing: 0; border: 1px solid var(--border); border-radius: var(--r-lg); overflow: hidden; }
.compare-table th { padding: 15px 22px; text-align: left; font-size: 13px; font-weight: 700; color: var(--sub); background: var(--card-2); border-bottom: 1px solid var(--border); }
.compare-table th:not(:first-child) { text-align: center; }
.compare-table th.ours { color: var(--text); }
.compare-table td { padding: 13px 22px; font-size: 14px; border-bottom: 1px solid var(--border); background: var(--card); }
.compare-table tr:last-child td { border-bottom: none; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table td:first-child { color: var(--sub); }
td.ours { color: var(--text); font-weight: 600; }
td.inc  { color: var(--green); font-weight: 600; }
td.no   { color: #ef4444; font-size: 12px; }
td.dim  { color: var(--dim); }
.total-row td { background: var(--card); font-weight: 700; }
.total-row td.ours { color: var(--green); font-size: 16px; }
.total-row td.no   { color: #ef4444; font-size: 15px; }

/* ── FOR WHO ─────────────────────────────────────────────────── */
.for-who { background: #f5f7fa; border-top: 1px solid var(--border); }
.for-who-header { text-align: center; margin-bottom: 48px; }
.for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.for-card { background: var(--card); border: 1px solid var(--border); border-radius: var(--r-lg); padding: 28px 28px 32px; }
.for-icon  { font-size: 28px; margin-bottom: 16px; }
.for-card h3 { margin-bottom: 10px; }
.for-card p  { font-size: 14px; color: var(--sub); line-height: 1.65; }
.for-tag { display: inline-block; margin-top: 16px; padding: 4px 10px; background: var(--card-2); border: 1px solid var(--border-lt); border-radius: 6px; font-size: 11px; font-weight: 600; color: var(--dim); }

/* ── ENGAGE OFFER ────────────────────────────────────────────── */
.engage-offer {
  border-top: 1px solid var(--border);
  background: #f5f7fa;
}
.engage-offer-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.offer-badge { display: inline-flex; align-items: center; gap: 8px; padding: 5px 12px; background: rgba(232,32,26,0.08); border: 1px solid rgba(232,32,26,0.22); border-radius: 100px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--red); margin-bottom: 20px; }
.offer-card  { background: var(--card); border: 1px solid rgba(232,32,26,0.25); border-radius: var(--r-lg); padding: 30px; }
.offer-price-row { display: flex; align-items: baseline; gap: 12px; margin-bottom: 6px; }
.offer-price-original { font-size: 20px; font-weight: 700; color: var(--dim); text-decoration: line-through; }
.offer-price-free     { font-size: 34px; font-weight: 900; color: var(--green); letter-spacing: -1px; }
.offer-months  { font-size: 13px; color: var(--sub); margin-bottom: 20px; }
.offer-features{ list-style: none; display: flex; flex-direction: column; gap: 8px; }
.offer-features li { font-size: 13px; color: var(--sub); display: flex; align-items: center; gap: 10px; }
.offer-features li::before { content: '✓'; color: var(--green); font-weight: 700; }
.offer-terms   { margin-top: 16px; font-size: 11px; color: var(--dim); border-top: 1px solid var(--border); padding-top: 14px; }

/* ── DEMO CTA ────────────────────────────────────────────────── */
.demo-cta { text-align: center; position: relative; overflow: hidden; background: var(--black); }
.demo-cta-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 700px 400px at 50% 50%, rgba(232,32,26,0.1) 0%, transparent 70%); pointer-events: none; }
.demo-cta-content { position: relative; max-width: 580px; margin: 0 auto; }
.demo-cta h2 { margin-bottom: 16px; color: #ffffff; }
.demo-cta .lead { margin-bottom: 36px; color: rgba(255,255,255,0.6); }
.demo-cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.demo-cta .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.25); }
.demo-cta .btn-outline:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.4); }
.demo-meta { margin-top: 18px; font-size: 13px; color: rgba(255,255,255,0.3); }

/* ── FOOTER ──────────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 48px 0 36px; background: var(--dark); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-brand p { font-size: 13px; color: var(--dim); line-height: 1.6; max-width: 260px; margin-top: 12px; }
.footer-col h4 { font-size: 11px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--sub); margin-bottom: 16px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col li a { font-size: 13px; color: var(--dim); transition: color 0.15s; }
.footer-col li a:hover { color: var(--text); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; border-top: 1px solid var(--border); font-size: 12px; color: var(--dim); }

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 960px) {
  .nav-logo img { height: 16px !important; }
  .nav-inner { padding: 0 6px; }
  .problem-inner, .roi-inner, .engage-offer-inner { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid, .for-grid, .modes-grid, .ps-features-full, .overview-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }
  .ps-features-full { margin-bottom: 0; }
  .product-section .btn-primary { margin-top: 32px; }
  .branches, .branches-grid { grid-template-columns: 1fr; gap: 32px; }
  .launch-headline-features { grid-template-columns: 1fr !important; }
  .session-price-examples { grid-template-columns: 1fr !important; }
  .converge-svg-wrap { display: none; }
  .branch-connector { display: none; }
  .pipeline-steps { flex-wrap: wrap; gap: 24px; }
  .pipeline-steps::before { display: none; }
  .pipe-arrow { display: none; }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .nav-links { display: none; }
  .ps-intro {
    display: flex;
    flex-direction: column;
    gap: 0;
  }
  .screenshot-area {
    position: sticky;
    top: 60px;
    z-index: 20;
    padding: 12px 0 16px;
    background: inherit;
  }
  .ps-intro > div:first-child { padding-top: 24px; }
}
/* ── DEMO MODAL ──────────────────────────────────────────────── */
.demo-modal-overlay {
  display: none;
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.7);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.demo-modal-overlay.open { display: flex; }
.demo-modal {
  background: #fff;
  border-radius: var(--r-lg);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}
.demo-modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px 0;
}
.demo-modal-header h3 { font-size: 20px; font-weight: 700; }
.demo-modal-close {
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--sub); line-height: 1;
  padding: 4px 8px;
}
.demo-modal-close:hover { color: var(--text); }
.demo-modal-body { padding: 16px 24px 24px; }

/* ── EXTRACTED FROM INLINE STYLES ───────────────────────────── */

/* Utility */
.hidden { display: none; }

/* Nav */
.nav-logo img { height: 28px; width: auto; display: block; }

/* Problem section */
.problem-heading { max-width: 820px; margin-bottom: 48px; font-size: clamp(34px, 4vw, 50px); }
.problem-lead { margin-bottom: 20px; }
.problem-note { font-size: 15px; color: var(--sub); }
.problem-note strong { color: var(--text); }
.cost-card-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sub); margin-bottom: 6px; }
.cost-label-hl { color: var(--text); font-weight: 600; }
.cost-label-total { color: var(--text); font-weight: 700; font-size: 15px; }

/* Screenshots */
.screenshot-img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.screenshot-img-center { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.screenshot-video { width: 100%; height: 100%; object-fit: cover; }
.screenshot-body-flush { padding: 0; }

/* Note box */
.note-box { font-size: 13px; color: var(--sub); margin-bottom: 0; padding: 12px 16px; border: 1px solid var(--border); border-radius: 8px; }
.note-box strong { color: var(--text); }

/* Launch */
.launch-headline-features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }

/* Modes */
.modes-grid { display: none; }
.converge-outcome-wrap { display: flex; justify-content: center; }

/* Pricing */
.pricing-lead { margin-top: 12px; max-width: 520px; margin-left: auto; margin-right: auto; }
.pf-highlight { color: var(--red); }
.btn-full { justify-content: center; width: 100%; }
.price-requires { font-size: 12px; color: var(--sub); margin-top: 6px; }
.price-amount-sm { font-size: 22px; line-height: 1.2; }
.price-card-explainer { margin-top: 16px; }
.explainer-title { font-weight: 700; color: var(--text); margin-bottom: 8px; }
.explainer-desc { font-size: 13px; color: var(--sub); margin-bottom: 14px; line-height: 1.6; }
.session-price-examples { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; text-align: center; margin-bottom: 14px; }
.session-price-item { padding: 10px 8px; background: var(--card-2); border: 1px solid var(--border); border-radius: 8px; }
.session-price-currency { font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 1px; color: var(--sub); margin-bottom: 4px; }
.session-price-value { font-weight: 700; color: var(--text); }
.session-price-equiv { font-size: 11px; color: var(--sub); }
.explainer-note { font-size: 13px; color: var(--sub); line-height: 1.6; margin: 0; }
.billing-callout { margin-top: 40px; text-align: center; padding: 32px 40px; background: linear-gradient(135deg, rgba(232,32,26,0.06) 0%, rgba(232,32,26,0.02) 100%); border: 1px solid rgba(232,32,26,0.2); border-radius: var(--r-lg); }
.billing-badge { display: inline-block; background: var(--red); color: #fff; font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 4px 12px; border-radius: 20px; margin-bottom: 14px; }
.billing-heading { font-family: 'Rajdhani', sans-serif; font-size: 28px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.billing-desc { font-size: 14px; color: var(--sub); margin-bottom: 18px; }
.billing-link { color: var(--red); font-weight: 600; font-size: 14px; }

/* ROI */
.roi-heading { max-width: 820px; margin-bottom: 12px; }
.roi-lead { margin-bottom: 48px; }
.math-card-label { font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; color: var(--sub); margin-bottom: 4px; }
.math-row-divider { margin-top: 8px; border-top: 1px solid var(--border-lt); padding-top: 12px; }
.math-sub { font-size: 12px; color: var(--dim); }
.math-strong { color: var(--text); }
.math-value-xl { font-size: 22px; }

/* Comparison */
.comparison-header { margin-bottom: 48px; }
.comparison-lead { margin-top: 12px; max-width: 620px; }
.compare-note { margin-top: 14px; font-size: 12px; color: var(--dim); text-align: center; }

/* Footer */
.footer-logo-wrap { margin-bottom: 4px; }
.footer-product-note { margin-top: 10px; font-size: 12px; color: var(--dim); }

/* Booking iframe */
.booking-iframe { width: 100%; border: none; overflow: hidden; min-height: 600px; }
