:root {
  --olive: #1e2318;
  --olive-deep: #171C12;
  --olive-mid: #2a2e1f;
  --olive-light: #3a3f2a;
  --gold: #d4a853;
  --gold-light: #e8c882;
  --gold-rose: #c9967b;
  --gold-pale: #f0dbb8;
  --cream: #f5eed6;
  --cream-dim: rgba(245,238,214,0.9);
  --cream-muted: rgba(245,238,214,0.72);
  --border: rgba(212,168,83,0.15);
  --border-hover: rgba(212,168,83,0.4);
  --bg-glass: rgba(255,255,255,0.03);
  --font-display: 'Dela Gothic One', sans-serif;
  --font-cursive: 'Marck Script', cursive;
  --font-elegant: 'Philosopher', sans-serif;
  --font-body: 'Manrope', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-body);
  background: var(--olive-deep);
  color: var(--cream);
  overflow-x: hidden;
  line-height: 1.6;
}



/* Per-section vertical line overlays — generated by JS */
.section-vlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image: repeating-linear-gradient(
    90deg,
    transparent 0px,
    transparent 58px,
    rgba(212,168,83,0.045) 58px,
    rgba(212,168,83,0.045) 59px,
    transparent 59px,
    transparent 117px,
    rgba(212,168,83,0.090) 117px,
    rgba(212,168,83,0.090) 118px,
    transparent 118px,
    transparent 176px,
    rgba(212,168,83,0.025) 176px,
    rgba(212,168,83,0.025) 177px,
    transparent 177px,
    transparent 243px,
    rgba(212,168,83,0.070) 243px,
    rgba(212,168,83,0.070) 244px,
    transparent 244px,
    transparent 310px,
    rgba(212,168,83,0.034) 310px,
    rgba(212,168,83,0.034) 311px,
    transparent 311px,
    transparent 370px,
    rgba(212,168,83,0.058) 370px,
    rgba(212,168,83,0.058) 371px,
    transparent 371px,
    transparent 432px,
    rgba(212,168,83,0.020) 432px,
    rgba(212,168,83,0.020) 433px,
    transparent 433px,
    transparent 495px,
    rgba(212,168,83,0.050) 495px,
    rgba(212,168,83,0.050) 496px,
    transparent 496px,
    transparent 558px,
    rgba(212,168,83,0.030) 558px,
    rgba(212,168,83,0.030) 559px,
    transparent 559px,
    transparent 620px,
    rgba(212,168,83,0.074) 620px,
    rgba(212,168,83,0.074) 621px,
    transparent 621px,
    transparent 683px,
    rgba(212,168,83,0.038) 683px,
    rgba(212,168,83,0.038) 684px,
    transparent 684px,
    transparent 746px,
    rgba(212,168,83,0.054) 746px,
    rgba(212,168,83,0.054) 747px,
    transparent 747px,
    transparent 809px,
    rgba(212,168,83,0.022) 809px,
    rgba(212,168,83,0.022) 810px,
    transparent 810px,
    transparent 868px,
    rgba(212,168,83,0.063) 868px,
    rgba(212,168,83,0.063) 869px,
    transparent 869px,
    transparent 931px,
    rgba(212,168,83,0.028) 931px,
    rgba(212,168,83,0.028) 932px,
    transparent 932px,
    transparent 994px,
    rgba(212,168,83,0.079) 994px,
    rgba(212,168,83,0.079) 995px,
    transparent 995px,
    transparent 1057px,
    rgba(212,168,83,0.032) 1057px,
    rgba(212,168,83,0.032) 1058px,
    transparent 1058px,
    transparent 1120px,
    rgba(212,168,83,0.055) 1120px,
    rgba(212,168,83,0.055) 1121px,
    transparent 1121px,
    transparent 1183px,
    rgba(212,168,83,0.019) 1183px,
    rgba(212,168,83,0.019) 1184px,
    transparent 1184px,
    transparent 1246px,
    rgba(212,168,83,0.068) 1246px,
    rgba(212,168,83,0.068) 1247px,
    transparent 1247px,
    transparent 1309px,
    rgba(212,168,83,0.036) 1309px,
    rgba(212,168,83,0.036) 1310px,
    transparent 1310px,
    transparent 1370px,
    rgba(212,168,83,0.060) 1370px,
    rgba(212,168,83,0.060) 1371px,
    transparent 1371px,
    transparent 1433px,
    rgba(212,168,83,0.024) 1433px,
    rgba(212,168,83,0.024) 1434px,
    transparent 1434px,
    transparent 1440px
  );
  /* Fade in at top, full opacity in middle, fade out at bottom — px based */
  -webkit-mask-image: linear-gradient(to bottom,
    transparent 0px,
    black 220px,
    black calc(100% - 220px),
    transparent 100%
  );
  mask-image: linear-gradient(to bottom,
    transparent 0px,
    black 220px,
    black calc(100% - 220px),
    transparent 100%
  );
}
.section-vlines-first {
  -webkit-mask-image: linear-gradient(to bottom, black 0px, black calc(100% - 400px), transparent 100%) !important;
  mask-image: linear-gradient(to bottom, black 0px, black calc(100% - 400px), transparent 100%) !important;
}
.section-vlines-last {
  -webkit-mask-image: linear-gradient(to bottom, transparent 0px, black 220px, black 100%) !important;
  mask-image: linear-gradient(to bottom, transparent 0px, black 220px, black 100%) !important;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(26,29,19,0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
}
nav .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* Logo with layered typography — cursive overlaps from below */
.nav-logo {
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 14px;
}
.nav-logo-main {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--gold);
  letter-spacing: 4px;
  text-transform: uppercase;
  line-height: 1;
  display: block;
  position: relative;
  z-index: 1;
}
.nav-logo-cursive {
  font-family: var(--font-cursive);
  font-size: 1.05rem;
  color: var(--gold-light);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -6px;
  white-space: nowrap;
  z-index: 2;
  /* Same text-shadow outline trick as section titles */
  -webkit-text-stroke: 4px rgba(26,29,19,0.98);
  paint-order: stroke fill;
}
.nav-links { display: flex; gap: 28px; list-style: none; }
.nav-links a {
  color: var(--cream-muted);
  text-decoration: none;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold); }
.nav-toggle { display: none; cursor: pointer; }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: var(--gold); margin: 5px 0; border-radius: 2px;
}

/* ===== LAYERED TYPOGRAPHY ===== */
.layered-title {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-bottom: 28px;
  margin-bottom: 0;
}
.layered-title .big {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 3.2rem;
  line-height: 1;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  display: block;
}
.layered-title .cursive-overlay {
  font-family: var(--font-cursive);
  font-weight: 400;
  font-size: 2.4rem;
  color: var(--gold);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Overlap with main text */
  bottom: -2px;
  -webkit-text-stroke: 5px var(--olive-deep);
  paint-order: stroke fill;
  white-space: nowrap;
  z-index: 2;
}

/* ===== SECTION ===== */
section { padding: 100px 0; position: relative; overflow: hidden; }

.section-subtitle {
  text-align: center;
  color: var(--cream-muted);
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 60px;
}

/* ===== DIVIDERS — all identical thin gold lines ===== */
.divider, .divider-hero {
  width: 100%; height: 1px;
  background: linear-gradient(90deg, transparent 0%, transparent 15%, rgba(212,168,83,0.22) 30%, rgba(212,168,83,0.35) 50%, rgba(212,168,83,0.22) 70%, transparent 85%, transparent 100%);
}

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 14px;
  transition: all 0.4s ease;
}
.glass-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(212,168,83,0.06);
  transform: translateY(-3px);
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  text-align: center;
  justify-content: center;
  display: inline-block;
  padding: 16px 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-rose));
  color: var(--olive-deep);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  text-decoration: none;
  border-radius: 60px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  box-shadow: 0 4px 24px rgba(212,168,83,0.2);
}
.cta-btn:hover {
  box-shadow: 0 6px 36px rgba(212,168,83,0.35);
  transform: translateY(-2px);
}
.cta-btn-outline {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  box-shadow: none;
}
.cta-btn-outline:hover {
  background: rgba(212,168,83,0.08);
  box-shadow: 0 0 24px rgba(212,168,83,0.1);
}


/* ── Burger menu ── */
.nav-burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-burger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ===== HERO ===== */
.hero {
  padding: 160px 0 110px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
}
.hero .glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(212,168,83,0.06) 0%, transparent 70%);
  top: -100px; right: -200px;
  pointer-events: none;
}
.hero .container {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 60px;
  align-items: center;
}
.hero-text {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-bottom: 0;
}
.hero-visual {
  grid-column: 2;
  grid-row: 1 / 3;
  height: 500px;
}
.hero-bottom {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
  padding-top: 24px;
}
.hero-text .tag {
  display: inline-block;
  padding: 6px 18px;
  border: 1px solid var(--border);
  border-radius: 50px;
  font-family: var(--font-cursive);
  font-size: 0.95rem;
  color: var(--gold);
  margin-bottom: 28px;
}
.hero-text h1 {
  font-family: var(--font-display);
  font-size: 3.2rem;
  font-weight: 400;
  line-height: 1.1;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-text h1 .gold { color: var(--gold); font-size: 2.8rem; }
.hero-line-top { font-size: 3.6rem; }
.hero-line-bottom { font-size: 2.6rem; }
.hero-text .hero-cursive {
  font-family: var(--font-cursive);
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-bottom: 28px;
  display: block;
}
.hero-text .subtitle {
  font-family: var(--font-elegant);
  font-size: 1.15rem;
  color: var(--cream-dim);
  margin-bottom: 36px;
  max-width: 460px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; margin-bottom: 50px; flex-wrap: wrap; }
.hero-stats-wrap { display: flex; flex-direction: column; gap: 8px; }
.hero-stats-label {
  font-family: var(--font-cursive);
  font-size: 1rem;
  color: var(--gold);
  opacity: 0.75;
  letter-spacing: 0.3px;
}
.hero-stats { display: flex; gap: 36px; }
.hero-stat .num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--gold);
}
.hero-stat .label {
  font-size: 0.88rem;
  color: var(--cream-muted);
  margin-top: 2px;
}


/* Flying YouTube buttons */
.yt-btn {
  position: absolute;
  pointer-events: none;
  z-index: 10;
  filter: drop-shadow(0 8px 24px rgba(0,0,0,0.5));
}
.yt-btn img {
  display: block;
  width: 100%;
  height: auto;
}

/* Button 1 = btn02 (blurry) — closer to person, right */
.yt-btn-1 {
  width: 155px;
  top: -60px;
  left: 20px;
  transform: rotate(8deg);
  animation: ytfly1 7s ease-in-out infinite;
}

/* Button 2 = btn01 (sharp) — higher up */
.yt-btn-2 {
  width: 190px;
  top: 55px;
  left: -90px;
  transform: rotate(-10deg);
  animation: ytfly2 9s ease-in-out infinite;
  animation-delay: -2s;
}

@keyframes ytfly1 {
  0%   { transform: rotate(-15deg) translateY(0px)   translateX(0px); }
  25%  { transform: rotate(-12deg) translateY(-14px)  translateX(5px); }
  50%  { transform: rotate(-18deg) translateY(-8px)   translateX(-4px); }
  75%  { transform: rotate(-13deg) translateY(-18px)  translateX(6px); }
  100% { transform: rotate(-15deg) translateY(0px)   translateX(0px); }
}

@keyframes ytfly2 {
  0%   { transform: rotate(12deg) translateY(0px)   translateX(0px); }
  30%  { transform: rotate(15deg) translateY(-12px)  translateX(-6px); }
  60%  { transform: rotate(9deg)  translateY(-20px)  translateX(4px); }
  80%  { transform: rotate(14deg) translateY(-8px)   translateX(-3px); }
  100% { transform: rotate(12deg) translateY(0px)   translateX(0px); }
}

/* Hero visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 500px;
}
.hero-frame {
  width: 340px; height: 450px;
  position: relative;
}

/* === VARIANT A: Parallelogram === */
.hero-frame.var-a::before {
  transform: skewX(-4deg);
}

/* === VARIANT B: Arch (tall rounded top) === */
.hero-frame.var-b::before {
  border-radius: 200px 200px 20px 20px;
}
.hero-frame.var-b .hero-frame::after {
  border-radius: 0 0 20px 20px;
}
/* Visual box: border with gold glow highlights */
.hero-frame::before {
  content: '';
  position: absolute;
  bottom: 0; left: 50px; right: -50px;
  height: 100%;
  background: transparent;
  border-radius: 20px;
  transform: skewX(-4deg);
  /* Main border + asymmetric gold glow: bright top-right, dim bottom-left */
  border: 1.5px solid rgba(212,168,83,0.45);
  box-shadow:
    0 30px 80px rgba(0,0,0,0.5),
    /* outer glow — top edge */
    0 -2px 18px rgba(212,168,83,0.30),
    /* outer glow — right edge */
    4px 0 22px rgba(212,168,83,0.22),
    /* inner highlight — top-right corner */
    inset 1px 1px 0 rgba(212,168,83,0.35),
    /* inner subtle — left edge dim */
    inset -1px 0 0 rgba(212,168,83,0.05);
  z-index: 1;
  pointer-events: none;
}
.hero-frame .frame-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  border-radius: 20px;
  background: linear-gradient(165deg, rgba(42,46,31,0.8), var(--olive-deep));
}
/* Gradient fade at bottom — legs dissolve into background */
.hero-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to top,
    var(--olive-deep) 0%,
    var(--olive-deep) 20%,
    rgba(23,28,18,0.85) 55%,
    transparent 100%
  );
  z-index: 0;
  pointer-events: none;
  border-radius: 0 0 20px 20px;
}
.hero-photo-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 520px;
  z-index: 2;
  pointer-events: none;
}
.hero-photo-wrap img {
  width: 90%;
  height: auto;
  display: block;
  margin: 0 auto;
}


.hero-float {
  position: absolute;
  background: rgba(30,35,24,0.92);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 16px;
  backdrop-filter: blur(12px);
  font-size: 0.88rem;
  color: var(--cream-dim);
  display: flex; align-items: center; gap: 8px;
  animation: hfloat 5s ease-in-out infinite;
  z-index: 10;
  white-space: nowrap;
}
.hero-float .dot { width: 6px; height: 6px; background: var(--gold); border-radius: 50%; flex-shrink: 0; }
.hero-float .dot.green { background: #5cb85c; }
.hero-float:nth-child(2) { top: 40px; right: -55px; animation-delay: 0s; }
.hero-float:nth-child(3) { bottom: 120px; left: -65px; animation-delay: 1.5s; }
.hero-float:nth-child(4) { bottom: 50px; right: -45px; animation-delay: 3s; }
@keyframes hfloat {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* ===== FOR WHO ===== */
.for-who-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 50px;
  align-items: center;
}

/* Photo side */
.for-who-photo-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  height: 480px;
}
.for-who-frame {
  width: 320px; height: 440px;
  position: relative;
}
.for-who-frame::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 100%;
  border: 1.5px solid rgba(212,168,83,0.45);
  border-radius: 20px;
  transform: skewX(-4deg);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 -2px 18px rgba(212,168,83,0.30),
    4px 0 22px rgba(212,168,83,0.22),
    inset 1px 1px 0 rgba(212,168,83,0.35);
  z-index: 1;
  z-index: 1;
  pointer-events: none;
}
.for-who-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 38%;
  background: linear-gradient(to top,
    var(--olive-deep) 0%,
    var(--olive-deep) 18%,
    rgba(23,28,18,0.8) 55%,
    transparent 100%
  );
  border-radius: 0 0 20px 20px;
  z-index: 0;
  pointer-events: none;
}
.for-who-photo-img-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 370px;
  z-index: 1;
  pointer-events: none;
}
.for-who-photo-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Cards side — vertical */
.for-who-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.for-who-card-v {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 22px 24px;
}
.for-who-card-v .icon-wrap {
  width: 52px; height: 52px;
  flex-shrink: 0;
  background: rgba(212,168,83,0.07);
  border: 1px solid rgba(212,168,83,0.18);
  border-radius: 14px;
  display: flex; justify-content: center; align-items: center;
}
.for-who-card-v .icon-wrap svg {
  width: 24px; height: 24px;
  stroke: var(--gold);
  fill: none;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.for-who-card-text h3 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1rem;
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.for-who-card-text p {
  color: var(--cream-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  font-family: var(--font-elegant);
}

/* Keep old .icon-wrap for other sections */
.for-who-card .icon-wrap {
  width: 62px; height: 62px;
  margin: 0 auto 20px;
  background: rgba(212,168,83,0.07);
  border: 1px solid rgba(212,168,83,0.18);
  border-radius: 16px;
  display: flex; justify-content: center; align-items: center;
}

/* ===== PROGRAM TIMELINE ===== */
.timeline-wrap::before { display: none; }
.timeline-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  background: repeating-linear-gradient(
    to bottom,
    rgba(212,168,83,0.45) 0px,
    rgba(212,168,83,0.45) 6px,
    transparent 6px,
    transparent 13px
  );
  pointer-events: none;
  z-index: 0;
}

.timeline-wrap {
  position: relative;
  padding: 20px 0 40px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  margin-bottom: 32px;
  position: relative;
}
.timeline-step.left .step-card { grid-column: 1; grid-row: 1; }
.timeline-step.left .step-num  { grid-column: 2; grid-row: 1; }
.timeline-step.left .step-empty{ grid-column: 3; grid-row: 1; }
.timeline-step.right .step-card { grid-column: 3; grid-row: 1; }
.timeline-step.right .step-num  { grid-column: 2; grid-row: 1; }
.timeline-step.right .step-empty{ grid-column: 1; grid-row: 1; }

.step-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px 24px;
  transition: all 0.4s ease;
}
.step-card:hover {
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 0 30px rgba(212,168,83,0.07);
  transform: translateY(-2px);
}
.step-card .s-icon {
  width: 36px; height: 36px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 9px;
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 12px;
}
.step-card .s-icon svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.step-card h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 6px;
  color: var(--cream);
}
.step-card p {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.6;
}
.step-card p strong {
  color: var(--cream);
  font-weight: 600;
}
.step-empty { }
.step-num {
  width: 42px; height: 42px;
  background: var(--olive-deep);
  border: 1.5px solid rgba(212,168,83,0.45);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--gold);
  position: relative;
  z-index: 2;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,168,83,0.12);
}
.timeline-final {
  text-align: center;
  margin-top: 16px;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 16px;
  padding: 28px 40px;
  position: relative;
  z-index: 1;
}
.timeline-final h4 {
  font-family: var(--font-cursive);
  font-size: 1.5rem;
  color: var(--gold);
  margin-bottom: 8px;
}
.timeline-final p {
  font-family: var(--font-elegant);
  color: var(--cream-dim);
  font-size: 1rem;
}





/* ===== KPOP CASE ===== */
.case-kpop {
  position: relative;
}
.case-kpop-header {
  text-align: center;
  margin-bottom: 60px;
}
.case-kpop-label {
  display: inline-block;
  font-family: var(--font-cursive);
  font-size: 1rem;
  color: var(--gold);
  border: 1px solid rgba(212,168,83,0.25);
  border-radius: 50px;
  padding: 5px 20px;
  margin-bottom: 20px;
  opacity: 0.85;
}
.case-kpop-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}
.case-kpop-stat {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(212,168,83,0.18);
  border-radius: 16px;
  padding: 28px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.case-kpop-stat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0.5;
}
.case-kpop-stat .stat-num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
  margin-bottom: 6px;
  line-height: 1;
}
.case-kpop-stat .stat-label {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.4;
}
.case-kpop-screenshots {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
  margin-bottom: 40px;
}
.case-kpop-screen {
  border-radius: 14px;
  border: 1px solid rgba(212,168,83,0.15);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: all 0.3s;
  position: relative;
}
.case-kpop-screen img {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  border-radius: 14px;
}
.case-kpop-screen:hover {
  border-color: rgba(212,168,83,0.35);
  box-shadow: 0 0 30px rgba(212,168,83,0.08);
}
.case-kpop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.case-kpop-screen .screen-label {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-body);
  font-size: 0.85rem;
  color: var(--cream-muted);
  background: rgba(23,28,18,0.85);
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
  backdrop-filter: blur(4px);
}
.case-kpop-story {
  background: rgba(212,168,83,0.04);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 16px;
  padding: 36px 44px;
}
.case-kpop-story h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  color: var(--cream);
}
.case-kpop-story h3 .gold { color: var(--gold); }
.case-kpop-story p {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.85;
}
.case-kpop-points {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.case-kpop-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--cream-dim);
}
.case-kpop-points li::before {
  content: '✦';
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
  font-size: 0.7rem;
}

/* ===== KPOP STORY STEPS ===== */
.case-story-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
  margin-bottom: 36px;
}
/* Horizontal connecting line */
.case-story-timeline::before {
  content: '';
  position: absolute;
  top: 17px;
  left: calc(12.5% + 18px);
  right: calc(12.5% + 18px);
  height: 1px;
  background: linear-gradient(90deg,
    rgba(212,168,83,0.5),
    rgba(201,150,123,0.4),
    rgba(212,168,83,0.5)
  );
  z-index: 0;
}
.case-story-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 12px;
  position: relative;
}
.step-line { display: none; }

.case-story-num {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold), var(--gold-rose));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--olive-deep);
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  box-shadow: 0 2px 16px rgba(212,168,83,0.35);
  margin-bottom: 16px;
}
.case-story-content {
  padding-top: 0;
}
.case-story-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  margin-bottom: 8px;
}
.case-story-text {
  font-family: var(--font-elegant);
  font-size: 0.92rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.case-story-footer {
  text-align: center;
  padding-top: 28px;
  border-top: 1px solid rgba(212,168,83,0.15);
  font-family: var(--font-display);
  font-size: 0.86rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--gold);
}

/* ===== COMPARISON ===== *//* ===== COMPARISON ===== */
.comparison-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 860px;
  margin: 0 auto;
}
.comparison-col {
  border-radius: 18px;
  overflow: hidden;
}
.comparison-col.without {
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  opacity: 0.75;
}
.comparison-col.with {
  border: 1px solid rgba(212,168,83,0.3);
  background: rgba(212,168,83,0.04);
  position: relative;
}
.comparison-col.with::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), var(--gold-rose), transparent);
}
.comparison-head {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.comparison-col.with .comparison-head {
  border-bottom-color: rgba(212,168,83,0.12);
}
.comparison-head-title {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.comparison-col.without .comparison-head-title { color: var(--cream-muted); }
.comparison-col.with .comparison-head-title { color: var(--gold); }
.comparison-head-sub {
  font-family: var(--font-elegant);
  font-size: 0.88rem;
  margin-top: 4px;
}
.comparison-col.without .comparison-head-sub { color: rgba(245,238,214,0.6); }
.comparison-col.with .comparison-head-sub { color: var(--cream-muted); }
.comparison-list {
  list-style: none;
  padding: 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.comparison-list li {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.55;
}
.comparison-col.without .comparison-list li { color: rgba(245,238,214,0.68); }
.comparison-col.with .comparison-list li { color: var(--cream-dim); }
.comparison-list li .ico {
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.9rem;
}
.comparison-col.without .comparison-list li .ico { color: rgba(255,255,255,0.3); }
.comparison-col.with .comparison-list li .ico { color: var(--gold); }

.comparison-conclusion {
  margin-top: 28px;
  text-align: center;
  padding: 20px 32px;
  background: rgba(212,168,83,0.06);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 14px;
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
}
.comparison-conclusion .ico {
  color: var(--gold);
  margin-right: 4px;
}


/* ===== TARIFFS ===== */
.tariffs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 960px;
  margin: 0 auto;
}
.tariff-card {
  border-radius: 20px;
  overflow: hidden;
  background: rgba(0,0,0,0.25);
  border: 1px solid rgba(212,168,83,0.2);
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
}
.tariff-card:hover {
  border-color: rgba(212,168,83,0.4);
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  transform: translateY(-4px);
}
.tariff-card.featured {
  background: rgba(0,0,0,0.3);
  border-color: rgba(212,168,83,0.45);
  box-shadow: 0 0 50px rgba(212,168,83,0.08);
}
.tariff-card.featured:hover {
  box-shadow: 0 20px 70px rgba(212,168,83,0.15);
}

/* Top accent line */
.tariff-accent {
  height: 3px;
  background: linear-gradient(90deg, rgba(212,168,83,0.2), rgba(212,168,83,0.5), rgba(212,168,83,0.2));
}
.tariff-card.featured .tariff-accent {
  background: linear-gradient(90deg, var(--gold), var(--gold-rose), var(--gold));
  box-shadow: 0 2px 16px rgba(212,168,83,0.4);
}

.tariff-head {
  padding: 28px 30px 24px;
  background: linear-gradient(135deg, rgba(212,168,83,0.18), rgba(201,150,123,0.1));
  border-bottom: 1px solid rgba(212,168,83,0.2);
  position: relative;
}
.tariff-card.featured .tariff-head {
  background: linear-gradient(135deg, rgba(212,168,83,0.28), rgba(201,150,123,0.18));
}
.tariff-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-rose));
  color: var(--olive-deep);
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}
.tariff-name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.tariff-desc {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.65;
}
.tariff-desc-bold {
  font-weight: 600;
  color: var(--cream-dim);
}
.tariff-feat-gold {
  color: var(--gold) !important;
  font-weight: 600;
}
.tariff-feat-gold strong {
  color: var(--gold);
}

/* Features */
.tariff-body {
  padding: 20px 30px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.tariff-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
  flex: 1;
  margin-bottom: 24px;
}
.tariff-features li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  font-family: var(--font-elegant);
  font-size: 0.92rem;
  color: var(--cream);
  line-height: 1.45;
}
.tariff-features li:last-child { border-bottom: none; }
.tariff-feat-ic {
  width: 26px;
  height: 26px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.7rem;
  color: var(--gold);
  font-family: var(--font-display);
}
.tariff-card.featured .tariff-feat-ic {
  background: rgba(212,168,83,0.12);
  border-color: rgba(212,168,83,0.3);
}

/* Price block at bottom */
.tariff-price-wrap {
  display: flex;
  align-items: baseline;
  gap: 14px;
  flex-wrap: wrap;
  padding: 20px 0 4px;
  border-top: 1px solid rgba(212,168,83,0.1);
  margin-bottom: 16px;
}
.tariff-price-usd {
  font-family: var(--font-display);
  font-size: 3.4rem;
  color: var(--gold);
  font-weight: 400;
  line-height: 1;
  text-shadow: 0 0 40px rgba(212,168,83,0.3);
}
.tariff-price-kzt {
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  color: rgba(245,238,214,0.6);
  line-height: 1;
  letter-spacing: 0.3px;
}
.tariff-price-kzt .loading { opacity: 0.3; font-style: italic; font-size: 0.85rem; }



/* ===== GUARANTEE ===== */
.guarantee-block {
  margin-top: 60px;
  position: relative;
}
.guarantee-layered-title {
  position: relative;
  display: inline-block;
  text-align: center;
  width: 100%;
  padding-bottom: 24px;
  margin-bottom: 32px;
}
.guarantee-big {
  font-family: var(--font-display);
  font-size: 2.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--cream);
  display: block;
  line-height: 1;
}
.guarantee-cursive {
  font-family: var(--font-cursive);
  font-size: 3rem;
  color: var(--gold);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -26px;
  white-space: nowrap;
  z-index: 2;
  -webkit-text-stroke: 4px var(--olive-deep);
  paint-order: stroke fill;
}
.guarantee-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(212,168,83,0.12);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(212,168,83,0.12);
}
.guarantee-item {
  background: rgba(23,28,18,0.95);
  padding: 24px 22px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.guarantee-item:hover {
  background: rgba(212,168,83,0.04);
}
.guarantee-item-icon {
  width: 44px; height: 44px;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.guarantee-item-icon svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none;
  stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round;
}
.guarantee-item-title {
  font-family: var(--font-display);
  font-size: 0.88rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--cream);
}
.guarantee-item-text {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--cream-muted);
  line-height: 1.7;
}
.guarantee-footer-new {
  grid-column: 1 / -1;
  background: rgba(212,168,83,0.08);
  border-top: 2px solid rgba(212,168,83,0.3);
  border-radius: 0 0 17px 17px;
  padding: 24px 32px;
  text-align: center;
}
.guarantee-footer-main {
  font-family: var(--font-elegant);
  font-size: 1.1rem;
  color: var(--cream);
  line-height: 1.6;
  margin-bottom: 8px;
}
.guarantee-money-accent {
  font-weight: 700;
  color: var(--gold);
  font-size: 1.15rem;
}
.guarantee-footer-note {
  font-family: var(--font-elegant);
  font-size: 0.86rem;
  color: var(--cream-muted);
  font-style: italic;
}
.guarantee-money { font-weight: 600; color: var(--gold); }



/* ===== CASES SLIDER ===== */
.cases-slider-wrap {
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(212,168,83,0.15);
}
.cases-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
}

/* ── SLIDE: flexbox, not grid — works on all screen sizes ── */
.case-slide {
  min-width: 100%;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.case-slide-img {
  flex: 0 0 auto;
  overflow: hidden;
  position: relative;
}
.case-slide-img img {
  height: 380px;
  width: auto;
  display: block;
}
.case-slide-img::after {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: 40px;
  background: linear-gradient(to right, transparent, var(--olive-deep));
  pointer-events: none;
}
.case-slide-content {
  flex: 1;
  min-width: 0;
  padding: 24px 32px;
  background: rgba(255,255,255,0.02);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  overflow: hidden;
}
.case-slide-num {
  font-family: var(--font-display);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 2px;
  opacity: 0.6;
}
.case-slide-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 400;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
}
.case-slide-niche {
  font-family: var(--font-cursive);
  font-size: 1rem;
  color: var(--gold);
  margin-top: -10px;
}
.case-slide-text {
  font-family: var(--font-elegant);
  font-size: 0.95rem;
  color: var(--cream-dim);
  line-height: 1.8;
}

/* Nav */
.cases-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.cases-arrow {
  width: 52px; height: 52px;
  background: rgba(23,28,18,0.9);
  border: 1.5px solid rgba(212,168,83,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: arrowPulse 2.5s ease-in-out infinite;
  position: relative;
  flex-shrink: 0;
}
.cases-arrow::before {
  content: '';
  position: absolute;
  inset: -3px;
  border-radius: 50%;
  border: 1px solid rgba(212,168,83,0.2);
  animation: arrowRing 2.5s ease-in-out infinite;
}
.cases-arrow:hover {
  background: rgba(212,168,83,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,168,83,0.5);
  animation: none;
}
.cases-arrow:hover::before { opacity: 0; }
.cases-arrow svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.cases-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex: 1;
}
.cases-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,168,83,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.cases-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}
.case-card { padding: 30px 22px; }
.case-header { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.case-avatar {
  width: 46px; height: 46px;
  background: rgba(212,168,83,0.1);
  border: 1.5px solid rgba(212,168,83,0.45);
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--gold);
  font-weight: 400;
  flex-shrink: 0;
}
.case-name { font-family: var(--font-display); font-weight: 400; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 1px; }
.case-niche { font-family: var(--font-cursive); font-size: 0.85rem; color: var(--gold); }
.case-results { list-style: none; }
.case-results li {
  padding: 5px 0; padding-left: 20px; position: relative;
  font-size: 0.86rem; color: var(--cream-dim); line-height: 1.5;
}
.case-results li::before { content: '→'; position: absolute; left: 0; color: var(--gold); }
.case-badge {
  margin-top: 14px; padding: 10px 14px;
  background: rgba(212,168,83,0.07);
  border: 1px solid rgba(212,168,83,0.15);
  border-radius: 8px;
  font-size: 0.86rem; color: var(--gold); font-weight: 600; text-align: center;
}


/* ===== VIDEO POPUP ===== */
.video-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.45);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.video-popup.open {
  display: flex;
}
.video-popup-inner {
  position: relative;
  width: 100%;
  max-width: 900px;
  background: #0a0a0a;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(212,168,83,0.2);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8);
}
.video-popup-inner video {
  width: 100%;
  max-height: 80vh;
  display: block;
  outline: none;
  background: #000;
}
.video-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 44px; height: 44px;
  background: var(--gold);
  border: 2px solid var(--gold-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 0 20px rgba(212,168,83,0.4);
}
.video-popup-close:hover {
  background: var(--gold-light);
  border-color: var(--gold-light);
  box-shadow: 0 0 30px rgba(212,168,83,0.7);
  transform: scale(1.1);
}
.video-popup-close svg {
  width: 18px; height: 18px;
  stroke: var(--olive-deep); fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}

/* ===== VIDEO ===== */
.video-slider-wrap {
  position: relative;
  overflow: hidden;
}
.video-slider {
  display: flex;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
  will-change: transform;
  gap: 16px;
}
.video-slide {
  min-width: calc((100% - 32px) / 3);
  height: 340px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #0a0a0a;
  border-radius: 18px;
  overflow: hidden;
  flex-shrink: 0;
  border: 1px solid rgba(212,168,83,0.12);
  transition: all 0.35s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.video-slide:hover {
  border-color: rgba(212,168,83,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5), 0 0 30px rgba(212,168,83,0.1);
}
.video-poster {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.video-poster::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity 0.3s;
}
.video-slide:hover .video-poster::after {
  background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.15) 100%);
}
.video-poster img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.4s ease;
}
.video-slide:hover .video-poster img {
  transform: scale(1.04);
}
.video-play-btn {
  position: absolute;
  z-index: 2;
  width: 60px; height: 60px;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: all 0.3s cubic-bezier(0.34,1.56,0.64,1);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3);
}
.video-slide:hover .video-play-btn {
  background: rgba(212,168,83,0.9);
  border-color: var(--gold);
  transform: scale(1.15);
  box-shadow: 0 0 40px rgba(212,168,83,0.5);
}
.video-play-btn svg {
  width: 22px; height: 22px;
  fill: white;
  margin-left: 3px;
  transition: fill 0.3s;
}
.video-slide:hover .video-play-btn svg {
  fill: #0a0a0a;
}
.video-counter {
  position: absolute;
  bottom: 14px;
  left: 14px;
  z-index: 2;
  font-family: var(--font-display);
  font-size: 0.6rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 2px;
  background: rgba(0,0,0,0.55);
  padding: 4px 10px;
  border-radius: 20px;
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.1);
}
.video-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
}
.video-arrow {
  width: 52px; height: 52px;
  background: rgba(23,28,18,0.9);
  border: 1.5px solid rgba(212,168,83,0.5);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  animation: arrowPulse 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.video-arrow:hover {
  background: rgba(212,168,83,0.18);
  border-color: var(--gold);
  box-shadow: 0 0 30px rgba(212,168,83,0.5);
  animation: none;
}
.video-arrow svg {
  width: 20px; height: 20px;
  stroke: var(--gold); fill: none;
  stroke-width: 2.5; stroke-linecap: round; stroke-linejoin: round;
}
.video-dots {
  display: flex; align-items: center; justify-content: center;
  gap: 8px; flex: 1; flex-wrap: wrap;
}
.video-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: rgba(212,168,83,0.25);
  cursor: pointer;
  transition: all 0.3s ease;
}
.video-dot.active {
  background: var(--gold);
  width: 24px;
  border-radius: 3px;
}

@media (max-width: 1024px) {
  .video-slide { min-width: 100% !important; height: 420px; }
  .video-slider { gap: 0 !important; }
}
@media (max-width: 600px) {
  .video-slide { height: 320px; }
  .video-play-btn { width: 56px; height: 56px; }
  .video-play-btn svg { width: 22px; height: 22px; }
}

.video-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.video-card {
  aspect-ratio: 9/14; max-height: 360px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  cursor: pointer; position: relative;
}
.video-card .play-c {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--gold), var(--gold-rose));
  border-radius: 50%;
  display: flex; justify-content: center; align-items: center;
  margin-bottom: 10px; transition: all 0.3s;
  box-shadow: 0 0 24px rgba(212,168,83,0.25);
}
.video-card:hover .play-c { transform: scale(1.1); box-shadow: 0 0 40px rgba(212,168,83,0.4); }
.video-card .play-c svg { width: 18px; height: 18px; fill: var(--olive-deep); margin-left: 3px; }
.video-card span { color: var(--cream-muted); font-size: 0.88rem; }

/* ===== AUTHOR ===== */
.author-photo-frame {
  width: 300px;
  height: 400px;
  position: relative;
  flex-shrink: 0;
}
.author-photo-frame::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 100%;
  border: 1.5px solid rgba(212,168,83,0.45);
  border-radius: 20px;
  transform: skewX(4deg);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.4),
    0 -2px 18px rgba(212,168,83,0.30),
    4px 0 22px rgba(212,168,83,0.22),
    inset 1px 1px 0 rgba(212,168,83,0.35);
  z-index: 1;
  z-index: 1;
  pointer-events: none;
}
.author-photo-frame::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 35%;
  background: linear-gradient(to top,
    var(--olive-deep) 0%,
    var(--olive-deep) 15%,
    rgba(23,28,18,0.75) 55%,
    transparent 100%
  );
  border-radius: 0 0 20px 20px;
  z-index: 0;
  z-index: 0;
  pointer-events: none;
}
.author-photo-img-wrap {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 400px;
  z-index: 1;
  pointer-events: none;
}
.author-photo-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
}


.author-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 50px;
  align-items: center;
  margin-top: 50px;
}
.author-photo {
  width: 280px; height: 360px;
  background: linear-gradient(165deg, var(--olive), var(--olive-deep));
  border: 1.5px solid var(--border);
  border-radius: 18px;
  display: flex; flex-direction: column; justify-content: center; align-items: center;
  position: relative; overflow: hidden;
}
.author-photo::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 40%;
  background: linear-gradient(to top, rgba(212,168,83,0.04), transparent);
}
.author-photo .ph { font-size: 2.5rem; position: relative; z-index: 1; }
.author-photo span { color: var(--cream-muted); font-size: 0.88rem; position: relative; z-index: 1; margin-top: 6px; }
.author-info h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 20px;
  line-height: 1.3;
  text-transform: uppercase;
}
.author-info h3 .gold { color: var(--gold); }
.author-chips { display: flex; gap: 16px; margin-bottom: 24px; flex-wrap: wrap; }
.author-chip {
  background: var(--bg-glass);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 18px;
  text-align: center;
}
.author-chip .n { font-family: var(--font-display); font-weight: 400; font-size: 1.2rem; color: var(--gold); }
.author-chip .l { font-size: 0.7rem; color: var(--cream-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; }
.author-info p {
  color: var(--cream-dim);
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 10px;
}
.author-cta { margin-top: 24px; }






/* ===== HONESTY BLOCK ===== */
.honesty-block {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 50px;
  align-items: center;
  max-width: 920px;
  margin: 0 auto;
  margin-top: 60px;
}
.honesty-photo-frame {
  width: 340px;
  height: 280px;
  position: relative;
  flex-shrink: 0;
  overflow: visible;
}
.honesty-photo-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1.5px solid rgba(212,168,83,0.45);
  border-radius: 16px;
  transform: skewX(-4deg);
  box-shadow:
    0 20px 60px rgba(0,0,0,0.5),
    0 -2px 18px rgba(212,168,83,0.30),
    4px 0 22px rgba(212,168,83,0.22),
    inset 1px 1px 0 rgba(212,168,83,0.35),
    inset -1px 0 0 rgba(212,168,83,0.05);
  z-index: 2;
  pointer-events: none;
}
.honesty-photo-frame::after {
  display: none;
}
.honesty-photo-frame img {
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 370px;
  max-width: none;
  height: auto;
  z-index: 2;
  pointer-events: none;
  display: block;
  bottom: 2px;
  border-radius: 16px;
  filter: grayscale(20%);
}
.honesty-photo-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(212,168,83,0.2);
  font-family: var(--font-cursive);
  font-size: 0.85rem;
}
.honesty-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.honesty-text {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--cream-dim);
  line-height: 1.85;
}
.honesty-quote {
  border-left: 2px solid var(--gold);
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.honesty-quote-text {
  font-family: var(--font-cursive);
  font-size: 1.5rem;
  color: var(--cream);
  line-height: 1.6;
  font-style: italic;
}
.honesty-quote-author {
  font-family: var(--font-body);
  font-size: 0.86rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
}



/* ===== OUTRO GRADIENT WRAP ===== */
.outro-wrap {
  position: relative;
  background: linear-gradient(to bottom,
    #171C12 0%,
    #151510 20%,
    #111110 40%,
    #0e0e0d 65%,
    #0a0a0a 100%
  );
}

/* ===== FOOTER ===== */
footer { padding: 44px 0; border-top: 1px solid var(--border); }
footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
footer .fl { font-family: var(--font-display); font-weight: 400; font-size: 1rem; color: var(--gold); letter-spacing: 3px; }
footer .flinks { display: flex; gap: 20px; }
footer .flinks a { color: var(--cream-muted); text-decoration: none; font-size: 0.88rem; transition: color 0.3s; }
footer .flinks a:hover { color: var(--gold); }
footer .copy { color: var(--cream-muted); font-size: 0.85rem; width: 100%; text-align: center; margin-top: 12px; opacity: 0.6; }

/* ===== RESPONSIVE ===== */




/* ============================================
   MOBILE RESPONSIVE — comprehensive
   ============================================ */

/* ── Tablet (900px) ── */


/* ── Mobile (600px) ── */


/* ── Small mobile (380px) ── */



/* ============================================================
   1024px — узкий десктоп / планшет горизонтальный
   ============================================================ */


/* ============================================================
   1024px
   ============================================================ */


/* ============================================================
   1024px
   ============================================================ */


/* ============================================================
   1024px
   ============================================================ */
@media (max-width: 1024px) {

  /* ── HERO ── */
  .hero { padding: 100px 0 60px; min-height: auto; }
  .hero .container {
    grid-template-columns: 1fr !important;
    grid-template-rows: auto auto auto !important;
    gap: 0 !important;
  }
  .hero-text {
    grid-column: 1 !important; grid-row: 1 !important;
    text-align: center !important;
    display: flex; flex-direction: column; align-items: center;
  }
  .hero-visual {
    grid-column: 1 !important; grid-row: 2 !important;
    height: 400px; margin: 32px auto 0; width: 100%;
    display: flex; justify-content: center; align-items: flex-end; position: relative;
  }
  .hero-bottom {
    grid-column: 1 !important; grid-row: 3 !important;
    display: flex; flex-direction: column; align-items: center; gap: 24px; margin-top: 28px;
  }
  .hero-text h1 { font-size: 2.8rem; }
  .hero-line-top, .hero-line-bottom, .hero-text h1 .gold { font-size: inherit; }
  .hero-cursive { font-size: 1.9rem; }
  .subtitle { max-width: 560px; text-align: center; }
  .hero-frame { width: 280px; height: 380px; }
  .hero-photo-wrap { width: 420px; }
  .hero-buttons { justify-content: center; }
  .hero-stats-wrap { align-items: center; }

  /* ── ДЛЯ КОГО — убираем фото, карточки на всю ширину ── */
  .for-who-layout { grid-template-columns: 1fr !important; }
  .for-who-photo-wrap { display: none !important; }
  .for-who-cards { gap: 12px; }

  /* ── ПРОГРАММА — уменьшаем расстояние ── */
  .timeline-step { margin-bottom: 16px !important; gap: 16px !important; }
  .step-card { padding: 20px 22px !important; }

  /* ── АВТОР — фото сверху по центру, текст снизу ── */
  .author-grid {
    grid-template-columns: 1fr !important;
    gap: 0 !important;
    justify-items: center;
    text-align: center;
  }
  .author-photo-frame {
    width: 240px;
    height: 320px;
    margin: 0 auto 36px;
    overflow: visible;
  }
  .author-photo-img-wrap {
    width: 290px;
  }
  .author-info { text-align: center !important; width: 100% !important; display: flex !important; flex-direction: column !important; align-items: center !important; }
  .author-info p { text-align: center !important; }
  .author-chips { flex-wrap: wrap !important; gap: 8px !important; justify-content: center !important; }
  .author-cta { align-items: flex-start !important; }

  

  /* ── ДВА ПУТИ — ico уже flex-start в десктопе, просто убираем лишний gap ── */
  .comparison-list li {
    display: flex !important;
    align-items: flex-start !important;
    gap: 10px !important;
  }
  .comparison-list li .ico {
    display: inline-block !important;
    flex-shrink: 0 !important;
    margin-top: 2px !important;
  }

  

  /* ── ЧЕСТНО О НЕУДАЧАХ — фото сверху, потом текст, потом цитата ── */
  .honesty-block { grid-template-columns: 1fr !important; gap: 0 !important; }
  .honesty-photo-frame {
    display: block !important;
    width: 260px !important;
    height: 210px !important;
    margin: 0 auto 32px !important;
    overflow: visible !important;
    order: -1 !important;
  }
  .honesty-photo-frame img {
    width: 280px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    bottom: 0 !important;
  }
  .honesty-content {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    width: 100% !important;
  }
  .honesty-text { text-align: center !important; }
  .honesty-quote {
    border-left: none !important;
    padding-left: 0 !important;
    border-top: 1px solid rgba(212,168,83,0.3) !important;
    padding-top: 24px !important;
    text-align: center !important;
    align-items: center !important;
    width: 100% !important;
  }
  .honesty-quote-text { text-align: center !important; }
  .honesty-quote-author { text-align: center !important; }


  /* ── СЛАЙДЕР планшет: картинка сверху, текст снизу ── */
  .case-slide {
    flex-direction: column !important;
  }
  .case-slide-img {
    flex: none !important;
    width: 100% !important;
  }
  .case-slide-img img {
    width: 100% !important;
    height: auto !important;
    object-fit: fill !important;
    display: block !important;
  }
  .case-slide-img::after { display: none !important; }
  .case-slide-content {
    max-width: 100% !important;
    min-width: 0 !important;
    height: auto !important;
    padding: 24px 28px !important;
  }


  .author-cta { align-items: center !important; }
  .honesty-photo-frame img { bottom: 2px !important; }
}

@keyframes arrowPulse {
  0%, 100% { box-shadow: 0 0 8px rgba(212,168,83,0.3); border-color: rgba(212,168,83,0.5); }
  50% { box-shadow: 0 0 28px rgba(212,168,83,0.7), 0 0 50px rgba(212,168,83,0.3); border-color: rgba(212,168,83,0.9); }
}
@keyframes arrowRing {
  0%, 100% { transform: scale(1); opacity: 0.4; }
  50% { transform: scale(1.3); opacity: 0; }
}

/* ============================================================
   768px
   ============================================================ */
@media (max-width: 768px) {

  .container { padding: 0 16px; }
  section { padding: 40px 0; }

  /* ── 1. Titles: cursive stays close to big, section-subtitle gets less margin ── */
  .layered-title .big { font-size: 2.2rem; }
  .cursive-overlay { font-size: 1.6rem; bottom: -18px !important; }
  .layered-title { padding-bottom: 18px !important; margin-bottom: 28px !important; }
  .section-subtitle {
    font-size: 0.88rem;
    margin-top: 12px !important;
    margin-bottom: 12px !important;
  }

  /* ── 7. NAV burger with smooth animation ── */
  .nav-burger { display: flex; }
  .nav-links {
    position: absolute !important;
    top: 56px; left: 0; right: 0;
    background: rgba(18,22,13,0.98);
    backdrop-filter: blur(20px);
    flex-direction: column !important;
    border-bottom: 1px solid rgba(212,168,83,0.15);
    z-index: 999;
    gap: 0 !important;
    overflow: hidden;
    max-height: 0 !important;
    padding: 0 16px !important;
    opacity: 0;
    pointer-events: none;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1),
                opacity 0.3s ease,
                padding 0.3s ease,
                gap 0.3s ease;
    display: flex !important;
  }
  .nav-links.open {
    max-height: 400px !important;
    opacity: 1 !important;
    pointer-events: auto !important;
    padding: 16px 16px !important;
    gap: 14px !important;
  }

  /* ── 2. HERO ── */
  .hero { padding: 80px 0 40px; }
  .hero-text h1 { font-size: 2rem; }
  .hero-line-top, .hero-line-bottom, .hero-text h1 .gold { font-size: inherit; }
  .hero-cursive {
    font-size: 1.15rem !important;
    line-height: 1.3 !important;
    letter-spacing: 0.3px;
  }
  .subtitle { font-size: 0.85rem !important; }
  .hero-visual { height: 280px; margin-top: 20px; }
  .hero-frame { width: 185px; height: 260px; }
  .hero-photo-wrap { width: 290px; }
  /* YouTube buttons — smaller, closer to photo */
  .yt-btn-1 { width: 90px !important; top: -35px !important; left: 75px !important; }
  .yt-btn-2 { width: 105px !important; top: 50px !important; left: 10px !important; }
  .hero-bottom { gap: 14px; margin-top: 18px; }
  .cta-btn { padding: 12px 20px; font-size: 0.88rem; }
  .hero-stats { gap: 14px; }
  .hero-stat .num { font-size: 1.2rem; }
  .hero-stat .label { font-size: 0.58rem; }

  /* ── 3. PROGRAM — vertical timeline, line to left ── */
  .timeline-step {
    grid-template-columns: 52px 1fr !important;
    gap: 10px !important;
    margin-bottom: 10px !important;
    align-items: start !important;
  }
  .timeline-step.left .step-card,
  .timeline-step.right .step-card { grid-column: 2 !important; grid-row: 1 !important; }
  .timeline-step.left .step-num,
  .timeline-step.right .step-num { grid-column: 1 !important; grid-row: 1 !important; margin: 0 !important; }
  .timeline-step.left .step-empty,
  .timeline-step.right .step-empty { display: none !important; }
  /* Move dashed line to align with step-num column */
  #timeline-line { left: 22px !important; transform: translateX(-50%) !important; }
  .step-card { padding: 14px 16px !important; }
  .timeline-final { padding: 18px 18px !important; }

  /* ── 4 & 5. KPOP screenshots: 2+1 layout, remove line under numbers ── */
  .case-kpop-stats { grid-template-columns: 1fr 1fr; gap: 10px; }
  .case-kpop-stat:last-child { grid-column: 1 / -1; }
  .case-kpop-stat .stat-num { font-size: 1.5rem; }
  .case-kpop-screenshots {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 10px !important;
  }
  .case-kpop-screen:nth-child(3) { grid-column: 1 / -1 !important; }
  .case-kpop-story { padding: 18px 14px !important; }
  .case-story-timeline {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 0 12px !important;
  }
  .case-story-timeline::before { display: none !important; }
  .case-story-step { display: contents; }
  .case-story-num { grid-column: 1; margin-bottom: 16px; align-self: start; }
  .case-story-num::after { display: none !important; }
  .case-story-content { grid-column: 2; text-align: left !important; margin-bottom: 16px; }

  /* ── COMPARISON ── */
  .comparison-grid { grid-template-columns: 1fr !important; gap: 12px; }
  .comparison-head { padding: 14px 18px; }
  .comparison-list { padding: 14px 18px; gap: 10px; }
  .comparison-list li { font-size: 0.9rem; }

  /* ── TARIFFS ── */
  .tariffs-grid { grid-template-columns: 1fr !important; gap: 16px; }
  .tariff-name { font-size: 1.4rem; }
  .tariff-features li { font-size: 0.88rem; padding: 8px 0; }
  .tariff-price-usd { font-size: 2.2rem; }
  .tariff-body .cta-btn { width: 100% !important; text-align: center !important; justify-content: center !important; }

  /* ── 6. GUARANTEE ── */
  .guarantee-items { grid-template-columns: 1fr !important; }
  .guarantee-big { font-size: 1.6rem; }
  .guarantee-cursive {
    font-size: 1.55rem !important;
    bottom: 4px !important;
  }
  .guarantee-item { padding: 18px 16px; }
  .guarantee-footer-new {
    padding: 18px 20px !important;
  }
  .guarantee-footer-main { font-size: 1rem; }
  .guarantee-money-accent { font-size: 1.05rem; }

  /* ── AUTHOR chips ── */
  .author-chips { gap: 6px; }
  .author-chip .n { font-size: 1.1rem; }
  .author-chip .l { font-size: 0.52rem; letter-spacing: 0.5px; }
  .author-chip { padding: 10px 10px; }

  /* ── Video slider ── */
  .video-slide { height: 260px; }

  /* ── Payment popup ── */
  .pay-methods { grid-template-columns: 1fr; }
  .pay-method-name { font-size: 1rem; }

  /* ── Footer ── */
  footer { padding: 28px 0; }
  .footer-inner { flex-direction: column; gap: 14px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 12px; }
}

@media (max-width: 450px) {
  /* Kpop stat cards — tighter vertical padding & line-height */
  .case-kpop-stat { padding: 16px 14px; }
  .case-kpop-stat .stat-num { margin-bottom: 2px; }
  .case-kpop-stat .stat-label { line-height: 1.2; }

  /* For-who cards — smaller icons, less gap */
  .for-who-card-v { gap: 14px; padding: 16px 18px; }
  .for-who-card-v .icon-wrap { width: 42px; height: 42px; border-radius: 11px; }
  .for-who-card-v .icon-wrap svg { width: 20px; height: 20px; }
}

/* ===== PAYMENT POPUP ===== */
.pay-popup {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.pay-popup.open { display: flex; }
.pay-popup-inner {
  position: relative;
  width: 100%;
  max-width: 680px;
  max-height: 90vh;
  overflow-y: auto;
  background: var(--olive-deep);
  border-radius: 20px;
  border: 1px solid rgba(212,168,83,0.25);
  box-shadow: 0 40px 120px rgba(0,0,0,0.8), 0 0 60px rgba(212,168,83,0.08);
  padding: 36px 32px 28px;
}
.pay-popup-close {
  position: absolute;
  top: 14px; right: 14px;
  width: 40px; height: 40px;
  background: var(--gold);
  border: none;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 0 16px rgba(212,168,83,0.4);
}
.pay-popup-close:hover {
  background: var(--gold-light);
  transform: scale(1.1);
}
.pay-popup-close svg {
  width: 16px; height: 16px;
  stroke: var(--olive-deep); fill: none;
  stroke-width: 2.5; stroke-linecap: round;
}
.pay-popup-title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  color: var(--cream);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 6px;
}
.pay-popup-tariff {
  font-family: var(--font-cursive);
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 28px;
}
.pay-methods {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
}
.pay-method {
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 18px 20px;
  transition: border-color 0.3s;
}
.pay-method:hover { border-color: var(--border-hover); }
.pay-method-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}
.pay-method-icon {
  width: 40px; height: 40px;
  flex-shrink: 0;
  background: rgba(212,168,83,0.08);
  border: 1px solid rgba(212,168,83,0.2);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.pay-method-icon svg { width: 22px; height: 22px; }
.pay-method-icon.kaspi-icon { background: rgba(239,70,53,0.08); border-color: rgba(239,70,53,0.2); }
.pay-method-name {
  font-family: var(--font-elegant);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--cream);
}
.pay-method-note {
  font-size: 0.86rem;
  color: var(--cream-muted);
  font-family: var(--font-elegant);
  margin-bottom: 10px;
  line-height: 1.5;
}
.pay-method-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}
.pay-method-label {
  font-size: 0.86rem;
  color: var(--cream-muted);
  font-family: var(--font-elegant);
  white-space: nowrap;
}
.pay-method-value {
  font-size: 0.85rem;
  color: var(--cream);
  font-family: var(--font-body);
  font-weight: 500;
  word-break: break-all;
}
.pay-copy-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  border-radius: 6px;
  transition: all 0.2s;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.pay-copy-btn:hover { background: rgba(212,168,83,0.15); }
.pay-copy-btn svg {
  width: 16px; height: 16px;
  stroke: var(--gold); fill: none;
  stroke-width: 2; stroke-linecap: round; stroke-linejoin: round;
}
.pay-copy-btn.copied svg { stroke: #4CAF50; }
.pay-method .cta-btn {
  display: inline-flex;
  margin-top: 8px;
  font-size: 0.86rem;
  padding: 10px 24px;
}
.pay-footer-note {
  text-align: center;
  font-family: var(--font-elegant);
  font-size: 0.86rem;
  color: var(--cream-muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.pay-footer-note a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pay-footer-note a:hover { color: var(--gold-light); }

.pay-no-method {
  text-align: center;
  font-family: var(--font-elegant);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--cream);
  background: rgba(212,168,83,0.08);
  border: 1.5px solid rgba(212,168,83,0.25);
  border-radius: 12px;
  padding: 16px 24px;
  margin-top: 12px;
  margin-bottom: 16px;
  line-height: 1.55;
}
.pay-no-method a {
  color: var(--gold);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.pay-no-method a:hover { color: var(--gold-light); }

.pay-tg-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 20px;
  background: rgba(212,168,83,0.1);
  border: 1px solid rgba(212,168,83,0.3);
  border-radius: 12px;
  color: var(--gold);
  font-family: var(--font-elegant);
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: all 0.3s;
  cursor: pointer;
}
.pay-tg-btn:hover {
  background: rgba(212,168,83,0.2);
  border-color: var(--gold);
}
.pay-tg-btn svg { width: 20px; height: 20px; fill: var(--gold); }

/* ===== PAY CONSENT OVERLAY ===== */
.pay-consent-wrap {
  position: relative;
}
.pay-consent-overlay {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 40px;
  background: rgba(23,28,18,0.5);
  border-radius: 14px;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.pay-consent-overlay.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}
.pay-consent-box {
  background: rgba(23,28,18,0.97);
  border: 1.5px solid rgba(212,168,83,0.35);
  border-radius: 16px;
  padding: 28px 32px;
  text-align: center;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.5);
}
.pay-consent-text {
  font-family: var(--font-elegant);
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 20px;
  line-height: 1.55;
}
.pay-consent-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-elegant);
  font-size: 0.88rem;
  color: var(--cream-dim);
  line-height: 1.5;
}
.pay-consent-label a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.pay-consent-label a:hover { color: var(--gold-light); }
.pay-consent-check {
  display: none;
}
.pay-consent-checkmark {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  border: 1.5px solid rgba(212,168,83,0.5);
  border-radius: 5px;
  background: rgba(212,168,83,0.05);
  position: relative;
  transition: all 0.3s ease;
  margin-top: 1px;
}
.pay-consent-check:checked + .pay-consent-checkmark {
  background: var(--gold);
  border-color: var(--gold);
}
.pay-consent-check:checked + .pay-consent-checkmark::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid var(--olive-deep);
  border-width: 0 2.5px 2.5px 0;
  transform: rotate(45deg);
}

/* Blurred content */
.pay-content-blur {
  filter: blur(4px);
  opacity: 0.4;
  pointer-events: none;
  transition: filter 0.4s ease, opacity 0.4s ease;
}
.pay-content-blur.unlocked {
  filter: blur(0);
  opacity: 1;
  pointer-events: auto;
}

/* Disclaimer */
.pay-disclaimer {
  text-align: center;
  font-family: var(--font-elegant);
  font-size: 0.85rem;
  color: var(--cream-muted);
  margin-top: 16px;
  opacity: 0.7;
  line-height: 1.5;
}
.pay-disclaimer a {
  color: var(--gold);
  text-decoration: underline;
  text-underline-offset: 2px;
  opacity: 0.8;
}
.pay-disclaimer a:hover { opacity: 1; }

@media (max-width: 450px) {
  .pay-popup-inner { padding: 28px 18px 22px; }
  .pay-popup-title { font-size: 1.1rem; }
  .pay-popup-tariff { font-size: 1.3rem; }
  .pay-method { padding: 14px 14px; }
  .pay-method-value { font-size: 0.88rem; }
  .pay-method-note { font-size: 0.88rem; }
  .pay-method-label { font-size: 0.88rem; }
  .pay-method-name { font-size: 1.05rem; }
  .pay-footer-note { font-size: 0.88rem; }
  .pay-disclaimer { font-size: 0.85rem; }
  .pay-methods { grid-template-columns: 1fr; }
  .pay-consent-text { font-size: 0.95rem; }
  .pay-consent-label { font-size: 0.88rem; }
}
