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

:root {
  --bg:           #0b0d14;
  --bg-card:      #12151f;
  --border:       rgba(255,255,255,0.07);
  --border-hover: rgba(124,109,250,0.45);
  --text:         #eef0f8;
  --text-muted:   #7e859e;
  --accent:       #7c6dfa;
  --accent-light: #a89eff;
  --accent-glow:  rgba(124,109,250,0.28);
  --green:        #10b981;
  --red-soft:     rgba(239,68,68,0.08);
  --red-border:   rgba(239,68,68,0.2);
  --red-text:     #fca5a5;
  --green-soft:   rgba(16,185,129,0.08);
  --green-border: rgba(16,185,129,0.2);
  --green-text:   #6ee7b7;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; }

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.75rem; }
.section    { padding: 5.5rem 0; }

/* ── NAV ─────────────────────────────────────────────────── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(11,13,20,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1.75rem; max-width: 1100px; margin: 0 auto;
}
.logo {
  font-size: 1.35rem; font-weight: 900; letter-spacing: -0.04em;
  color: var(--text); text-decoration: none;
}
.logo span { color: var(--accent); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  color: var(--text-muted); text-decoration: none;
  font-size: 0.875rem; font-weight: 500; transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--text); }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 0.6rem 1.35rem; border-radius: 8px;
  font-weight: 700; font-size: 0.85rem; text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 0 20px var(--accent-glow);
}
.nav-cta:hover { background: var(--accent-light); transform: translateY(-1px); }
.hamburger {
  display: none; background: none; border: none;
  cursor: pointer; padding: 0.25rem; flex-direction: column; gap: 5px;
}
.hamburger span { display: block; width: 22px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ─────────────────────────────────────────────────── */
.hero {
  min-height: 93vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding: 5rem 0 4rem;
}
.hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,109,250,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,109,250,0.045) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 75% 75% at 50% 50%, black 30%, transparent 100%);
}
.hero-glow {
  position: absolute; width: 800px; height: 800px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,109,250,0.12) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%, -50%);
  pointer-events: none;
}
.hero .container { position: relative; text-align: center; }

/* ── PAGE HERO (sub-pages) ────────────────────────────────── */
.page-hero {
  padding: 6rem 0 4.5rem;
  position: relative; overflow: hidden;
  border-bottom: 1px solid var(--border);
}
.page-hero-grid {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(124,109,250,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124,109,250,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 90% 100% at 50% 0%, black 20%, transparent 100%);
}
.page-hero-glow {
  position: absolute; width: 600px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle, rgba(124,109,250,0.09) 0%, transparent 70%);
  top: 0; left: 50%; transform: translateX(-50%);
  pointer-events: none;
}
.page-hero .container { position: relative; }
.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 900; letter-spacing: -0.04em; margin-bottom: 1.25rem;
}
.page-hero h1 em { font-style: normal; color: var(--accent); }
.page-hero .lead {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-muted); max-width: 620px; line-height: 1.8;
}

/* ── BADGE ────────────────────────────────────────────────── */
.badge {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(124,109,250,0.1); border: 1px solid rgba(124,109,250,0.28);
  color: var(--accent-light); padding: 0.4rem 1.1rem; border-radius: 100px;
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.07em;
  text-transform: uppercase; margin-bottom: 2rem;
}
.badge-dot {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  animation: pulse 2.2s ease-in-out infinite;
}
@keyframes pulse { 0%,100% { opacity:1; box-shadow: 0 0 0 0 var(--accent-glow); } 50% { opacity:0.5; box-shadow: 0 0 0 5px transparent; } }

.hero h1 {
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 900; letter-spacing: -0.05em;
  margin-bottom: 1.5rem; line-height: 1.02;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero .lead {
  font-size: clamp(1rem, 2.2vw, 1.2rem);
  color: var(--text-muted); max-width: 660px;
  margin: 0 auto 2.75rem; line-height: 1.75;
}
.hero-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

.btn-primary {
  background: var(--accent); color: #fff;
  padding: 0.95rem 2.1rem; border-radius: 10px;
  font-weight: 700; font-size: 1rem; text-decoration: none;
  transition: all 0.2s; box-shadow: 0 0 30px var(--accent-glow);
  border: 2px solid transparent;
}
.btn-primary:hover { background: var(--accent-light); transform: translateY(-2px); box-shadow: 0 0 45px var(--accent-glow); }
.btn-outline {
  background: transparent; color: var(--text);
  padding: 0.95rem 2.1rem; border-radius: 10px;
  font-weight: 600; font-size: 1rem; text-decoration: none;
  border: 1px solid var(--border); transition: all 0.2s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent-light); }

.hero-trust {
  display: flex; align-items: center; justify-content: center;
  gap: 0.5rem 2rem; margin-top: 3.5rem; flex-wrap: wrap;
}
.trust-item { display: flex; align-items: center; gap: 0.5rem; color: var(--text-muted); font-size: 0.85rem; }
.trust-check { color: var(--green); font-size: 0.9rem; }

/* ── SECTION HEADINGS ─────────────────────────────────────── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.section-title {
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  font-weight: 800; letter-spacing: -0.035em; margin-bottom: 1rem;
}
.section-title em { font-style: normal; color: var(--accent); }
.section-body {
  font-size: 1.05rem; color: var(--text-muted);
  max-width: 620px; line-height: 1.8;
}

/* ── PROBLEMS ─────────────────────────────────────────────── */
.problems { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.problems-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.problem-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem; transition: border-color 0.2s;
}
.problem-card:hover { border-color: var(--border-hover); }
.problem-icon { font-size: 1.9rem; margin-bottom: 0.9rem; }
.problem-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.45rem; }
.problem-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── COMPARE (before/after) ───────────────────────────────── */
.explainer-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 4.5rem; align-items: center; }
.explainer-body p + p { margin-top: 1rem; }

.compare-table {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.75rem; display: flex; flex-direction: column; gap: 0.85rem;
}
.compare-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.25rem;
}
.compare-row { display: grid; grid-template-columns: 1fr auto 1fr; gap: 0.75rem; align-items: center; }
.compare-bad {
  background: var(--red-soft); border: 1px solid var(--red-border);
  border-radius: 9px; padding: 0.65rem 0.9rem;
  font-size: 0.82rem; color: var(--red-text); line-height: 1.4;
}
.compare-good {
  background: var(--green-soft); border: 1px solid var(--green-border);
  border-radius: 9px; padding: 0.65rem 0.9rem;
  font-size: 0.82rem; color: var(--green-text); line-height: 1.4;
}
.compare-vs { color: var(--text-muted); font-size: 0.72rem; font-weight: 700; text-align: center; }

/* ── WHY CARDS ────────────────────────────────────────────── */
.why-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.why-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.why-card {
  background: var(--bg); border: 1px solid var(--border); border-radius: 16px;
  padding: 1.75rem; transition: border-color 0.2s, transform 0.2s;
}
.why-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.why-icon {
  width: 46px; height: 46px; background: rgba(124,109,250,0.1);
  border-radius: 11px; display: flex; align-items: center; justify-content: center;
  font-size: 1.35rem; margin-bottom: 1rem;
}
.why-card h3 { font-size: 0.975rem; font-weight: 700; margin-bottom: 0.4rem; }
.why-card p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ── PRICING CARDS ────────────────────────────────────────── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem; margin-top: 3rem; align-items: start;
}
.pricing-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2.25rem;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border-color: rgba(124,109,250,0.4);
  background: linear-gradient(160deg, rgba(124,109,250,0.07) 0%, var(--bg-card) 100%);
  transform: scale(1.025);
  box-shadow: 0 0 60px rgba(124,109,250,0.1);
}
.pricing-popular {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(124,109,250,0.15); border: 1px solid rgba(124,109,250,0.3);
  color: var(--accent-light); padding: 0.3rem 0.8rem; border-radius: 100px;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; margin-bottom: 1.25rem; width: fit-content;
}
.pricing-name { font-size: 1rem; font-weight: 700; margin-bottom: 0.35rem; }
.pricing-desc { font-size: 0.875rem; color: var(--text-muted); margin-bottom: 1.5rem; line-height: 1.6; }
.pricing-price { display: flex; align-items: flex-end; gap: 0.25rem; margin-bottom: 0.4rem; }
.pricing-price .amount { font-size: 3rem; font-weight: 900; letter-spacing: -0.04em; line-height: 1; }
.pricing-price .period { font-size: 0.9rem; color: var(--text-muted); padding-bottom: 0.4rem; }
.pricing-price .currency { font-size: 1.4rem; font-weight: 700; padding-bottom: 0.5rem; }
.pricing-tagline { font-size: 0.82rem; color: var(--text-muted); margin-bottom: 1.75rem; }
.pricing-divider { border: none; border-top: 1px solid var(--border); margin-bottom: 1.5rem; }
.pricing-features { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 0.7rem; font-size: 0.875rem; line-height: 1.55; }
.pricing-features .chk { color: var(--green); flex-shrink: 0; margin-top: 1px; font-size: 0.85rem; }
.pricing-features .dim { color: var(--text-muted); }
.pricing-btn {
  display: block; text-align: center; padding: 0.9rem;
  border-radius: 10px; font-weight: 700; font-size: 0.95rem;
  text-decoration: none; transition: all 0.2s; margin-top: 1.75rem;
}
.pricing-card:not(.featured) .pricing-btn { background: transparent; border: 1px solid var(--border); color: var(--text); }
.pricing-card:not(.featured) .pricing-btn:hover { border-color: var(--accent); color: var(--accent-light); }
.pricing-card.featured .pricing-btn { background: var(--accent); color: #fff; box-shadow: 0 0 25px var(--accent-glow); }
.pricing-card.featured .pricing-btn:hover { background: var(--accent-light); }
.pricing-note { text-align: center; color: var(--text-muted); font-size: 0.82rem; margin-top: 1.5rem; }
.pricing-note a { color: var(--accent); text-decoration: none; }
.pricing-note a:hover { text-decoration: underline; }

/* ── HOW IT WORKS ─────────────────────────────────────────── */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 0.5rem; margin-top: 3rem; }
.step { text-align: center; padding: 1.5rem 1.25rem; position: relative; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: rgba(124,109,250,0.1); border: 1px solid rgba(124,109,250,0.3);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--accent);
  margin: 0 auto 1rem;
}
.step h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; }
.step p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { margin-top: 3rem; display: flex; flex-direction: column; gap: 0.85rem; max-width: 800px; }
.faq-item { background: var(--bg-card); border: 1px solid var(--border); border-radius: 12px; overflow: hidden; transition: border-color 0.2s; }
.faq-item.open { border-color: rgba(124,109,250,0.3); }
.faq-q {
  width: 100%; background: none; border: none; color: var(--text);
  font-family: inherit; font-size: 0.95rem; font-weight: 600;
  text-align: left; padding: 1.25rem 1.5rem; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.faq-q .arrow { color: var(--accent); transition: transform 0.3s; font-size: 0.85rem; flex-shrink: 0; }
.faq-item.open .arrow { transform: rotate(180deg); }
.faq-a {
  padding: 0 1.5rem; max-height: 0; overflow: hidden;
  transition: max-height 0.38s ease, padding 0.38s;
  font-size: 0.9rem; color: var(--text-muted); line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 500px; padding: 0 1.5rem 1.25rem; }

/* ── CTA BANNER ───────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, rgba(124,109,250,0.13) 0%, rgba(99,102,241,0.07) 100%);
  border: 1px solid rgba(124,109,250,0.18); border-radius: 24px;
  padding: 4.5rem 2rem; text-align: center;
}
.cta-banner h2 { font-size: clamp(1.75rem, 3.5vw, 2.6rem); letter-spacing: -0.035em; margin-bottom: 1rem; }
.cta-banner p  { color: var(--text-muted); margin-bottom: 2.25rem; font-size: 1.05rem; max-width: 560px; margin-left: auto; margin-right: auto; }
.cta-ctas { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── FOOTER ───────────────────────────────────────────────── */
footer { border-top: 1px solid var(--border); padding: 2.5rem 0; }
.footer-inner {
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center; gap: 1.5rem;
}
.footer-logo { font-size: 1.1rem; font-weight: 900; letter-spacing: -0.04em; color: var(--text); text-decoration: none; }
.footer-logo span { color: var(--accent); }
.footer-copy { font-size: 0.82rem; color: var(--text-muted); text-align: center; }
.footer-links { display: flex; gap: 1.5rem; justify-content: flex-end; }
.footer-links a { color: var(--text-muted); text-decoration: none; font-size: 0.82rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--accent); }

/* ── SOCIAL PROOF STRIP ───────────────────────────────────── */
.proof-strip {
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  background: rgba(124,109,250,0.03); padding: 2rem 0;
}
.proof-strip-inner {
  display: flex; align-items: stretch; gap: 0;
  overflow: hidden;
}
.proof-quote {
  flex: 1; padding: 1.25rem 2rem; border-right: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 0.6rem;
}
.proof-quote:last-child { border-right: none; }
.proof-stars { color: #f59e0b; font-size: 0.8rem; letter-spacing: 0.05em; }
.proof-text { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; font-style: italic; }
.proof-author { font-size: 0.78rem; font-weight: 600; color: var(--text); }
.proof-role { font-size: 0.72rem; color: var(--text-muted); margin-top: -0.35rem; }

/* ── PIPELINE (4-step visual flow) ───────────────────────── */
.pipeline-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.pipeline-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 0; margin-top: 3.5rem; position: relative;
}
.pipeline-grid::before {
  content: '';
  position: absolute; top: 34px; left: 10%; right: 10%; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124,109,250,0.35) 20%, rgba(124,109,250,0.35) 80%, transparent);
  pointer-events: none;
}
.pipeline-step {
  padding: 0 1.25rem 2rem; text-align: center; position: relative;
}
.pipeline-step-num {
  width: 68px; height: 68px; border-radius: 50%;
  background: var(--bg); border: 2px solid rgba(124,109,250,0.4);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; font-weight: 900; color: var(--accent);
  margin: 0 auto 1.35rem; position: relative; z-index: 1;
  box-shadow: 0 0 0 8px var(--bg-card);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.pipeline-step:hover .pipeline-step-num {
  border-color: var(--accent);
  box-shadow: 0 0 0 8px var(--bg-card), 0 0 20px var(--accent-glow);
}
.pipeline-step-tag {
  font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.4rem;
}
.pipeline-step h3 { font-size: 1.05rem; font-weight: 800; margin-bottom: 0.55rem; }
.pipeline-step p  { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

/* ── PLATFORM HIGHLIGHTS ──────────────────────────────────── */
.highlight-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.highlight-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  transition: border-color 0.2s, transform 0.2s;
  display: flex; flex-direction: column; gap: 1rem;
}
.highlight-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.highlight-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: rgba(124,109,250,0.1); border: 1px solid rgba(124,109,250,0.2);
  display: flex; align-items: center; justify-content: center; font-size: 1.5rem;
}
.highlight-card h3 { font-size: 1.1rem; font-weight: 800; letter-spacing: -0.02em; }
.highlight-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }
.highlight-chips { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-top: 0.25rem; }
.chip {
  background: rgba(124,109,250,0.08); border: 1px solid rgba(124,109,250,0.18);
  color: var(--accent-light); padding: 0.28rem 0.7rem; border-radius: 6px;
  font-size: 0.72rem; font-weight: 600;
}

/* ── TESTIMONIALS ─────────────────────────────────────────── */
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.testimonial-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem;
  display: flex; flex-direction: column; gap: 1.1rem;
  transition: border-color 0.2s;
}
.testimonial-card:hover { border-color: var(--border-hover); }
.t-stars { color: #f59e0b; font-size: 0.9rem; letter-spacing: 0.1em; }
.t-quote { font-size: 0.925rem; color: var(--text-muted); line-height: 1.8; font-style: italic; flex: 1; }
.t-author { display: flex; align-items: center; gap: 0.9rem; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(124,109,250,0.3), rgba(124,109,250,0.1));
  border: 1px solid rgba(124,109,250,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 800; color: var(--accent-light); flex-shrink: 0;
}
.t-name { font-size: 0.875rem; font-weight: 700; }
.t-role { font-size: 0.78rem; color: var(--text-muted); }

/* ── FEATURE DETAIL ROWS (features page) ─────────────────── */
.feature-rows { display: flex; flex-direction: column; gap: 5rem; }
.feature-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.feature-row.reverse { direction: rtl; }
.feature-row.reverse > * { direction: ltr; }
.feature-row-body .section-label { display: block; margin-bottom: 0.5rem; }
.feature-row-body h3 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-weight: 800; letter-spacing: -0.035em; margin-bottom: 1rem;
}
.feature-row-body p { font-size: 0.975rem; color: var(--text-muted); line-height: 1.8; margin-bottom: 1.5rem; }
.feature-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.65rem;
}
.feature-list li {
  display: flex; align-items: flex-start; gap: 0.7rem;
  font-size: 0.875rem; color: var(--text-muted); line-height: 1.55;
}
.feature-list .fl-dot {
  width: 18px; height: 18px; border-radius: 50%;
  background: rgba(124,109,250,0.12); border: 1px solid rgba(124,109,250,0.25);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px;
}
.feature-list .fl-dot::after {
  content: ''; width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent);
}
.feature-visual {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 2rem; min-height: 280px;
  display: flex; flex-direction: column; gap: 0.85rem;
  justify-content: center;
}
.fv-row {
  display: flex; align-items: center; gap: 0.85rem;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 10px; padding: 0.75rem 1rem;
}
.fv-icon { font-size: 1.1rem; flex-shrink: 0; }
.fv-label { font-size: 0.82rem; font-weight: 600; flex: 1; }
.fv-badge {
  font-size: 0.68rem; font-weight: 700; padding: 0.2rem 0.6rem;
  border-radius: 100px; letter-spacing: 0.04em;
}
.fv-badge.green { background: var(--green-soft); border: 1px solid var(--green-border); color: var(--green-text); }
.fv-badge.amber { background: rgba(245,158,11,0.1); border: 1px solid rgba(245,158,11,0.25); color: #fcd34d; }
.fv-badge.accent { background: rgba(124,109,250,0.12); border: 1px solid rgba(124,109,250,0.28); color: var(--accent-light); }

/* ── COMPARISON TABLE (pricing page) ─────────────────────── */
.comp-section { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.comp-wrap { margin-top: 3rem; overflow-x: auto; }
.comp-table-full {
  width: 100%; border-collapse: collapse; border-radius: 16px; overflow: hidden;
}
.comp-table-full thead tr {
  background: rgba(124,109,250,0.06); border-bottom: 1px solid rgba(124,109,250,0.2);
}
.comp-table-full th {
  padding: 1rem 1.5rem; font-size: 0.82rem; font-weight: 700;
  letter-spacing: 0.06em; text-transform: uppercase; text-align: left;
}
.comp-table-full th.vx { color: var(--accent-light); }
.comp-table-full td {
  padding: 0.9rem 1.5rem; font-size: 0.875rem; border-bottom: 1px solid var(--border);
  vertical-align: middle;
}
.comp-table-full tr:last-child td { border-bottom: none; }
.comp-table-full td.feature-name { color: var(--text); font-weight: 500; }
.comp-table-full td.vx-col { color: var(--green-text); }
.comp-table-full td.alt-col { color: var(--text-muted); }
.comp-yes { color: var(--green); font-size: 1rem; }
.comp-no  { color: var(--text-muted); font-size: 0.8rem; }

/* ── VALUE PROOF (pricing page) ──────────────────────────── */
.value-proof-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.value-proof-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.75rem; text-align: center;
}
.value-proof-card .stat {
  font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em;
  color: var(--accent); margin-bottom: 0.3rem;
}
.value-proof-card .stat-label { font-size: 0.875rem; color: var(--text-muted); line-height: 1.6; }

/* ── ABOUT LAYOUTS ────────────────────────────────────────── */
.about-intro {
  display: grid; grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem; align-items: start; margin-top: 3rem;
}
.about-intro-body p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.85; }
.about-intro-body p + p { margin-top: 1.1rem; }
.about-intro-body p strong { color: var(--text); font-weight: 600; }
.about-sidebar {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 20px; padding: 1.85rem;
  position: sticky; top: 90px;
}
.about-sidebar h4 {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 1.1rem;
}
.sidebar-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border);
  font-size: 0.875rem; line-height: 1.55;
}
.sidebar-item:last-child { border-bottom: none; padding-bottom: 0; }
.sidebar-item .si-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 1px; }
.sidebar-item strong { display: block; font-weight: 600; color: var(--text); margin-bottom: 0.2rem; }
.sidebar-item span { color: var(--text-muted); }

.approach-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.approach-card {
  border-left: 3px solid var(--accent);
  padding: 1.5rem 1.5rem 1.5rem 1.75rem;
  background: var(--bg-card); border-radius: 0 12px 12px 0;
  border-top: 1px solid var(--border);
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.approach-card h3 { font-size: 0.975rem; font-weight: 700; margin-bottom: 0.45rem; }
.approach-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.7; }

.contrast-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1.25rem; margin-top: 3rem;
}
.contrast-box { border-radius: 16px; padding: 2rem; }
.contrast-box.them { background: var(--red-soft); border: 1px solid var(--red-border); }
.contrast-box.us   { background: var(--green-soft); border: 1px solid var(--green-border); }
.contrast-box h4 {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em;
  text-transform: uppercase; margin-bottom: 1.1rem;
}
.contrast-box.them h4 { color: var(--red-text); }
.contrast-box.us   h4 { color: var(--green-text); }
.contrast-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.6rem;
}
.contrast-list li {
  font-size: 0.875rem; line-height: 1.55;
  display: flex; align-items: flex-start; gap: 0.6rem;
}
.contrast-box.them .contrast-list li { color: var(--red-text); }
.contrast-box.us   .contrast-list li { color: var(--green-text); }
.contrast-list .mk { flex-shrink: 0; margin-top: 2px; }

/* ── BENEFITS GRID ────────────────────────────────────────── */
.benefits-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.25rem; margin-top: 3rem;
}
.benefit-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 1.85rem;
  transition: border-color 0.2s, transform 0.2s;
}
.benefit-card:hover { border-color: var(--border-hover); transform: translateY(-3px); }
.benefit-num {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent); margin-bottom: 0.6rem;
}
.benefit-card h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.5rem; }
.benefit-card p { font-size: 0.875rem; color: var(--text-muted); line-height: 1.75; }

/* ── SCREENSHOT IMAGES ────────────────────────────────────── */
.feature-screenshot {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(124,109,250,0.22);
  box-shadow: 0 0 50px rgba(124,109,250,0.14), 0 12px 40px rgba(0,0,0,0.45);
}
.feature-screenshot img {
  width: 100%; height: auto; display: block;
}

/* ── PLATFORM FEATURE ROWS ────────────────────────────────── */
.platform-features { display: flex; flex-direction: column; }
.platform-feature {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 5rem; align-items: center;
  padding: 5rem 0; border-bottom: 1px solid var(--border);
}
.platform-feature:last-child { border-bottom: none; }
.platform-feature.flip { direction: rtl; }
.platform-feature.flip > * { direction: ltr; }
.platform-feature-body { display: flex; flex-direction: column; gap: 1.5rem; }
.unique-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(124,109,250,0.08); border: 1px solid rgba(124,109,250,0.25);
  color: var(--accent-light); padding: 0.3rem 0.85rem; border-radius: 6px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; width: fit-content;
}
.platform-feature-body h3 {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 800; letter-spacing: -0.04em; line-height: 1.15;
}
.platform-feature-body .body-text {
  font-size: 1rem; color: var(--text-muted); line-height: 1.85;
}
.platform-feature-outcomes {
  list-style: none; display: flex; flex-direction: column; gap: 0.75rem;
  margin-top: 0.25rem;
}
.platform-feature-outcomes li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.9rem; line-height: 1.6; color: var(--text-muted);
}
.platform-feature-outcomes .ok {
  color: var(--green); flex-shrink: 0; margin-top: 2px; font-size: 0.85rem; font-weight: 700;
}
.platform-screenshot-wrap {
  border-radius: 20px; overflow: hidden;
  border: 1px solid rgba(124,109,250,0.22);
  box-shadow: 0 0 60px rgba(124,109,250,0.16), 0 16px 52px rgba(0,0,0,0.5);
  position: relative;
}
.platform-screenshot-wrap img {
  width: 100%; height: auto; display: block;
}

/* ── PRODUCT IN ACTION (homepage teaser) ─────────────────── */
.in-action-bg { background: var(--bg-card); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.in-action-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3rem;
}
.in-action-item { display: flex; flex-direction: column; gap: 1rem; }
.in-action-shot {
  border-radius: 16px; overflow: hidden;
  border: 1px solid rgba(124,109,250,0.2);
  box-shadow: 0 0 40px rgba(124,109,250,0.12), 0 8px 32px rgba(0,0,0,0.4);
}
.in-action-shot img { width: 100%; height: auto; display: block; }
.in-action-caption strong {
  display: block; font-size: 0.9rem; font-weight: 700;
  color: var(--text); margin-bottom: 0.3rem;
}
.in-action-caption p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.65; }
.in-action-cta { text-align: center; margin-top: 2.75rem; }

/* ── PLATFORM ROI STATS ───────────────────────────────────── */
.roi-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem; margin-top: 3rem;
}
.roi-card {
  background: var(--bg-card); border: 1px solid rgba(124,109,250,0.2);
  border-radius: 20px; padding: 2.25rem; text-align: center;
  background: linear-gradient(160deg, rgba(124,109,250,0.06) 0%, var(--bg-card) 100%);
}
.roi-stat {
  font-size: 3rem; font-weight: 900; letter-spacing: -0.05em;
  color: var(--accent); line-height: 1; margin-bottom: 0.5rem;
}
.roi-label { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; }

/* ── RESPONSIVE ───────────────────────────────────────────── */
@media (max-width: 1024px) {
  .pipeline-grid { grid-template-columns: repeat(2, 1fr); }
  .pipeline-grid::before { display: none; }
  .highlight-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .feature-row { grid-template-columns: 1fr; gap: 2rem; }
  .feature-row.reverse { direction: ltr; }
  .value-proof-grid { grid-template-columns: 1fr; }
  .platform-feature { grid-template-columns: 1fr; gap: 2.5rem; }
  .platform-feature.flip { direction: ltr; }
  .in-action-grid { grid-template-columns: 1fr; max-width: 600px; margin-left: auto; margin-right: auto; }
  .roi-grid { grid-template-columns: 1fr; }
}
@media (max-width: 960px) {
  .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin-left: auto; margin-right: auto; }
  .pricing-card.featured { transform: none; }
  .explainer-wrap { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-intro { grid-template-columns: 1fr; gap: 2.5rem; }
  .about-sidebar { position: static; }
  .contrast-row { grid-template-columns: 1fr; }
  .proof-strip-inner { flex-direction: column; }
  .proof-quote { border-right: none; border-bottom: 1px solid var(--border); }
  .proof-quote:last-child { border-bottom: none; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-links { justify-content: center; flex-wrap: wrap; gap: 0.75rem 1.25rem; }
}
@media (max-width: 768px) {
  .pipeline-grid { grid-template-columns: 1fr; }
  .highlight-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .value-proof-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: #0b0d14; border-bottom: 1px solid var(--border); padding: 1.5rem 1.75rem; gap: 1.25rem; }
  .nav-links.open { display: flex; }
  nav { position: relative; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }
  .section { padding: 4rem 0; }
  .page-hero { padding: 4rem 0 3rem; }
}
