*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

:root {
  --bg:        #060a09;
  --bg2:       #0a0f0e;
  --bg3:       #0f1614;
  --border:    rgba(255,255,255,0.07);
  --border2:   rgba(255,255,255,0.13);

  /* Teal / jade — unique to this service */
  --jade:      #3ddcb0;
  --jade2:     #7eefd4;
  --jade-dim:  rgba(61,220,176,0.08);
  --jade-glow: rgba(61,220,176,0.18);

  --white:  #eef4f2;
  --soft:   rgba(238,244,242,0.55);
  --muted:  rgba(238,244,242,0.28);
  --cond:   'Barlow Condensed', sans-serif;
  --body:   'DM Sans', sans-serif;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: var(--body);
  font-weight: 300;
  overflow-x: hidden;
}
body::after {
  content: '';
  position: fixed; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none; z-index: 9999; opacity: 0.45;
}
a { text-decoration: none; color: inherit; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 60px;
  display: flex; align-items: center; padding: 0 40px; gap: 40px;
  background: rgba(6,10,9,0.9);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}
.nav-logo { font-family: var(--cond); font-size: 1.3rem; font-weight: 900; letter-spacing: 0.12em; text-transform: uppercase; flex-shrink: 0; }
.nav-logo span { color: var(--jade); }
.nav-links { display: flex; gap: 28px; flex: 1; }
.nav-links a { font-family: var(--cond); font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--soft); transition: color 0.2s; }
.nav-links a:hover { color: var(--white); }
.nav-links a.active { color: var(--jade); }
.nav-cta {
  background: var(--jade); color: #030a08;
  font-family: var(--cond); font-size: 0.82rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 10px 22px; border-radius: 3px; flex-shrink: 0;
  transition: background 0.2s, transform 0.15s; cursor: pointer; display: inline-block;
}
.nav-cta:hover { background: var(--jade2); transform: translateY(-1px); }

/* ── BREADCRUMB ── */
.breadcrumb {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 999;
  padding: 10px 40px;
  background: rgba(6,10,9,0.8);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 8px;
  font-family: var(--cond); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted);
}
.breadcrumb a { color: var(--muted); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--soft); }
.breadcrumb-sep { opacity: 0.3; }
.breadcrumb-current { color: var(--jade); }

/* ── KEYFRAMES ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes wave-rise {
  0%   { transform: scaleY(0); opacity: 0; }
  40%  { opacity: 1; }
  100% { transform: scaleY(1); opacity: 0.6; }
}
@keyframes compress-pulse {
  0%, 100% { transform: scaleX(1); opacity: 0.3; }
  50%       { transform: scaleX(0.92); opacity: 0.7; }
}
@keyframes ring-jade {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.2; }
  50%       { transform: translate(-50%,-50%) scale(1.07); opacity: 0.45; }
}
@keyframes float-up {
  0%   { opacity: 0; transform: translateY(0); }
  20%  { opacity: 0.5; }
  80%  { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-80px); }
}
@keyframes pressure-bar {
  0%   { width: 0%; }
  60%  { width: 100%; }
  80%  { width: 100%; }
  100% { width: 0%; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 148px 40px 88px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: -15%; right: -5%;
  width: 58vw; height: 110vh;
  background: radial-gradient(ellipse at 75% 45%,
    rgba(61,220,176,0.09) 0%,
    rgba(30,180,140,0.03) 40%,
    transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(61,220,176,0.2), transparent);
}
.bubbles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.bubble {
  position: absolute; border-radius: 50%;
  background: var(--jade); opacity: 0;
  animation: float-up 9s infinite;
}

.hero-grid {
  display: grid; grid-template-columns: 1fr 420px;
  gap: 60px; align-items: center;
  width: 100%; max-width: 1200px; margin: 0 auto;
  position: relative; z-index: 2;
}

.hero-label { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; opacity: 0; animation: fade-up 0.5s ease forwards 0.2s; }
.hl-line { width: 28px; height: 1px; background: var(--jade); }
.lbl { font-family: var(--cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--jade); }

.hero-h1 {
  font-family: var(--cond);
  font-size: clamp(3.5rem, 6.5vw, 6rem);
  font-weight: 900; line-height: 0.92;
  letter-spacing: -0.02em; text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0; animation: fade-up 0.6s ease forwards 0.35s;
}
.hero-h1 em { font-style: italic; color: var(--jade); display: block; }

.hero-sub {
  font-size: 1rem; font-weight: 300; color: var(--soft);
  line-height: 1.7; max-width: 480px; margin-bottom: 40px;
  opacity: 0; animation: fade-up 0.6s ease forwards 0.5s;
}
.hero-sub strong { color: var(--white); font-weight: 500; }

.hero-ctas {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 48px;
  opacity: 0; animation: fade-up 0.6s ease forwards 0.65s;
}
.btn-primary {
  background: var(--jade); color: #030a08;
  font-family: var(--cond); font-size: 1rem; font-weight: 800;
  letter-spacing: 0.14em; text-transform: uppercase;
  padding: 16px 36px; border-radius: 3px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  box-shadow: 0 0 32px rgba(61,220,176,0.22);
}
.btn-primary:hover { background: var(--jade2); transform: translateY(-2px); box-shadow: 0 0 52px rgba(61,220,176,0.36); }
.btn-ghost {
  font-family: var(--cond); font-size: 0.88rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--soft); background: none; border: none; cursor: pointer;
  display: flex; align-items: center; gap: 8px; transition: color 0.2s;
}
.btn-ghost:hover { color: var(--white); }

.hero-trust { display: flex; flex-wrap: wrap; gap: 20px; opacity: 0; animation: fade-up 0.6s ease forwards 0.8s; }
.tp { display: flex; align-items: center; gap: 8px; font-size: 0.8rem; color: var(--soft); }
.tp-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--jade); flex-shrink: 0; }

/* Hero visual — animated boot / compression illustration */
.hero-visual {
  position: relative; height: 420px;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; animation: fade-up 0.8s ease forwards 0.4s;
}
.vring {
  position: absolute; top: 50%; left: 50%;
  border-radius: 50%; border: 1px solid rgba(61,220,176,0.15);
  animation: ring-jade 5s ease-in-out infinite;
}
.vring:nth-child(1) { width: 190px; height: 190px; }
.vring:nth-child(2) { width: 280px; height: 280px; animation-delay: 1.7s; border-color: rgba(61,220,176,0.08); }
.vring:nth-child(3) { width: 370px; height: 370px; animation-delay: 3.4s; border-color: rgba(61,220,176,0.04); }

.boot-card {
  position: relative; z-index: 2;
  background: rgba(10,15,14,0.9);
  border: 1px solid rgba(61,220,176,0.2);
  border-radius: 8px; padding: 32px 36px;
  backdrop-filter: blur(8px);
  min-width: 240px; text-align: center;
}

/* Compression wave bars */
.wave-bars {
  display: flex; align-items: flex-end; justify-content: center;
  gap: 5px; height: 64px; margin-bottom: 20px;
}
.wave-bar {
  width: 8px; border-radius: 4px 4px 0 0;
  background: linear-gradient(to top, var(--jade), rgba(61,220,176,0.3));
  animation: wave-rise 2s ease-in-out infinite;
  transform-origin: bottom;
}
.wave-bar:nth-child(1) { height: 30%; animation-delay: 0s; }
.wave-bar:nth-child(2) { height: 55%; animation-delay: 0.15s; }
.wave-bar:nth-child(3) { height: 80%; animation-delay: 0.3s; }
.wave-bar:nth-child(4) { height: 100%; animation-delay: 0.45s; }
.wave-bar:nth-child(5) { height: 80%; animation-delay: 0.6s; }
.wave-bar:nth-child(6) { height: 55%; animation-delay: 0.75s; }
.wave-bar:nth-child(7) { height: 30%; animation-delay: 0.9s; }

.boot-label { font-family: var(--cond); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--muted); margin-bottom: 16px; }
.boot-stat-row { display: flex; gap: 20px; justify-content: center; padding-top: 16px; border-top: 1px solid var(--border); }
.boot-stat { text-align: center; }
.boot-stat-val { font-family: var(--cond); font-size: 1.6rem; font-weight: 900; color: var(--jade); display: block; line-height: 1; }
.boot-stat-lbl { font-size: 0.68rem; color: var(--muted); margin-top: 3px; }

/* Pressure indicator */
.pressure-track {
  margin-top: 16px;
  display: flex; flex-direction: column; gap: 6px;
}
.pressure-row { display: flex; align-items: center; gap: 10px; }
.pressure-label { font-family: var(--cond); font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); min-width: 50px; text-align: right; }
.pressure-bg { flex: 1; height: 4px; background: rgba(61,220,176,0.1); border-radius: 2px; overflow: hidden; }
.pressure-fill {
  height: 100%; border-radius: 2px;
  background: linear-gradient(90deg, rgba(61,220,176,0.4), var(--jade));
  animation: pressure-bar 3s ease-in-out infinite;
}
.pressure-fill:nth-child(1) { animation-delay: 0s; }
.pressure-fill:nth-child(2) { animation-delay: 0.8s; }
.pressure-fill:nth-child(3) { animation-delay: 1.6s; }

/* ── WHAT IS IT section ── */
.what-section {
  padding: 96px 40px; background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.what-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; align-items: start; }

.sec-label { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.sec-line { width: 24px; height: 1px; background: var(--jade); }
.sec-lbl { font-family: var(--cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--jade); }
.sec-h2 { font-family: var(--cond); font-size: clamp(2.2rem, 4vw, 3.4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.94; margin-bottom: 16px; }
.sec-h2 em { color: var(--jade); font-style: normal; }
.sec-intro { font-size: 0.92rem; color: var(--soft); line-height: 1.7; }

/* Technology cards */
.tech-cards { display: flex; flex-direction: column; gap: 10px; }
.tech-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; padding: 18px 20px;
  display: grid; grid-template-columns: 44px 1fr; gap: 14px; align-items: start;
  transition: border-color 0.2s;
}
.tech-card:hover { border-color: rgba(61,220,176,0.25); }
.tech-icon {
  width: 40px; height: 40px; border-radius: 4px;
  background: var(--jade-dim); border: 1px solid rgba(61,220,176,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem; flex-shrink: 0;
}
.tech-title { font-family: var(--cond); font-size: 0.92rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.tech-desc { font-size: 0.82rem; color: var(--soft); line-height: 1.6; }

/* ── BENEFITS ── */
.benefits-section { padding: 96px 40px; border-bottom: 1px solid var(--border); }
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1100px; margin: 48px auto 0; }
.benefit-card { background: var(--bg2); padding: 36px 30px; position: relative; overflow: hidden; transition: background 0.2s; }
.benefit-card:hover { background: var(--bg3); }
.benefit-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 1px; background: linear-gradient(90deg, var(--jade), transparent); opacity: 0; transition: opacity 0.3s; }
.benefit-card:hover::before { opacity: 1; }
.b-icon { font-size: 1.6rem; margin-bottom: 16px; display: block; }
.b-title { font-family: var(--cond); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px; }
.b-desc { font-size: 0.84rem; color: var(--soft); line-height: 1.65; }
.b-source { margin-top: 14px; font-family: var(--cond); font-size: 0.64rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: rgba(61,220,176,0.4); }

/* ── KINEK SZÓL ── */
.for-section { padding: 96px 40px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.for-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; max-width: 1100px; margin: 48px auto 0; }
.for-card { padding: 36px 28px; background: var(--bg); position: relative; cursor: default; transition: background 0.25s; }
.for-card:hover { background: #0b1210; }
.for-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: var(--jade); transform: scaleX(0); transform-origin: left; transition: transform 0.35s ease; }
.for-card:hover::before { transform: scaleX(1); }
.for-num { font-family: var(--cond); font-size: 4rem; font-weight: 900; color: rgba(61,220,176,0.05); line-height: 1; position: absolute; top: 12px; right: 16px; }
.for-icon { font-size: 1.5rem; margin-bottom: 16px; }
.for-who { font-family: var(--cond); font-size: 1.25rem; font-weight: 900; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px; }
.for-role { font-family: var(--cond); font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--jade); margin-bottom: 16px; }
.for-pain { font-size: 0.84rem; color: var(--soft); line-height: 1.65; margin-bottom: 16px; }
.for-result { font-size: 0.84rem; color: var(--white); line-height: 1.55; padding-top: 14px; border-top: 1px solid var(--border); }
.for-result strong { color: var(--jade); }
.video-pill { margin-top: 16px; display: flex; align-items: center; gap: 10px; padding: 10px 14px; border-radius: 4px; cursor: pointer; background: rgba(61,220,176,0.04); border: 1px dashed rgba(61,220,176,0.2); font-size: 0.75rem; color: rgba(61,220,176,0.5); transition: background 0.2s; }
.video-pill:hover { background: rgba(61,220,176,0.09); }
.play { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(61,220,176,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; color: var(--jade); flex-shrink: 0; }

/* ── EXPERIENCE TIMELINE ── */
.exp-section { padding: 96px 40px; border-bottom: 1px solid var(--border); }
.exp-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; max-width: 1100px; margin: 0 auto; align-items: start; }

.timeline { display: flex; flex-direction: column; gap: 0; }
.tl-item { display: flex; gap: 20px; position: relative; padding-bottom: 30px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-left { display: flex; flex-direction: column; align-items: center; flex-shrink: 0; width: 40px; }
.tl-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--jade); flex-shrink: 0; box-shadow: 0 0 12px rgba(61,220,176,0.5); }
.tl-line { width: 1px; flex: 1; background: linear-gradient(rgba(61,220,176,0.15), transparent); margin-top: 4px; }
.tl-item:last-child .tl-line { display: none; }
.tl-time { font-family: var(--cond); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--jade); white-space: nowrap; min-width: 48px; margin-top: -2px; }
.tl-body { flex: 1; }
.tl-title { font-family: var(--cond); font-size: 0.95rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.tl-desc { font-size: 0.84rem; color: var(--soft); line-height: 1.65; }

/* Comfort items */
.comfort-block { display: flex; flex-direction: column; gap: 10px; }
.comfort-item { display: flex; gap: 14px; align-items: flex-start; background: var(--bg2); border: 1px solid var(--border); border-radius: 4px; padding: 16px 18px; transition: border-color 0.2s; }
.comfort-item:hover { border-color: rgba(61,220,176,0.2); }
.ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }
.ci-title { font-family: var(--cond); font-size: 0.88rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 3px; }
.ci-text { font-size: 0.82rem; color: var(--soft); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews-section { padding: 96px 40px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1100px; margin: 48px auto 0; }
.review-card { background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 28px; }
.review-card.featured { border-color: rgba(61,220,176,0.28); background: rgba(61,220,176,0.025); }
.rv-stars { color: var(--jade); font-size: 0.7rem; letter-spacing: 2px; margin-bottom: 14px; opacity: 0.85; }
.rv-text { font-size: 0.9rem; color: var(--white); line-height: 1.7; margin-bottom: 22px; }
.rv-text em { color: var(--jade); font-style: normal; font-weight: 500; }
.rv-person { display: flex; align-items: center; gap: 12px; }
.ava { width: 36px; height: 36px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, #0e2420, #07150f); border: 1px solid rgba(61,220,176,0.25); display: flex; align-items: center; justify-content: center; font-family: var(--cond); font-size: 0.85rem; font-weight: 700; color: var(--jade); }
.rv-name { font-size: 0.82rem; font-weight: 500; margin-bottom: 2px; }
.rv-role { font-size: 0.72rem; color: var(--muted); }

.expert-block { max-width: 1100px; margin: 28px auto 0; display: flex; gap: 24px; align-items: center; background: rgba(61,220,176,0.04); border: 1px solid rgba(61,220,176,0.18); border-radius: 4px; padding: 28px 32px; }
.expert-ava { width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0; background: linear-gradient(135deg, #102820, #071810); border: 1px solid rgba(61,220,176,0.3); display: flex; align-items: center; justify-content: center; font-family: var(--cond); font-size: 0.95rem; font-weight: 700; color: var(--jade); }
.expert-q { font-size: 0.9rem; color: var(--soft); line-height: 1.65; }
.expert-q strong { color: var(--white); }
.expert-info { font-size: 0.72rem; color: var(--muted); margin-top: 6px; }
.expert-info span { color: var(--jade); }

/* ── STEPS ── */
.steps-section { padding: 96px 40px; border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 2px; max-width: 1100px; margin: 48px auto 0; }
.step { background: var(--bg2); padding: 32px 24px; position: relative; }
.step-n { font-family: var(--cond); font-size: 4rem; font-weight: 900; color: rgba(61,220,176,0.07); line-height: 1; margin-bottom: 16px; }
.step-title { font-family: var(--cond); font-size: 1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 8px; }
.step-body { font-size: 0.81rem; color: var(--soft); line-height: 1.65; }
.step-badge { display: inline-block; margin-top: 14px; font-family: var(--cond); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--jade); background: var(--jade-dim); padding: 3px 10px; border-radius: 20px; }
.step-arrow { position: absolute; top: 50%; right: -13px; z-index: 2; transform: translateY(-50%); font-size: 0.9rem; color: rgba(61,220,176,0.3); }

/* ── PRICING ── */
.pricing-section { padding: 96px 40px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.pricing-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; max-width: 1100px; margin: 48px 0 0; }
.pc { border: 1px solid var(--border); border-radius: 4px; background: var(--bg); padding: 32px 28px; position: relative; transition: border-color 0.3s; }
.pc:hover { border-color: var(--border2); }
.pc.best { border-color: rgba(61,220,176,0.38); background: rgba(61,220,176,0.03); }
.pc.apex { border-color: rgba(61,220,176,0.24); background: rgba(61,220,176,0.02); }
.best-badge { position: absolute; top: -1px; left: 50%; transform: translateX(-50%); background: var(--jade); color: #030a08; font-family: var(--cond); font-size: 0.63rem; font-weight: 800; letter-spacing: 0.14em; text-transform: uppercase; padding: 4px 14px; border-radius: 0 0 4px 4px; }
.pc-type { font-family: var(--cond); font-size: 0.68rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--muted); margin-bottom: 6px; }
.pc-name { font-family: var(--cond); font-size: 1.4rem; font-weight: 900; text-transform: uppercase; margin-bottom: 22px; }
.pc-divider { height: 1px; background: var(--border); margin-bottom: 20px; }
.pc-price { font-family: var(--cond); font-size: 2.6rem; font-weight: 900; line-height: 1; letter-spacing: -0.03em; margin-bottom: 4px; }
.pc.best .pc-price { color: var(--jade); }
.pc.apex .pc-price { color: var(--jade); }
.pc-per { font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; }
.pc-save { display: inline-block; margin-bottom: 20px; background: rgba(61,220,176,0.1); color: var(--jade); font-family: var(--cond); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 3px 10px; border-radius: 3px; }
.pc-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pc-features li { display: flex; gap: 10px; font-size: 0.82rem; color: var(--soft); line-height: 1.5; align-items: flex-start; }
.pc-features li::before { content: '✓'; color: var(--jade); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.pc-btn { display: block; width: 100%; text-align: center; font-family: var(--cond); font-size: 0.88rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; padding: 14px; border-radius: 3px; border: 1px solid var(--border2); background: transparent; color: var(--soft); cursor: pointer; transition: all 0.2s; }
.pc-btn:hover { border-color: var(--white); color: var(--white); }
.pc.best .pc-btn { background: var(--jade); color: #030a08; border-color: var(--jade); }
.pc.best .pc-btn:hover { background: var(--jade2); }
.pc.apex .pc-btn { border-color: rgba(61,220,176,0.26); color: var(--white); }
.pc.apex .pc-btn:hover { border-color: var(--jade); }
.guarantee-strip { max-width: 900px; margin-top: 24px; display: flex; align-items: flex-start; gap: 14px; padding: 18px 22px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; font-size: 0.83rem; color: var(--soft); line-height: 1.55; }
.guarantee-strip strong { color: var(--white); }

/* ── FAQ ── */
.faq-section { padding: 96px 40px; border-bottom: 1px solid var(--border); }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; max-width: 1000px; margin: 48px auto 0; }
.faq-item { background: var(--bg2); padding: 22px 26px; cursor: pointer; border-left: 2px solid transparent; transition: border-color 0.2s, background 0.2s; }
.faq-item:hover { border-left-color: var(--jade); background: #0d1412; }
.faq-item.open { border-left-color: var(--jade); }
.faq-q { font-family: var(--cond); font-size: 0.92rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; }
.faq-icon { color: var(--jade); font-size: 0.75rem; flex-shrink: 0; margin-top: 2px; transition: transform 0.2s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { font-size: 0.84rem; color: var(--soft); line-height: 1.7; max-height: 0; overflow: hidden; transition: max-height 0.35s ease, margin-top 0.2s; }
.faq-item.open .faq-a { max-height: 200px; margin-top: 12px; }

/* ── CROSS-SELL ── */
.crosssell-section { padding: 72px 40px; background: var(--bg2); border-bottom: 1px solid var(--border); }
.crosssell-inner { max-width: 1100px; margin: 0 auto; }
.cs-title-row { font-family: var(--cond); font-size: 1rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px; }
.cs-card { display: flex; align-items: center; gap: 24px; background: var(--bg); border: 1px solid var(--border); border-radius: 4px; padding: 24px 28px; max-width: 700px; transition: border-color 0.2s; }
.cs-card:hover { border-color: rgba(126,232,255,0.2); }
.cs-icon { font-size: 2rem; flex-shrink: 0; }
.cs-body { flex: 1; }
.cs-lbl { font-family: var(--cond); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.16em; text-transform: uppercase; color: #7ee8ff; margin-bottom: 4px; }
.cs-name { font-family: var(--cond); font-size: 1.1rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 6px; }
.cs-desc { font-size: 0.83rem; color: var(--soft); line-height: 1.55; }
.cs-price { font-family: var(--cond); font-size: 1.2rem; font-weight: 900; color: var(--white); white-space: nowrap; }
.cs-badge { font-size: 0.65rem; color: #7ee8ff; background: rgba(126,232,255,0.1); padding: 2px 8px; border-radius: 3px; margin-top: 3px; display: inline-block; font-family: var(--cond); font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; }

/* ── CLOSING CTA ── */
.cta-section { padding: 120px 40px; text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 70vw; height: 55vh; background: radial-gradient(ellipse, rgba(61,220,176,0.06) 0%, transparent 60%); pointer-events: none; }
.cta-big { font-family: var(--cond); font-size: clamp(2rem, 5vw, 4rem); font-weight: 900; text-transform: uppercase; letter-spacing: -0.02em; line-height: 0.95; max-width: 700px; margin: 0 auto 28px; position: relative; }
.cta-big em { color: var(--jade); font-style: normal; display: block; }
.cta-sub { font-size: 0.95rem; color: var(--soft); max-width: 400px; margin: 0 auto 40px; line-height: 1.65; }
.cta-row { display: flex; justify-content: center; align-items: center; gap: 16px; }

/* ── FOOTER ── */
footer { background: var(--bg); border-top: 1px solid var(--border); padding: 30px 40px; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.footer-logo { font-family: var(--cond); font-size: 1.05rem; font-weight: 900; letter-spacing: 0.1em; text-transform: uppercase; }
.footer-logo span { color: var(--jade); }
.footer-links { display: flex; gap: 22px; }
.footer-links a { font-family: var(--cond); font-size: 0.72rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); transition: color 0.2s; }
.footer-links a:hover { color: var(--soft); }
.footer-copy { font-size: 0.72rem; color: var(--muted); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 20px; gap: 14px; }
  .nav-links { display: none; }
  .breadcrumb { padding: 8px 20px; }
  .hero { padding: 138px 24px 72px; }
  .hero-grid, .what-grid, .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 280px; }
  .benefits-grid, .for-grid, .steps-grid, .reviews-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  section, .what-section, .exp-section, .benefits-section, .for-section, .reviews-section, .steps-section, .pricing-section, .faq-section, .crosssell-section, .cta-section { padding: 64px 24px; }
  .step-arrow { display: none; }
  footer { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 560px) {
  .hero-visual { height: 220px; }
}
