/*
 ╔══════════════════════════════════════════════════════════╗
 ║          FIBERAX — UI KIT v1.0                           ║
 ║          Elementor / WordPress Custom CSS                ║
 ║                                                          ║
 ║  Куда вставить:                                          ║
 ║  Elementor → Site Settings → Custom CSS                  ║
 ║  ИЛИ WordPress → Appearance → Customize → Additional CSS ║
 ║                                                          ║
 ║  Подключить в <head> (Custom Code):                      ║
 ║  <link href="https://fonts.googleapis.com/css2?          ║
 ║    family=Manrope:wght@400;500;600;700;800&display=swap" ║
 ║    rel="stylesheet">                                     ║
 ║  <link rel="stylesheet" href="https://cdn.jsdelivr.net/  ║
 ║    npm/@tabler/icons-webfont@latest/tabler-icons.min.css"║
 ║    >                                                     ║
 ╚══════════════════════════════════════════════════════════╝
*/

/* ═══════════════════════════════════════
   1. DESIGN TOKENS (CSS Variables)
═══════════════════════════════════════ */
:root {
  /* Colors */
  --fx-black:     #212126;
  --fx-subtext:   #46516F;
  --fx-blue:      #0050FF;
  --fx-blue-dark: #0040CC;
  --fx-green:     #22C55E;
  --fx-stroke:    #E2E4E9;
  --fx-hover-bg:  #F3F8FE;
  --fx-white:     #FFFFFF;
  --fx-bg:        #F5F6FA;

  /* Tag colors */
  --fx-tag-blue-bg:   #E0ECFF;
  --fx-tag-blue-text: #0040CC;
  --fx-tag-teal-bg:   #CCFBF1;
  --fx-tag-teal-text: #0F766E;
  --fx-tag-amber-bg:  #FEF3C7;
  --fx-tag-amber-text:#92400E;
  --fx-tag-green-bg:  #DCFCE7;
  --fx-tag-green-text:#166534;
  --fx-tag-purple-bg: #EDE9FE;
  --fx-tag-purple-text:#5B21B6;

  /* Typography */
  --fx-font: 'Manrope', sans-serif;

  /* Layout */
  --fx-max-w: 1200px;
  --fx-radius: 12px;
  --fx-radius-lg: 20px;
  --fx-radius-xl: 24px;

  /* Animation */
  --fx-ease: 0.22s cubic-bezier(.4, 0, .2, 1);
}

/* ═══════════════════════════════════════
   2. BASE RESET (для Elementor-контейнера)
═══════════════════════════════════════ */
.fx-kit *, .fx-kit *::before, .fx-kit *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.fx-kit {
  font-family: var(--fx-font);
  color: var(--fx-black);
  -webkit-font-smoothing: antialiased;
}

/* ═══════════════════════════════════════
   3. LAYOUT
═══════════════════════════════════════ */
.fx-wrap {
  max-width: var(--fx-max-w);
  margin: 0 auto;
  padding: 0 2rem;
}
.fx-sec {
  padding: 88px 0;
}
.fx-sec.light { background: var(--fx-white); }
.fx-sec.gray  { background: var(--fx-bg); }

/* ═══════════════════════════════════════
   4. TYPOGRAPHY
═══════════════════════════════════════ */
.fx-eyebrow {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--fx-blue);
  display: block;
  margin-bottom: 14px;
}
.fx-eyebrow-lg {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: var(--fx-blue);
  display: block;
  margin-bottom: 12px;
}
.fx-title {
  font-size: clamp(28px, 3.2vw, 44px);
  font-weight: 800;
  color: var(--fx-black);
  letter-spacing: -1.2px;
  line-height: 1.1;
  margin-bottom: 14px;
}
.fx-title-sm {
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  color: var(--fx-black);
  letter-spacing: -1px;
  line-height: 1.12;
  margin-bottom: 12px;
}
.fx-subtitle {
  font-size: 16px;
  color: var(--fx-subtext);
  line-height: 1.75;
  max-width: 600px;
}
.fx-subtitle.center {
  margin: 0 auto;
  text-align: center;
}

/* Section header helpers */
.fx-sec-head {
  margin-bottom: 48px;
}
.fx-sec-head.center {
  text-align: center;
}
.fx-sec-head-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 48px;
}

/* ═══════════════════════════════════════
   5. BUTTONS
═══════════════════════════════════════ */

/* Primary — синяя */
.fx-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fx-blue);
  color: #fff;
  font-family: var(--fx-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: var(--fx-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fx-ease);
}
.fx-btn-primary:hover {
  background: var(--fx-blue-dark);
  transform: translateY(-2px);
}

/* Secondary — белая с рамкой */
.fx-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fx-white);
  color: var(--fx-black);
  font-family: var(--fx-font);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  padding: 1rem 1.75rem;
  border-radius: var(--fx-radius);
  border: 1.5px solid var(--fx-stroke);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fx-ease);
}
.fx-btn-secondary:hover {
  border-color: var(--fx-blue);
  color: var(--fx-blue);
  background: var(--fx-hover-bg);
  transform: translateY(-2px);
}

/* Hero primary (немного мягче) */
.fx-btn-hero-p {
  font: 700 14px var(--fx-font);
  color: #fff;
  background: var(--fx-blue);
  padding: 14px 28px;
  border-radius: 10px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fx-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fx-btn-hero-p:hover {
  background: var(--fx-blue-dark);
  transform: translateY(-2px);
}

/* Hero secondary */
.fx-btn-hero-s {
  font: 700 14px var(--fx-font);
  color: var(--fx-black);
  background: var(--fx-white);
  border: 1.5px solid var(--fx-stroke);
  padding: 13px 28px;
  border-radius: 10px;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fx-ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.fx-btn-hero-s:hover {
  border-color: var(--fx-blue);
  color: var(--fx-blue);
}

/* CTA White (на синем фоне) */
.fx-btn-cta-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 800 13px var(--fx-font);
  letter-spacing: .6px;
  text-transform: uppercase;
  color: var(--fx-blue);
  background: #fff;
  padding: 1rem 2rem;
  border-radius: var(--fx-radius);
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fx-ease);
}
.fx-btn-cta-white:hover { transform: translateY(-2px); }

/* CTA Ghost (на синем фоне) */
.fx-btn-cta-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 800 13px var(--fx-font);
  letter-spacing: .6px;
  text-transform: uppercase;
  color: #fff;
  background: transparent;
  padding: 1rem 2rem;
  border-radius: var(--fx-radius);
  border: 1.5px solid rgba(255,255,255,.4);
  cursor: pointer;
  text-decoration: none;
  transition: all var(--fx-ease);
}
.fx-btn-cta-ghost:hover {
  border-color: #fff;
  background: rgba(255,255,255,.08);
}

/* Show more */
.fx-btn-show-more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 700 14px var(--fx-font);
  color: var(--fx-blue);
  background: var(--fx-tag-blue-bg);
  border: 1.5px solid rgba(0,80,255,.2);
  padding: 10px 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all var(--fx-ease);
}
.fx-btn-show-more:hover { background: #d0e4ff; }

/* Button group */
.fx-btn-group {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* ═══════════════════════════════════════
   6. TAGS / BADGES
═══════════════════════════════════════ */
.fx-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
}
.fx-tag.blue   { background: var(--fx-tag-blue-bg);   color: var(--fx-tag-blue-text); }
.fx-tag.teal   { background: var(--fx-tag-teal-bg);   color: var(--fx-tag-teal-text); }
.fx-tag.amber  { background: var(--fx-tag-amber-bg);  color: var(--fx-tag-amber-text); }
.fx-tag.green  { background: var(--fx-tag-green-bg);  color: var(--fx-tag-green-text); }
.fx-tag.purple { background: var(--fx-tag-purple-bg); color: var(--fx-tag-purple-text); }

/* Status pill (online/green) */
.fx-status {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #DCFCE7;
  color: #059669;
  font-size: 11px;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 100px;
}
.fx-status-dot {
  width: 6px;
  height: 6px;
  background: #22C55E;
  border-radius: 50%;
}

/* Hero pill */
.fx-hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--fx-tag-blue-bg);
  border: 1px solid rgba(0,80,255,.2);
  color: var(--fx-blue);
  font-size: 12px;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 100px;
  margin-bottom: 28px;
  letter-spacing: .5px;
}
.fx-hero-pill-dot {
  width: 6px;
  height: 6px;
  background: var(--fx-blue);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--fx-blue);
}

/* ═══════════════════════════════════════
   7. ICON TILE
═══════════════════════════════════════ */
.fx-ic {
  width: 44px;
  height: 44px;
  border-radius: 11px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fx-ic i { font-size: 21px; }
.fx-ic.lg {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  font-size: 21px;
}

/* ═══════════════════════════════════════
   8. CARDS
═══════════════════════════════════════ */

/* --- Feature card (6-сетка, Values/Glance) --- */
.fx-card {
  background: var(--fx-bg);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 28px;
  transition: all var(--fx-ease);
}
.fx-sec.light .fx-card,
.fx-sec.gray .fx-card { background: var(--fx-white); }
.fx-card:hover {
  border-color: rgba(0,80,255,.3);
  transform: translateY(-3px);
}
.fx-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--fx-black);
  margin-bottom: 7px;
}
.fx-card p {
  font-size: 13.5px;
  color: var(--fx-subtext);
  line-height: 1.65;
}
.fx-cards-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}

/* --- Product card (с тегом + иллюстрацией) --- */
.fx-pcard {
  background: #fff;
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 28px 28px 32px;
  transition: all var(--fx-ease);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.fx-pcard:hover {
  border-color: var(--fx-blue);
  background: var(--fx-hover-bg);
  transform: translateY(-4px);
}
.fx-pcard.feature {
  border-color: rgba(0,80,255,.15);
  background: #F5F9FF;
}
.fx-pcard-img {
  width: 88px;
  height: 88px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.fx-pcard-img svg,
.fx-pcard-img img { width: 88px; height: 88px; object-fit: contain; }
.fx-pcard h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--fx-black);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.fx-pcard p {
  font-size: 14px;
  color: var(--fx-subtext);
  line-height: 1.65;
}
.fx-prod-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 48px;
}

/* --- Why/Why-grid card --- */
.fx-wcard {
  background: #fff;
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 28px;
  transition: all var(--fx-ease);
}
.fx-wcard:hover {
  border-color: rgba(0,80,255,.25);
  box-shadow: 0 8px 24px rgba(0,80,255,.07);
  transform: translateY(-3px);
}
.fx-wcard h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--fx-black);
  margin-bottom: 8px;
}
.fx-wcard p {
  font-size: 13.5px;
  color: var(--fx-subtext);
  line-height: 1.65;
}

/* --- Step card (numbered) --- */
.fx-scard {
  background: var(--fx-bg);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 36px 32px;
  text-align: center;
}
.fx-snum {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--fx-tag-blue-bg);
  border: 1.5px solid rgba(0,80,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: var(--fx-blue);
  margin: 0 auto 22px;
}
.fx-scard h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--fx-black);
  margin-bottom: 10px;
  letter-spacing: -.3px;
}
.fx-scard p {
  font-size: 14px;
  color: var(--fx-subtext);
  line-height: 1.65;
}

/* ═══════════════════════════════════════
   9. CHECKLIST
═══════════════════════════════════════ */
.fx-checklist {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fx-check-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 18px;
  background: var(--fx-white);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius);
  transition: border-color var(--fx-ease);
}
.fx-check-item:hover { border-color: rgba(0,80,255,.25); }
.fx-check-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #DCFCE7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}
.fx-check-dot i { font-size: 11px; color: #16A34A; }
.fx-check-item span {
  font-size: 14px;
  color: var(--fx-black);
  font-weight: 500;
  line-height: 1.5;
}

/* ═══════════════════════════════════════
   10. TIMELINE
═══════════════════════════════════════ */
.fx-timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 52px;
  position: relative;
  max-width: 760px;
}
.fx-timeline::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--fx-blue) 0%, rgba(0,80,255,.08) 100%);
}
.fx-tl-item {
  display: flex;
  gap: 28px;
  padding-bottom: 28px;
  position: relative;
}
.fx-tl-item:last-child { padding-bottom: 0; }
.fx-tl-dot {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--fx-white);
  border: 2px solid var(--fx-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 1;
}
.fx-tl-dot i { font-size: 18px; color: var(--fx-blue); }
.fx-tl-dot.active { background: var(--fx-blue); }
.fx-tl-dot.active i { color: #fff; }
.fx-tl-box {
  background: var(--fx-white);
  border: 1px solid var(--fx-stroke);
  border-radius: 16px;
  padding: 22px 26px;
  flex: 1;
}
.fx-tl-box:hover { border-color: rgba(0,80,255,.25); }
.fx-tl-tag {
  font-size: 11px;
  font-weight: 700;
  color: var(--fx-blue);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  display: block;
}
.fx-tl-box h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--fx-black);
  margin-bottom: 7px;
}
.fx-tl-box p {
  font-size: 13.5px;
  color: var(--fx-subtext);
  line-height: 1.7;
}

/* ═══════════════════════════════════════
   11. TEAM CARD
═══════════════════════════════════════ */
.fx-team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.fx-team-card {
  background: var(--fx-white);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-xl);
  overflow: hidden;
  display: flex;
  transition: all var(--fx-ease);
}
.fx-team-card:hover {
  border-color: rgba(0,80,255,.3);
  box-shadow: 0 12px 40px rgba(0,80,255,.08);
}
.fx-team-photo {
  width: 180px;
  flex-shrink: 0;
}
.fx-team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  object-position: center top;
}
.fx-team-info { padding: 26px; }
.fx-team-info h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--fx-black);
  letter-spacing: -.4px;
  margin-bottom: 3px;
}
.fx-team-role {
  font-size: 11px;
  font-weight: 700;
  color: var(--fx-blue);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  display: block;
  margin-bottom: 12px;
}
.fx-team-info p {
  font-size: 13.5px;
  color: var(--fx-subtext);
  line-height: 1.65;
}

/* Team note panel */
.fx-team-note {
  margin-top: 20px;
  background: var(--fx-white);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-xl);
  padding: 44px 48px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: center;
}
.fx-team-note__label {
  font-size: 11px;
  font-weight: 700;
  color: var(--fx-blue);
  text-transform: uppercase;
  letter-spacing: 1.4px;
  display: block;
  margin-bottom: 16px;
}
.fx-team-note__text p {
  font-size: 15px;
  color: var(--fx-subtext);
  line-height: 1.85;
  margin: 0;
}
.fx-team-note__text p + p { margin-top: 14px; }
.fx-team-note__text strong { color: var(--fx-black); font-weight: 700; }
.fx-team-roles { display: grid; grid-template-columns: 1fr; gap: 18px; }
.fx-role { display: flex; align-items: center; gap: 14px; }
.fx-role-ic {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 21px;
  flex-shrink: 0;
}
.fx-role span {
  font-size: 14px;
  font-weight: 700;
  color: var(--fx-black);
  line-height: 1.35;
}

/* ═══════════════════════════════════════
   12. STAT / KPI BLOCK
═══════════════════════════════════════ */
.fx-stats {
  border-top: 1px solid var(--fx-stroke);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--fx-white);
}
.fx-stat {
  padding: 24px 32px;
  border-right: 1px solid var(--fx-stroke);
}
.fx-stat:last-child { border-right: none; }
.fx-stat-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--fx-black);
  letter-spacing: -1px;
  line-height: 1;
  margin-bottom: 4px;
}
.fx-stat-val span { color: var(--fx-blue); }
.fx-stat-label {
  font-size: 11px;
  font-weight: 600;
  color: var(--fx-subtext);
  text-transform: uppercase;
  letter-spacing: 1.2px;
}

/* GPU specs grid */
.fx-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 28px;
}
.fx-spec {
  background: var(--fx-bg);
  border: 1px solid var(--fx-stroke);
  border-radius: 14px;
  padding: 18px 20px;
}
.fx-spec-val {
  font-size: 28px;
  font-weight: 800;
  color: var(--fx-black);
  letter-spacing: -1px;
  line-height: 1;
}
.fx-spec-val span {
  font-size: 14px;
  font-weight: 500;
  color: var(--fx-subtext);
  letter-spacing: 0;
}
.fx-spec-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .9px;
  color: #94A3B8;
  margin-top: 4px;
}

/* ═══════════════════════════════════════
   13. INFO ROW (VDC item)
═══════════════════════════════════════ */
.fx-vi {
  display: flex;
  gap: 16px;
  padding: 20px 22px;
  background: #fff;
  border: 1px solid var(--fx-stroke);
  border-radius: 14px;
  transition: border-color var(--fx-ease), box-shadow var(--fx-ease);
}
.fx-vi:hover {
  border-color: rgba(0,80,255,.3);
  box-shadow: 0 4px 16px rgba(0,80,255,.07);
}
.fx-vi-ic {
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.fx-vi h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--fx-black);
  margin-bottom: 4px;
}
.fx-vi p {
  font-size: 13px;
  color: var(--fx-subtext);
  line-height: 1.6;
}

/* ═══════════════════════════════════════
   14. FAQ ACCORDION
═══════════════════════════════════════ */
.fx-faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 48px;
}
.fx-faq-item {
  background: #fff;
  border: 1px solid var(--fx-stroke);
  border-radius: 14px;
  overflow: hidden;
  transition: border-color var(--fx-ease);
}
.fx-faq-item.active { border-color: rgba(0,80,255,.3); }
.fx-faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 1.75rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--fx-font);
  font-size: 15px;
  font-weight: 600;
  color: var(--fx-black);
  text-align: left;
  transition: color var(--fx-ease);
  gap: 1rem;
}
.fx-faq-item.active .fx-faq-question { color: var(--fx-blue); }
.fx-faq-chevron {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--fx-subtext);
  transition: transform var(--fx-ease), color var(--fx-ease);
}
.fx-faq-item.active .fx-faq-chevron {
  transform: rotate(180deg);
  color: var(--fx-blue);
}
.fx-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s cubic-bezier(.4,0,.2,1), padding var(--fx-ease);
  padding: 0 1.75rem;
}
.fx-faq-item.active .fx-faq-answer {
  max-height: 400px;
  padding: 0 1.75rem 1.5rem;
}
.fx-faq-answer p {
  font-size: 14px;
  color: var(--fx-subtext);
  line-height: 1.8;
}

/* ═══════════════════════════════════════
   15. CTA BANNER
═══════════════════════════════════════ */
.fx-cta-section {
  background: linear-gradient(135deg, #F7F9FF 0%, #EEF4FF 50%, #F5F3FF 100%);
  padding: 72px 2rem;
}
.fx-cta-box {
  max-width: var(--fx-max-w);
  margin: 0 auto;
  background: var(--fx-blue);
  border-radius: var(--fx-radius-xl);
  padding: 72px 64px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.fx-cta-box::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 1px;
  background: rgba(255,255,255,.3);
}
.fx-cta-box::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% -10%, rgba(255,255,255,.12), transparent 60%);
  pointer-events: none;
}
.fx-cta-box .fx-eyebrow { color: rgba(255,255,255,.6); }
.fx-cta-box h2 {
  color: #fff;
  font-size: clamp(26px, 3vw, 40px);
  font-weight: 800;
  letter-spacing: -1px;
  margin-bottom: 14px;
}
.fx-cta-box p {
  color: rgba(255,255,255,.75);
  font-size: 16px;
  max-width: 460px;
  margin: 0 auto 36px;
  line-height: 1.7;
}
.fx-cta-btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

/* ═══════════════════════════════════════
   16. CORPORATE / INFO TABLE
═══════════════════════════════════════ */
.fx-corp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 48px;
}
.fx-corp-card {
  background: var(--fx-bg);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 30px;
}
.fx-corp-card h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fx-blue);
  margin-bottom: 20px;
}
.fx-corp-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 10px 0;
  border-bottom: 1px solid var(--fx-stroke);
  font-size: 14px;
  gap: 16px;
}
.fx-corp-row:last-child { border-bottom: none; }
.fx-corp-k { color: var(--fx-subtext); font-weight: 500; }
.fx-corp-v { color: var(--fx-black); font-weight: 600; text-align: right; }

/* ═══════════════════════════════════════
   17. MISSION STRIP
═══════════════════════════════════════ */
.fx-mission-strip {
  background: #0050FF;
  padding: 48px 0;
}
.fx-mission-strip p {
  font-size: clamp(20px, 2.5vw, 30px);
  font-weight: 800;
  color: #fff;
  letter-spacing: -.8px;
  line-height: 1.3;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.fx-mission-strip p span { color: #93C5FD; }

/* Mission pills */
.fx-mission-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 44px;
}
.fx-mission-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 11px 20px;
  background: var(--fx-white);
  border: 1px solid var(--fx-stroke);
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  color: var(--fx-black);
  white-space: nowrap;
}
.fx-mission-pill i { font-size: 18px; }

/* ═══════════════════════════════════════
   18. LOCATION / COVERAGE
═══════════════════════════════════════ */
.fx-coverage {
  background: var(--fx-bg);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 28px;
}
.fx-coverage h4 {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--fx-blue);
  margin-bottom: 10px;
}
.fx-coverage p {
  font-size: 13.5px;
  color: var(--fx-subtext);
  line-height: 1.85;
}
.fx-loc-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: var(--fx-bg);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius);
}
.fx-loc-item i { font-size: 18px; color: var(--fx-blue); flex-shrink: 0; }
.fx-loc-item span { font-size: 14px; font-weight: 600; color: var(--fx-black); }

/* ═══════════════════════════════════════
   19. REVIEW CARD
═══════════════════════════════════════ */
.fx-review-card {
  background: var(--fx-white);
  border: 1px solid var(--fx-stroke);
  border-radius: var(--fx-radius-lg);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.fx-review-stars { display: flex; gap: 3px; }
.fx-review-stars i { font-size: 14px; color: #F59E0B; }
.fx-review-text {
  font-size: 15px;
  color: var(--fx-black);
  line-height: 1.7;
  font-weight: 500;
  flex: 1;
}
.fx-review-source {
  font-size: 13px;
  color: var(--fx-subtext);
  font-weight: 600;
}
.fx-review-source span {
  display: block;
  font-size: 12px;
  color: #94A3B8;
  margin-top: 2px;
  font-weight: 400;
}

/* ═══════════════════════════════════════
   20. RESPONSIVE
═══════════════════════════════════════ */
@media (max-width: 1024px) {
  .fx-prod-grid,
  .fx-cards-3 { grid-template-columns: 1fr 1fr; }
  .fx-team-grid { grid-template-columns: 1fr; }
  .fx-corp-grid { grid-template-columns: 1fr; }
  .fx-stats { grid-template-columns: 1fr 1fr; }
  .fx-team-note { grid-template-columns: 1fr; gap: 32px; }
  .fx-specs-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .fx-wrap { padding: 0 1.25rem; }
  .fx-sec { padding: 56px 0; }
  .fx-title { font-size: 28px; letter-spacing: -.8px; }
  .fx-prod-grid,
  .fx-cards-3 { grid-template-columns: 1fr; }
  .fx-stats { grid-template-columns: 1fr 1fr; }
  .fx-stat { padding: 20px; }
  .fx-team-card { flex-direction: column; }
  .fx-team-photo { width: 100%; height: 220px; }
  .fx-team-note { padding: 28px 22px; margin-top: 24px; gap: 28px; }
  .fx-mission-pills { gap: 10px; }
  .fx-mission-pill { font-size: 13px; padding: 9px 14px; }
  .fx-cta-box { padding: 48px 24px; }
  .fx-pcard { padding: 22px 22px 26px; }
  .fx-pcard h3 { font-size: 16px; }
}

/* ============================================================
   SECTION 14 — PRICING PLAN CARDS
   ============================================================ */
.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.plan-card{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:20px 18px 16px;transition:all var(--ease);position:relative;display:flex;flex-direction:column}
.plan-card:not(.featured):hover{transform:translateY(-3px);border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
.plan-card:not(.featured):has(.plan-cta:hover){background:linear-gradient(160deg,#EBF4FF,#F5F9FF);border-color:var(--blue)}
.plan-card:not(.featured) .plan-cta:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
.plan-card.featured{border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
.plan-card.featured .plan-cta:hover{background:#0040cc;border-color:#0040cc;color:#fff}
.pricing-grid:has(.plan-card:not(.featured):hover) .plan-card.featured{background:var(--white);border-color:var(--stroke)}
.pricing-grid:has(.plan-card:not(.featured):hover) .plan-card.featured .plan-cta{background:var(--bg);color:var(--black);border-color:var(--stroke)}
.plan-card.featured .plan-tier{margin-right:0}
.plan-tier-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:10px}
.plan-badge{display:inline-flex;align-items:center;font-size:9px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;padding:4px 10px;border-radius:100px;margin-bottom:8px;width:fit-content;background:#FF5400;color:#fff}
.plan-name{font-size:20px;font-weight:800;color:var(--black);letter-spacing:-.5px;margin-bottom:14px}
.plan-specs{display:flex;flex-direction:column;gap:0;margin-bottom:16px;border-top:1px solid var(--stroke)}
.plan-spec{display:flex;justify-content:space-between;align-items:center;padding:7px 0;border-bottom:1px solid var(--stroke);font-size:12px}
.plan-spec-k{display:flex;align-items:center;gap:6px;color:var(--subtext);font-weight:600;text-transform:uppercase;font-size:10.5px;letter-spacing:.4px}
.plan-spec-k i{font-size:13px;opacity:.55}
.plan-spec-v{font-weight:700;color:var(--black);font-size:12.5px}
.plan-price{font-size:28px;font-weight:800;color:var(--black);letter-spacing:-1px;line-height:1;margin-bottom:12px;margin-top:auto}
.plan-price span{font-size:13px;font-weight:500;color:var(--subtext);letter-spacing:0}
.plan-cta{display:block;text-align:center;background:var(--bg);color:var(--black);border:1px solid var(--stroke);border-radius:9px;padding:9px;font:700 12px var(--font);text-decoration:none;transition:all var(--ease)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
/* cta hover handled above */
.plan-tier{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:5px 14px;border-radius:100px;margin-bottom:10px;align-self:flex-start}
.pt-entry{background:#DBEAFE;color:#1D4ED8}
.pt-popular{background:#E0ECFF;color:#0040CC}
.pt-recommended{background:#FF5400;color:#fff}
.pt-high{background:#FEF3C7;color:#B45309}
.pt-capacity{background:#FCE7F3;color:#9D174D}
.pt-advanced{background:#CCFBF1;color:#0F766E}
.pt-enterprise{background:#EDE9FE;color:#5B21B6}

/* Pricing note */
.pricing-note{background:var(--bg);border:1px solid var(--stroke);border-radius:16px;padding:20px 24px;margin-top:24px;font-size:14px;color:var(--subtext);line-height:1.7}
.pricing-note strong{color:var(--black)}

/* ============================================================
   SECTION 15 — PLAN TIER BADGES
   ============================================================ */
.plan-tier{margin-right:0}
.plan-tier-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:10px}
.plan-badge{display:inline-flex;align-items:center;font-size:9px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;padding:4px 10px;border-radius:100px;margin-bottom:8px;width:fit-content;background:#FF5400;color:#fff}
.plan-name{font-size:20px;font-weight:800;color:var(--black);letter-spacing:-.5px;margin-bottom:14px}
.plan-specs{display:flex;flex-direction:column;gap:0;margin-bottom:16px;border-top:1px solid var(--stroke)}
.plan-spec{display:flex;justify-content:space-between;align-items:center;padding:7px 0;border-bottom:1px solid var(--stroke);font-size:12px}
.plan-spec-k{display:flex;align-items:center;gap:6px;color:var(--subtext);font-weight:600;text-transform:uppercase;font-size:10.5px;letter-spacing:.4px}
.plan-spec-k i{font-size:13px;opacity:.55}
.plan-spec-v{font-weight:700;color:var(--black);font-size:12.5px}
.plan-price{font-size:28px;font-weight:800;color:var(--black);letter-spacing:-1px;line-height:1;margin-bottom:12px;margin-top:auto}
.plan-price span{font-size:13px;font-weight:500;color:var(--subtext);letter-spacing:0}
.plan-cta{display:block;text-align:center;background:var(--bg);color:var(--black);border:1px solid var(--stroke);border-radius:9px;padding:9px;font:700 12px var(--font);text-decoration:none;transition:all var(--ease)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
/* cta hover handled above */
.plan-tier{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:5px 14px;border-radius:100px;margin-bottom:10px;align-self:flex-start}
.pt-entry{background:#DBEAFE;color:#1D4ED8}
.pt-popular{background:#E0ECFF;color:#0040CC}
.pt-recommended{background:#FF5400;color:#fff}
.pt-high{background:#FEF3C7;color:#B45309}
.pt-capacity{background:#FCE7F3;color:#9D174D}
.pt-advanced{background:#CCFBF1;color:#0F766E}
.pt-enterprise{background:#EDE9FE;color:#5B21B6}

/* Pricing note */
.pricing-note{background:var(--bg);border:1px solid var(--stroke);border-radius:16px;padding:20px 24px;margin-top:24px;font-size:14px;color:var(--subtext);line-height:1.7}
.pricing-note strong{color:var(--black)}

/* ============================================================
   SECTION 16 — FAQ ACCORDION
   ============================================================ */
.faq-wrap{max-width:760px;margin:0 auto}
.faq__list{display:flex;flex-direction:column;gap:8px;margin-top:48px}
.faq__item{background:#fff;border:1px solid var(--stroke);border-radius:14px;overflow:hidden;transition:border-color var(--ease)}
.faq__item.active{border-color:rgba(0,80,255,.3)}
.faq__question{width:100%;display:flex;justify-content:space-between;align-items:center;padding:1.2rem 1.75rem;background:none;border:none;cursor:pointer;font-family:var(--font);font-size:15px;font-weight:600;color:var(--black);text-align:left;transition:color var(--ease);gap:1rem}
.faq__item.active .faq__question{color:var(--blue)}
.faq__chevron{width:20px;height:20px;flex-shrink:0;color:var(--subtext);transition:transform var(--ease),color var(--ease)}
.faq__item.active .faq__chevron{transform:rotate(180deg);color:var(--blue)}
.faq__answer{max-height:0;overflow:hidden;transition:max-height .4s cubic-bezier(.4,0,.2,1),padding var(--ease);padding:0 1.75rem}
.faq__item.active .faq__answer{max-height:400px;padding:0 1.75rem 1.5rem}
.faq__answer p{font-size:14px;color:var(--subtext);line-height:1.8}

/* SEO */

/* ============================================================
   SECTION 17 — USE CASES TABLE
   ============================================================ */
.uc-table{border:1px solid var(--stroke);border-radius:20px;overflow:hidden;margin-top:48px}
.uc-table-row{display:grid;grid-template-columns:repeat(3,1fr)}
.uc-table-row:not(:last-child){border-bottom:1px solid var(--stroke)}
.uc-cell{padding:32px 28px;border-right:1px solid var(--stroke);transition:background var(--ease)}
.uc-cell:last-child{border-right:none}
.uc-cell:hover{background:var(--white)}
.uc-num{font-size:12px;font-weight:600;color:var(--subtext);opacity:.5;letter-spacing:.5px;margin-bottom:14px;display:block}
.uc-cell h3{font-size:16px;font-weight:700;color:var(--black);margin-bottom:10px;letter-spacing:-.2px;display:inline-block;position:relative}
.uc-cell h3::after{content:'';position:absolute;bottom:-3px;left:0;width:0;height:2px;background:var(--blue);border-radius:2px;transition:width .3s cubic-bezier(.4,0,.2,1)}
.uc-cell:hover h3::after{width:100%}
.uc-cell p{font-size:13.5px;color:var(--subtext);line-height:1.65}

/* ============================================================
   SECTION 18 — OS CHIPS
   ============================================================ */
.os-chips{display:flex;flex-wrap:wrap;gap:10px;margin-top:28px}
.os-chip{display:inline-flex;align-items:center;gap:8px;background:var(--white);border:1px solid var(--stroke);border-radius:10px;padding:8px 14px;font:600 13px var(--font);color:var(--black);transition:all var(--ease)}.os-chip svg{flex-shrink:0}
.os-chip:hover{border-color:var(--blue);color:var(--blue)}
.os-chip i{font-size:16px}
.app-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px}
.app-category{background:var(--white);border:1px solid var(--stroke);border-radius:20px;padding:28px 24px}
.app-cat-ic{display:flex;align-items:center;justify-content:center;flex-shrink:0}
.app-cat-ic i{font-size:20px}
.app-cat-header{display:flex;align-items:center;gap:8px;margin-bottom:14px}
.app-category h4{font-size:12px;font-weight:700;text-transform:uppercase;letter-spacing:1.2px;color:var(--blue);margin-bottom:0}
.app-list{display:flex;flex-wrap:wrap;gap:7px}
.app-tag{font-size:12.5px;font-weight:500;color:var(--black);background:var(--bg);border:1px solid var(--stroke);padding:5px 12px;border-radius:8px;transition:all var(--ease)}
.app-tag:hover{border-color:var(--blue);color:var(--blue);background:var(--hover-bg)}
.deploy-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:28px}
.deploy-card{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:22px;display:flex;align-items:flex-start;gap:14px}
.deploy-card-ic{width:40px;height:40px;border-radius:10px;display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:18px}
.deploy-card h4{font-size:14px;font-weight:700;color:var(--black);margin-bottom:5px}
.deploy-card p{font-size:12.5px;color:var(--subtext);line-height:1.6}

/* ============================================================
   SECTION 19 — REVIEW CARDS
   ============================================================ */
/* ─── REVIEW CARDS ─── */
.rv-card{background:var(--white);border:1px solid var(--stroke);border-radius:18px;padding:28px;display:flex;flex-direction:column}
.rv-stars{display:flex;gap:3px;margin-bottom:16px}
.rv-stars i{font-size:14px;color:#F59E0B}
.rv-text{font-size:15px;color:var(--black);line-height:1.75;font-weight:500;flex:1;margin-bottom:20px}
.rv-author{padding-top:16px;border-top:1px solid var(--stroke)}
.rv-author-name{font-size:14px;font-weight:700;color:var(--black)}
.rv-author-role{font-size:12px;color:var(--subtext);margin-top:2px}
.testi-section{padding:80px 0;overflow:hidden;background:var(--white)}
.testi-section-head{text-align:center;margin-bottom:52px}
.testi-marquee-wrap{position:relative}
.testi-marquee-wrap::before,.testi-marquee-wrap::after{content:'';position:absolute;top:0;bottom:0;width:120px;z-index:2;pointer-events:none}
.testi-marquee-wrap::before{left:0;background:linear-gradient(to right,var(--white),transparent)}
.testi-marquee-wrap::after{right:0;background:linear-gradient(to left,var(--white),transparent)}
.testi-row{display:flex;gap:16px;margin-bottom:16px;width:max-content}
.testi-row.row1{animation:marquee-left 35s linear infinite}
.testi-row.row2{animation:marquee-right 42s linear infinite}
@keyframes marquee-left{0%{transform:translateX(0)}100%{transform:translateX(-50%)}}
@keyframes marquee-right{0%{transform:translateX(-50%)}100%{transform:translateX(0)}}
.testi-row:hover{animation-play-state:paused}
.tm-card{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:22px 24px;min-width:320px;max-width:320px;flex-shrink:0;transition:border-color var(--ease)}
.tm-card:hover{border-color:rgba(0,80,255,.25)}
.tm-stars{display:flex;gap:2px;margin-bottom:12px}
.tm-stars i{font-size:13px;color:#F59E0B}
.tm-text{font-size:14px;color:var(--black);line-height:1.7;font-weight:500;margin-bottom:16px}
.tm-author{display:flex;align-items:center;gap:10px;padding-top:14px;border-top:1px solid var(--stroke)}
.tm-ava{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:11px;font-weight:700;flex-shrink:0}
.tm-name{font-size:13px;font-weight:700;color:var(--black);line-height:1.3}
.tm-role{font-size:11.5px;color:var(--subtext)}

/* ============================================================
   SECTION 20 — CONDITIONS GRID
   ============================================================ */
.conditions-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px;margin-top:40px}
.cond-card{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:24px}
.cond-card h3{font-size:14px;font-weight:800;color:var(--black);margin-bottom:10px;display:flex;align-items:center;gap:8px}
.cond-card h3 i{font-size:16px;color:var(--blue)}
.cond-card p{font-size:13px;color:var(--subtext);line-height:1.7}

/* ============================================================
   SECTION 21 — DEPLOY BAR
   ============================================================ */
.vps-deploy-bar{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:20px 28px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.vps-deploy-bar-left{display:flex;align-items:center;gap:16px}
.vps-deploy-bar-ic{width:44px;height:44px;border-radius:12px;background:#E0ECFF;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.vps-deploy-bar-ic i{font-size:22px;color:var(--blue)}
.vps-deploy-bar-title{font-size:15px;font-weight:800;color:var(--black);margin-bottom:2px}
.vps-deploy-bar-sub{font-size:13px;color:var(--subtext)}
.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.plan-card{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:20px 18px 16px;transition:all var(--ease);position:relative;display:flex;flex-direction:column}
.plan-card:not(.featured):hover{transform:translateY(-3px);border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
.plan-card:not(.featured):has(.plan-cta:hover){background:linear-gradient(160deg,#EBF4FF,#F5F9FF);border-color:var(--blue)}
.plan-card:not(.featured) .plan-cta:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
.plan-card.featured{border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
.plan-card.featured .plan-cta:hover{background:#0040cc;border-color:#0040cc;color:#fff}
.pricing-grid:has(.plan-card:not(.featured):hover) .plan-card.featured{background:var(--white);border-color:var(--stroke)}
.pricing-grid:has(.plan-card:not(.featured):hover) .plan-card.featured .plan-cta{background:var(--bg);color:var(--black);border-color:var(--stroke)}
.plan-card.featured .plan-tier{margin-right:0}
.plan-tier-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:10px}
.plan-badge{display:inline-flex;align-items:center;font-size:9px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;padding:4px 10px;border-radius:100px;margin-bottom:8px;width:fit-content;background:#FF5400;color:#fff}
.plan-name{font-size:20px;font-weight:800;color:var(--black);letter-spacing:-.5px;margin-bottom:14px}
.plan-specs{display:flex;flex-direction:column;gap:0;margin-bottom:16px;border-top:1px solid var(--stroke)}
.plan-spec{display:flex;justify-content:space-between;align-items:center;padding:7px 0;border-bottom:1px solid var(--stroke);font-size:12px}
.plan-spec-k{display:flex;align-items:center;gap:6px;color:var(--subtext);font-weight:600;text-transform:uppercase;font-size:10.5px;letter-spacing:.4px}
.plan-spec-k i{font-size:13px;opacity:.55}
.plan-spec-v{font-weight:700;color:var(--black);font-size:12.5px}
.plan-price{font-size:28px;font-weight:800;color:var(--black);letter-spacing:-1px;line-height:1;margin-bottom:12px;margin-top:auto}
.plan-price span{font-size:13px;font-weight:500;color:var(--subtext);letter-spacing:0}
.plan-cta{display:block;text-align:center;background:var(--bg);color:var(--black);border:1px solid var(--stroke);border-radius:9px;padding:9px;font:700 12px var(--font);text-decoration:none;transition:all var(--ease)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
/* cta hover handled above */
.plan-tier{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:5px 14px;border-radius:100px;margin-bottom:10px;align-self:flex-start}
.pt-entry{background:#DBEAFE;color:#1D4ED8}
.pt-popular{background:#E0ECFF;color:#0040CC}
.pt-recommended{background:#FF5400;color:#fff}
.pt-high{background:#FEF3C7;color:#B45309}
.pt-capacity{background:#FCE7F3;color:#9D174D}
.pt-advanced{background:#CCFBF1;color:#0F766E}
.pt-enterprise{background:#EDE9FE;color:#5B21B6}

/* Pricing note */
.pricing-note{background:var(--bg);border:1px solid var(--stroke);border-radius:16px;padding:20px 24px;margin-top:24px;font-size:14px;color:var(--subtext);line-height:1.7}
.pricing-note strong{color:var(--black)}

/* ============================================================
   SECTION 22 — FLEXIBLE BLOCK
   ============================================================ */
.vps-flex-block{background:var(--white);border:1px solid var(--stroke);border-radius:20px;padding:40px;display:grid;grid-template-columns:240px 1fr;gap:48px;align-items:center;margin-top:40px;margin-bottom:16px}
.vps-flex-illus{display:flex;align-items:center;justify-content:center}
.vps-flex-illus svg{width:100%;max-width:200px;height:auto}
.vps-flex-title{font-size:clamp(20px,2vw,26px);font-weight:800;color:var(--black);letter-spacing:-.5px;line-height:1.2;margin-bottom:12px}
.vps-flex-desc{font-size:14px;color:var(--subtext);line-height:1.7;margin-bottom:28px;max-width:560px}
.vps-flex-features{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.vps-flex-feat-hd{display:flex;align-items:center;gap:7px;margin-bottom:6px}
.vps-flex-feat-hd i{font-size:16px;color:var(--blue)}
.vps-flex-feat-hd strong{font-size:13px;font-weight:700;color:var(--black)}
.vps-flex-feat p{font-size:12.5px;color:var(--subtext);line-height:1.6}
/* Deploy bar */
.vps-deploy-bar{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:20px 28px;display:flex;align-items:center;justify-content:space-between;gap:24px}
.vps-deploy-bar-left{display:flex;align-items:center;gap:16px}
.vps-deploy-bar-ic{width:44px;height:44px;border-radius:12px;background:#E0ECFF;display:flex;align-items:center;justify-content:center;flex-shrink:0}
.vps-deploy-bar-ic i{font-size:22px;color:var(--blue)}
.vps-deploy-bar-title{font-size:15px;font-weight:800;color:var(--black);margin-bottom:2px}
.vps-deploy-bar-sub{font-size:13px;color:var(--subtext)}
.pricing-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:12px}
.plan-card{background:var(--white);border:1px solid var(--stroke);border-radius:16px;padding:20px 18px 16px;transition:all var(--ease);position:relative;display:flex;flex-direction:column}
.plan-card:not(.featured):hover{transform:translateY(-3px);border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
.plan-card:not(.featured):has(.plan-cta:hover){background:linear-gradient(160deg,#EBF4FF,#F5F9FF);border-color:var(--blue)}
.plan-card:not(.featured) .plan-cta:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
.plan-card.featured{border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
.plan-card.featured .plan-cta:hover{background:#0040cc;border-color:#0040cc;color:#fff}
.pricing-grid:has(.plan-card:not(.featured):hover) .plan-card.featured{background:var(--white);border-color:var(--stroke)}
.pricing-grid:has(.plan-card:not(.featured):hover) .plan-card.featured .plan-cta{background:var(--bg);color:var(--black);border-color:var(--stroke)}
.plan-card.featured .plan-tier{margin-right:0}
.plan-tier-row{display:flex;align-items:flex-start;justify-content:space-between;margin-bottom:10px}
.plan-badge{display:inline-flex;align-items:center;font-size:9px;font-weight:800;letter-spacing:.8px;text-transform:uppercase;padding:4px 10px;border-radius:100px;margin-bottom:8px;width:fit-content;background:#FF5400;color:#fff}
.plan-name{font-size:20px;font-weight:800;color:var(--black);letter-spacing:-.5px;margin-bottom:14px}
.plan-specs{display:flex;flex-direction:column;gap:0;margin-bottom:16px;border-top:1px solid var(--stroke)}
.plan-spec{display:flex;justify-content:space-between;align-items:center;padding:7px 0;border-bottom:1px solid var(--stroke);font-size:12px}
.plan-spec-k{display:flex;align-items:center;gap:6px;color:var(--subtext);font-weight:600;text-transform:uppercase;font-size:10.5px;letter-spacing:.4px}
.plan-spec-k i{font-size:13px;opacity:.55}
.plan-spec-v{font-weight:700;color:var(--black);font-size:12.5px}
.plan-price{font-size:28px;font-weight:800;color:var(--black);letter-spacing:-1px;line-height:1;margin-bottom:12px;margin-top:auto}
.plan-price span{font-size:13px;font-weight:500;color:var(--subtext);letter-spacing:0}
.plan-cta{display:block;text-align:center;background:var(--bg);color:var(--black);border:1px solid var(--stroke);border-radius:9px;padding:9px;font:700 12px var(--font);text-decoration:none;transition:all var(--ease)}
.plan-card.featured .plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
/* cta hover handled above */
.plan-tier{display:inline-block;font-size:10px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:5px 14px;border-radius:100px;margin-bottom:10px;align-self:flex-start}
.pt-entry{background:#DBEAFE;color:#1D4ED8}
.pt-popular{background:#E0ECFF;color:#0040CC}
.pt-recommended{background:#FF5400;color:#fff}
.pt-high{background:#FEF3C7;color:#B45309}
.pt-capacity{background:#FCE7F3;color:#9D174D}
.pt-advanced{background:#CCFBF1;color:#0F766E}
.pt-enterprise{background:#EDE9FE;color:#5B21B6}

/* Pricing note */
.pricing-note{background:var(--bg);border:1px solid var(--stroke);border-radius:16px;padding:20px 24px;margin-top:24px;font-size:14px;color:var(--subtext);line-height:1.7}
.pricing-note strong{color:var(--black)}

/* ============================================================
   SECTION 23 — BREADCRUMB
   ============================================================ */
.breadcrumb{background:var(--white);border-bottom:1px solid var(--stroke);padding:12px 0}
.breadcrumb__inner{max-width:1200px;margin:0 auto;padding:0 2rem;display:flex;align-items:center;gap:8px;font-size:13px;color:var(--subtext)}
.breadcrumb__inner a{color:var(--subtext);text-decoration:none;transition:color var(--ease)}
.breadcrumb__inner a:hover{color:var(--blue)}
.breadcrumb__sep{color:#C8CDD8}
.breadcrumb__current{color:var(--black);font-weight:600}

/* ============================================================
   SECTION 24 — HERO TAG PILL
   ============================================================ */
.hero-tag{display:inline-flex;align-items:center;gap:8px;background:rgba(0,80,255,.06);border:1px solid rgba(0,80,255,.15);border-radius:100px;padding:6px 14px;font-size:12.5px;font-weight:600;color:var(--blue);margin-bottom:20px}
.hero-tag-dot{width:6px;height:6px;border-radius:50%;background:var(--blue);animation:pulse 2s infinite;display:inline-block}
@keyframes pulse{0%,100%{opacity:1}50%{opacity:.4}}


/* ============================================================
   SECTION 26 — GPU PLAN CARDS (2 планa с :has() hover)
   ============================================================ */
.gpu-plans{display:grid;grid-template-columns:repeat(2,1fr);gap:20px;margin-top:48px}
.gpu-plan{background:var(--white);border:1.5px solid var(--stroke);border-radius:20px;padding:32px;transition:all var(--ease);position:relative}
.gpu-plan.featured{border-color:var(--blue);background:linear-gradient(160deg,#EBF4FF,#F5F9FF)}
/* Когда наводим на 2й план — 1й теряет фон, 2й получает обводку */
.gpu-plans:has(.gpu-plan:not(.featured):hover) .gpu-plan.featured{background:var(--white);border-color:var(--stroke)}
.gpu-plans:has(.gpu-plan:not(.featured):hover) .gpu-plan.featured .gpu-plan-cta{background:var(--bg);color:var(--black);border-color:var(--stroke)}
.gpu-plan:not(.featured):hover{border-color:var(--blue);transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.08)}
.gpu-plan:hover{transform:translateY(-4px);box-shadow:0 16px 40px rgba(0,0,0,.08)}
.gpu-plan-badge{display:inline-flex;align-items:center;font-size:10px;font-weight:700;letter-spacing:.7px;text-transform:uppercase;padding:4px 12px;border-radius:100px;margin-bottom:14px}
.gpu-plan-tier-row{display:flex;align-items:center;justify-content:space-between;margin-bottom:14px}
.gpu-plan-name{font-size:22px;font-weight:800;color:var(--black);letter-spacing:-.5px;margin-bottom:6px}
.gpu-plan-os{font-size:13px;color:var(--subtext);margin-bottom:20px}
.gpu-plan-specs{display:flex;flex-direction:column;gap:0;margin-bottom:20px;border-top:1px solid var(--stroke)}
.gpu-plan-spec{display:flex;justify-content:space-between;align-items:center;padding:8px 0;border-bottom:1px solid var(--stroke);font-size:13px}
.gpu-plan-spec-k{display:flex;align-items:center;gap:6px;color:var(--subtext);font-size:11.5px;font-weight:600;text-transform:uppercase;letter-spacing:.4px}
.gpu-plan-spec-k i{font-size:14px;opacity:.6}
.gpu-plan-spec-v{font-weight:700;color:var(--black);font-size:13px}
.gpu-plan-price{font-size:36px;font-weight:800;color:var(--black);letter-spacing:-1.5px;line-height:1;margin-bottom:4px}
.gpu-plan-price span{font-size:14px;font-weight:500;color:var(--subtext)}
.gpu-plan-note{font-size:12px;color:var(--subtext);margin-bottom:20px}
.gpu-plan-cta{display:block;text-align:center;background:var(--bg);color:var(--black);border:1px solid var(--stroke);border-radius:10px;padding:11px;font:700 13px var(--font);text-decoration:none;transition:all var(--ease);cursor:pointer}
.gpu-plan.featured .gpu-plan-cta{background:var(--blue);color:#fff;border-color:var(--blue)}
.gpu-plan:not(.featured) .gpu-plan-cta:hover{background:var(--blue);color:#fff;border-color:var(--blue)}
.gpu-plan:not(.featured) .gpu-plan-cta:active{background:#0040cc;border-color:#0040cc;color:#fff}
.gpu-plan:not(.featured):has(.gpu-plan-cta:hover){background:linear-gradient(160deg,#EBF4FF,#F5F9FF);border-color:var(--blue)}