/* ============================================================
   CDO Global — общий стиль (корпоративное обучение)
   ============================================================ */

:root {
  --bg: #0a0f0a;
  --bg-2: #0d130d;
  --bg-light: #f4f6f4;
  --surface: #111811;
  --surface-2: #16201a;
  --line: rgba(116, 212, 20, 0.18);
  --line-dim: rgba(255, 255, 255, 0.08);
  --text: #ffffff;
  --text-dim: rgba(255, 255, 255, 0.72);
  --text-mute: rgba(255, 255, 255, 0.5);
  --text-dark: #0a0f0a;
  --text-dark-dim: rgba(10, 15, 10, 0.7);
  --accent: #74D414;
  --accent-2: #8be12a;
  --accent-soft: rgba(116, 212, 20, 0.12);
  --radius: 14px;
  --radius-lg: 22px;
  --max: 1240px;
  --pad: clamp(20px, 4vw, 56px);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font);
  background: var(--bg);
  color: var(--text);
  line-height: 1.55;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 15, 10, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line-dim);
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 16px 0;
}
.logo img { height: 28px; width: auto; }

.nav { display: flex; gap: 28px; align-items: center; }
.nav > a.nav-link,
.nav-trigger {
  font-size: 14.5px;
  color: var(--text-dim);
  transition: color 0.2s;
  background: none;
  border: 0;
  padding: 0;
  font-family: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  line-height: 1.2;
}
.nav > a.nav-link:hover,
.nav-trigger:hover,
.nav-trigger.active { color: var(--text); }
.nav-trigger.active { border-bottom: 2px solid var(--accent); padding-bottom: 4px; }
.nav-caret { font-size: 10px; opacity: 0.7; }

.nav-item { position: relative; }
.nav-menu {
  position: absolute;
  top: calc(100% + 14px);
  left: -16px;
  min-width: 380px;
  background: #0f1410;
  border: 1px solid var(--line-dim);
  border-radius: 14px;
  padding: 8px;
  display: none;
  flex-direction: column;
  gap: 2px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.55);
  z-index: 100;
}
.nav-menu--narrow { min-width: 240px; }
.nav-item.open .nav-menu { display: flex; }
.nav-menu a {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 10px;
  color: var(--text-dim);
  transition: background 0.15s, color 0.15s;
  font-size: 14px;
  border-bottom: 0 !important;
}
.nav-menu a strong { color: var(--text); font-weight: 600; font-size: 14.5px; }
.nav-menu a span { color: var(--text-mute); font-size: 12.5px; line-height: 1.4; }
.nav-menu a:hover { background: rgba(116,212,20,0.08); }
.nav-menu a:hover strong { color: var(--accent); }
.nav-menu a.active { background: rgba(116,212,20,0.12); }
.nav-menu a.active strong { color: var(--accent); }

.site-header__right { display: flex; align-items: center; gap: 18px; }
.lang { display: flex; gap: 12px; font-size: 13px; color: var(--text-mute); }
.lang span.active { color: var(--text); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 500;
  border: 1px solid transparent;
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary { background: #fff; color: var(--text-dark); }
.btn--primary:hover { background: var(--accent); color: var(--text-dark); }
.btn--accent { background: var(--accent); color: var(--text-dark); }
.btn--accent:hover { background: var(--accent-2); }
.btn--ghost { background: transparent; color: var(--text); border-color: rgba(255,255,255,0.25); }
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }
.btn--dark { background: var(--text-dark); color: #fff; }
.btn--dark:hover { background: var(--accent); color: var(--text-dark); }

/* ============================================================
   Breadcrumbs
   ============================================================ */
.crumbs {
  padding: 22px 0 0;
  font-size: 13px;
  color: var(--text-mute);
}
.crumbs a { color: var(--text-mute); transition: color .2s; }
.crumbs a:hover { color: var(--accent); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }
.crumbs .current { color: var(--text-dim); }

/* ============================================================
   Section base
   ============================================================ */
section { padding: clamp(48px, 5.2vw, 72px) 0; }
.section-light { background: var(--bg-light); color: var(--text-dark); }
.section-light .text-dim { color: var(--text-dark-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 18px;
}
.eyebrow::before {
  content: '';
  width: 28px;
  height: 1px;
  background: var(--accent);
}

h1, h2, h3, h4 {
  font-weight: 700;
  letter-spacing: -0.015em;
  margin: 0;
  line-height: 1.14;
}
h1 { font-size: clamp(32px, 3.8vw, 50px); font-weight: 800; line-height: 1.14; }
h2 { font-size: clamp(26px, 2.8vw, 36px); font-weight: 800; line-height: 1.2; }
h3 { font-size: clamp(18px, 1.6vw, 22px); line-height: 1.3; font-weight: 700; }
h4 { font-size: 16px; line-height: 1.35; font-weight: 700; }

.text-dim { color: var(--text-dim); }
.accent { color: var(--accent); }
.lead { font-size: clamp(15px, 1.1vw, 17px); color: var(--text-dim); max-width: 680px; line-height: 1.55; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  padding: clamp(50px, 7vw, 90px) 0 clamp(60px, 8vw, 110px);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -100px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(116, 212, 20, 0.18), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.hero__inner { position: relative; z-index: 1; display: grid; grid-template-columns: 1.4fr 1fr; gap: 60px; align-items: flex-start; }
@media (max-width: 960px) { .hero__inner { grid-template-columns: 1fr; gap: 40px; } }

.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.chip {
  font-size: 12.5px;
  padding: 7px 14px;
  border-radius: 999px;
  border: 1px solid var(--line-dim);
  color: var(--text-dim);
  background: rgba(255,255,255,0.02);
}
.chip--accent { border-color: var(--accent); color: var(--accent); }

.hero h1 .accent { color: var(--accent); }

.answer-first {
  margin-top: 28px;
  padding: 24px 28px;
  border-radius: var(--radius);
  background: rgba(116, 212, 20, 0.06);
  border-left: 3px solid var(--accent);
  color: var(--text-dim);
  font-size: 15.5px;
  line-height: 1.65;
}

.hero__cta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.hero__trust {
  margin-top: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 13.5px;
  color: var(--text-mute);
}
.hero__trust span { display: inline-flex; align-items: center; gap: 8px; }
.hero__trust span::before { content: '✓'; color: var(--accent); font-weight: bold; }

.hero__aside { display: flex; flex-direction: column; gap: 12px; padding-top: 30px; }
.hero-card {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius);
  padding: 22px 24px;
  position: relative;
  transition: all 0.25s;
}
.hero-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.hero-card h4 { font-size: 17px; margin-bottom: 6px; }
.hero-card p { margin: 0; font-size: 14px; color: var(--text-dim); }
.hero-card .tag {
  position: absolute;
  top: 18px;
  right: 18px;
  font-size: 10.5px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line-dim);
  color: var(--accent);
}

/* ============================================================
   FLOW (4 шага)
   ============================================================ */
.flow { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 960px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .flow { grid-template-columns: 1fr; } }

.flow-step {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.flow-step:hover { border-color: var(--accent); }
.flow-step__num { font-size: 28px; font-weight: 600; color: var(--accent); }
.flow-step h3 { font-size: 18px; }
.flow-step p { font-size: 14px; color: var(--text-dim); margin: 0; line-height: 1.6; }
.flow-step .case {
  margin-top: 8px;
  font-size: 12.5px;
  font-style: italic;
  color: var(--text-mute);
  border-left: 2px solid var(--accent);
  padding-left: 10px;
}
.flow-step a { font-size: 13px; color: var(--accent); margin-top: auto; }
.flow-step a:hover { text-decoration: underline; }

.flow-tagline {
  margin-top: 30px;
  font-size: 16px;
  color: var(--text-dim);
  max-width: 800px;
  border-left: 3px solid var(--accent);
  padding-left: 16px;
}

/* ============================================================
   3 колонки ценностей
   ============================================================ */
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: 50px; }
@media (max-width: 860px) { .values-grid { grid-template-columns: 1fr; } }
.value {
  padding: 28px;
  border-radius: var(--radius);
  background: #fff;
  border: 1px solid rgba(10,15,10,0.08);
}
.value h3 { color: var(--text-dark); margin-bottom: 10px; }
.value p { color: var(--text-dark-dim); margin: 0; font-size: 15px; }

.features {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px 28px;
  list-style: none;
  padding: 0;
}
@media (max-width: 700px) { .features { grid-template-columns: 1fr; } }
.features li {
  position: relative;
  padding-left: 24px;
  color: var(--text-dark-dim);
  font-size: 14.5px;
}
.features li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   DeepTalk-карточки (4 продукта)
   ============================================================ */
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 50px; }
@media (max-width: 960px) { .products-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .products-grid { grid-template-columns: 1fr; } }

.product {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.25s;
}
.product:hover { border-color: var(--accent); transform: translateY(-2px); }
.product__tag {
  align-self: flex-start;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 5px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 600;
}
.product h3 { font-size: 22px; }
.product__what { font-size: 14px; color: var(--text-dim); margin: 0; }
.product__use {
  font-size: 13.5px;
  color: var(--text-mute);
  border-top: 1px solid var(--line-dim);
  padding-top: 12px;
  margin-top: auto;
}

/* ============================================================
   Compare table
   ============================================================ */
.compare-wrap { margin-top: 40px; overflow-x: auto; -webkit-overflow-scrolling: touch; }
.compare {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
  background: var(--surface);
  border-radius: var(--radius);
  overflow: hidden;
}
.compare th, .compare td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-dim);
  font-size: 14.5px;
  vertical-align: top;
}
.compare thead th {
  background: var(--surface-2);
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
.compare thead th.us { color: var(--accent); }
.compare tbody th {
  font-weight: 500;
  color: var(--text-dim);
  width: 24%;
}
.compare tbody tr:last-child th, .compare tbody tr:last-child td { border-bottom: none; }
.compare td { color: var(--text-dim); }
.compare .ok { color: var(--accent); font-weight: 700; }
.compare .no { color: #ff6b6b; }
.compare .mid { color: #ffb84d; }

.compare-note {
  margin-top: 22px;
  padding: 20px 22px;
  border-radius: var(--radius);
  background: var(--accent-soft);
  border-left: 3px solid var(--accent);
  color: var(--text-dim);
  font-size: 15px;
}

/* ============================================================
   Cases (3)
   ============================================================ */
.cases { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 50px; }
@media (max-width: 860px) { .cases { grid-template-columns: 1fr; } }

.case-card {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius);
  padding: 26px;
  transition: all 0.25s;
}
.case-card:hover { border-color: var(--accent); transform: translateY(-2px); }
.case-card h3 { margin-bottom: 12px; font-size: 20px; }
.case-card p { font-size: 14.5px; color: var(--text-dim); margin: 0 0 16px; }
.case-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.case-tag {
  font-size: 11.5px;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 500;
}

/* ============================================================
   Trends (5)
   ============================================================ */
.trends { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 40px; }
@media (max-width: 860px) { .trends { grid-template-columns: 1fr; } }
.trend {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius);
  padding: 24px 26px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.trend__num {
  font-size: 28px;
  font-weight: 600;
  color: var(--accent);
  min-width: 50px;
  line-height: 1;
}
.trend p { margin: 0; font-size: 15px; color: var(--text-dim); line-height: 1.6; }

.trends-cta {
  margin-top: 30px;
  padding: 26px 30px;
  background: var(--accent-soft);
  border: 1px solid var(--accent);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.trends-cta p { margin: 0; color: var(--text); font-size: 16px; max-width: 720px; }

/* ============================================================
   FAQ
   ============================================================ */
.faq { margin-top: 40px; }
.faq-item {
  border-bottom: 1px solid rgba(10,15,10,0.1);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 24px 50px 24px 0;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  transition: color 0.2s;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 26px;
  font-weight: 300;
  color: var(--accent);
  transition: transform 0.25s;
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(45deg); }
.faq-item summary:hover { color: var(--accent); }
.faq-item__a {
  padding: 0 50px 26px 0;
  font-size: 15.5px;
  color: var(--text-dark-dim);
  line-height: 1.7;
}

/* ============================================================
   Form
   ============================================================ */
.contact { background: linear-gradient(180deg, var(--bg) 0%, #0d130d 100%); }
.contact-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 60px; align-items: start; }
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line-dim);
  border-radius: var(--radius-lg);
  padding: 36px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-bottom: 14px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label { font-size: 13px; color: var(--text-mute); }
.form-field input {
  background: transparent;
  border: 1px solid var(--line-dim);
  border-radius: 10px;
  padding: 13px 16px;
  color: var(--text);
  font-size: 15px;
  font-family: inherit;
  transition: border-color 0.2s;
}
.form-field input:focus { outline: none; border-color: var(--accent); }
.form-radios { margin: 18px 0 6px; }
.form-radios__label { font-size: 13px; color: var(--text-mute); margin-bottom: 10px; }
.radios { display: flex; flex-wrap: wrap; gap: 8px; }
.radios label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 14px;
  border: 1px solid var(--line-dim);
  border-radius: 999px;
  font-size: 13.5px;
  color: var(--text-dim);
  cursor: pointer;
  transition: all 0.2s;
}
.radios input { display: none; }
.radios label:hover { border-color: var(--accent); color: var(--accent); }
.radios input:checked + span { color: var(--accent); }
.radios label:has(input:checked) { border-color: var(--accent); color: var(--accent); background: var(--accent-soft); }

.form-hint {
  margin-top: 18px;
  font-size: 12.5px;
  color: var(--text-mute);
  text-align: center;
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: #060906;
  padding: 60px 0 30px;
  border-top: 1px solid var(--line-dim);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
@media (max-width: 700px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-brand p { font-size: 14px; color: var(--text-mute); margin: 16px 0 0; max-width: 320px; }
.footer-col h5 {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--text-mute);
  font-weight: 500;
  margin: 0 0 16px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 14px; color: var(--text-dim); transition: color 0.2s; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
  padding-top: 26px;
  border-top: 1px solid var(--line-dim);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 12px;
  color: var(--text-mute);
}

/* ============================================================
   Mobile nav
   ============================================================ */
.menu-toggle { display: none; background: transparent; border: none; color: #fff; cursor: pointer; padding: 6px; }
@media (max-width: 900px) {
  .nav, .site-header__right .lang { display: none; }
  .nav-menu { position: static; min-width: 0; box-shadow: none; border: 0; padding: 0; background: transparent; }
  .nav-item.open .nav-menu { display: flex; padding-left: 14px; }
  .menu-toggle { display: inline-flex; }
  .nav.open { display: flex; position: absolute; top: 100%; left: 0; right: 0; flex-direction: column; background: var(--bg); padding: 20px var(--pad); border-bottom: 1px solid var(--line-dim); }
  .nav.open a.active { border-bottom: none; }
}

/* ============================================================
   Sticky mobile CTA
   ============================================================ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  z-index: 40;
}
.sticky-cta .btn { width: 100%; justify-content: center; }
@media (max-width: 720px) { .sticky-cta { display: block; } }

/* ============================================================
   Utility
   ============================================================ */
.section-light .eyebrow { color: var(--text-dark); }
.section-light .eyebrow::before { background: var(--accent); }
.section-light .eyebrow span { color: var(--accent); }

.divider {
  height: 1px;
  background: var(--line-dim);
  margin: 0 auto;
  max-width: var(--max);
}

/* ============================================================
   PRICING
   ============================================================ */
.pricing-section { background: var(--bg-2); }
.pricing-lead {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-dim);
  max-width: 880px;
  margin: 18px 0 48px;
}
.pricing-lead strong { color: var(--text); font-weight: 600; }

.pricing-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 1fr 1fr;
  gap: 18px;
  margin-bottom: 56px;
}
@media (max-width: 1100px) { .pricing-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 620px) { .pricing-grid { grid-template-columns: 1fr; } }

.price-card {
  background: var(--bg);
  border: 1px solid var(--line-dim);
  border-radius: 16px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: border-color 0.2s, transform 0.2s;
}
.price-card:hover { border-color: rgba(116,212,20,0.4); transform: translateY(-2px); }
.price-card--featured {
  border-color: var(--accent);
  background: linear-gradient(180deg, rgba(116,212,20,0.06) 0%, var(--bg) 60%);
}
.price-card__head { margin-bottom: 22px; }
.price-card h3 { font-size: 22px; font-weight: 600; margin: 10px 0 6px; color: var(--text); }
.price-card__sub { font-size: 13px; color: var(--text-mute); line-height: 1.5; margin: 0; }

.price-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(116,212,20,0.1);
  border: 1px solid rgba(116,212,20,0.3);
  padding: 4px 10px;
  border-radius: 999px;
}
.price-badge--ai { color: #74D414; }

.price-card__price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-dim);
}
.price-from { font-size: 13px; color: var(--text-mute); margin-right: 2px; }
.price-value {
  font-size: 32px;
  font-weight: 700;
  color: var(--text);
  line-height: 1;
}
.price-currency { font-size: 22px; color: var(--text-dim); margin-left: 2px; }
.price-period { width: 100%; font-size: 13px; color: var(--text-mute); margin-top: 4px; }

.price-features {
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  flex: 1;
}
.price-features li {
  font-size: 14px;
  color: var(--text-dim);
  line-height: 1.5;
  padding: 7px 0 7px 22px;
  position: relative;
}
.price-features li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 13px;
  width: 12px;
  height: 6px;
  border-left: 2px solid var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: rotate(-45deg);
}

.btn--block { width: 100%; text-align: center; justify-content: center; }
.btn--ghost {
  background: transparent;
  border: 1px solid var(--line);
  color: var(--text);
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); }

/* Pricing table */
.pricing-table-wrap { margin-bottom: 48px; }
.pricing-table-title {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dim);
  margin: 0 0 16px;
}
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg);
  border: 1px solid var(--line-dim);
  border-radius: 12px;
  overflow: hidden;
  font-size: 14.5px;
}
.pricing-table th,
.pricing-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line-dim);
  vertical-align: top;
}
.pricing-table thead th {
  background: rgba(255,255,255,0.02);
  font-weight: 600;
  font-size: 13px;
  color: var(--text-dim);
  text-transform: uppercase;
  letter-spacing: 0.4px;
}
.pricing-table tbody th {
  font-weight: 600;
  color: var(--text);
  white-space: nowrap;
}
.pricing-table tbody td { color: var(--text-dim); }
.pricing-table tbody tr:last-child th,
.pricing-table tbody tr:last-child td { border-bottom: 0; }
.pricing-table__note {
  font-size: 13px;
  color: var(--text-mute);
  font-style: italic;
  background: rgba(255,255,255,0.02);
  border-top: 1px solid var(--line-dim);
}
@media (max-width: 720px) {
  .pricing-table thead { display: none; }
  .pricing-table tr { display: block; border-bottom: 1px solid var(--line-dim); padding: 14px 0; }
  .pricing-table th, .pricing-table td { display: block; padding: 4px 18px; border: 0; }
  .pricing-table tbody th { font-size: 16px; margin-bottom: 4px; }
}

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  border: 0;
}

/* Bundle */
.pricing-bundle {
  background: linear-gradient(135deg, rgba(116,212,20,0.12) 0%, rgba(116,212,20,0.03) 100%);
  border: 1px solid rgba(116,212,20,0.3);
  border-radius: 18px;
  padding: 36px 32px;
}
.pricing-bundle__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: center;
}
.pricing-bundle h3 { font-size: 24px; font-weight: 600; margin: 8px 0 12px; color: var(--text); }
.pricing-bundle p { color: var(--text-dim); line-height: 1.6; margin: 0; font-size: 15px; }
.pricing-bundle__price { text-align: right; display: flex; flex-direction: column; align-items: flex-end; gap: 6px; }
.price-value-big { font-size: 38px; font-weight: 700; color: var(--accent); line-height: 1; }
.pricing-bundle__price .price-period { width: auto; text-align: right; }
.pricing-bundle__price small { display: block; color: var(--text-mute); font-size: 12px; margin-top: 2px; }
.pricing-bundle__price .btn { margin-top: 12px; }

@media (max-width: 760px) {
  .pricing-bundle__inner { grid-template-columns: 1fr; }
  .pricing-bundle__price { text-align: left; align-items: flex-start; }
  .pricing-bundle__price .price-period { text-align: left; }
}

/* ===========================================================
   SUBNAV — sticky page navigation under header
   =========================================================== */
.subnav {
  position: sticky;
  top: 64px;
  z-index: 90;
  background: rgba(10, 15, 10, 0.92);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  backdrop-filter: saturate(140%) blur(10px);
  border-top: 1px solid rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.subnav .container { padding-top: 0; padding-bottom: 0; }
.subnav__scroll {
  display: flex;
  align-items: center;
  gap: 4px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 10px 0;
  white-space: nowrap;
}
.subnav__scroll::-webkit-scrollbar { display: none; }
.subnav__item {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  color: var(--text-dim, #c9d2cd);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid transparent;
  transition: color .15s ease, background .15s ease, border-color .15s ease;
  flex-shrink: 0;
}
.subnav__item:hover { color: #fff; background: rgba(255,255,255,0.04); }
.subnav__item.is-active {
  color: var(--accent, #74D414);
  background: rgba(116, 212, 20, 0.10);
  border-color: rgba(116, 212, 20, 0.25);
}

/* Hidden anchor offset target (for #reviews and friends) */
.anchor-offset {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
  pointer-events: none;
  height: 0;
}

/* Scroll-margin for all sections so sticky header+subnav don't cover headings */
section[id], details[id] { scroll-margin-top: 130px; }

@media (max-width: 720px) {
  .subnav { top: 56px; }
  .subnav__item { padding: 7px 12px; font-size: 13px; }
  section[id], details[id] { scroll-margin-top: 110px; }
}
