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

:root {
  --bg:       #090708;
  --bg2:      #100c0b;
  --bg3:      #160f0d;
  --border:   rgba(255,255,255,0.07);
  --border2:  rgba(255,255,255,0.13);

  /* Warm amber-red accent — unique to this page */
  --glow:     #ff7a3d;
  --glow2:    #ffb07a;
  --glow-dim: rgba(255,122,61,0.08);
  --glow-glow:rgba(255,122,61,0.18);
  --red-soft: #ff5a20;

  --white:  #f5f0ee;
  --soft:   rgba(245,240,238,0.55);
  --muted:  rgba(245,240,238,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.04'/%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(9,7,8,0.88);
  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(--glow); }
.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(--glow); }
.nav-cta {
  background: var(--glow); color: #0a0604;
  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(--glow2); transform: translateY(-1px); }

/* ── BREADCRUMB ── */
.breadcrumb {
  position: fixed; top: 60px; left: 0; right: 0; z-index: 999;
  padding: 10px 40px;
  background: rgba(9,7,8,0.78);
  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(--glow); }

/* ── KEYFRAMES ── */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 40px rgba(255,122,61,0.2), 0 0 80px rgba(255,90,32,0.08); }
  50%       { box-shadow: 0 0 70px rgba(255,122,61,0.38), 0 0 130px rgba(255,90,32,0.15); }
}
@keyframes ring-pulse {
  0%, 100% { transform: translate(-50%,-50%) scale(1); opacity: 0.18; }
  50%       { transform: translate(-50%,-50%) scale(1.07); opacity: 0.4; }
}
@keyframes float-particle {
  0%   { opacity: 0; transform: translateY(0) scale(1); }
  20%  { opacity: 0.6; }
  80%  { opacity: 0.1; }
  100% { opacity: 0; transform: translateY(-80px) scale(0.3); }
}
@keyframes wavelength-scan {
  0%   { left: -4px; }
  100% { left: 100%; }
}

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding: 148px 40px 88px;
  position: relative; overflow: hidden;
  display: flex; align-items: center;
}
.hero::before {
  content: '';
  position: absolute; top: -10%; right: -5%;
  width: 60vw; height: 100vh;
  background: radial-gradient(ellipse at 75% 40%,
    rgba(255,90,32,0.1) 0%,
    rgba(255,60,20,0.04) 35%,
    transparent 65%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,122,61,0.25), transparent);
}
.particles { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.particle {
  position: absolute; border-radius: 50%;
  background: var(--glow); opacity: 0;
  animation: float-particle 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(--glow); }
.label-txt {
  font-family: var(--cond); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--glow);
}

.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(--glow); 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(--glow); color: #0a0604;
  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(255,122,61,0.25);
}
.btn-primary:hover { background: var(--glow2); transform: translateY(-2px); box-shadow: 0 0 52px rgba(255,122,61,0.38); }
.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(--glow); flex-shrink: 0; }

/* Hero visual — sun/light orb */
.hero-visual {
  position: relative; height: 400px;
  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(255,122,61,0.2);
  animation: ring-pulse 4.5s ease-in-out infinite;
}
.vring:nth-child(1) { width: 180px; height: 180px; }
.vring:nth-child(2) { width: 270px; height: 270px; animation-delay: 1.5s; border-color: rgba(255,90,32,0.1); }
.vring:nth-child(3) { width: 360px; height: 360px; animation-delay: 3s; border-color: rgba(255,60,20,0.06); }

.light-orb {
  position: relative; z-index: 2;
  width: 140px; height: 140px; border-radius: 50%;
  background: radial-gradient(circle at 40% 35%,
    rgba(255,180,80,0.9) 0%,
    rgba(255,100,30,0.7) 40%,
    rgba(200,40,10,0.4) 70%,
    transparent 100%);
  animation: glow-pulse 4s ease-in-out infinite;
  display: flex; align-items: center; justify-content: center;
}
.orb-inner {
  width: 80px; height: 80px; border-radius: 50%;
  background: radial-gradient(circle at 38% 35%,
    #fff8e0 0%, #ffcc60 30%, #ff7020 60%, rgba(200,40,0,0.2) 100%);
}

/* Wavelength badges */
.wavelength-row {
  position: absolute; bottom: 28px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; white-space: nowrap;
}
.wl-badge {
  font-family: var(--cond); font-size: 0.68rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 12px; border-radius: 3px; border: 1px solid;
  position: relative; overflow: hidden;
}
.wl-badge::after {
  content: ''; position: absolute;
  top: 0; bottom: 0; width: 4px;
  background: linear-gradient(transparent, rgba(255,255,255,0.4), transparent);
  animation: wavelength-scan 2.5s linear infinite;
}
.wl-red { background: rgba(220,30,10,0.12); border-color: rgba(220,50,10,0.35); color: #ff7a5a; }
.wl-nir { background: rgba(160,30,80,0.1); border-color: rgba(160,40,80,0.3); color: #d060a0; }
.wl-mid { background: rgba(100,20,140,0.1); border-color: rgba(120,30,140,0.3); color: #b070d0; }

/* ── SERVICE MECHANIC ── */
.mechanic-section {
  padding: 96px 40px; background: var(--bg2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.mech-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(--glow); }
.sec-lbl {
  font-family: var(--cond); font-size: 0.72rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--glow);
}
.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(--glow); font-style: normal; }
.sec-intro { font-size: 0.92rem; color: var(--soft); line-height: 1.7; }

/* Wavelength explainer cards */
.wl-cards { display: flex; flex-direction: column; gap: 12px; }
.wl-card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 4px; padding: 20px 22px;
  display: grid; grid-template-columns: 60px 1fr; gap: 16px; align-items: start;
  transition: border-color 0.2s;
}
.wl-card:hover { border-color: rgba(255,122,61,0.25); }
.wl-nm {
  font-family: var(--cond); font-size: 1.3rem; font-weight: 900; line-height: 1;
  letter-spacing: -0.02em;
}
.wl-nm small { display: block; font-size: 0.62rem; font-weight: 600; letter-spacing: 0.1em; color: var(--muted); margin-top: 2px; text-transform: uppercase; }
.wl-nm.red  { color: #ff6040; }
.wl-nm.nir  { color: #d060a0; }
.wl-nm.mid  { color: #b070d0; }
.wl-card-body .wl-title {
  font-family: var(--cond); font-size: 0.92rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 5px;
}
.wl-card-body .wl-desc { font-size: 0.82rem; color: var(--soft); line-height: 1.6; }

.wl-card:last-child {
  grid-template-columns: repeat(2, minmax(72px, auto)) minmax(0, 1fr);
  align-items: start;
}

.wl-card:last-child .wl-nm {
  min-width: 72px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.wl-card:last-child .wl-card-body {
  grid-column: 3;
  min-width: 0;
}

/* ── 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(--glow), 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(255,122,61,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: #120d0b; }
.for-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: var(--glow); 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(255,122,61,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(--glow); 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(--glow); }
.video-pill {
  margin-top: 16px;
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 4px; cursor: pointer;
  background: rgba(255,122,61,0.04); border: 1px dashed rgba(255,122,61,0.2);
  font-size: 0.75rem; color: rgba(255,122,61,0.5); transition: background 0.2s;
}
.video-pill:hover { background: rgba(255,122,61,0.09); }
.play { width: 26px; height: 26px; border-radius: 50%; border: 1px solid rgba(255,122,61,0.3); display: flex; align-items: center; justify-content: center; font-size: 0.55rem; color: var(--glow); flex-shrink: 0; }

/* ── EXPERIENCE — what it feels like ── */
.experience-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 */
.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(--glow); flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255,122,61,0.5);
}
.tl-line { width: 1px; flex: 1; background: linear-gradient(rgba(255,122,61,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(--glow);
  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 block */
.comfort-block { display: flex; flex-direction: column; gap: 12px; }
.comfort-item {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--bg2); border: 1px solid var(--border); border-radius: 4px;
  padding: 18px 20px; transition: border-color 0.2s;
}
.comfort-item:hover { border-color: rgba(255,122,61,0.2); }
.comfort-icon { font-size: 1.2rem; flex-shrink: 0; margin-top: 2px; }
.comfort-title {
  font-family: var(--cond); font-size: 0.88rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 4px;
}
.comfort-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(255,122,61,0.28);
  background: rgba(255,122,61,0.03);
}
.rv-stars { color: var(--glow); 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(--glow); 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, #2a1510, #180b07);
  border: 1px solid rgba(255,122,61,0.25);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cond); font-size: 0.85rem; font-weight: 700; color: var(--glow);
}
.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(255,122,61,0.04);
  border: 1px solid rgba(255,122,61,0.2);
  border-radius: 4px; padding: 28px 32px;
}
.expert-ava {
  width: 52px; height: 52px; border-radius: 50%; flex-shrink: 0;
  background: linear-gradient(135deg, #2e1208, #180a05);
  border: 1px solid rgba(255,122,61,0.3);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--cond); font-size: 0.95rem; font-weight: 700; color: var(--glow);
}
.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(--glow); }

/* ── HOW IT WORKS ── */
.steps-section { padding: 96px 40px; border-bottom: 1px solid var(--border); }
.steps-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px;
  max-width: 1100px; margin: 48px auto 0;
}
.step { background: var(--bg2); padding: 40px 32px; position: relative; }
.step-n {
  font-family: var(--cond); font-size: 5.5rem; font-weight: 900;
  color: rgba(255,122,61,0.07); line-height: 1; margin-bottom: 20px;
}
.step-title {
  font-family: var(--cond); font-size: 1.2rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.04em; margin-bottom: 10px;
}
.step-body { font-size: 0.85rem; color: var(--soft); line-height: 1.65; }
.step-badge {
  display: inline-block; margin-top: 16px;
  font-family: var(--cond); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--glow); background: var(--glow-dim); padding: 4px 12px; border-radius: 20px;
}
.step-arrow { position: absolute; top: 50%; right: -14px; z-index: 2; transform: translateY(-50%); font-size: 1rem; color: rgba(255,122,61,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(255,122,61,0.38); background: rgba(255,122,61,0.035); }
.pc.apex { border-color: rgba(255,122,61,0.24); background: rgba(255,122,61,0.02); }
.best-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--glow); color: #0a0604;
  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(--glow); }
.pc.apex .pc-price { color: var(--glow); }
.pc-per { font-size: 0.75rem; color: var(--muted); margin-bottom: 6px; }
.pc-save { display: inline-block; margin-bottom: 20px; background: rgba(255,122,61,0.1); color: var(--glow); 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(--glow); 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(--glow); color: #0a0604; border-color: var(--glow); }
.pc.best .pc-btn:hover { background: var(--glow2); }
.pc.apex .pc-btn { border-color: rgba(255,122,61,0.26); color: var(--white); }
.pc.apex .pc-btn:hover { border-color: var(--glow); }

.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(--glow); background: #130e0c; }
.faq-item.open { border-left-color: var(--glow); }
.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(--glow); 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; }
.crosssell-title {
  font-family: var(--cond); font-size: 1rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 20px;
}
.crosssell-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;
}
.crosssell-card:hover { border-color: rgba(126,232,255,0.2); }
.cs-icon { font-size: 2rem; flex-shrink: 0; }
.cs-body { flex: 1; }
.cs-label {
  font-family: var(--cond); font-size: 0.65rem; font-weight: 700;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: #7ee8ff; margin-bottom: 4px;
}
.cs-title {
  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(255,90,32,0.07) 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(--glow); 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(--glow); }
.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, .mech-grid, .exp-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { height: 260px; }
  .benefits-grid, .for-grid, .steps-grid, .reviews-grid, .pricing-grid, .faq-grid { grid-template-columns: 1fr; }
  section, .mechanic-section, .experience-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: 210px; }
}
