    /* ============================================================
       FEATURE PAGE STYLES (features.css)
       Prefix: fp- (feature page)
       Inherits CSS variables from style.css / style-cold.css
    ============================================================ */

    /* ============================================================
       MEDIA SECTION (screenshot / video after hero)
    ============================================================ */
    .fp-media-section {
      position: relative;
      z-index: 1;
      padding: 0 40px 60px;
      margin-top: -40px;
    }

    .fp-media-inner {
      max-width: 960px;
      margin: 0 auto;
    }

    .fp-media-video,
    .fp-media-screenshot {
      position: relative;
      border-radius: 18px;
      overflow: hidden;
      border: 1px solid rgba(246, 191, 149, 0.16);
      background: linear-gradient(180deg, rgba(44, 34, 28, 0.98), rgba(18, 15, 12, 0.98));
      box-shadow: 0 24px 64px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(246, 191, 149, 0.06);
    }

    .fp-media-video video,
    .fp-media-screenshot img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 17px;
      padding: 6px;
    }

    .fp-media-screenshot img,
    .fp-guide-body img,
    .fp-step-image img {
      cursor: zoom-in;
    }

    /* Step image */
    .fp-step-image {
      margin-top: 16px;
      border-radius: 12px;
      overflow: hidden;
      border: 1px solid rgba(246, 191, 149, 0.1);
    }

    .fp-step-image img {
      display: block;
      width: 100%;
      height: auto;
      border-radius: 11px;
    }

    /* ============================================================
       HERO
    ============================================================ */
    .fp-hero {
      position: relative;
      min-height: 72vh;
      display: flex;
      align-items: center;
      padding: 120px 40px 80px;
      overflow: hidden;
    }

    /* Радиальный гlow под hero — характерная деталь основного лендинга */
    .fp-hero::before {
      content: '';
      position: absolute;
      top: -120px;
      left: 50%;
      transform: translateX(-50%);
      width: 900px;
      height: 600px;
      background: radial-gradient(ellipse, rgba(187, 95, 42, 0.1) 0%, transparent 65%);
      pointer-events: none;
    }

    /* Тонкая сетка — как body::after на main landing, но только в hero */
    .fp-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      background-image: radial-gradient(rgba(246, 191, 149, 0.07) 1px, transparent 1px);
      background-size: 32px 32px;
      mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
      -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 0%, black 0%, transparent 80%);
    }

    .fp-hero-inner {
      position: relative;
      z-index: 1;
      max-width: 860px;
      margin: 0 auto;
      text-align: center;
    }

    .fp-hero-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(36px, 5vw, 64px);
      font-weight: 800;
      letter-spacing: -2px;
      line-height: 1.1;
      color: var(--heading);
      margin-bottom: 12px;
    }

    .fp-hero-tagline {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(18px, 2.5vw, 28px);
      font-weight: 600;
      color: var(--muted);
      margin-bottom: 24px;
      letter-spacing: -0.5px;
    }

    .fp-hero-desc {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.75;
      max-width: 640px;
      margin: 0 auto 40px;
    }

    .fp-hero-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
    }

    /* Мелкие trust-бейджи под кнопками */
    .fp-hero-trust {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      flex-wrap: wrap;
      margin-top: 28px;
      font-size: 13px;
      color: var(--muted);
    }

    .fp-hero-trust-item {
      display: inline-flex;
      align-items: center;
      gap: 5px;
    }

    .fp-hero-trust-item i {
      font-size: 13px;
      color: var(--brand-mid);
    }

    .fp-hero-trust-item + .fp-hero-trust-item::before {
      content: '·';
      margin-right: 8px;
      color: var(--border-hover);
      font-weight: 700;
    }

    /* ============================================================
       ОБЩИЕ ЭЛЕМЕНТЫ СЕКЦИЙ
    ============================================================ */
    .fp-section {
      padding: 100px 40px;
      max-width: 1200px;
      margin: 0 auto;
    }

    .fp-section--tinted {
      position: relative;
      max-width: 100%;
      padding-left: 0;
      padding-right: 0;
    }

    .fp-section--tinted::before {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 0%, rgba(31, 27, 24, 0.35) 40%, rgba(31, 27, 24, 0.35) 60%, transparent 100%);
      pointer-events: none;
    }

    .fp-section--tinted > .fp-section-inner {
      position: relative;
      z-index: 1;
      max-width: 1200px;
      margin: 0 auto;
      padding: 100px 40px;
    }

    .fp-section-label {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.8px;
      text-transform: uppercase;
      color: var(--brand-mid);
      margin-bottom: 16px;
    }

    .fp-section-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(26px, 3.5vw, 44px);
      font-weight: 800;
      letter-spacing: -1.2px;
      color: var(--heading);
      line-height: 1.15;
      margin-bottom: 14px;
    }

    .fp-section-subtitle {
      font-size: 16px;
      color: var(--muted);
      line-height: 1.7;
      max-width: 600px;
      margin-bottom: 56px;
    }

    /* Центрирование заголовка секции */
    .fp-section--centered {
      text-align: center;
    }

    .fp-section--centered .fp-section-subtitle {
      margin-left: auto;
      margin-right: auto;
    }

    /* ============================================================
       FEATURES GRID (3-колонная сетка карточек)
    ============================================================ */
    .fp-features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    /* 2-колонная вариация */
    .fp-features-grid--2col {
      grid-template-columns: repeat(2, 1fr);
      max-width: 860px;
      margin-left: auto;
      margin-right: auto;
    }

    /* 4-колонная вариация */
    .fp-features-grid--4col {
      grid-template-columns: repeat(4, 1fr);
    }

    .fp-feature-card {
      position: relative;
      padding: 28px;
      border-radius: var(--radius);
      border: 1px solid var(--border);
      background:
        radial-gradient(circle at top right, rgba(246, 191, 149, 0.07), transparent 40%),
        linear-gradient(180deg, rgba(27, 22, 19, 0.92), rgba(18, 15, 12, 0.96));
      backdrop-filter: blur(18px);
      -webkit-backdrop-filter: blur(18px);
      overflow: hidden;
      transition: border-color 0.3s ease, transform 0.25s ease, box-shadow 0.3s ease;
    }

    /* Угловой glow при hover */
    .fp-feature-card::after {
      content: '';
      position: absolute;
      bottom: -30px;
      right: -20px;
      width: 120px;
      height: 120px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(187, 95, 42, 0.12) 0%, transparent 70%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .fp-feature-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-4px);
      box-shadow: 0 20px 48px rgba(0, 0, 0, 0.35), 0 0 24px rgba(187, 95, 42, 0.08);
    }

    .fp-feature-card:hover::after {
      opacity: 1;
    }

    .fp-feature-icon {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.14), rgba(187, 95, 42, 0.07));
      border: 1px solid rgba(246, 191, 149, 0.2);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 22px;
      color: var(--brand-mid);
      margin-bottom: 18px;
      transition: transform 0.25s ease, background 0.25s ease;
    }

    .fp-feature-card:hover .fp-feature-icon {
      transform: scale(1.06);
      background: linear-gradient(135deg, rgba(246, 191, 149, 0.22), rgba(187, 95, 42, 0.12));
    }

    .fp-feature-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--heading);
      margin-bottom: 8px;
      letter-spacing: -0.2px;
    }

    .fp-feature-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.6;
      margin: 0;
    }

    /* ============================================================
       STEPS (нумерованные шаги "Как это работает")
    ============================================================ */
    .fp-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 0;
      position: relative;
    }

    /* Пунктирная линия соединяет шаги */
    .fp-steps::before {
      content: '';
      position: absolute;
      top: 27px; /* центр по кругу (56px / 2 - 1px) */
      left: calc(100% / 8);
      right: calc(100% / 8);
      height: 1px;
      background: repeating-linear-gradient(
        90deg,
        var(--border) 0px,
        var(--border) 6px,
        transparent 6px,
        transparent 14px
      );
    }

    /* 3-шаговая вариация */
    .fp-steps--3 {
      grid-template-columns: repeat(3, 1fr);
    }

    .fp-steps--3::before {
      left: calc(100% / 6);
      right: calc(100% / 6);
    }

    .fp-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      padding: 0 24px;
      position: relative;
    }

    .fp-step-number {
      width: 56px;
      height: 56px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--brand-from), var(--brand-to));
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 22px;
      font-weight: 800;
      color: #1a0f08;
      margin-bottom: 24px;
      box-shadow: 0 0 28px rgba(187, 95, 42, 0.28);
      position: relative;
      z-index: 1;
      flex-shrink: 0;
    }

    .fp-step-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 18px;
      font-weight: 700;
      color: var(--heading);
      margin-bottom: 10px;
    }

    .fp-step-desc {
      font-size: 14px;
      color: var(--muted);
      line-height: 1.65;
    }

    /* ============================================================
       DETAILS (детальный список фич в 2 колонки)
    ============================================================ */
    .fp-details-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 16px;
    }

    .fp-detail-item {
      display: flex;
      align-items: flex-start;
      gap: 16px;
      padding: 20px 24px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--surface);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: border-color 0.25s ease, transform 0.2s ease;
    }

    .fp-detail-item:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
    }

    .fp-detail-icon {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      color: var(--brand-mid);
      flex-shrink: 0;
    }

    .fp-detail-text {}

    .fp-detail-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 15px;
      font-weight: 700;
      color: var(--heading);
      margin-bottom: 4px;
    }

    .fp-detail-desc {
      font-size: 13px;
      color: var(--muted);
      line-height: 1.55;
      margin: 0;
    }

    /* ============================================================
       FAQ (аккордеон)
    ============================================================ */
    .fp-faq {
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .fp-faq-row {
      border-bottom: 1px solid var(--border);
    }

    .fp-faq-row:first-child {
      border-top: 1px solid var(--border);
    }

    .fp-faq-head {
      display: flex;
      align-items: center;
      gap: 16px;
      padding: 22px 4px;
      cursor: pointer;
      user-select: none;
      list-style: none;
      transition: color 0.2s;
    }

    .fp-faq-head:hover .fp-faq-question {
      color: var(--heading);
    }

    .fp-faq-icon {
      width: 36px;
      height: 36px;
      border-radius: 9px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--brand-mid);
      flex-shrink: 0;
      transition: background 0.2s ease;
    }

    .fp-faq-row.is-open .fp-faq-icon {
      background: rgba(187, 95, 42, 0.15);
    }

    .fp-faq-question {
      flex: 1;
      font-family: 'Space Grotesk', sans-serif;
      font-size: 16px;
      font-weight: 600;
      color: var(--text);
      line-height: 1.4;
      transition: color 0.2s;
    }

    .fp-faq-arrow {
      flex-shrink: 0;
      width: 28px;
      height: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--muted);
      font-size: 20px;
      transition: transform 0.3s ease, color 0.2s;
    }

    .fp-faq-row.is-open .fp-faq-arrow {
      transform: rotate(180deg);
      color: var(--brand-mid);
    }

    .fp-faq-body {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 0.35s ease;
    }

    .fp-faq-row.is-open .fp-faq-body {
      grid-template-rows: 1fr;
    }

    .fp-faq-body-inner {
      overflow: hidden;
    }

    .fp-faq-answer {
      padding: 0 4px 22px 52px; /* отступ под иконку */
      font-size: 14px;
      color: var(--muted);
      line-height: 1.75;
    }

    /* ============================================================
       CTA BLOCK (финальный призыв к действию)
    ============================================================ */
    .fp-cta {
      position: relative;
      text-align: center;
      padding: 80px 40px;
      overflow: hidden;
    }

    /* Центральный glow */
    .fp-cta::before {
      content: '';
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 800px;
      height: 380px;
      background: radial-gradient(ellipse, rgba(187, 95, 42, 0.1) 0%, transparent 70%);
      pointer-events: none;
    }

    .fp-cta-inner {
      position: relative;
      z-index: 1;
      max-width: 640px;
      margin: 0 auto;
    }

    /* Glassmorphism-карточка под CTA */
    .fp-cta-card {
      padding: 56px 48px;
      border-radius: 24px;
      border: 1px solid rgba(246, 191, 149, 0.18);
      background: linear-gradient(
        145deg,
        rgba(31, 27, 24, 0.75),
        rgba(18, 15, 12, 0.85)
      );
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow:
        0 32px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.04),
        0 0 60px rgba(187, 95, 42, 0.06);
    }

    .fp-cta-title {
      font-family: 'Space Grotesk', sans-serif;
      font-size: clamp(26px, 4vw, 44px);
      font-weight: 800;
      letter-spacing: -1.2px;
      color: var(--heading);
      line-height: 1.15;
      margin-bottom: 16px;
    }

    .fp-cta-desc {
      font-size: 15px;
      color: var(--muted);
      line-height: 1.7;
      margin-bottom: 36px;
    }

    .fp-cta-buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }

    .fp-cta-note {
      font-size: 13px;
      color: var(--muted);
      opacity: 0.7;
    }

    /* ============================================================
       BREADCRUMB
    ============================================================ */
    .fp-breadcrumb {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 13px;
      color: var(--muted);
      margin-bottom: 40px;
    }

    .fp-breadcrumb a {
      color: var(--muted);
      text-decoration: none;
      transition: color 0.2s;
    }

    .fp-breadcrumb a:hover {
      color: var(--text);
    }

    .fp-breadcrumb-sep {
      color: rgba(186, 169, 150, 0.4);
      font-size: 11px;
    }

    .fp-breadcrumb-current {
      color: var(--brand-mid);
      font-weight: 500;
    }

    /* ============================================================
       SCROLL REVEAL (переиспользуем класс .reveal из style.css,
       .fp-reveal — алиас для семантики внутри feature pages)
    ============================================================ */
    .fp-reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fp-reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    .fp-reveal-delay-1 { transition-delay: 0.1s; }
    .fp-reveal-delay-2 { transition-delay: 0.2s; }
    .fp-reveal-delay-3 { transition-delay: 0.3s; }
    .fp-reveal-delay-4 { transition-delay: 0.4s; }

    /* ============================================================
       RELATED MODULES (карточки смежных модулей внизу)
    ============================================================ */
    .fp-related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .fp-related-card {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 18px 20px;
      border-radius: var(--radius-sm);
      border: 1px solid var(--border);
      background: var(--surface);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      text-decoration: none;
      color: inherit;
      transition: border-color 0.25s ease, transform 0.2s ease;
    }

    .fp-related-card:hover {
      border-color: var(--border-hover);
      transform: translateY(-2px);
      color: inherit;
    }

    .fp-related-icon {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(246, 191, 149, 0.08);
      border: 1px solid rgba(246, 191, 149, 0.14);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 16px;
      color: var(--brand-mid);
      flex-shrink: 0;
    }

    .fp-related-name {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: var(--text);
    }

    .fp-related-arrow {
      margin-left: auto;
      font-size: 16px;
      color: var(--muted);
      opacity: 0;
      transition: opacity 0.2s, transform 0.2s;
    }

    .fp-related-card:hover .fp-related-arrow {
      opacity: 1;
      transform: translateX(4px);
    }

    /* ============================================================
       RESPONSIVE — 1024px
    ============================================================ */
    @media (max-width: 1024px) {
      .fp-features-grid--4col {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    /* ============================================================
       RESPONSIVE — 768px
    ============================================================ */
    @media (max-width: 768px) {
      .fp-hero {
        padding: 100px 20px 60px;
        min-height: auto;
      }

      .fp-section {
        padding: 60px 20px;
      }

      .fp-section--tinted > .fp-section-inner {
        padding: 60px 20px;
      }

      .fp-features-grid {
        grid-template-columns: 1fr;
      }

      .fp-features-grid--2col {
        grid-template-columns: 1fr;
      }

      .fp-steps {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      /* Убираем линию-коннектор на мобиле */
      .fp-steps::before {
        display: none;
      }

      .fp-steps--3 {
        grid-template-columns: 1fr;
      }

      .fp-details-grid {
        grid-template-columns: 1fr;
      }

      .fp-related-grid {
        grid-template-columns: 1fr;
      }

      .fp-cta-card {
        padding: 36px 24px;
      }

      .fp-faq-answer {
        padding-left: 0;
      }
    }

    /* ============================================================
       RESPONSIVE — 480px
    ============================================================ */
    @media (max-width: 480px) {
      .fp-features-grid--4col {
        grid-template-columns: 1fr;
      }

      .fp-step {
        padding: 0 8px;
      }
    }

    /* Стили кнопки "← Главная" перенесены в _navbar.ejs (общий вид для всех страниц) */

/* ============================================================
   GUIDE SECTION (подробное руководство из KB)
   ============================================================ */

.fp-guide {
  max-width: 860px;
  margin: 40px auto 0;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.fp-guide-item {
  background: linear-gradient(180deg, rgba(44, 34, 28, 0.6), rgba(18, 15, 12, 0.6));
  border: 1px solid rgba(246, 191, 149, 0.1);
  border-radius: 16px;
  padding: 28px 32px;
  position: relative;
}

.fp-guide-title {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #f0f0f0;
  margin: 0 0 14px 0;
  line-height: 1.35;
}

.fp-guide-body {
  font-size: 0.95rem;
  line-height: 1.7;
  color: rgba(230, 220, 210, 0.82);
}

.fp-guide-body p {
  margin: 0 0 12px 0;
}

.fp-guide-body p:last-child {
  margin-bottom: 0;
}

.fp-guide-body img {
  max-width: 100%;
  border-radius: 12px;
  margin-top: 0.75rem;
}

/* ============================================================
   ARTICLE-FIRST SEO PAGE OVERRIDES
   ============================================================ */

.fp-hero {
  min-height: auto;
  padding: 136px 40px 58px;
}

.fp-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0 auto 18px;
  color: var(--brand-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.fp-hero-kicker i {
  font-size: 18px;
}

.fp-hero-title {
  font-size: 52px;
  letter-spacing: 0;
  max-width: 980px;
  margin-left: auto;
  margin-right: auto;
}

.fp-hero-desc {
  max-width: 760px;
  margin: 0 auto 34px;
}

.fp-hero-desc p {
  margin: 0;
}

.fp-hero-desc p + p {
  margin-top: 14px;
}

.fp-media-section {
  z-index: 0;
  padding-bottom: 42px;
  margin-top: 0;
}

.fp-media-section--after-article {
  padding-top: 0;
  padding-bottom: 74px;
}

.fp-article-section {
  position: relative;
  z-index: 2;
  padding: 38px 40px 76px;
}

.fp-article-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 300px;
  gap: 44px;
  align-items: start;
}

.fp-article {
  min-width: 0;
  max-width: 780px;
}

.fp-article-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--brand-mid);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.fp-article h2 {
  margin: 0 0 18px;
  color: var(--heading);
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: 0;
}

.fp-article-lead {
  margin: 0 0 34px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.fp-article-sidebar {
  order: 2;
  position: static;
  top: auto;
  z-index: auto;
  display: grid;
  gap: 14px;
  align-self: start;
}

.fp-article-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

.fp-article-card__label {
  display: none;
}

.fp-toc {
  display: grid;
  gap: 12px;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: none !important;
  box-shadow: none !important;
  background: transparent !important;
  background-image: none !important;
}

.fp-toc a {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 10px;
  align-items: baseline;
  padding: 9px 8px;
  border: 0 !important;
  border-top: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0;
  outline: 0;
  box-shadow: none !important;
  background: transparent;
  background-image: none !important;
  color: var(--muted);
  text-decoration: none;
  text-decoration-line: none;
  font-size: 13px;
  line-height: 1.35;
  transition: color 0.2s ease;
}

.fp-toc a + a {
  border-top: 0 !important;
  border-bottom: 0 !important;
}

.fp-toc a:focus,
.fp-toc a:focus-visible,
.fp-toc a:hover {
  background: transparent;
  background-image: none !important;
  color: var(--text);
  outline: 0 !important;
  box-shadow: none !important;
  text-decoration: none !important;
}

.fp-toc a.is-active {
  background: transparent;
  background-image: none !important;
  color: var(--muted);
  box-shadow: none !important;
}

.fp-toc a.is-active span {
  color: var(--brand-mid);
}

.fp-toc a::before,
.fp-toc a::after {
  display: none !important;
  content: none !important;
  border: 0 !important;
  border-bottom: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
}

.fp-toc span {
  color: var(--brand-mid);
  font-size: 11px;
  font-weight: 800;
}

.fp-article-sidebar,
.fp-article-card,
.fp-toc,
.fp-toc *,
.fp-toc *::before,
.fp-toc *::after {
  border-bottom: 0 !important;
}

.fp-article-facts {
  display: grid;
  gap: 10px;
}

.fp-fact-row {
  display: flex;
  align-items: baseline;
  gap: 10px;
  color: var(--muted);
  font-size: 13px;
}

.fp-fact-row strong {
  min-width: 34px;
  color: var(--heading);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 24px;
}

.fp-article .fp-guide {
  max-width: none;
  margin: 0;
  gap: 22px;
}

.fp-article .fp-guide-item {
  padding: 0 0 28px;
  border: 0;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  background: transparent;
}

.fp-article .fp-guide-item:last-child {
  border-bottom: 0;
}

.fp-article .fp-guide-title {
  color: var(--heading);
  font-size: clamp(22px, 2.2vw, 30px);
  letter-spacing: 0;
  margin-bottom: 12px;
}

.fp-article .fp-guide-body {
  color: var(--text);
  font-size: 16px;
  line-height: 1.8;
}

.fp-article .fp-guide-body p,
.fp-article .fp-guide-body ul,
.fp-article .fp-guide-body ol {
  margin-top: 0;
  margin-bottom: 16px;
}

.fp-article .fp-guide-body li {
  margin-bottom: 7px;
}

.fp-article .fp-guide-body code {
  padding: 2px 6px;
  border-radius: 6px;
  background: rgba(246, 191, 149, 0.08);
  color: var(--brand-mid);
}

.fp-article .kb-tip,
.fp-article .kb-warning {
  margin-top: 16px;
}

.fp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 34px;
  background: rgba(5, 4, 3, 0.86);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.18s ease, visibility 0.18s ease;
}

.fp-lightbox.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.fp-lightbox__image {
  display: block;
  max-width: min(1180px, 94vw);
  max-height: 88vh;
  border-radius: 14px;
  background: rgba(18, 15, 12, 0.96);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.62);
  object-fit: contain;
}

.fp-lightbox__close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(246, 191, 149, 0.18);
  border-radius: 999px;
  background: rgba(18, 15, 12, 0.84);
  color: var(--heading);
  cursor: pointer;
}

.fp-lightbox__close:hover {
  background: rgba(246, 191, 149, 0.12);
}

.fp-section {
  padding-top: 74px;
  padding-bottom: 74px;
}

/* ============================================================
   FEATURE HERO V2
   ============================================================ */
.fp-hero {
  min-height: calc(100svh - 66px);
  align-items: flex-start;
  padding: 112px 40px 34px;
}

.fp-hero::before {
  top: -180px;
  width: 780px;
  height: 520px;
}

.fp-hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
}

.fp-hero-inner {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1.06fr);
  align-items: center;
  gap: 44px;
  margin: 0;
  text-align: left;
}

.fp-hero--no-preview .fp-hero-inner {
  display: block;
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
}

.fp-hero-copy {
  min-width: 0;
}

.fp-hero-copy .fp-breadcrumb {
  margin: 0 0 26px;
  padding: 0;
  border: 0;
  background: transparent;
}

.fp-hero-kicker {
  justify-content: flex-start;
  margin: 0 0 16px;
}

.fp-hero--no-preview .fp-hero-kicker {
  justify-content: center;
}

.fp-hero-title {
  max-width: 640px;
  margin: 0 0 18px;
  font-size: clamp(40px, 4.4vw, 62px);
  line-height: 1.03;
  letter-spacing: 0;
}

.fp-hero--no-preview .fp-hero-title {
  margin-left: auto;
  margin-right: auto;
}

.fp-hero-desc {
  max-width: 650px;
  margin: 0 0 30px;
  font-size: 16px;
  line-height: 1.72;
}

.fp-hero--no-preview .fp-hero-desc {
  margin-left: auto;
  margin-right: auto;
}

.fp-hero-buttons,
.fp-hero-trust {
  justify-content: flex-start;
}

.fp-hero--no-preview .fp-hero-buttons,
.fp-hero--no-preview .fp-hero-trust {
  justify-content: center;
}

.fp-hero-preview {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(246, 191, 149, 0.14);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(44, 34, 28, 0.9), rgba(15, 12, 10, 0.98));
  box-shadow: 0 28px 86px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(246, 191, 149, 0.04);
}

.fp-hero-preview::before {
  content: '';
  position: absolute;
  inset: -1px;
  pointer-events: none;
  background: radial-gradient(circle at 72% 0%, rgba(246, 191, 149, 0.13), transparent 34%);
}

.fp-hero-preview__bar {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 44px;
  padding: 0 16px;
  border-bottom: 1px solid rgba(246, 191, 149, 0.1);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.fp-hero-preview__bar span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.fp-hero-preview__bar i {
  color: var(--brand-mid);
  font-size: 15px;
}

.fp-hero-preview img {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: left top;
  padding: 8px;
  border-radius: 16px;
  cursor: zoom-in;
}

.fp-hero-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 34px;
  padding: 10px;
  border: 1px solid rgba(246, 191, 149, 0.1);
  border-radius: 16px;
  background: rgba(18, 15, 12, 0.46);
}

.fp-hero-flow__item {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(246, 191, 149, 0.045);
  color: var(--muted);
}

.fp-hero-flow__item span {
  flex: 0 0 auto;
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(246, 191, 149, 0.1);
  color: var(--brand-mid);
  font-family: 'Space Grotesk', sans-serif;
  font-size: 12px;
  font-weight: 800;
}

.fp-hero-flow__item strong {
  min-width: 0;
  color: var(--text);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.fp-article-section {
  padding-top: 68px;
}

.fp-media-screenshot img,
.fp-hero-preview img,
.fp-guide-body img,
.fp-step-image img {
  cursor: zoom-in;
}

@media (max-width: 980px) {
  .fp-hero {
    min-height: auto;
    padding: 98px 28px 48px;
  }

  .fp-hero-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .fp-hero-preview img {
    aspect-ratio: 16 / 9;
  }

  .fp-hero-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fp-article-shell {
    grid-template-columns: 1fr;
  }

  .fp-article {
    max-width: none;
  }

  .fp-article-sidebar {
    order: -1;
    position: static;
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .fp-hero {
    padding: 92px 20px 42px;
  }

  .fp-hero-buttons,
  .fp-hero-trust {
    justify-content: flex-start;
  }

  .fp-hero-title {
    font-size: 36px;
  }

  .fp-article-section {
    padding: 44px 20px 64px;
  }

  .fp-article h2 {
    font-size: 30px;
  }

  .fp-article .fp-guide-body {
    font-size: 15px;
  }
}

@media (max-width: 560px) {
  .fp-hero-flow {
    grid-template-columns: 1fr;
  }
}
