/* ═══════════════════════════════════════════════════════════
   H2 Academy — Light · Brand: orange #F07F26 + navy #2C3D5A
   ═══════════════════════════════════════════════════════════ */

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

:root{
  /* Light palette — academy cream + white */
  --bg: #FAF7F2;
  --bg-2: #F1ECE3;
  --surface: #FFFFFF;
  --surface-2: #FBF8F3;
  --ink: #1B2740;       /* deep navy (logo) */
  --ink-2: #2C3D5A;     /* primary navy */
  --muted: #5E6A82;
  --muted-2: #98A0B2;
  --border: rgba(28,39,64,0.08);
  --border-strong: rgba(28,39,64,0.18);
  --hairline: rgba(28,39,64,0.06);

  /* Accents — academy palette */
  --orange: #F07F26;    /* primary brand orange */
  --orange-2: #D86810;  /* deeper hover */
  --orange-3: #FF9B3E;  /* lighter highlight */
  --navy: #2C3D5A;
  --navy-2: #1B2740;
  --pink: #F07F26;      /* alias for legacy uses */
  --violet: #2C3D5A;    /* alias → navy */
  --cyan: #0EA5C7;
  --green: #0F9F6E;
  --gold: #C99A4B;
  --gold-2: #A47832;
  --wa: #25D366;
  --wa-2: #128C7E;

  /* Signature gradient — brand-aligned */
  --grad: linear-gradient(120deg, #F07F26 0%, #FF9B3E 45%, #2C3D5A 100%);
  --grad-warm: linear-gradient(120deg, #F07F26 0%, #FF9B3E 100%);
  --grad-soft: linear-gradient(120deg, rgba(240,127,38,.14) 0%, rgba(44,61,90,.10) 100%);

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(11,11,20,.05);
  --shadow: 0 8px 24px -8px rgba(11,11,20,.12), 0 2px 6px rgba(11,11,20,.06);
  --shadow-lg: 0 28px 60px -24px rgba(11,11,20,.18), 0 8px 24px -12px rgba(11,11,20,.08);
  --shadow-xl: 0 40px 100px -30px rgba(11,11,20,.30), 0 14px 40px -18px rgba(11,11,20,.14);

  /* Type */
  --font-sans: 'IBM Plex Sans Arabic', 'Inter', 'Tahoma', sans-serif;
  --font-serif: 'Instrument Serif', 'Times New Roman', serif;

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

html{ scroll-behavior:smooth; }
body{
  font-family: var(--font-sans);
  background: var(--bg);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  cursor: none;
}

@media (hover: none), (pointer: coarse){
  body{ cursor: auto; }
  .cursor-spotlight, .cursor-dot{ display:none !important; }
}

::selection{ background: var(--ink); color: var(--bg); }

a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; padding: 0; }
img,svg{ display: block; max-width: 100%; }
ul{ margin:0; padding:0; list-style: none; }

.container{
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 48px);
  position: relative;
  z-index: 2;
}

/* ═══════════════════════════════════════════════════════════
   PAGE-ENTER LOADER
   ═══════════════════════════════════════════════════════════ */
.page-enter{
  position: fixed; inset: 0;
  background: var(--bg);
  z-index: 9999;
  pointer-events: none;
  animation: pageEnter 1.2s var(--ease) forwards;
}
.page-enter-bar{
  position: absolute; left: 0; right: 0; bottom: 0;
  height: 3px;
  background: var(--grad);
  transform-origin: right center;
  animation: pageBar 1.0s var(--ease) forwards;
}
@keyframes pageEnter {
  0%   { transform: translateY(0); }
  70%  { transform: translateY(0); }
  100% { transform: translateY(-100%); }
}
@keyframes pageBar {
  0%   { transform: scaleX(0); }
  100% { transform: scaleX(1); }
}

/* ═══════════════════════════════════════════════════════════
   CURSOR
   ═══════════════════════════════════════════════════════════ */
.cursor-spotlight{
  position: fixed;
  top: 0; left: 0;
  width: 520px; height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,34,.18) 0%, rgba(124,58,237,.10) 35%, transparent 65%);
  pointer-events: none;
  z-index: 1;
  transform: translate3d(-50%, -50%, 0);
  mix-blend-mode: multiply;
  transition: opacity .3s ease;
  will-change: transform;
}
.cursor-dot{
  position: fixed;
  top: 0; left: 0;
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--ink);
  pointer-events: none;
  z-index: 99999;
  transform: translate3d(-50%, -50%, 0);
  transition: width .25s var(--ease), height .25s var(--ease), background .25s var(--ease), opacity .25s;
  mix-blend-mode: difference;
  will-change: transform;
}
.cursor-dot.is-hover{
  width: 44px; height: 44px;
  background: var(--bg);
}

/* ═══════════════════════════════════════════════════════════
   SCROLL PROGRESS
   ═══════════════════════════════════════════════════════════ */
.scroll-progress{
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--grad);
  transform-origin: right center;
  transform: scaleX(0);
  z-index: 9998;
  will-change: transform;
}

/* ═══════════════════════════════════════════════════════════
   MESH BACKGROUND
   ═══════════════════════════════════════════════════════════ */
.mesh-bg{
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}
.mesh-bg .blob{
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .55;
  will-change: transform;
}
.blob-1{
  width: 520px; height: 520px;
  top: -180px; right: -120px;
  background: radial-gradient(circle, #FFC799 0%, rgba(255,199,153,0) 70%);
  animation: blobFloat 22s var(--ease) infinite alternate;
}
.blob-2{
  width: 600px; height: 600px;
  top: 30%; left: -200px;
  background: radial-gradient(circle, #BFC7DA 0%, rgba(191,199,218,0) 70%);
  animation: blobFloat 28s var(--ease) infinite alternate-reverse;
}
.blob-3{
  width: 480px; height: 480px;
  bottom: -160px; right: 25%;
  background: radial-gradient(circle, #FFE4C2 0%, rgba(255,228,194,0) 70%);
  animation: blobFloat 32s var(--ease) infinite alternate;
}
@keyframes blobFloat {
  0%   { transform: translate(0, 0) scale(1); }
  50%  { transform: translate(80px, -60px) scale(1.1); }
  100% { transform: translate(-50px, 90px) scale(.95); }
}
.grain{
  position: absolute;
  inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 .08 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
  opacity: .55;
  mix-blend-mode: multiply;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING NAV
   ═══════════════════════════════════════════════════════════ */
.floating-nav{
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px 8px 8px;
  background: rgba(255,255,255,0.78);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 1000;
  max-width: calc(100vw - 24px);
  animation: navEnter 1s var(--ease) .8s both;
}
@keyframes navEnter {
  from { opacity: 0; transform: translateX(-50%) translateY(-20px); }
  to   { opacity: 1; transform: translateX(-50%) translateY(0); }
}
.fn-brand{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px 6px 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
}
.fn-logo{
  width: 30px; height: 30px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 8px;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--bg-2);
}
.fn-logo-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.fn-logo-mark{
  background: transparent;
  border-radius: 0;
  padding: 2px;
}
.fn-logo-mark img{
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.fn-name{ white-space: nowrap; }
.fn-links{
  display: flex;
  align-items: center;
  gap: 4px;
}
.fn-links a{
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--ink-2);
  transition: background .2s, color .2s;
}
.fn-links a:hover{ background: rgba(11,11,20,.06); }
.fn-cta{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 9px 16px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 600;
  white-space: nowrap;
  transition: transform .2s var(--ease), background .2s;
}
.fn-cta:hover{ transform: scale(1.04); background: #000; }

@media (max-width: 760px){
  .fn-name{ display: none; }
  .fn-links{ display: none; }
  .floating-nav{ padding: 6px 8px; gap: 4px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO — H2 Academy (logo + tagline + 200K stat)
   ═══════════════════════════════════════════════════════════ */
.hero-academy{
  padding: 150px 0 90px;
  position: relative;
}

.ha-logo-wrap{
  position: relative;
  display: flex;
  justify-content: center;
  margin: 0 auto 36px;
  width: clamp(220px, 38vw, 420px);
}
.ha-logo{
  position: relative;
  z-index: 2;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 12px 24px rgba(28,39,64,.10));
  animation: logoIn 1.2s var(--ease) .4s both;
}
@keyframes logoIn {
  from { opacity: 0; transform: translateY(20px) scale(.94); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.ha-logo-glow{
  position: absolute;
  inset: -40% -20% -40% -20%;
  z-index: 1;
  background:
    radial-gradient(ellipse at 18% 50%, rgba(240,127,38,.30) 0%, transparent 55%),
    radial-gradient(ellipse at 78% 50%, rgba(44,61,90,.18) 0%, transparent 60%);
  filter: blur(40px);
  opacity: 0;
  animation: glowIn 1.6s var(--ease) .6s forwards, glowPulse 8s ease-in-out 2s infinite;
  pointer-events: none;
}
@keyframes glowIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes glowPulse {
  0%, 100% { transform: scale(1);    opacity: .9; }
  50%      { transform: scale(1.08); opacity: 1;   }
}

.ha-head{
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.ha-head .display-title{
  font-size: clamp(48px, 8.5vw, 120px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 18px 0 22px;
}

/* Stats strip — 200K headline + 3-up sub stats */
.ha-stats{
  margin: 48px auto 24px;
  max-width: 920px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.ha-stat{
  text-align: center;
}
.ha-stat-num{
  display: block;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 1;
  background: var(--grad-warm);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-variant-numeric: tabular-nums;
}
.ha-stat-label{
  display: block;
  margin-top: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
}
.ha-stat-hero{
  padding: 32px 24px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.ha-stat-hero::before{
  content: '';
  position: absolute;
  inset: auto -10% -60% -10%;
  height: 200px;
  background: radial-gradient(ellipse, rgba(240,127,38,.18) 0%, transparent 60%);
  pointer-events: none;
}
.ha-stat-hero .ha-stat-num{
  font-size: clamp(56px, 10vw, 96px);
}
.ha-stat-hero .ha-stat-label{
  font-size: 16px;
  font-weight: 600;
  color: var(--ink-2);
  margin-top: 12px;
}

.ha-stat-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.ha-stat-row .ha-stat{
  padding: 22px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .25s;
}
.ha-stat-row .ha-stat:hover{
  transform: translateY(-3px);
  box-shadow: var(--shadow);
  border-color: var(--border-strong);
}
.ha-stat-row .ha-stat-num{
  font-size: clamp(28px, 5vw, 44px);
}

/* Primary jump-to-courses CTA */
.ha-jump{
  display: inline-flex;
  margin: 28px auto 0;
  align-self: center;
  width: auto;
  min-width: 240px;
}
.ha-head + .ha-stats + .ha-jump,
.ha-stats + .ha-jump{
  margin-left: auto;
  margin-right: auto;
}
.hero-academy .container > .ha-jump{
  display: flex;
}

/* Marquee visibility (desktop accent, hidden on mobile to push courses up) */
.marquee-desktop-only{ display: block; }
@media (max-width: 720px){
  .marquee-desktop-only{ display: none; }
}

/* ─── Mobile-first hero compression ─── */
@media (max-width: 720px){
  .hero-academy{ padding: 100px 0 32px; }
  .ha-logo-wrap{
    width: clamp(160px, 50vw, 220px);
    margin-bottom: 22px;
  }
  .ha-head .display-title{
    font-size: clamp(34px, 9vw, 48px);
    line-height: 1.04;
    margin: 12px 0 14px;
  }
  /* Collapse the 3-word title onto one or two lines to save vertical space */
  .ha-head .display-title .dt-line{ display: inline; margin-inline-end: 6px; }
  .display-sub{ font-size: 14.5px; line-height: 1.55; }
  .kicker{ padding: 5px 12px; font-size: 11.5px; }

  .ha-stats{
    margin: 24px auto 0;
    gap: 12px;
  }
  .ha-stat-hero{
    padding: 18px 18px 16px;
    border-radius: 18px;
  }
  .ha-stat-hero .ha-stat-num{ font-size: clamp(40px, 12vw, 56px); }
  .ha-stat-hero .ha-stat-label{ font-size: 13px; margin-top: 6px; }

  /* Hide the secondary 3-up stats and the marquee on mobile so the
     first paid course peeks above the fold */
  .ha-stat-row{ display: none; }

  .ha-jump{
    margin-top: 22px;
    width: 100%;
    min-width: 0;
    height: 54px;
    padding: 0 22px;
    font-size: 15px;
  }
}

/* ─── Mobile-first: pull the paid courses section closer ─── */
@media (max-width: 720px){
  .section{ padding: 36px 0 56px; }
  .section-head{ margin-bottom: 28px; }
  .section-num{ font-size: 18px; }
  .section-title{ font-size: clamp(28px, 8vw, 40px); }
  .section-sub{ font-size: 14.5px; }
  .pc{ padding: 22px; gap: 12px; }
  .pc-title{ font-size: 19px; }
  .pc-desc{ font-size: 13.5px; }
  .pc-features li{ font-size: 13px; }
  .pc-price{ padding: 12px 0; }
  .pc-price-now{ font-size: 30px; }
  .pc-actions{ gap: 8px; }
  .pc-actions .btn{ height: 44px; font-size: 13.5px; }
}

/* ═══════════════════════════════════════════════════════════
   HERO + SITES SECTION (legacy alias)
   ═══════════════════════════════════════════════════════════ */
.hero-sites{
  padding: 140px 0 80px;
  position: relative;
}

.hero-head{
  max-width: 980px;
  margin: 0 auto 64px;
  text-align: center;
}
.kicker{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 28px;
  box-shadow: var(--shadow-sm);
}
.kicker-dot{
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(255,91,34,.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(255,91,34,.18); }
  50%      { box-shadow: 0 0 0 8px rgba(255,91,34,.06); }
}

.display-title{
  font-family: var(--font-sans);
  font-weight: 700;
  font-size: clamp(56px, 12vw, 168px);
  line-height: 0.96;
  letter-spacing: -0.04em;
  margin: 0 0 24px;
  color: var(--ink);
}
.dt-line{
  display: block;
}
.dt-serif{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.dt-serif em{ font-style: italic; }

/* Split-text reveal */
.split-word{
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}
.split-inner{
  display: inline-block;
  transform: translateY(110%);
  transition: transform .9s var(--ease);
}
.is-revealed .split-inner{ transform: translateY(0); }

.display-sub{
  font-size: clamp(16px, 2vw, 20px);
  color: var(--muted);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.65;
}

/* Reveal animation */
[data-reveal]{
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
[data-reveal].is-revealed{
  opacity: 1;
  transform: translateY(0);
}

/* ─── SITES GRID ─── */
.sites-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  margin-bottom: 80px;
}
@media (max-width: 880px){
  .sites-grid{ grid-template-columns: 1fr; gap: 20px; }
}
/* When a 3rd card is present (e.g. Detective game), let it span both columns
   on desktop so it reads as a featured product callout. */
.sites-grid > .site-card-detective{
  grid-column: 1 / -1;
}
@media (min-width: 881px){
  .sites-grid > .site-card-detective{
    flex-direction: row-reverse;
  }
  .sites-grid > .site-card-detective .sc-visual{
    flex: 0 0 46%;
    aspect-ratio: auto;
    align-self: stretch;
    border-bottom: none;
    border-inline-start: 1px solid var(--border);
  }
  .sites-grid > .site-card-detective .sc-content{
    padding: 40px 36px;
    justify-content: center;
  }
}

/* Detective product card — Secret Detective game */
.site-card-detective .sc-visual{
  background: linear-gradient(135deg, #0F1A2E 0%, #1A2845 50%, #243454 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px;
}
.sc-detective-img{
  max-width: 64%;
  max-height: 76%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 50px rgba(0,0,0,.45));
  transition: transform .6s var(--ease);
  position: relative;
  z-index: 2;
  border-radius: 22px;
}
.site-card-detective:hover .sc-detective-img{
  transform: scale(1.05) rotate(-2deg);
}
.site-card-detective .sc-visual::before{
  content: '';
  position: absolute;
  inset: -20%;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(255,148,38,.18) 0%, transparent 50%),
    radial-gradient(ellipse at 70% 70%, rgba(74,109,176,.20) 0%, transparent 55%);
  pointer-events: none;
  z-index: 1;
}
.site-card-detective .sc-spark{
  background: #FFFFFF;
  box-shadow: 0 0 18px rgba(255,255,255,.7);
  z-index: 3;
}
.site-card-detective .sc-spark-1{ top: 12%;  right: 10%; opacity: .9; }
.site-card-detective .sc-spark-2{ bottom: 18%; left: 14%; width: 7px; height: 7px; opacity: .8; }
.site-card-detective .sc-spark-3{ top: 38%; left: 8%; width: 5px; height: 5px; opacity: .7; }

.sc-badge-product{
  background: linear-gradient(135deg, #1A2845 0%, #324B7D 100%);
  color: #FFFFFF;
}

/* Vidko limited-time deposit-bonus sticker */
.sc-vk-bonus{
  position: absolute;
  z-index: 4;
  top: -10px;
  inset-inline-end: -10px;
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: #FFFFFF;
  padding: 9px 14px 10px;
  border-radius: 14px;
  font-weight: 900;
  font-size: 18px;
  line-height: 1;
  text-align: center;
  box-shadow: 0 14px 28px -8px rgba(234,88,12,.55);
  transform: rotate(8deg);
  animation: emFreePulse 3s ease-in-out infinite;
  letter-spacing: -0.02em;
}
.sc-vk-bonus small{
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  opacity: .94;
  margin-top: 5px;
  white-space: nowrap;
  letter-spacing: 0;
}
@keyframes emFreePulse {
  0%, 100% { transform: rotate(8deg) scale(1); }
  50%      { transform: rotate(8deg) scale(1.06); }
}

.site-card{
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 0;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: box-shadow .5s var(--ease), border-color .3s, transform .4s var(--ease);
  transform-style: preserve-3d;
  will-change: transform;
}
.site-card:hover{
  box-shadow: var(--shadow-xl);
  border-color: var(--border-strong);
}

.sc-visual{
  position: relative;
  aspect-ratio: 16 / 10;
  background: var(--bg-2);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border);
}
.site-card-reelaty .sc-visual{
  background: linear-gradient(135deg, #FFE6DA 0%, #FFD6E8 50%, #E6D5FF 100%);
}
.site-card-vidko .sc-visual{
  background: linear-gradient(135deg, #FFEFE0 0%, #FFD7B5 50%, #FFC299 100%);
}

/* Reelaty phone preview */
.sc-phone{
  position: relative;
  width: 140px;
  height: 240px;
  background: var(--ink);
  border-radius: 24px;
  padding: 6px;
  box-shadow: 0 20px 50px -10px rgba(0,0,0,.35), inset 0 0 0 2px rgba(255,255,255,.05);
  transform: rotate(-6deg) translateY(10px);
  transition: transform .5s var(--ease);
}
.site-card-reelaty:hover .sc-phone{ transform: rotate(-3deg) translateY(0) scale(1.04); }
.sc-phone-screen{
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  overflow: hidden;
  background: linear-gradient(160deg, #FF5B22 0%, #E91E63 50%, #7C3AED 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.sc-phone-wave{
  position: absolute;
  inset: 50% auto auto 50%;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,.6);
  transform: translate(-50%, -50%);
  animation: phoneWave 2.4s ease-out infinite;
}
.sc-phone-wave.wave-2{ animation-delay: .8s; }
.sc-phone-wave.wave-3{ animation-delay: 1.6s; }
@keyframes phoneWave {
  0%   { width: 8px; height: 8px; opacity: 0.8; }
  100% { width: 220px; height: 220px; opacity: 0; }
}
.sc-play{
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,.3));
}

/* Vidko preview */
.sc-yt{
  position: relative;
  width: 220px;
  height: 130px;
  background: var(--ink);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 24px 50px -12px rgba(0,0,0,.4);
  overflow: hidden;
  transition: transform .5s var(--ease);
}
.site-card-vidko:hover .sc-yt{ transform: scale(1.06); }
.sc-yt-bar{
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  background: rgba(255,255,255,.18);
  width: 100%;
}
.sc-yt-bar.bar-2{
  height: 4px;
  background: var(--orange);
  width: 65%;
  animation: ytProgress 4s linear infinite;
}
.sc-yt-bar.bar-3{
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  bottom: -2px;
  left: 65%;
  animation: ytProgressDot 4s linear infinite;
}
@keyframes ytProgress {
  0%   { width: 0; }
  100% { width: 100%; }
}
@keyframes ytProgressDot {
  0%   { left: 0; }
  100% { left: 100%; }
}
.sc-yt-icon{
  filter: drop-shadow(0 4px 12px rgba(255,91,34,.5));
}

/* Sparks (floating particles) */
.sc-spark{
  position: absolute;
  width: 12px; height: 12px;
  border-radius: 50%;
  background: #fff;
  opacity: .9;
  box-shadow: 0 0 16px rgba(255,255,255,.8);
}
.sc-spark-1{ top: 18%; left: 14%; animation: sparkFloat 6s ease-in-out infinite; }
.sc-spark-2{ top: 70%; right: 16%; width: 8px; height: 8px; animation: sparkFloat 8s ease-in-out infinite reverse; }
.sc-spark-3{ top: 28%; right: 22%; width: 6px; height: 6px; animation: sparkFloat 7s ease-in-out infinite; animation-delay: 1s; }
@keyframes sparkFloat {
  0%, 100% { transform: translate(0,0); opacity: .9; }
  50%      { transform: translate(20px, -16px); opacity: .4; }
}

.sc-content{
  padding: 28px 28px 30px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  flex: 1;
}
.sc-meta{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.sc-badge{
  display: inline-flex;
  align-items: center;
  padding: 5px 11px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  letter-spacing: .03em;
}
.sc-badge-2{
  background: linear-gradient(120deg, #FF5B22 0%, #FFAB1E 100%);
}
.sc-domain{
  font-family: 'Inter', monospace;
  font-size: 12.5px;
  font-weight: 600;
  color: var(--muted);
  direction: ltr;
}
.sc-title{
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0;
  color: var(--ink);
}
.sc-desc{
  font-size: 15px;
  line-height: 1.7;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.sc-cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
  margin-top: 8px;
}
.sc-cta-arrow{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 50%;
  transition: transform .4s var(--ease), background .3s;
}
.site-card:hover .sc-cta-arrow{
  background: var(--orange);
  transform: translateX(-6px) rotate(-12deg);
}

/* ─── MARQUEE ─── */
.marquee{
  overflow: hidden;
  position: relative;
  padding: 14px 0;
  margin: 40px 0 0;
  border-block: 1px solid var(--border);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.marquee-track{
  display: inline-flex;
  align-items: center;
  gap: 28px;
  white-space: nowrap;
  font-size: 18px;
  font-weight: 600;
  color: var(--ink-2);
  animation: marquee 28s linear infinite;
}
.marquee-track > span{ flex-shrink: 0; }
.m-dot{
  color: var(--orange);
  font-size: 10px;
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(50%); }
}

/* ═══════════════════════════════════════════════════════════
   SECTION (paid / free / services)
   ═══════════════════════════════════════════════════════════ */
.section{
  padding: 100px 0;
  position: relative;
}
.section-head{
  max-width: 760px;
  margin: 0 auto 56px;
  text-align: center;
}
.section-num{
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 22px;
  color: var(--muted-2);
  display: block;
  margin-bottom: 8px;
}
.section-eyebrow{
  display: inline-block;
  padding: 4px 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: var(--ink-2);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.section-eyebrow-green{ color: var(--green); border-color: rgba(15,159,110,.3); background: rgba(15,159,110,.06); }
.section-eyebrow-violet{ color: var(--violet); border-color: rgba(124,58,237,.3); background: rgba(124,58,237,.06); }

.section-title{
  font-size: clamp(36px, 6vw, 64px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin: 0 0 16px;
  color: var(--ink);
}
.section-title em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.section-sub{
  font-size: 17px;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ─── PAID COURSES ─── */
.courses-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 980px){ .courses-grid{ grid-template-columns: 1fr; } }

.pc{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  transform-style: preserve-3d;
  will-change: transform;
}
.pc:hover{
  box-shadow: var(--shadow-lg);
  border-color: var(--border-strong);
}
.pc-glow{
  position: absolute;
  top: -120px; right: -120px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,34,.16) 0%, transparent 70%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.pc:hover .pc-glow{ opacity: 1; }
.pc-featured{
  background: linear-gradient(180deg, #fff 0%, #FFF8F1 100%);
  border-color: rgba(201,154,75,.4);
}
.pc-glow-featured{
  background: radial-gradient(circle, rgba(201,154,75,.22) 0%, transparent 70%);
  opacity: .6;
}

.pc-top{
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.pc-tag{
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  background: var(--ink);
  color: var(--bg);
  letter-spacing: .03em;
}
.pc-tag-gold{
  background: linear-gradient(120deg, #C99A4B 0%, #E8B968 100%);
  color: #2A1B05;
  box-shadow: 0 4px 12px -4px rgba(201,154,75,.5);
}
.pc-tag-soft{
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 600;
  background: var(--bg-2);
  color: var(--ink-2);
}

.pc-title{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.pc-desc{
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}
.pc-features{
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 4px 0;
}
.pc-features li{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  color: var(--ink-2);
}
.pc-features svg{ color: var(--green); flex-shrink: 0; }
.pc-price{
  display: flex;
  align-items: baseline;
  gap: 12px;
  flex-wrap: wrap;
  padding: 14px 0;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}
.pc-price-now{
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.pc-price-now i{ font-style: normal; font-size: 20px; font-weight: 700; margin-inline-start: 2px; color: var(--muted); }
.pc-price-old{
  font-size: 16px;
  color: var(--muted-2);
  text-decoration: line-through;
}
.pc-save{
  font-size: 12px;
  font-weight: 700;
  padding: 3px 8px;
  background: rgba(15,159,110,.12);
  color: var(--green);
  border-radius: 6px;
}
.pc-save-best{
  background: linear-gradient(135deg, #F59E0B 0%, #EA580C 100%);
  color: #FFFFFF;
  font-weight: 800;
  padding: 4px 10px;
  font-size: 12.5px;
  box-shadow: 0 6px 16px -4px rgba(234,88,12,.50);
  position: relative;
  letter-spacing: .01em;
}
.pc-save-best::before{
  content: '★ ';
  color: #FFF4E0;
  margin-inline-end: 1px;
}
.pc-note{
  font-size: 13px;
  color: var(--muted);
  margin: 0;
}
.pc-note strong{ color: var(--gold-2); font-weight: 700; }
.pc-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 8px;
}

/* ─── FREE COURSES ─── */
.free-grid{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
@media (max-width: 720px){ .free-grid{ grid-template-columns: 1fr; } }

.fc{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  will-change: transform;
  overflow: hidden;
}
.fc::after{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15,159,110,.06) 0%, transparent 60%);
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
}
.fc:hover{ box-shadow: var(--shadow-lg); border-color: var(--border-strong); }
.fc:hover::after{ opacity: 1; }
.fc-icon{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 56px; height: 56px;
  background: rgba(15,159,110,.1);
  color: var(--green);
  border-radius: 16px;
}
.fc-badge{
  display: inline-flex;
  padding: 3px 10px;
  background: var(--green);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  align-self: flex-start;
}
.fc-title{
  font-size: 22px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0;
}
.fc-desc{
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.fc-arrow{
  position: absolute;
  top: 32px;
  left: 32px;
  width: 40px; height: 40px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-size: 18px;
  font-weight: 700;
  transition: transform .4s var(--ease), background .3s;
}
.fc:hover .fc-arrow{ background: var(--green); transform: rotate(-15deg) scale(1.08); }

/* ─── SERVICES ─── */
.services-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 24px;
}
@media (max-width: 980px){ .services-grid{ grid-template-columns: 1fr; } }

.sv{
  position: relative;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: var(--shadow);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease), border-color .3s;
  overflow: hidden;
  will-change: transform;
}
.sv:hover{ box-shadow: var(--shadow-lg); border-color: var(--border-strong); }

.sv-feature{
  grid-row: span 1;
  background: linear-gradient(135deg, #1a1a26 0%, #0B0B14 100%);
  color: var(--bg);
  border-color: transparent;
}
.sv-feature .sv-tag{
  display: inline-flex;
  padding: 4px 10px;
  background: var(--grad);
  color: #fff;
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
}
.sv-feature .sv-title{
  font-size: 26px;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.sv-feature .sv-desc{
  font-size: 14.5px;
  color: rgba(255,255,255,.65);
  margin: 0;
  flex: 1;
  line-height: 1.65;
}
.sv-feature .btn-ghost{
  background: rgba(255,255,255,.1);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.sv-feature .btn-ghost:hover{ background: rgba(255,255,255,.18); }
.sv-actions{
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.sv-card{
  background: var(--surface);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}
.sv-card-tag{
  display: inline-flex;
  padding: 3px 10px;
  background: rgba(124,58,237,.1);
  color: var(--violet);
  border-radius: 999px;
  font-size: 11.5px;
  font-weight: 700;
  align-self: flex-start;
}
.sv-card-title{
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0;
}
.sv-card-desc{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  flex: 1;
}
.sv-card-arrow{
  position: absolute;
  top: 28px; left: 28px;
  width: 40px; height: 40px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--ink);
  color: var(--bg);
  font-weight: 700;
  transition: transform .4s var(--ease), background .3s;
}
.sv-card:hover .sv-card-arrow{ background: var(--violet); transform: rotate(-15deg) scale(1.08); }

/* ═══════════════════════════════════════════════════════════
   CTA STRIP
   ═══════════════════════════════════════════════════════════ */
.cta-strip{
  padding: 60px 0 100px;
}
.cs-card{
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 28px;
  padding: 48px;
  background: var(--ink);
  color: var(--bg);
  border-radius: 32px;
  box-shadow: var(--shadow-xl);
  position: relative;
  overflow: hidden;
}
.cs-card::before{
  content: '';
  position: absolute;
  top: -50%; left: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(255,91,34,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cs-card::after{
  content: '';
  position: absolute;
  bottom: -50%; right: -20%;
  width: 60%; height: 200%;
  background: radial-gradient(ellipse, rgba(124,58,237,.25) 0%, transparent 60%);
  pointer-events: none;
}
.cs-text{ position: relative; z-index: 1; }
.cs-title{
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 8px;
}
.cs-title em{
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.cs-sub{
  font-size: 16px;
  color: rgba(255,255,255,.65);
  margin: 0;
}

/* ═══════════════════════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════════════════════ */
.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -0.005em;
  text-align: center;
  white-space: nowrap;
  transition: transform .25s var(--ease), background .25s, box-shadow .25s, border-color .25s, color .25s;
  position: relative;
  overflow: hidden;
  border: 1px solid transparent;
}
.btn-block{ width: 100%; }

.btn-ghost{
  background: var(--surface);
  color: var(--ink);
  border-color: var(--border);
}
.btn-ghost:hover{
  background: var(--bg-2);
  border-color: var(--border-strong);
}

.btn-solid{
  background: var(--ink);
  color: var(--bg);
}
.btn-solid:hover{
  background: #000;
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(11,11,20,.4);
}

.btn-mega{
  height: 60px;
  padding: 0 32px;
  border-radius: 999px;
  background: var(--grad);
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  z-index: 1;
  box-shadow: 0 16px 40px -12px rgba(240,127,38,.45);
}
.btn-mega::before{
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #7C3AED 0%, #E91E63 50%, #FF5B22 100%);
  opacity: 0;
  transition: opacity .4s;
  z-index: -1;
  border-radius: 999px;
}
.btn-mega:hover{ transform: translateY(-3px) scale(1.02); }
.btn-mega:hover::before{ opacity: 1; }

/* ═══════════════════════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════════════════════ */
.footer{
  padding: 60px 0 40px;
  border-top: 1px solid var(--border);
  background: var(--bg-2);
  position: relative;
  z-index: 2;
}
.footer-grid{
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border);
}
.footer-grid-academy{
  grid-template-columns: 1.4fr 0.8fr 1.1fr 0.7fr;
}
@media (max-width: 980px){
  .footer-grid-academy{ grid-template-columns: 1fr 1fr; }
  .footer-grid-academy .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 760px){ .footer-grid{ grid-template-columns: 1fr 1fr; } .footer-brand{ grid-column: 1 / -1; } }

.footer-brand{ display: flex; flex-direction: column; gap: 8px; }
.footer-logo{
  width: 56px; height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow);
}
.footer-logo-photo img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.footer-logo-img{
  width: auto;
  max-width: 220px;
  height: 56px;
  display: block;
  margin-bottom: 8px;
}

.founders-list{
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.founders-list li{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}
.founder-name{
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-2);
}
.founder-socials{
  display: inline-flex;
  gap: 6px;
}
.founder-socials a{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--muted);
  transition: background .2s, color .2s, transform .2s var(--ease);
}
.founder-socials a:hover{
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.footer-name{
  font-size: 20px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 4px 0 0;
}
.footer-tag{
  font-size: 14px;
  color: var(--muted);
  margin: 0;
}
.footer-col h4{
  font-size: 13px;
  font-weight: 700;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  margin: 0 0 16px;
}
.footer-col ul{ display: flex; flex-direction: column; gap: 10px; }
.footer-col a{
  font-size: 14px;
  color: var(--ink-2);
  font-weight: 500;
  transition: color .2s;
}
.footer-col a:hover{ color: var(--orange); }

.socials{ display: flex; gap: 10px; }
.social{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--ink-2);
  transition: transform .25s var(--ease), background .25s, color .25s, border-color .25s;
}
.social:hover{
  transform: translateY(-3px);
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.social-wa:hover{ background: var(--wa); color: #fff; border-color: var(--wa); }

.copyright{
  margin: 24px 0 0;
  font-size: 13px;
  color: var(--muted);
  text-align: center;
}

/* ═══════════════════════════════════════════════════════════
   FLOATING WHATSAPP
   ═══════════════════════════════════════════════════════════ */
.wa-float{
  position: fixed;
  bottom: 24px;
  inset-inline-start: 24px;
  z-index: 990;
  width: 56px; height: 56px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center; justify-content: center;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,.55), 0 4px 12px rgba(0,0,0,.1);
  transition: transform .3s var(--ease);
}
.wa-float:hover{ transform: scale(1.1) rotate(-8deg); }
.wa-float svg{ position: relative; z-index: 2; }
.wa-pulse{
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--wa);
  opacity: .6;
  animation: waPulse 2.4s ease-out infinite;
}
.wa-pulse-2{ animation-delay: 1.2s; }
@keyframes waPulse {
  0%   { transform: scale(1); opacity: .55; }
  100% { transform: scale(2); opacity: 0; }
}

/* ═══════════════════════════════════════════════════════════
   WHATSAPP MODAL
   ═══════════════════════════════════════════════════════════ */
.wa-modal{
  position: fixed; inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  transition: opacity .4s var(--ease);
  pointer-events: none;
}
.wa-modal:not([hidden]){
  opacity: 1;
  pointer-events: auto;
}
.wa-modal-backdrop{
  position: absolute; inset: 0;
  background: rgba(11,11,20,.55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.wa-modal-card{
  position: relative;
  background: var(--surface);
  width: 100%;
  max-width: 480px;
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: var(--shadow-xl);
  transform: scale(.92) translateY(20px);
  transition: transform .5s var(--ease);
  overflow: hidden;
}
.wa-modal:not([hidden]) .wa-modal-card{
  transform: scale(1) translateY(0);
}
.wa-modal-card::before{
  content: '';
  position: absolute;
  top: -100px; right: -60px;
  width: 220px; height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(37,211,102,.18) 0%, transparent 70%);
  pointer-events: none;
}
.wa-modal-card::after{
  content: '';
  position: absolute;
  bottom: -120px; left: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,91,34,.14) 0%, transparent 70%);
  pointer-events: none;
}
.wa-modal-close{
  position: absolute;
  top: 16px; left: 16px;
  width: 36px; height: 36px;
  display: inline-flex;
  align-items: center; justify-content: center;
  border-radius: 50%;
  background: var(--bg-2);
  color: var(--ink-2);
  transition: background .2s, transform .2s;
  z-index: 2;
}
.wa-modal-close:hover{ background: var(--ink); color: var(--bg); transform: rotate(90deg); }

.wa-modal-icon{
  display: inline-flex;
  align-items: center; justify-content: center;
  width: 80px; height: 80px;
  background: var(--wa);
  color: #fff;
  border-radius: 50%;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 14px 36px -10px rgba(37,211,102,.55);
  animation: modalIconIn .8s var(--ease) .15s both;
}
@keyframes modalIconIn {
  from { transform: scale(.5) rotate(-30deg); opacity: 0; }
  to   { transform: scale(1) rotate(0); opacity: 1; }
}
.wa-modal-title{
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.wa-modal-body{
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.75;
  margin: 0 0 28px;
  position: relative;
  z-index: 1;
}
.wa-paid{
  font-weight: 800;
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: 1.08em;
  padding: 0 4px;
  position: relative;
}
.wa-paid::after{
  content: '';
  position: absolute;
  inset: -2px -4px;
  background: var(--grad-soft);
  border-radius: 6px;
  z-index: -1;
}
.wa-modal-actions{
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.wa-modal-continue{
  background: var(--wa);
  color: #fff;
  border-color: var(--wa);
}
.wa-modal-continue:hover{
  background: var(--wa-2);
  border-color: var(--wa-2);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px -10px rgba(37,211,102,.5);
}

/* ═══════════════════════════════════════════════════════════
   REDUCED MOTION
   ═══════════════════════════════════════════════════════════ */
@media (prefers-reduced-motion: reduce){
  *, *::before, *::after{
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  body{ cursor: auto; }
  .cursor-spotlight, .cursor-dot{ display: none; }
}

/* ═══════════════════════════════════════════════════════════
   SMALL SCREENS POLISH
   ═══════════════════════════════════════════════════════════ */
@media (max-width: 540px){
  .hero-sites{ padding: 120px 0 60px; }
  .section{ padding: 70px 0; }
  .cs-card{ padding: 32px 24px; }
  .pc, .fc, .sv{ padding: 24px; }
  .sc-content{ padding: 24px; }
  .wa-modal-card{ padding: 32px 20px 24px; }
  .wa-modal-actions{ grid-template-columns: 1fr; }
}
