/* =============================================================
   1JJ Game — Premium Royal Blue + Luxury Gold (Light Mode)
   Design System / Global Stylesheet
   Vanilla CSS3 · Mobile-first · No frameworks
   ============================================================= */

/* ---------- 1. DESIGN TOKENS ---------- */
:root {
  /* Royal blue palette */
  --royal-900: #0A1F52;
  --royal-800: #0F2A6B;
  --royal-700: #163688;
  --royal-600: #1E3FA0;
  --royal-500: #2B54C4;
  --royal-400: #4E74DF;
  --royal-100: #E6ECFB;
  --royal-50:  #F1F5FE;

  /* Luxury gold palette */
  --gold-900: #8A6D18;
  --gold-700: #B8912A;
  --gold-600: #C9A227;
  --gold-500: #D4AF37;
  --gold-400: #E4C563;
  --gold-200: #F3E4B0;
  --gold-100: #FBF4DD;

  /* Neutrals / light backgrounds */
  --ivory:   #FAFAF8;
  --pearl:   #FFFFFF;
  --mist:    #F4F6FC;
  --cloud:   #EEF1F9;
  --ink:     #12193A;
  --slate:   #43506E;
  --muted:   #6B769A;
  --line:    #E4E8F3;

  /* Gradients */
  --grad-royal:  linear-gradient(135deg, #0F2A6B 0%, #1E3FA0 55%, #2B54C4 100%);
  --grad-royal-deep: linear-gradient(160deg, #0A1F52 0%, #0F2A6B 60%, #163688 100%);
  --grad-gold:   linear-gradient(135deg, #B8912A 0%, #D4AF37 30%, #F3E4B0 50%, #D4AF37 70%, #B8912A 100%);
  --grad-gold-soft: linear-gradient(135deg, #E4C563 0%, #D4AF37 50%, #C9A227 100%);
  --grad-sheen:  linear-gradient(115deg, transparent 25%, rgba(255,255,255,.55) 50%, transparent 75%);

  /* Typography */
  --font-display: 'Playfair Display', 'Georgia', serif;
  --font-body: 'Plus Jakarta Sans', 'Segoe UI', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --sh-sm:  0 2px 8px rgba(15,42,107,.06);
  --sh-md:  0 10px 30px rgba(15,42,107,.10);
  --sh-lg:  0 24px 60px rgba(15,42,107,.16);
  --sh-gold: 0 10px 30px rgba(201,162,39,.28);
  --sh-royal: 0 18px 44px rgba(15,42,107,.30);

  /* Radii */
  --r-sm: 10px;
  --r-md: 16px;
  --r-lg: 24px;
  --r-xl: 32px;
  --r-pill: 999px;

  /* Layout */
  --container: 1180px;
  --gutter: clamp(1.15rem, 5vw, 4.5rem); /* extra blank space left & right */
  --section-y: clamp(3.75rem, 8vw, 7rem);

  /* Motion */
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease-out: cubic-bezier(.16,1,.3,1);
}

/* ---------- 2. RESET / BASE ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; overflow-x: hidden; }
body {
  font-family: var(--font-body);
  color: var(--slate);
  background: var(--ivory);
  line-height: 1.7;
  font-size: 1rem;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  max-width: 100%;
}
img, svg, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
:focus-visible { outline: 3px solid var(--royal-400); outline-offset: 3px; border-radius: 4px; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.14;
  font-weight: 700;
  letter-spacing: -0.01em;
}

/* ---------- 3. LAYOUT HELPERS ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.section { padding-block: var(--section-y); position: relative; }
.section--tint { background: var(--mist); }
.section--royal { background: var(--grad-royal-deep); color: #DCE4F7; }
.section--pearl { background: var(--pearl); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-700);
  padding: .4rem .95rem;
  border-radius: var(--r-pill);
  background: var(--gold-100);
  border: 1px solid var(--gold-200);
}
.section--royal .eyebrow { background: rgba(212,175,55,.12); border-color: rgba(212,175,55,.35); color: var(--gold-400); }

.section-head { max-width: 720px; margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(1.85rem, 4.2vw, 3rem);
  margin: 1rem 0 .85rem;
}
.section-head p { font-size: 1.06rem; color: var(--muted); }
.section--royal .section-head h2 { color: #fff; }
.section--royal .section-head p { color: #B9C6EA; }

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.text-royal { color: var(--royal-600); }

.grid { display: grid; gap: clamp(1.1rem, 2.5vw, 1.75rem); }
.divider-gold {
  width: 74px; height: 4px; border-radius: var(--r-pill);
  background: var(--grad-gold); margin-top: 1.4rem;
}
.section-head.center .divider-gold { margin-inline: auto; }

/* ---------- 4. BUTTONS ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6rem;
  font-family: var(--font-body); font-weight: 700; font-size: 1rem;
  padding: .95rem 1.9rem; border-radius: var(--r-pill);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .3s;
  position: relative; white-space: nowrap; line-height: 1;
}
.btn:active { transform: translateY(1px) scale(.99); }

/* Animated gold gradient border CTA */
.btn-gold {
  color: var(--royal-900);
  background: var(--grad-gold-soft);
  background-size: 200% 200%;
  box-shadow: var(--sh-gold);
  animation: goldFlow 6s ease infinite;
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(201,162,39,.42); }
.btn-gold::after {
  content: ""; position: absolute; inset: 0; border-radius: inherit;
  background: var(--grad-sheen); background-size: 250% 100%;
  opacity: 0; transition: opacity .3s;
}
.btn-gold:hover::after { opacity: 1; animation: sheen 1.1s ease forwards; }
@keyframes goldFlow { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
@keyframes sheen { 0%{background-position:150% 0} 100%{background-position:-150% 0} }

.btn-royal {
  color: #fff; background: var(--grad-royal); box-shadow: var(--sh-royal);
}
.btn-royal:hover { transform: translateY(-3px); box-shadow: 0 24px 54px rgba(15,42,107,.36); }

.btn-outline {
  color: var(--royal-700); background: #fff;
  border: 1.5px solid var(--royal-100); box-shadow: var(--sh-sm);
}
.btn-outline:hover { border-color: var(--gold-500); color: var(--royal-800); transform: translateY(-2px); }

.btn-lg { padding: 1.1rem 2.4rem; font-size: 1.08rem; }
.btn-block { width: 100%; }

/* Telegram button with real brand look */
.btn-telegram {
  color: #fff;
  background: linear-gradient(135deg, #2AABEE 0%, #229ED9 100%);
  box-shadow: 0 12px 30px rgba(34,158,217,.34);
}
.btn-telegram:hover { transform: translateY(-3px); box-shadow: 0 18px 40px rgba(34,158,217,.45); }
.btn-telegram svg { width: 22px; height: 22px; }

/* CTA cluster below hero buttons */
.cta-cluster { display: flex; flex-wrap: wrap; gap: .9rem; align-items: center; }

/* ---------- 5. BRAND / HEADER ---------- */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, background .3s, padding .3s;
}
.site-header.scrolled { box-shadow: var(--sh-md); background: rgba(255,255,255,.95); }
.nav {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.25rem; height: 74px;
}

/* Brand mark — logo used as-is (transparent PNG), no background container */
.brand { display: inline-flex; align-items: center; }
.brand-chip {
  display: inline-flex; align-items: center; justify-content: center;
  transition: transform .3s var(--ease), filter .3s;
}
.brand-chip img {
  height: 46px; width: auto; display: block;
  filter: drop-shadow(0 3px 8px rgba(15,42,107,.16));
}
.brand:hover .brand-chip { transform: translateY(-2px); }
.brand:hover .brand-chip img { filter: drop-shadow(0 6px 14px rgba(15,42,107,.24)); }

.nav-links { display: none; align-items: center; gap: .35rem; }
.nav-links a {
  font-weight: 600; font-size: .96rem; color: var(--slate);
  padding: .55rem .85rem; border-radius: var(--r-sm); position: relative;
  transition: color .25s, background .25s;
}
.nav-links a:hover { color: var(--royal-700); background: var(--royal-50); }
.nav-links a.active { color: var(--royal-800); }
.nav-links a.active::after {
  content: ""; position: absolute; left: .85rem; right: .85rem; bottom: .28rem; height: 2.5px;
  background: var(--grad-gold); border-radius: var(--r-pill);
}
.nav-actions { display: none; align-items: center; gap: .7rem; }

.nav-toggle {
  display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; border-radius: 10px;
  background: var(--royal-50);
}
.nav-toggle span { width: 22px; height: 2.5px; background: var(--royal-800); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* Mobile drawer */
.mobile-menu {
  position: fixed; inset: 74px 0 0; z-index: 99;
  background: rgba(255,255,255,.98); backdrop-filter: blur(10px);
  padding: 1.5rem var(--gutter) 2.5rem;
  opacity: 0; visibility: hidden; transform: translateY(-14px);
  transition: opacity .3s var(--ease-out), transform .4s var(--ease-out), visibility .4s;
  overflow-y: auto; overflow-x: hidden; display: flex; flex-direction: column; gap: .3rem;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: none; }
.mobile-menu a {
  font-weight: 600; font-size: 1.12rem; color: var(--ink);
  padding: 1rem .5rem; border-bottom: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center;
}
.mobile-menu a.active { color: var(--royal-700); }
.mobile-menu .btn { margin-top: 1.4rem; }
.mobile-menu .btn + .btn { margin-top: .8rem; }
body.no-scroll { overflow: hidden; }

@media (min-width: 992px) {
  .nav-links, .nav-actions { display: flex; }
  .nav-toggle { display: none; }
}

/* ---------- 6. HERO ---------- */
.hero {
  position: relative; overflow: hidden;
  background:
    radial-gradient(1100px 520px at 82% -8%, rgba(212,175,55,.14), transparent 60%),
    radial-gradient(900px 500px at 8% 4%, rgba(43,84,196,.12), transparent 55%),
    linear-gradient(180deg, #FFFFFF 0%, #F4F6FC 100%);
  padding-block: clamp(2.5rem, 6vw, 4.5rem) clamp(3rem, 7vw, 5.5rem);
}
.hero-grid {
  display: grid; gap: clamp(2rem, 5vw, 3.5rem); align-items: center;
  grid-template-columns: 1fr;
}
.hero-copy { max-width: 620px; }
.hero h1 {
  font-size: clamp(2.35rem, 6.2vw, 4rem); margin: 1.15rem 0 1.1rem; line-height: 1.06;
}
.hero h1 .gold-text { display: inline-block; }
.hero-lead { font-size: clamp(1.05rem, 2.4vw, 1.22rem); color: var(--slate); max-width: 33em; }
.hero .cta-cluster { margin-top: 1.9rem; }

/* Bonus badge in hero */
.bonus-badge {
  display: inline-flex; align-items: center; gap: .8rem;
  background: #fff; border: 1px solid var(--gold-200);
  padding: .7rem 1.1rem .7rem .8rem; border-radius: var(--r-pill);
  box-shadow: var(--sh-md); font-weight: 700; color: var(--ink);
}
.bonus-badge .pill {
  background: var(--grad-gold); color: var(--royal-900); font-weight: 800;
  padding: .35rem .8rem; border-radius: var(--r-pill); font-size: .92rem;
}
.bonus-badge small { display: block; font-size: .72rem; font-weight: 600; color: var(--muted); letter-spacing: .04em; text-transform: uppercase; }

/* Hero mini trust row */
.hero-trust { display: flex; flex-wrap: wrap; gap: 1.5rem; margin-top: 2.1rem; }
.hero-trust li { display: flex; align-items: center; gap: .55rem; font-weight: 600; font-size: .92rem; color: var(--slate); }
.hero-trust svg { width: 20px; height: 20px; color: var(--gold-600); flex: none; }

/* ---------- 7. PHONE MOCKUP ---------- */
.mockup-stage {
  position: relative; display: flex; justify-content: center; align-items: center;
  perspective: 1400px; padding: 1rem;
}
.mockup-glow {
  position: absolute; width: 78%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(43,84,196,.20), transparent 62%);
  filter: blur(14px); z-index: 0;
}
.phone {
  position: relative; z-index: 2;
  width: clamp(240px, 66vw, 320px);
  aspect-ratio: 300 / 610;
  background: linear-gradient(150deg, #10152C, #232B4A);
  border-radius: 42px; padding: 12px;
  box-shadow:
    0 40px 80px rgba(15,42,107,.32),
    inset 0 0 0 2px rgba(212,175,55,.55),
    inset 0 0 0 7px #0B1024;
  animation: floatY 6s var(--ease) infinite;
  transform: rotateY(-9deg) rotateX(3deg);
}
.phone::before { /* notch */
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 34%; height: 22px; background: #0B1024; border-radius: 0 0 14px 14px; z-index: 3;
}
.phone-screen {
  width: 100%; height: 100%; border-radius: 32px; overflow: hidden;
  background: #fff; position: relative;
}
.phone-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
@keyframes floatY { 0%,100%{ transform: rotateY(-9deg) rotateX(3deg) translateY(0);} 50%{ transform: rotateY(-9deg) rotateX(3deg) translateY(-16px);} }

/* Floating accent chips around phone */
.float-chip {
  position: absolute; z-index: 4;
  background: #fff; border-radius: var(--r-md); padding: .7rem .95rem;
  box-shadow: var(--sh-lg); display: flex; align-items: center; gap: .6rem;
  font-weight: 700; font-size: .84rem; color: var(--ink);
  border: 1px solid var(--line);
}
.float-chip .ico {
  width: 34px; height: 34px; border-radius: 10px; display: grid; place-items: center; flex: none;
  background: var(--gold-100); color: var(--gold-700);
}
.float-chip .ico.blue { background: var(--royal-50); color: var(--royal-600); }
.float-chip small { display: block; font-weight: 600; font-size: .68rem; color: var(--muted); text-transform: uppercase; letter-spacing: .04em; }
.float-chip.c1 { top: 12%; left: 0; animation: floatY 5s var(--ease) infinite; }
.float-chip.c2 { bottom: 16%; right: 0; animation: floatY 6.5s var(--ease) infinite reverse; }
.float-chip.c3 { bottom: 4%; left: 6%; animation: floatY 5.6s var(--ease) infinite .4s; }
@media (min-width: 992px) {
  .float-chip.c1 { left: -6%; }
  .float-chip.c2 { right: -8%; }
}

@media (min-width: 992px) {
  .hero-grid { grid-template-columns: minmax(0,1.05fr) minmax(0,.95fr); }
  .phone { width: clamp(280px, 24vw, 340px); }
}
@media (prefers-reduced-motion: reduce) {
  .phone, .float-chip, .btn-gold { animation: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- 8. STAT STRIP ---------- */
.stats-strip {
  display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 1px;
  background: var(--line); border-radius: var(--r-lg); overflow: hidden;
  box-shadow: var(--sh-md);
}
.stat {
  background: #fff; padding: 1.7rem 1.25rem; text-align: center;
}
.stat .num { font-family: var(--font-display); font-size: clamp(1.45rem,4.5vw,2.6rem); font-weight: 800; color: var(--royal-700); line-height: 1; white-space: nowrap; }
.stat .num .gold-text { font-weight: 800; }
.stat .lbl { margin-top: .5rem; font-weight: 600; font-size: .9rem; color: var(--muted); }
@media (min-width: 768px) { .stats-strip { grid-template-columns: repeat(4, minmax(0,1fr)); } }

/* ---------- 9. CARDS (glassmorphism + gold border) ---------- */
.card {
  background: #fff; border-radius: var(--r-lg); padding: 1.9rem;
  border: 1px solid var(--line); box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s, border-color .4s;
  position: relative; height: 100%;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); border-color: var(--gold-200); }
.card .card-ico {
  width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center;
  background: var(--grad-royal); color: var(--gold-400); margin-bottom: 1.15rem;
  box-shadow: var(--sh-royal);
}
.card .card-ico svg { width: 28px; height: 28px; }
.card h3 { font-size: 1.28rem; margin-bottom: .55rem; }
.card p { color: var(--muted); font-size: .98rem; }

.cards-grid { grid-template-columns: 1fr; }
@media (min-width: 640px) { .cards-grid { grid-template-columns: repeat(2, minmax(0,1fr)); } }
@media (min-width: 992px) { .cards-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }

/* Glass card variant on royal sections */
.glass-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(212,175,55,.30);
  backdrop-filter: blur(10px); border-radius: var(--r-lg); padding: 1.8rem; color: #DCE4F7;
  transition: transform .4s var(--ease), border-color .4s, background .4s;
  height: 100%;
}
.glass-card:hover { transform: translateY(-6px); border-color: var(--gold-500); background: rgba(255,255,255,.1); }
.glass-card h3 { color: #fff; }
.glass-card p { color: #B9C6EA; }

/* ---------- 10. GAMES GRID ---------- */
.filter-bar { display: flex; flex-wrap: wrap; gap: .6rem; justify-content: center; margin-bottom: 2.4rem; }
.filter-btn {
  font-weight: 600; font-size: .9rem; color: var(--slate);
  padding: .6rem 1.25rem; border-radius: var(--r-pill);
  background: #fff; border: 1px solid var(--line); transition: all .25s;
}
.filter-btn:hover { border-color: var(--gold-400); color: var(--royal-700); }
.filter-btn.active { background: var(--grad-royal); color: #fff; border-color: transparent; box-shadow: var(--sh-royal); }

.games-grid {
  display: grid; gap: clamp(.85rem, 2vw, 1.35rem);
  grid-template-columns: repeat(2, minmax(0,1fr));
}
@media (min-width: 560px) { .games-grid { grid-template-columns: repeat(3, minmax(0,1fr)); } }
@media (min-width: 860px) { .games-grid { grid-template-columns: repeat(4, minmax(0,1fr)); } }
@media (min-width: 1080px) { .games-grid { grid-template-columns: repeat(5, minmax(0,1fr)); } }

.game-card {
  position: relative; display: block; border-radius: var(--r-md); overflow: hidden;
  background: #0B1024; box-shadow: var(--sh-sm); border: 1px solid var(--line);
  transition: transform .4s var(--ease), box-shadow .4s;
  aspect-ratio: 3/4;
}
.game-card img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s var(--ease); }
.game-card:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.game-card:hover img { transform: scale(1.08); }
.game-tag {
  position: absolute; top: .55rem; left: .55rem; z-index: 3;
  font-size: .62rem; font-weight: 800; letter-spacing: .05em; text-transform: uppercase;
  padding: .28rem .55rem; border-radius: var(--r-pill);
  background: var(--grad-gold); color: var(--royal-900); box-shadow: var(--sh-sm);
}
.game-overlay {
  position: absolute; inset: 0; z-index: 2;
  background: linear-gradient(to top, rgba(10,16,36,.94) 6%, rgba(10,16,36,.35) 46%, transparent 70%);
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: .85rem; opacity: 1; transition: opacity .35s;
}
.game-overlay .name { color: #fff; font-weight: 700; font-size: .92rem; font-family: var(--font-display); line-height: 1.2; }
.game-overlay .meta { color: var(--gold-400); font-size: .72rem; font-weight: 600; margin-top: .15rem; }
.game-play {
  position: absolute; inset: 0; z-index: 4; display: grid; place-items: center;
  opacity: 0; transition: opacity .35s; background: rgba(15,42,107,.42); backdrop-filter: blur(2px);
}
.game-card:hover .game-play { opacity: 1; }
.game-play span {
  display: inline-flex; align-items: center; gap: .4rem;
  background: var(--grad-gold); color: var(--royal-900); font-weight: 800; font-size: .82rem;
  padding: .6rem 1.1rem; border-radius: var(--r-pill); box-shadow: var(--sh-gold);
  transform: translateY(8px); transition: transform .35s;
}
.game-card:hover .game-play span { transform: translateY(0); }

/* ---------- 11. OG BANNER SECTION ---------- */
.og-banner {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg); border: 2px solid var(--gold-200);
}
.og-banner img { width: 100%; height: auto; display: block; }
.og-banner::after {
  content: ""; position: absolute; inset: 0; pointer-events: none;
  background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,.35) 50%, transparent 70%);
  background-size: 250% 100%; animation: sheen 4.5s ease-in-out infinite;
}
.og-cta { text-align: center; margin-top: 2rem; }

/* ---------- 12. SCREENSHOT SLIDER ---------- */
.shots {
  position: relative; overflow: hidden; padding: .5rem 0 1rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.shots-track { display: flex; gap: 1.4rem; width: max-content; animation: slideX 34s linear infinite; }
.shots:hover .shots-track { animation-play-state: paused; }
.shot {
  flex: none; width: clamp(200px, 60vw, 260px);
  border-radius: 28px; overflow: hidden;
  background: linear-gradient(150deg,#10152C,#232B4A); padding: 9px;
  box-shadow: var(--sh-lg); border: 1px solid rgba(212,175,55,.4);
}
.shot img { border-radius: 20px; width: 100%; height: auto; }
@keyframes slideX { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }

/* Manual carousel (featured) */
.carousel { position: relative; }
.carousel-viewport { overflow: hidden; }
.carousel-track { display: flex; gap: 1.35rem; transition: transform .55s var(--ease-out); }
.carousel-controls { display: flex; gap: .6rem; justify-content: center; margin-top: 1.8rem; }
.carousel-btn {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: #fff; border: 1px solid var(--line); box-shadow: var(--sh-sm); color: var(--royal-700);
  transition: all .25s;
}
.carousel-btn:hover { background: var(--grad-royal); color: #fff; transform: translateY(-2px); }

/* ---------- 13. STEPS (download) ---------- */
.steps { display: grid; gap: 1.4rem; counter-reset: step; }
@media (min-width: 768px) { .steps { grid-template-columns: repeat(2, minmax(0,1fr)); } }
.step {
  position: relative; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 2rem 1.9rem 1.9rem; box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step::before {
  counter-increment: step; content: counter(step,decimal-leading-zero);
  font-family: var(--font-display); font-weight: 800; font-size: 1.15rem;
  position: absolute; top: -22px; left: 1.9rem;
  width: 52px; height: 52px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-royal); color: var(--gold-400); box-shadow: var(--sh-royal);
}
.step h3 { font-size: 1.2rem; margin: 1rem 0 .5rem; }
.step p { color: var(--muted); font-size: .97rem; }

/* ---------- 14. FEATURE / SPLIT ---------- */
.split { display: grid; gap: clamp(2rem,5vw,4rem); align-items: center; grid-template-columns: 1fr; }
@media (min-width: 900px) { .split { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } .split.reverse .split-media { order: 2; } }
.split-media { position: relative; }
.media-frame {
  border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-lg);
  border: 1px solid var(--line); background: #fff;
}
.check-list li { display: flex; gap: .8rem; align-items: flex-start; margin-bottom: 1rem; color: var(--slate); }
.check-list li b { color: var(--ink); }
.check-list .tick {
  flex: none; width: 26px; height: 26px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-gold); color: var(--royal-900); margin-top: 2px;
}
.check-list .tick svg { width: 15px; height: 15px; }

/* ---------- 15. TESTIMONIALS ---------- */
.quote-card {
  background: #fff; border-radius: var(--r-lg); padding: 2rem 1.9rem;
  border: 1px solid var(--line); box-shadow: var(--sh-sm); height: 100%;
  transition: transform .4s var(--ease), box-shadow .4s;
}
.quote-card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.stars { color: var(--gold-500); letter-spacing: 2px; margin-bottom: .9rem; font-size: 1.05rem; }
.quote-card p { color: var(--slate); font-size: 1rem; }
.quote-who { display: flex; align-items: center; gap: .8rem; margin-top: 1.4rem; }
.avatar {
  width: 46px; height: 46px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-royal); color: #fff; font-weight: 700; font-family: var(--font-display); flex: none;
}
.quote-who .who-name { font-weight: 700; color: var(--ink); font-size: .95rem; }
.quote-who .who-loc { font-size: .82rem; color: var(--muted); }

/* ---------- 16. TELEGRAM CTA BLOCK ---------- */
.tg-cta {
  background: var(--grad-royal-deep); border-radius: var(--r-xl); overflow: hidden;
  position: relative; padding: clamp(2.5rem,6vw,4rem); text-align: center; color: #DCE4F7;
  box-shadow: var(--sh-lg);
}
.tg-cta::before {
  content: ""; position: absolute; inset: 0; opacity: .5;
  background: radial-gradient(600px 260px at 20% 0%, rgba(212,175,55,.22), transparent 60%),
              radial-gradient(600px 260px at 90% 100%, rgba(43,84,196,.4), transparent 60%);
}
.tg-cta > * { position: relative; z-index: 2; }
.tg-cta h2 { color: #fff; font-size: clamp(1.7rem,4vw,2.6rem); margin-bottom: .8rem; }
.tg-cta p { color: #B9C6EA; max-width: 620px; margin: 0 auto 2rem; }
.tg-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- 17. FAQ ACCORDION ---------- */
.faq { max-width: 840px; margin-inline: auto; display: grid; gap: 1rem; }
.faq-item {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md);
  overflow: hidden; box-shadow: var(--sh-sm); transition: border-color .3s, box-shadow .3s;
}
.faq-item.open { border-color: var(--gold-200); box-shadow: var(--sh-md); }
.faq-q {
  width: 100%; text-align: left; display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  padding: 1.25rem 1.5rem; font-weight: 700; color: var(--ink); font-size: 1.05rem;
}
.faq-q .icon { flex: none; width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center;
  background: var(--royal-50); color: var(--royal-700); transition: transform .35s, background .3s, color .3s; font-size: 1.3rem; line-height: 1; }
.faq-item.open .faq-q .icon { transform: rotate(45deg); background: var(--grad-gold); color: var(--royal-900); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.faq-a-inner { padding: 0 1.5rem 1.4rem; color: var(--muted); }

/* ---------- 18. CONTACT ---------- */
.contact-grid { display: grid; gap: clamp(1.5rem,4vw,2.5rem); grid-template-columns: 1fr; }
@media (min-width: 900px) { .contact-grid { grid-template-columns: minmax(0,1.15fr) minmax(0,.85fr); } }
.form-card { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); padding: clamp(1.6rem,3vw,2.4rem); box-shadow: var(--sh-md); }
.field { margin-bottom: 1.15rem; }
.field label { display: block; font-weight: 600; font-size: .9rem; color: var(--ink); margin-bottom: .45rem; }
.field input, .field textarea, .field select {
  width: 100%; padding: .85rem 1rem; border-radius: var(--r-sm); border: 1.5px solid var(--line);
  background: var(--mist); color: var(--ink); transition: border-color .25s, background .25s, box-shadow .25s;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; border-color: var(--royal-400); background: #fff; box-shadow: 0 0 0 4px rgba(43,84,196,.12);
}
.field textarea { min-height: 140px; resize: vertical; }
.form-note { font-size: .82rem; color: var(--muted); margin-top: .3rem; }
.form-success { display: none; padding: 1rem 1.2rem; border-radius: var(--r-sm); background: var(--gold-100); border: 1px solid var(--gold-200); color: var(--gold-900); font-weight: 600; margin-bottom: 1.2rem; }
.form-success.show { display: block; }

.channel {
  display: flex; gap: 1rem; align-items: flex-start; background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 1.4rem; box-shadow: var(--sh-sm); transition: transform .35s, box-shadow .35s, border-color .35s;
}
.channel:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--gold-200); }
.channel .chico {
  width: 50px; height: 50px; border-radius: 14px; display: grid; place-items: center; flex: none;
  background: linear-gradient(135deg,#2AABEE,#229ED9); color: #fff;
}
.channel h3 { font-size: 1.1rem; margin-bottom: .25rem; }
.channel p { font-size: .92rem; color: var(--muted); margin-bottom: .6rem; }
.channel a.tg-link { font-weight: 700; color: #229ED9; display: inline-flex; align-items: center; gap: .35rem; }

/* ---------- 19. PAGE HERO (inner pages) ---------- */
.page-hero {
  position: relative; overflow: hidden; text-align: center;
  background:
    radial-gradient(800px 400px at 50% -20%, rgba(212,175,55,.16), transparent 60%),
    var(--grad-royal-deep);
  color: #DCE4F7; padding-block: clamp(3.5rem,8vw,6rem);
}
.page-hero::after {
  content:""; position:absolute; inset:0; opacity:.4;
  background: radial-gradient(500px 260px at 12% 120%, rgba(43,84,196,.6), transparent 60%);
}
.page-hero > .container { position: relative; z-index: 2; }
.page-hero h1 { color: #fff; font-size: clamp(2.1rem,5.4vw,3.6rem); margin: 1rem 0 1rem; }
.page-hero p { color: #C3CFEE; max-width: 660px; margin-inline: auto; font-size: 1.08rem; }
.breadcrumb { font-size: .85rem; color: var(--gold-400); font-weight: 600; letter-spacing: .04em; }
.breadcrumb a:hover { color: #fff; }

/* ---------- 20. PROSE (legal / long-form) ---------- */
.prose { max-width: 820px; margin-inline: auto; }
.prose h2 { font-size: clamp(1.5rem,3.4vw,2.1rem); margin: 2.6rem 0 1rem; }
.prose h3 { font-size: 1.25rem; margin: 1.8rem 0 .7rem; color: var(--royal-800); font-family: var(--font-display); }
.prose p, .prose li { color: var(--slate); font-size: 1.02rem; margin-bottom: 1rem; }
.prose ul { margin: 0 0 1.4rem; }
.prose ul li { position: relative; padding-left: 1.6rem; }
.prose ul li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; border-radius: 2px; background: var(--grad-gold); transform: rotate(45deg); }
.prose a { color: var(--royal-600); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
.prose .lead { font-size: 1.15rem; color: var(--ink); }
.toc {
  background: var(--mist); border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 1.4rem 1.6rem; margin-bottom: 2.4rem;
}
.toc h4 { font-family: var(--font-body); font-size: .8rem; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); margin-bottom: .8rem; }
.toc ol { padding-left: 1.2rem; color: var(--royal-700); }
.toc ol li { margin-bottom: .45rem; }
.toc a { font-weight: 600; }

/* ---------- 21. INFO / CALLOUT ---------- */
.callout {
  border-left: 4px solid var(--gold-500); background: var(--gold-100);
  border-radius: 0 var(--r-md) var(--r-md) 0; padding: 1.3rem 1.6rem; margin: 1.8rem 0;
}
.callout strong { color: var(--gold-900); }
.callout.royal { border-color: var(--royal-500); background: var(--royal-50); }
.callout.royal strong { color: var(--royal-800); }

/* Pill list / keyword feel */
.pill-row { display: flex; flex-wrap: wrap; gap: .5rem; }
.pill-row .pill {
  font-size: .82rem; font-weight: 600; color: var(--royal-700);
  background: #fff; border: 1px solid var(--line); padding: .4rem .85rem; border-radius: var(--r-pill);
}

/* Two-col benefit list */
.benefit-grid { display: grid; gap: 1.1rem; grid-template-columns: 1fr; }
@media (min-width: 700px) { .benefit-grid { grid-template-columns: minmax(0,1fr) minmax(0,1fr); } }
.benefit {
  display: flex; gap: .95rem; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-md); padding: 1.3rem; box-shadow: var(--sh-sm);
  transition: transform .35s, box-shadow .35s;
}
.benefit:hover { transform: translateY(-4px); box-shadow: var(--sh-md); }
.benefit .b-ico { flex: none; width: 44px; height: 44px; border-radius: 12px; display: grid; place-items: center; background: var(--gold-100); color: var(--gold-700); }
.benefit h4 { font-family: var(--font-display); font-size: 1.08rem; margin-bottom: .3rem; color: var(--ink); }
.benefit p { font-size: .92rem; color: var(--muted); }

/* ---------- 22. FOOTER ---------- */
.site-footer { background: var(--grad-royal-deep); color: #B9C6EA; padding-top: clamp(3rem,6vw,4.5rem); position: relative; }
.site-footer::before { content:""; position:absolute; top:0; left:0; right:0; height:3px; background: var(--grad-gold); }
.footer-top { display: grid; gap: 2.4rem; grid-template-columns: 1fr; padding-bottom: 2.8rem; }
@media (min-width: 700px) { .footer-top { grid-template-columns: minmax(0,1.4fr) minmax(0,1fr) minmax(0,1fr); } }
@media (min-width: 992px) { .footer-top { grid-template-columns: minmax(0,1.6fr) minmax(0,1fr) minmax(0,1fr) minmax(0,1.2fr); } }
.footer-brand .brand-chip { margin-bottom: 1.2rem; }
.footer-brand .brand-chip img { height: 52px; filter: drop-shadow(0 4px 10px rgba(0,0,0,.35)); }
.footer-brand p { color: #96A5CE; font-size: .95rem; max-width: 32ch; }
.footer-social { display: flex; gap: .7rem; margin-top: 1.3rem; }
.footer-social a {
  width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center;
  background: rgba(255,255,255,.06); color: #DCE4F7; border: 1px solid rgba(212,175,55,.25); transition: all .3s;
}
.footer-social a:hover { background: var(--grad-gold); color: var(--royal-900); transform: translateY(-3px); }
.footer-col h4 { color: #fff; font-family: var(--font-body); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; margin-bottom: 1.1rem; }
.footer-col ul li { margin-bottom: .7rem; }
.footer-col a { color: #A9B7DD; font-size: .95rem; transition: color .25s, padding .25s; }
.footer-col a:hover { color: var(--gold-400); padding-left: 4px; }
.footer-badges { display: flex; flex-wrap: wrap; gap: .6rem; }
.footer-badges .fb { display: inline-flex; align-items: center; gap: .4rem; font-size: .78rem; font-weight: 600; color: #DCE4F7;
  background: rgba(255,255,255,.05); border: 1px solid rgba(212,175,55,.22); padding: .45rem .75rem; border-radius: var(--r-pill); }
.footer-badges .fb svg { width: 15px; height: 15px; color: var(--gold-400); }

.age-tag { display: inline-flex; align-items: center; justify-content: center; min-width: 40px; height: 40px; padding: 0 8px; border-radius: 10px;
  background: #C0392B; color: #fff; font-weight: 800; font-size: .85rem; flex: none; }

.footer-disclaimer {
  border-top: 1px solid rgba(255,255,255,.08); padding: 2rem 0;
  font-size: .86rem; color: #8FA0CA; line-height: 1.75;
}
.footer-disclaimer .disc-inner { display: flex; gap: 1rem; align-items: flex-start; flex-wrap: wrap; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08); padding: 1.5rem 0 2.2rem;
  display: flex; flex-wrap: wrap; gap: 1rem; justify-content: space-between; align-items: center;
  font-size: .85rem; color: #8FA0CA;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 1.2rem; }
.footer-bottom a:hover { color: var(--gold-400); }

/* ---------- 23. SCROLL REVEAL ---------- */
[data-reveal] { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease-out), transform .7s var(--ease-out); will-change: opacity, transform; }
[data-reveal].in { opacity: 1; transform: none; }
[data-reveal].d1 { transition-delay: .08s; }
[data-reveal].d2 { transition-delay: .16s; }
[data-reveal].d3 { transition-delay: .24s; }
[data-reveal].d4 { transition-delay: .32s; }
[data-reveal].d5 { transition-delay: .40s; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1 !important; transform: none !important; } }

/* ---------- 24. UTILITIES ---------- */
.text-center { text-align: center; }
.mt-1 { margin-top: .5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.6rem; } .mt-4 { margin-top: 2.4rem; }
.mb-0 { margin-bottom: 0; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.hide-sm { display: none; }
@media (min-width: 768px) { .hide-sm { display: initial; } }
.narrow { max-width: 760px; margin-inline: auto; }

/* Back-to-top */
.to-top {
  position: fixed; right: 20px; bottom: 20px; z-index: 90;
  width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center;
  background: var(--grad-royal); color: var(--gold-400); box-shadow: var(--sh-royal);
  opacity: 0; visibility: hidden; transform: translateY(12px); transition: all .35s;
}
.to-top.show { opacity: 1; visibility: visible; transform: none; }
.to-top:hover { transform: translateY(-3px); }
