/* Google Fonts loaded via <link> in HTML <head> — NOT via @import (avoid render-blocking) */

/* ===================================================
   Фокусник.Москва — Styles v3.1 (2026) · taste-skill
   Dark luxury · Spring motion · Spotlight · Magnetic
   =================================================== */

:root {
  color-scheme: dark;
  --bg: #09090d;
  --bg-deep: #06060a;
  --panel: #111218;
  --panel-soft: #18191f;
  --text: #f0e8da;
  --muted: #b8ae9f;
  --muted-2: #82766a;
  --line: rgba(240, 232, 218, 0.09);
  --line-gold: rgba(212, 175, 106, 0.18);
  --red: #c91524;
  --red-deep: #640814;
  --gold: #d4af6a;
  --gold-light: #e8cf9a;
  --gold-glow: rgba(212, 175, 106, 0.25);
  --red-glow: rgba(201, 21, 36, 0.35);
  --green: #1e6b52;
  --white: #ffffff;
  --shadow: 0 32px 80px rgba(0,0,0,0.55);
  --max: 1180px;
  --radius: 10px;
  --radius-lg: 16px;
  --orb: 800px;
  /* taste-skill: spring easing */
  --ease-spring: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

/* ===== BODY & ANIMATED BACKGROUND ===== */
body {
  margin: 0;
  font-family: 'DM Sans', ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  position: relative;
}

/* Floating background gradient orbs */
body::before {
  content: '';
  position: fixed;
  top: -30vh;
  left: -20vw;
  width: var(--orb);
  height: var(--orb);
  background: radial-gradient(circle at center, rgba(201,21,36,0.11) 0%, transparent 65%);
  border-radius: 50%;
  animation: orb-drift-1 24s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

body::after {
  content: '';
  position: fixed;
  bottom: -25vh;
  right: -15vw;
  width: calc(var(--orb) * 0.85);
  height: calc(var(--orb) * 0.85);
  background: radial-gradient(circle at center, rgba(212,175,106,0.08) 0%, transparent 65%);
  border-radius: 50%;
  animation: orb-drift-2 32s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
}

@keyframes orb-drift-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(18vw, 12vh) scale(1.12); }
  66%       { transform: translate(-6vw, 22vh) scale(0.92); }
}

@keyframes orb-drift-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-14vw, -16vh) scale(1.08); }
  75%       { transform: translate(9vw, 7vh) scale(0.96); }
}

/* Third subtle orb in centre-right */
.hero::before {
  content: '';
  position: absolute;
  top: 10%;
  right: -5%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle at center, rgba(212,175,106,0.06) 0%, transparent 70%);
  border-radius: 50%;
  animation: orb-drift-3 18s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
  will-change: transform;
  contain: layout style;
}

@keyframes orb-drift-3 {
  0%, 100% { transform: translate(0,0) scale(1); }
  50%       { transform: translate(-40px, 30px) scale(1.06); }
}

img, video { display: block; max-width: 100%; height: auto; }

a { color: inherit; text-decoration: none; transition: all 0.2s var(--ease-spring); }

p { margin: 0; }

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.1s; }
.reveal-d2 { transition-delay: 0.2s; }
.reveal-d3 { transition-delay: 0.3s; }
.reveal-d4 { transition-delay: 0.4s; }
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
}
.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.65s var(--ease-spring), transform 0.65s var(--ease-spring);
}
.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}
.reveal-scale {
  opacity: 0;
  transform: scale(0.93);
  transition: opacity 0.6s var(--ease-spring), transform 0.6s var(--ease-spring);
}
.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

/* ===== HEADER & NAV ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,13,0.85);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}

.nav {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
  min-height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  display: grid;
  gap: 1px;
  min-width: 180px;
  position: relative;
  z-index: 1;
}

.brand strong {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 22px;
  line-height: 1;
  background: linear-gradient(90deg, var(--text) 0%, var(--gold) 60%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand span {
  color: var(--muted-2);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  color: var(--text);
  cursor: pointer;
  transition: background 0.2s;
}

.nav-toggle:hover { background: var(--panel-soft); }

.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  border-radius: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.nav-links a {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 8px 13px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  transition: background 0.2s var(--ease-spring), color 0.2s var(--ease-spring);
}

.nav-links a:hover,
.nav-links a.active {
  background: rgba(255,255,255,0.07);
  color: var(--text);
}

.nav-links a:active { transform: scale(0.97); }

/* ===== HERO ===== */
.section,
.hero,
.page-hero,
.footer {
  position: relative;
}

.wrap {
  width: min(var(--max), calc(100% - 32px));
  margin: 0 auto;
}

.hero,
.page-hero {
  max-width: var(--max);
  margin: 0 auto;
  min-height: calc(100vh - 76px);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 0;
  padding: 60px 16px;
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  position: relative;
  z-index: 10;
  padding: 20px 0;
}

.hero-media,
.page-media {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
  z-index: 5;
}

.hero-media img,
.page-media img {
  width: 165%;
  max-width: none;
  max-height: 90vh;
  object-fit: contain;
  filter: drop-shadow(-15px 20px 50px rgba(0,0,0,0.6));
  transform: translateY(-8%) translateX(-12%);
  animation: hero-float 6s ease-in-out infinite;
}

@keyframes hero-float {
  0%, 100% { transform: translateY(-8%) translateX(-12%) rotate(0deg); }
  50%       { transform: translateY(-12%) translateX(-12%) rotate(.5deg); }
}

/* ===== TYPOGRAPHY ===== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 4px 14px;
  border: 1px solid rgba(212,175,106,0.3);
  border-radius: 999px;
  color: var(--gold);
  background: rgba(212,175,106,0.06);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  backdrop-filter: blur(8px);
}

h1, h2, h3 {
  margin: 0;
  font-weight: 700;
}

/* h1 — Playfair Display: luxury editorial serif for main hero heading */
h1 {
  font-family: 'Playfair Display', Georgia, serif;
  margin-top: 26px;
  font-size: clamp(36px, 4.8vw, 66px);
  letter-spacing: -0.03em;
  line-height: 1.08;
  text-wrap: balance;
  position: relative;
  z-index: 10;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold-light) 45%, var(--text) 80%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* h2 / h3 — Outfit: modern geometric sans, tight tracking */
h2 {
  font-family: 'Outfit', 'DM Sans', ui-sans-serif, sans-serif;
  letter-spacing: -0.03em;
  line-height: 1.1;
  background: linear-gradient(135deg, var(--text) 0%, var(--gold-light) 60%, var(--text) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  font-family: 'Outfit', 'DM Sans', ui-sans-serif, sans-serif;
  letter-spacing: -0.02em;
}

/* Disable gradient text on h2/h3 inside footer (visibility issue) */
.footer h2,
.footer h3,
.footer h4 {
  background: none;
  -webkit-text-fill-color: var(--text);
}

.lead {
  margin-top: 24px;
  color: rgba(240,232,218,0.85);
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.58;
  position: relative;
  z-index: 10;
}

.actions {
  margin-top: 36px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  position: relative;
  z-index: 10;
}

/* ===== BUTTONS ===== */
.btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 28px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all 0.25s var(--ease-spring);
  position: relative;
  overflow: hidden;
}

/* taste-skill: tinted shadow, no neon outer glow */
.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 8px 24px rgba(201,21,36,0.22);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.12), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.btn-primary:hover {
  background: #de1829;
  transform: translateY(-3px);
  box-shadow: 0 18px 36px rgba(201,21,36,0.28), inset 0 1px 0 rgba(255,255,255,0.12);
}

.btn-primary:hover::after { opacity: 1; }

/* taste-skill: tactile physical press */
.btn-primary:active { transform: translateY(-1px) scale(0.99); box-shadow: 0 6px 16px rgba(201,21,36,0.2); }

@keyframes btn-pulse {
  0%   { box-shadow: 0 12px 28px rgba(201,21,36,0.25), 0 0 0 0 rgba(201,21,36,0.3); }
  70%  { box-shadow: 0 12px 28px rgba(201,21,36,0.25), 0 0 0 14px rgba(201,21,36,0); }
  100% { box-shadow: 0 12px 28px rgba(201,21,36,0.25), 0 0 0 0 rgba(201,21,36,0); }
}

.btn-secondary {
  border-color: rgba(240,232,218,0.2);
  background: rgba(255,255,255,0.04);
  color: var(--text);
  backdrop-filter: blur(8px);
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(212,175,106,0.5);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2), inset 0 1px 0 rgba(255,255,255,0.07);
}

.btn-secondary:active { transform: translateY(-1px) scale(0.99); }

/* ===== PROOF / STATS BLOCK ===== */
.hero-proof {
  margin-top: 44px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(12,13,18,0.55);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 60px rgba(0,0,0,0.35);
}

.proof-item {
  min-height: 108px;
  padding: 24px;
  border-right: 1px solid rgba(212,175,106,0.08);
  position: relative;
  overflow: hidden;
}

.proof-item:last-child { border-right: 0; }

.proof-item::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.proof-item:hover::before { opacity: 1; }

.proof-item b {
  display: block;
  color: var(--gold);
  font-size: 28px;
  line-height: 1.1;
  font-family: Georgia, serif;
  text-shadow: 0 0 24px rgba(212,175,106,0.4);
}

.proof-item span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
}

/* ===== SECTIONS ===== */
.section {
  padding: clamp(60px,8vw,110px) 0;
}

/* Section with diagonal cuts */
.section-alt {
  position: relative;
  padding: clamp(80px,10vw,140px) 0;
  background: rgba(255,255,255,0.018);
  isolation: isolate;
}

/* Top diagonal cut */
.section-alt::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(0 0, 100% 0, 0 100%);
  z-index: 1;
}

/* Bottom diagonal cut */
.section-alt::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--bg);
  clip-path: polygon(100% 0, 100% 100%, 0 100%);
  z-index: 1;
}

.section-alt > .wrap {
  position: relative;
  z-index: 2;
}

/* ===== SECTION HEADERS ===== */
.section-head {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 56px;
}

.section-head h2 {
  font-size: clamp(32px,4vw,48px);
  line-height: 1.15;
  text-wrap: balance;
}

.section-head p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.6;
  padding-top: 8px;
}

/* ===== GRIDS ===== */
.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

/* ===== CARDS (3D hover) ===== */
.card {
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.02) 100%);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  transition: transform 0.4s cubic-bezier(.22,.68,0,1.15), box-shadow 0.4s ease, border-color 0.3s ease;
  transform-style: preserve-3d;
  will-change: transform;
}

.card:hover {
  border-color: rgba(212,175,106,0.25);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4), 0 0 40px rgba(212,175,106,0.06);
}

.card h3 {
  margin-bottom: 14px;
  font-size: 22px;
}

.card p, .card li { color: var(--muted); }

.card .link {
  display: inline-flex;
  margin-top: 20px;
  color: var(--gold);
  font-weight: 700;
  gap: 4px;
  transition: gap 0.2s, color 0.2s;
}

.card .link:hover {
  color: var(--gold-light);
  gap: 8px;
}

.service-card {
  display: grid;
  align-content: space-between;
  gap: 22px;
}

.service-tag {
  width: fit-content;
  min-height: 26px;
  padding: 3px 10px;
  border-radius: 999px;
  background: rgba(201,21,36,0.12);
  color: #ffbec5;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ===== SPLIT LAYOUT ===== */
.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.copy {
  display: grid;
  gap: 20px;
  color: var(--muted);
  font-size: 17px;
}

.copy h2 { font-size: clamp(30px,4vw,46px); }
.copy h3 { font-size: 22px; }

.check-list {
  margin: 0; padding: 0;
  display: grid;
  gap: 14px;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.65em;
  width: 10px; height: 10px;
  border: 2px solid var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(212,175,106,0.3);
}

.feature-panel {
  position: sticky;
  top: 104px;
  padding: 28px;
  border: 1px solid rgba(212,175,106,0.2);
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, rgba(201,21,36,0.1), rgba(36,116,93,0.04)), var(--panel);
  box-shadow: var(--shadow), inset 0 1px 0 rgba(255,255,255,0.06);
  backdrop-filter: blur(12px);
}

.feature-panel h3 { margin-bottom: 16px; font-size: 22px; }
.feature-panel p { color: var(--muted); }

.video-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #04040a;
  aspect-ratio: 16 / 9;
  box-shadow: var(--shadow);
}

.video-frame video {
  width: 100%; height: 100%;
  object-fit: cover;
}

/* ===== PROCESS STEPS ===== */
.process {
  counter-reset: step;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.step {
  position: relative;
  padding: 32px 32px 32px 96px;
  border: 1px solid rgba(240,232,218,0.08);
  border-radius: 12px;
  background: rgba(255,255,255,0.02);
  transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
  transform-style: preserve-3d;
}

.step:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212,175,106,0.18);
  transform: translateX(4px);
}

.step::before {
  counter-increment: step;
  content: counter(step);
  position: absolute;
  left: 28px; top: 32px;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: rgba(212,175,106,0.08);
  border: 1px solid rgba(212,175,106,0.35);
  color: var(--gold);
  font-size: 18px;
  font-weight: 700;
  text-shadow: 0 0 16px rgba(212,175,106,0.4);
}

.step h3 { margin: 0 0 10px; font-size: 22px; line-height: 1.2; }
.step p  { margin: 0; color: var(--muted); line-height: 1.55; }

/* ===== LANDING LINKS ===== */
.landing-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.landing-links a {
  min-height: 92px;
  display: grid;
  align-content: center;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  color: var(--muted);
  font-weight: 600;
  text-align: center;
  font-size: 14px;
  transition: all 0.25s ease;
}

.landing-links a:hover {
  border-color: rgba(212,175,106,0.4);
  color: var(--text);
  background: rgba(212,175,106,0.05);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  position: relative; z-index: 1;
  display: flex; gap: 9px; flex-wrap: wrap;
  color: var(--muted); font-size: 14px;
}
.breadcrumbs a { color: var(--gold); }
.breadcrumbs a:hover { color: var(--gold-light); }

/* ===== OFFER STRIP ===== */
.offer-strip {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.offer-strip div {
  min-height: 96px;
  padding: 20px;
  border: 1px solid rgba(240,232,218,0.09);
  border-radius: var(--radius);
  background: rgba(8,9,13,0.5);
  backdrop-filter: blur(10px);
  transition: border-color 0.3s;
}

.offer-strip div:hover { border-color: rgba(212,175,106,0.25); }
.offer-strip b { display: block; color: var(--gold); text-shadow: 0 0 16px rgba(212,175,106,0.3); }
.offer-strip span { display: block; margin-top: 7px; color: var(--muted); font-size: 14px; }

/* ===== FAQ & CONTACT ===== */
.faq { display: grid; gap: 10px; }

.faq details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255,255,255,0.025);
  transition: all 0.25s ease;
  overflow: hidden;
}

.faq details[open] {
  background: rgba(255,255,255,0.04);
  border-color: rgba(212,175,106,0.2);
  box-shadow: 0 8px 30px rgba(0,0,0,0.2);
}

.faq summary {
  min-height: 62px;
  display: flex; align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  font-weight: 700;
  list-style: none;
  gap: 12px;
}

.faq summary::after {
  content: '+';
  margin-left: auto;
  color: var(--gold);
  font-size: 22px;
  font-weight: 300;
  transition: transform 0.3s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq details p {
  padding: 0 20px 20px;
  color: var(--muted);
  line-height: 1.6;
}

.contact {
  border-top: 1px solid var(--line);
  background: linear-gradient(120deg, rgba(201,21,36,0.1), rgba(36,116,93,0.05)), #0e0f13;
  position: relative;
  overflow: hidden;
}

.contact::before {
  content: '';
  position: absolute;
  top: -200px; left: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,21,36,0.08), transparent 65%);
  border-radius: 50%;
  pointer-events: none;
}

.contact-box {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}

.contact h2 { font-size: clamp(30px,4vw,46px); }
.contact p { margin-top: 18px; color: var(--muted); font-size: 17px; }

.price-note {
  margin-top: 24px;
  display: grid;
  gap: 6px;
  padding: 20px;
  border: 1px solid rgba(212,175,106,0.25);
  border-radius: var(--radius);
  background: rgba(212,175,106,0.04);
  backdrop-filter: blur(8px);
}

.price-note strong { color: var(--gold); font-size: 19px; line-height: 1.25; }
.price-note span   { color: var(--muted); }

.contact-links {
  margin-top: 20px;
  display: flex; gap: 10px; flex-wrap: wrap;
}

.contact-link {
  min-height: 44px;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 10px 16px;
  border: 1px solid rgba(240,232,218,0.13);
  border-radius: 7px;
  background: rgba(255,255,255,0.04);
  color: var(--text);
  font-weight: 600;
  transition: all 0.25s ease;
}

.contact-link:hover {
  border-color: rgba(212,175,106,0.45);
  background: rgba(212,175,106,0.07);
  transform: translateY(-1px);
}

/* ===== FORM ===== */
.form { display: grid; gap: 14px; }

.form label {
  display: grid; gap: 6px;
  color: var(--muted); font-size: 14px;
}

.form input,
.form textarea,
.form select {
  width: 100%; min-height: 48px;
  border: 1px solid rgba(240,232,218,0.13);
  border-radius: 8px;
  background: rgba(6,7,10,0.7);
  color: var(--text);
  padding: 12px 14px;
  font: inherit;
  transition: all 0.2s ease;
}

.form input:focus,
.form textarea:focus,
.form select:focus {
  outline: none;
  border-color: var(--gold);
  background: rgba(6,7,10,0.9);
  box-shadow: 0 0 0 3px rgba(212,175,106,0.1);
}

.form textarea { min-height: 112px; resize: vertical; }

.consent {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  padding: 12px;
  border: 1px solid rgba(240,232,218,0.1);
  border-radius: 7px;
  background: rgba(255,255,255,0.025);
}

.consent input {
  width: 18px; min-height: 18px;
  margin-top: 3px; padding: 0; border: 0;
  background: transparent;
  accent-color: var(--red);
}

.consent a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== FLOATING CONTACTS ===== */
.floating-contacts {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 100;
  display: flex; flex-direction: column; gap: 10px;
}

.floating-btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 11px 22px;
  border-radius: 30px;
  border: 1px solid transparent;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45);
  transition: transform 0.25s ease, opacity 0.2s ease, box-shadow 0.25s ease;
}

.floating-btn.whatsapp { background: #148f59; }
.floating-btn.telegram { background: #2388c6; }

.floating-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.5);
  opacity: 0.95;
}

/* ===== FOOTER ===== */
.footer {
  padding: 36px 0;
  border-top: 1px solid var(--line);
  color: var(--muted-2);
  background: var(--bg-deep);
  position: relative;
}

.footer-row {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
}

.footer a { color: var(--muted); }
.footer a:hover { color: var(--text); }

/* ===== AGENCY STATS ===== */
.agency-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(14,15,20,0.8);
  backdrop-filter: blur(20px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06), 0 24px 60px rgba(0,0,0,0.35);
}

.agency-stat {
  padding: 28px 20px;
  border-right: 1px solid rgba(212,175,106,0.08);
  text-align: center;
  transition: background 0.3s;
  position: relative;
  overflow: hidden;
}

.agency-stat::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center bottom, rgba(212,175,106,0.05), transparent 70%);
  opacity: 0;
  transition: opacity 0.4s;
}

.agency-stat:hover::before { opacity: 1; }
.agency-stat:last-child { border-right: none; }

.agency-stat .stat-num {
  display: block;
  color: var(--gold);
  font-size: 34px;
  font-weight: 700;
  font-family: Georgia, serif;
  line-height: 1.1;
  text-shadow: 0 0 28px rgba(212,175,106,0.45);
}

.agency-stat .stat-label {
  display: block;
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.4;
}

/* ===== ARTIST CARDS (kept for other pages) ===== */
.artist-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.artist-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01));
  overflow: hidden;
  transition: all 0.3s ease;
}

.artist-card:hover {
  border-color: rgba(212,175,106,0.3);
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
}

.artist-card-img {
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, rgba(201,21,36,0.18), rgba(36,116,93,0.12)), var(--panel);
  display: flex; align-items: center; justify-content: center;
  font-size: 56px; position: relative; overflow: hidden;
}

.artist-card-img img { width: 100%; height: 100%; object-fit: cover; }

.artist-card-badge {
  position: absolute; top: 12px; left: 12px;
  padding: 4px 10px; border-radius: 999px;
  font-size: 12px; font-weight: 700;
  backdrop-filter: blur(8px);
}

.badge-top  { background: rgba(201,21,36,0.85); color: #fff; }
.badge-new  { background: rgba(36,116,93,0.85); color: #fff; }
.badge-vip  { background: rgba(212,175,106,0.85); color: #0a0b0e; }

.artist-card-body { padding: 18px; }
.artist-card-name { font-family: Georgia, serif; font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.artist-card-spec { color: var(--muted); font-size: 13px; margin-bottom: 12px; }

.artist-stars { display: flex; align-items: center; gap: 6px; margin-bottom: 12px; }
.stars { display: flex; gap: 2px; color: var(--gold); font-size: 14px; }
.artist-stars .reviews { color: var(--muted-2); font-size: 13px; }

.artist-card-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.tag { padding: 3px 9px; border-radius: 999px; background: rgba(255,255,255,0.06); color: var(--muted); font-size: 12px; font-weight: 500; }

.artist-card-footer {
  padding: 14px 18px; border-top: 1px solid var(--line);
  display: flex; align-items: center; justify-content: space-between;
}

.artist-price { color: var(--text); font-weight: 700; font-size: 15px; }
.artist-price span { color: var(--muted); font-size: 12px; font-weight: 400; }

/* ===== TRUST GRID (3D hover) ===== */
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
}

.trust-item {
  padding: 30px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.02);
  text-align: center;
  transition: all 0.4s cubic-bezier(.22,.68,0,1.15);
  transform-style: preserve-3d;
  will-change: transform;
}

.trust-item:hover {
  border-color: rgba(212,175,106,0.2);
  background: rgba(255,255,255,0.04);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3), 0 0 30px rgba(212,175,106,0.05);
}

.trust-icon {
  font-size: 40px;
  margin-bottom: 16px;
  display: block;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.3));
}

.trust-item h3 { font-size: 17px; margin-bottom: 10px; }
.trust-item p  { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ===== PRICE CARDS ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px; align-items: start;
}

.price-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: rgba(255,255,255,0.02);
  transition: all 0.3s ease;
}

.price-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.3);
}

.price-card.featured {
  border-color: rgba(212,175,106,0.35);
  background: linear-gradient(180deg, rgba(212,175,106,0.05), rgba(212,175,106,0.02));
  box-shadow: 0 0 0 1px rgba(212,175,106,0.15), 0 20px 60px rgba(0,0,0,0.3), 0 0 60px rgba(212,175,106,0.06);
}

.price-card-header {
  padding: 24px;
  border-bottom: 1px solid var(--line);
}

.price-card.featured .price-card-header { background: rgba(212,175,106,0.04); }

.price-tier {
  font-size: 11px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 8px; display: block;
}

.price-amount {
  font-family: Georgia, serif;
  font-size: 36px; font-weight: 700;
  color: var(--text); line-height: 1;
  text-shadow: 0 0 20px rgba(240,232,218,0.15);
}

.price-amount small { font-size: 16px; color: var(--muted); font-weight: 400; }
.price-desc { color: var(--muted); font-size: 14px; margin-top: 8px; }

.price-card-body { padding: 24px; }

.price-features {
  list-style: none; margin: 0; padding: 0;
  display: grid; gap: 12px;
}

.price-features li {
  display: flex; gap: 10px; align-items: flex-start;
  color: var(--muted); font-size: 14px; line-height: 1.5;
}

.price-features li::before { content: "✓"; color: var(--gold); font-weight: 700; flex-shrink: 0; margin-top: 1px; }
.price-card-footer { padding: 0 24px 24px; }

/* ===== REVIEWS ===== */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

.review-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.025);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.review-card::before {
  content: '"';
  position: absolute;
  top: -10px; right: 16px;
  font-family: Georgia, serif;
  font-size: 100px;
  color: rgba(212,175,106,0.07);
  line-height: 1;
  pointer-events: none;
}

.review-card:hover {
  border-color: rgba(212,175,106,0.18);
  transform: translateY(-3px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}

.review-card .stars {
  margin-bottom: 14px; font-size: 16px;
}

.review-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 20px;
  position: relative; z-index: 1;
}

.review-author {
  display: flex; align-items: center; gap: 12px;
}

.review-avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: linear-gradient(135deg, rgba(201,21,36,0.35), rgba(36,116,93,0.35));
  display: grid; place-items: center; font-size: 18px; flex-shrink: 0;
  border: 1px solid rgba(255,255,255,0.08);
}

.review-name  { font-weight: 700; font-size: 14px; color: var(--text); }
.review-event { color: var(--muted-2); font-size: 13px; }

/* ===== HOW STEPS ===== */
.how-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 20px;
  position: relative;
}

/* Connecting line between steps */
.how-steps::before {
  content: '';
  position: absolute;
  top: 52px;
  left: calc(12.5% + 26px);
  right: calc(12.5% + 26px);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-glow), rgba(212,175,106,0.3), var(--gold-glow), transparent);
  z-index: 0;
}

.how-step {
  text-align: center;
  padding: 28px 20px;
  position: relative;
  z-index: 1;
  transition: transform 0.3s ease;
}

.how-step:hover { transform: translateY(-4px); }

@keyframes pulse-ring {
  0%   { box-shadow: 0 0 0 0 rgba(212,175,106,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(212,175,106,0); }
  100% { box-shadow: 0 0 0 0 rgba(212,175,106,0); }
}

.how-step-num {
  width: 54px; height: 54px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(212,175,106,0.08);
  border: 1px solid rgba(212,175,106,0.35);
  display: grid; place-items: center;
  color: var(--gold);
  font-size: 20px; font-weight: 700;
  font-family: Georgia, serif;
  animation: pulse-ring 4s ease-out infinite;
  text-shadow: 0 0 12px rgba(212,175,106,0.5);
  position: relative;
  background: radial-gradient(circle at center, rgba(212,175,106,0.12), rgba(212,175,106,0.04));
}

/* Stagger the pulse animation for each step */
.how-step:nth-child(2) .how-step-num { animation-delay: 1s; }
.how-step:nth-child(3) .how-step-num { animation-delay: 2s; }
.how-step:nth-child(4) .how-step-num { animation-delay: 3s; }

.how-step h3 { font-size: 17px; margin-bottom: 10px; }
.how-step p  { color: var(--muted); font-size: 14px; line-height: 1.55; }

/* ===== CTA BANNER ===== */
@keyframes gradient-sweep {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cta-banner {
  padding: clamp(60px,8vw,100px) 0;
  background: linear-gradient(-45deg,
    rgba(201,21,36,0.25),
    rgba(100,8,20,0.15),
    rgba(36,116,93,0.12),
    rgba(201,21,36,0.2)
  );
  background-size: 400% 400%;
  animation: gradient-sweep 12s ease infinite;
  border-block: 1px solid rgba(212,175,106,0.1);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(212,175,106,0.06), transparent 60%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: clamp(28px,3.5vw,46px);
  margin-bottom: 16px;
  position: relative;
}

.cta-banner p {
  color: var(--muted);
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 600px;
  margin-left: auto; margin-right: auto;
  position: relative;
}

.cta-banner .actions { justify-content: center; position: relative; }

/* ===== FOOTER GRID ===== */
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding: 52px 0 32px;
}

.footer-brand strong {
  font-family: Georgia, serif;
  font-size: 22px; color: var(--text);
  display: block; margin-bottom: 4px;
  background: linear-gradient(90deg, var(--text), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-brand p { color: var(--muted); font-size: 14px; line-height: 1.6; margin-top: 10px; }

.footer-col h4 {
  margin: 0 0 16px;
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted-2);
  font-family: Inter, sans-serif;
}

.footer-col a {
  display: block; margin-bottom: 10px;
  color: var(--muted); font-size: 14px;
  transition: color 0.2s, padding-left 0.2s;
}

.footer-col a:hover {
  color: var(--text);
  padding-left: 4px;
}

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid var(--line);
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 16px; flex-wrap: wrap;
  color: var(--muted-2); font-size: 13px;
}

/* ===== GALLERY ===== */
.gallery {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 10px;
}

.gallery-item {
  aspect-ratio: 1;
  border-radius: var(--radius);
  background: linear-gradient(135deg, rgba(201,21,36,0.12), rgba(36,116,93,0.08)), var(--panel);
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  overflow: hidden; cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 40px rgba(0,0,0,0.4);
}

.gallery-item img { width: 100%; height: 100%; object-fit: cover; }

/* ===== ARTIST PHOTO ===== */
.artist-photo {
  overflow: hidden;
  border: 1px solid rgba(212,175,106,0.2);
  border-radius: var(--radius-lg);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.artist-photo img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.artist-photo div { padding: 24px; }
.artist-photo h3 { margin-bottom: 12px; font-size: 22px; }
.artist-photo p { color: var(--muted); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  grid-template-columns: 1fr;
  min-height: auto;
  padding: 60px 16px;
}

.page-hero .hero-content {
  grid-column: 1;
  grid-row: 1;
}

.page-hero .page-media {
  grid-column: 1;
  grid-row: 2;
  justify-content: center;
}

/* ===== NAV DROPDOWN ===== */
.nav-group { position: relative; }

.nav-group > .nav-group-btn {
  min-height: 38px;
  display: inline-flex; align-items: center; gap: 5px;
  padding: 8px 13px;
  border-radius: 7px;
  color: var(--muted);
  font-size: 14px; font-weight: 500;
  cursor: pointer;
  background: none; border: none;
  font-family: inherit;
  transition: all 0.2s ease;
}

.nav-group > .nav-group-btn:hover,
.nav-group > .nav-group-btn.active {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.nav-group > .nav-group-btn svg {
  width: 14px; height: 14px;
  transition: transform 0.25s ease;
}

.nav-group:hover > .nav-group-btn svg,
.nav-group.open > .nav-group-btn svg {
  transform: rotate(180deg);
}

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-10px);
  min-width: 220px;
  padding: 8px;
  border: 1px solid rgba(212,175,106,0.12);
  border-radius: 12px;
  background: rgba(10,11,16,0.95);
  backdrop-filter: blur(24px) saturate(150%);
  box-shadow: 0 24px 60px rgba(0,0,0,0.6), inset 0 1px 0 rgba(255,255,255,0.06);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 100;
}

.nav-group:hover .dropdown,
.nav-group.open .dropdown {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  border-radius: 7px;
  color: var(--muted); font-size: 14px; font-weight: 500;
  transition: all 0.15s ease;
}

.dropdown a:hover {
  background: rgba(255,255,255,0.06);
  color: var(--text);
}

.dropdown a .dd-icon {
  width: 32px; height: 32px;
  display: grid; place-items: center;
  border-radius: 7px;
  background: rgba(212,175,106,0.07);
  font-size: 16px; flex-shrink: 0;
}

.nav-cta {
  min-height: 38px;
  display: inline-flex; align-items: center;
  padding: 8px 18px;
  border-radius: 7px;
  background: var(--red);
  color: #fff !important;
  font-size: 14px; font-weight: 700;
  transition: all 0.25s ease;
  white-space: nowrap;
  animation: btn-pulse 3s ease-out infinite;
}

.nav-cta:hover {
  background: #de1829;
  transform: translateY(-1px);
  animation: none;
  box-shadow: 0 12px 30px rgba(201,21,36,0.35);
}

/* ===== TEXT BLOCK ===== */
.text-block { max-width: 860px; }
.text-block p + p { margin-top: 18px; }

/* ===== FLOATING SOCIAL (hidden) ===== */
.floating-social { display: none !important; }

/* ===================================================
   RESPONSIVE — TABLET (max-width: 980px)
   =================================================== */
@media (max-width: 980px) {
  .nav { min-height: 68px; }

  .nav-toggle { display: block; }

  .nav-links {
    position: absolute;
    inset: 68px 16px auto;
    display: none;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: rgba(9,9,13,0.97);
    backdrop-filter: blur(24px);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .hero, .page-hero {
    grid-template-columns: 1fr;
    min-height: auto;
    text-align: center;
    gap: 30px;
    padding: 40px 16px 0;
  }

  .hero-content {
    grid-column: 1; grid-row: 1;
    padding: 0; text-align: center;
  }

  .eyebrow, .lead, h1 {
    justify-content: center;
    margin-left: auto; margin-right: auto;
  }

  .hero-media, .page-media {
    grid-column: 1; grid-row: 2;
    justify-content: center;
    margin-top: 10px;
  }

  .hero-media img, .page-media img {
    width: 100%;
    max-width: 450px;
    max-height: 50vh;
    transform: none;
    animation: none;
  }

  .actions { justify-content: center; }

  .hero-proof, .grid, .grid-2, .split, .contact-box {
    grid-template-columns: 1fr;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 20px; text-align: center;
  }

  .section-head p { padding-top: 0; }

  .step { padding: 24px 20px 24px 72px; text-align: left; }
  .step::before { left: 16px; top: 24px; width: 38px; height: 38px; font-size: 16px; }

  .artist-grid, .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .agency-stats { grid-template-columns: repeat(2,1fr); }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .how-steps { grid-template-columns: repeat(2,1fr); }
  .how-steps::before { display: none; }

  .price-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .gallery { grid-template-columns: repeat(3,1fr); }

  .section-alt::before,
  .section-alt::after { height: 40px; }

  /* Nav dropdown mobile */
  .dropdown {
    position: static;
    transform: none !important;
    opacity: 1;
    pointer-events: auto;
    box-shadow: none;
    border: none;
    background: transparent;
    backdrop-filter: none;
    padding: 0 0 0 16px;
    display: none;
  }

  .nav-group.open .dropdown { display: grid; }
  .nav-group > .nav-group-btn { width: 100%; justify-content: space-between; }
}

/* ===================================================
   RESPONSIVE — MOBILE (max-width: 680px)
   =================================================== */
@media (max-width: 680px) {
  .wrap, .nav { width: calc(100% - 24px); }

  h1 { font-size: clamp(30px, 8vw, 44px); }

  .actions .btn { width: 100%; }

  .hero-proof, .offer-strip, .nav-links.open {
    grid-template-columns: 1fr;
  }

  .offer-strip div { min-height: auto; }

  .artist-grid, .reviews-grid { grid-template-columns: 1fr; }
  .agency-stats { grid-template-columns: 1fr 1fr; }
  .trust-grid, .how-steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .gallery { grid-template-columns: repeat(2,1fr); }

  .section-alt::before,
  .section-alt::after { display: none; }
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.wa-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #25d366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s, box-shadow 0.25s;
  text-decoration: none;
  animation: wa-pulse 2.8s ease-in-out infinite;
}
.wa-btn:hover {
  transform: scale(1.12);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.6);
  animation: none;
}
.wa-btn svg { width: 30px; height: 30px; fill: #fff; }
.wa-tooltip {
  position: fixed;
  bottom: 96px;
  right: 28px;
  z-index: 998;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.55rem 1rem;
  font-size: 0.82rem;
  color: var(--text);
  white-space: nowrap;
  box-shadow: 0 8px 24px rgba(0,0,0,0.35);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
}
.wa-btn:hover ~ .wa-tooltip,
.wa-tooltip.show {
  opacity: 1;
  transform: translateY(0);
}
@keyframes wa-pulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37,211,102,.45); }
  50%       { box-shadow: 0 4px 28px rgba(37,211,102,.75), 0 0 0 8px rgba(37,211,102,.12); }
}
@media (max-width: 600px) {
  .wa-btn { bottom: 20px; right: 18px; width: 52px; height: 52px; }
  .wa-tooltip { right: 80px; bottom: 26px; }
}

/* ===== EXIT-INTENT POPUP ===== */
.popup-overlay {
  position: fixed;
  inset: 0;
  z-index: 10000;
  background: rgba(0,0,0,0.72);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s;
}
.popup-overlay.active {
  opacity: 1;
  pointer-events: all;
}
.popup-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2rem 2rem;
  max-width: 480px;
  width: 100%;
  position: relative;
  transform: translateY(24px) scale(0.97);
  transition: transform 0.35s;
  text-align: center;
  overflow: hidden;
}
.popup-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--red), var(--gold));
}
.popup-overlay.active .popup-box {
  transform: translateY(0) scale(1);
}
.popup-close {
  position: absolute;
  top: 14px; right: 16px;
  background: none; border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
  line-height: 1;
  transition: color 0.2s;
}
.popup-close:hover { color: var(--text); }
.popup-icon { font-size: 3rem; margin-bottom: 0.75rem; }
.popup-title {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 0.5rem;
}
.popup-subtitle {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.popup-form { display: flex; flex-direction: column; gap: 0.75rem; }
.popup-form input {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--surface-2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.popup-form input:focus { border-color: var(--gold); }
.popup-form button {
  width: 100%;
  padding: 0.85rem;
  background: var(--gold);
  color: #09090d;
  border: none;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}
.popup-form button:hover { background: var(--gold-light); transform: translateY(-1px); }
.popup-skip {
  display: block;
  margin-top: 0.9rem;
  font-size: 0.78rem;
  color: var(--text-muted);
  cursor: pointer;
  text-decoration: underline;
  background: none; border: none;
}
.popup-skip:hover { color: var(--text); }
.popup-success { display: none; }
.popup-success .popup-icon { font-size: 3.5rem; }
.popup-success p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.6; margin-top: 0.75rem; }

/* ===== AI CONTEXT BLOCK (visually hidden, crawler-readable) ===== */
.ai-ctx {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  pointer-events: none;
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.1ms !important;
  }
  .reveal { opacity: 1; transform: none; }
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
  background: var(--surface);
}
.breadcrumbs ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.78rem;
  color: var(--text-muted);
}
.breadcrumbs li { display: flex; align-items: center; gap: 0.25rem; }
.breadcrumbs li + li::before { content: '›'; color: var(--border); }
.breadcrumbs a { color: var(--text-muted); text-decoration: none; transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--gold); }
.breadcrumbs [aria-current="page"] { color: var(--gold); font-weight: 600; }

/* ===== COMPATIBILITY LAYER — maps new page classes → existing CSS ===== */

/* Variable aliases */
:root {
  --surface:    var(--panel);
  --surface-2:  var(--panel-soft);
  --border:     var(--line);
  --text-muted: var(--muted);
}

/* Layout aliases */
.nav-wrap {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: rgba(9,9,13,0.85);
  backdrop-filter: blur(24px) saturate(140%);
  -webkit-backdrop-filter: blur(24px) saturate(140%);
}
.nav-wrap .nav { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }
.container { width: min(var(--max), calc(100% - 32px)); margin: 0 auto; }

/* Logo aliases */
.nav-logo {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none; font-weight: 800;
}
.logo-icon { font-size: 1.3rem; line-height: 1; }
.logo-text {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.2rem;
  background: linear-gradient(90deg, var(--text) 0%, var(--gold) 60%, var(--text) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.logo-accent { -webkit-text-fill-color: var(--gold); color: var(--gold); }

/* Heading/badge aliases */
.section-badge {
  display: inline-block;
  background: rgba(201,21,36,0.12);
  border: 1px solid rgba(201,21,36,0.3);
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 0.35rem 1rem;
  border-radius: 999px;
  margin-bottom: 1.25rem;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  line-height: 1.15;
  color: var(--text);
  margin: 0 0 1rem;
}
.section-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 580px;
  line-height: 1.7;
  margin: 0 0 2rem;
}
.section-title.text-center,
.section-subtitle.text-center,
.text-center { text-align: center; }
.section-title.text-center + .section-subtitle,
.section-subtitle.text-center { margin-left: auto; margin-right: auto; }

.gradient-text {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}

/* Hero aliases */
.hero-title {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--text);
  margin: 0 0 1.25rem;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.7;
  margin: 0 0 2rem;
  max-width: 520px;
}
.hero-inner { display: grid; grid-template-columns: 1.2fr 0.8fr; align-items: center; gap: 2rem; padding: 4rem 0; min-height: 70vh; }
.hero-bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero .hero-content { position: relative; z-index: 2; }

/* Button aliases */
.btn-lg { padding: 1rem 2.25rem !important; font-size: 1rem !important; }

/* Footer aliases */
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.5rem;
}
@media (max-width: 768px) { .footer-inner { grid-template-columns: 1fr; } }
.footer-brand p { color: var(--muted); font-size: 0.85rem; margin-top: 0.5rem; line-height: 1.6; }
.footer-nav { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-nav a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-nav a:hover { color: var(--gold); }
.footer-contacts { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-contacts a { color: var(--muted); font-size: 0.875rem; transition: color 0.2s; }
.footer-contacts a:hover { color: var(--gold); }
.footer-copy { font-size: 0.8rem; color: var(--muted-2); text-align: center; margin: 0; }

/* Proof items alias */
.hero-proof { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 0.5rem; }
.proof-item { display: flex; flex-direction: column; }
.proof-num { font-size: 1.5rem; font-weight: 900; color: var(--gold); line-height: 1; }
.proof-label { font-size: 0.75rem; color: var(--muted); margin-top: 2px; }

/* Actions alias */
.actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 2rem; }

/* CTA section alias */
.cta-section {
  background: var(--panel);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 5rem 0;
  text-align: center;
}

/* Trust items alias */
.trust-icon { font-size: 2rem; margin-bottom: 0.75rem; }
.trust-body h3 { font-size: 1rem; font-weight: 700; margin-bottom: 0.4rem; color: var(--text); }
.trust-body p { font-size: 0.875rem; color: var(--muted); line-height: 1.65; }

/* FAQs */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; }

/* Popup download button */
.popup-download {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.7rem 1.5rem;
  background: var(--gold);
  color: var(--bg);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 6px;
  text-decoration: none;
  transition: opacity .2s;
}
.popup-download:hover { opacity: 0.85; }

@media (max-width: 600px) {
  .hero-inner { grid-template-columns: 1fr; min-height: auto; padding: 3rem 0; }
  .section-title { font-size: clamp(1.6rem, 7vw, 2.2rem); }
}

/* =====================================================
   taste-skill v3.1 UPGRADES
   Spotlight border · Liquid glass · Magnetic · Motion
   ===================================================== */

/* ── Spotlight Card: JS sets --sx / --sy on mousemove ── */
.card, .price-card, .review-card, .how-step, .trust-item, .service-card {
  position: relative;
  overflow: hidden;
}
.card-spotlight {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.4s var(--ease-spring);
  background: radial-gradient(400px circle at var(--sx, 50%) var(--sy, 50%), rgba(212,175,106,0.1) 0%, transparent 65%);
}
.card:hover .card-spotlight,
.price-card:hover .card-spotlight,
.review-card:hover .card-spotlight,
.how-step:hover .card-spotlight,
.trust-item:hover .card-spotlight,
.service-card:hover .card-spotlight { opacity: 1; }

/* ── Liquid Glass panels: inner border refraction ───── */
.panel, .card, .price-card, .review-card, .trust-item,
.hero-proof, .popup-box, .how-step {
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
}

/* ── Magnetic btn indicator ──────────────────────────── */
.btn[data-magnetic] { will-change: transform; }

/* ── Text scramble: preserve gradient during scramble ── */
.scrambling {
  -webkit-text-fill-color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
}

/* ── Stagger via CSS custom property --i ─────────────── */
.how-steps .how-step,
.services-grid .card,
.trust-grid .trust-item,
.reviews-grid .review-card {
  transition-delay: calc(var(--i, 0) * 80ms);
}

/* ── Section h2 size boost ───────────────────────────── */
.section-head h2,
.section h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-family: 'Outfit', 'DM Sans', ui-sans-serif, sans-serif;
  letter-spacing: -0.03em;
}

/* ── Outfit for nav CTA + eyebrow text ───────────────── */
.nav-cta, .eyebrow { font-family: 'Outfit', 'DM Sans', ui-sans-serif, sans-serif; }

/* ── Better hero min-height (taste-skill: min-h-[100dvh]) ── */
.hero, .page-hero { min-height: 100dvh; }

/* ── Section number/step counter — Outfit mono style ─── */
.how-step-num {
  font-family: 'Outfit', ui-sans-serif, sans-serif;
  font-weight: 800;
  letter-spacing: -0.04em;
}

/* ── Directional hover fill on .btn-primary ──────────── */
.btn-primary .btn-fill {
  position: absolute;
  width: 200%;
  height: 200%;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  transform: scale(0);
  pointer-events: none;
  transition: transform 0.5s var(--ease-spring), opacity 0.5s var(--ease-spring);
  opacity: 0;
}
.btn-primary:hover .btn-fill { transform: scale(1); opacity: 1; }
.btn-primary:not(:hover) .btn-fill { transform: scale(0); opacity: 0; }
