/* =====================================================================
   Kanalim.az — Landing Page Styles
   Dark violet / neon cinematic theme inspired by the brand flyer.
   Sections: 1) Tokens  2) Base/reset  3) Layout helpers  4) Buttons
   5) Backgrounds & glows  6) Header  7) Hero  8) Stats  9) Channels
   10) Why us  11) Pricing  12) Steps  13) Testimonials  14) FAQ
   15) Contact  16) Footer  17) Animations  18) Responsive
   ===================================================================== */

/* ------------------------------------------------------------------ */
/* 1. Design tokens                                                    */
/* ------------------------------------------------------------------ */
:root {
  /* Brand palette (from the flyer) */
  --bg-0: #08030f;          /* deepest backdrop */
  --bg-1: #150726;          /* base violet */
  --bg-2: #1e0b3d;          /* raised panel */
  --violet: #3a1078;
  --purple: #7b2cbf;
  --purple-bright: #9d4edd;
  --magenta: #e0218a;
  --pink: #ff4ecd;
  --pink-soft: #ff86df;
  --yellow: #ffcb1f;        /* price + primary CTA */
  --yellow-deep: #ffae00;
  --blue: #2f7bff;          /* logo orbit accent */
  --teal: #21c1d6;          /* logo play accent */

  /* Text */
  --white: #ffffff;
  --text: #f4eeff;
  --muted: #c0aee8;         /* secondary copy — AA on dark violet */
  --muted-soft: #b8a6df;

  /* Surfaces */
  --card: rgba(255, 255, 255, 0.045);
  --card-2: rgba(123, 44, 191, 0.10);
  --card-border: rgba(157, 78, 221, 0.34);
  --card-border-hover: rgba(255, 78, 205, 0.6);
  --glass: rgba(22, 9, 44, 0.62);
  --hairline: rgba(255, 255, 255, 0.08);

  /* Gradients */
  --grad-cta: linear-gradient(135deg, #ffd84d 0%, var(--yellow) 45%, var(--yellow-deep) 100%);
  --grad-purple: linear-gradient(135deg, var(--purple-bright) 0%, var(--magenta) 100%);
  --grad-text: linear-gradient(100deg, #fff 0%, #f0d9ff 40%, var(--pink-soft) 100%);

  /* Glows */
  --glow-purple: 0 0 40px rgba(157, 78, 221, 0.45);
  --glow-pink: 0 0 46px rgba(255, 78, 205, 0.42);
  --glow-yellow: 0 10px 40px rgba(255, 174, 0, 0.45);

  /* Geometry */
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 26px;
  --r-xl: 34px;
  --r-pill: 999px;

  /* Layout */
  --container: 1200px;
  --gutter: clamp(18px, 4vw, 40px);
  --section-y: clamp(26px, 3.4vw, 50px);

  --header-h: 72px;
  --cd-h: 0px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);

  /* Type families */
  --font-head: 'Poppins', 'Segoe UI', system-ui, -apple-system, sans-serif;
  --font-body: 'Manrope', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* ------------------------------------------------------------------ */
/* 2. Base / reset                                                     */
/* ------------------------------------------------------------------ */
*,
*::before,
*::after { box-sizing: border-box; }

* { margin: 0; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + var(--cd-h) + 16px);
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  font-size: clamp(1rem, 0.95rem + 0.3vw, 1.075rem);
  line-height: 1.65;
  color: var(--text);
  background: var(--bg-0);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.015em;
}

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

:focus-visible {
  outline: 3px solid var(--yellow);
  outline-offset: 3px;
  border-radius: 6px;
}

::selection { background: var(--magenta); color: #fff; }

.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  left: 16px; top: -60px;
  z-index: 200;
  background: var(--yellow);
  color: #1a0633;
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  transition: top 0.2s var(--ease);
}
.skip-link:focus { top: 12px; }

/* ------------------------------------------------------------------ */
/* 3. Layout helpers                                                   */
/* ------------------------------------------------------------------ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { position: relative; padding-block: var(--section-y); }

.section-head {
  max-width: 720px;
  margin-bottom: clamp(36px, 5vw, 60px);
}
.section-head.center { margin-inline: auto; text-align: center; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink-soft);
  padding: 7px 16px;
  border-radius: var(--r-pill);
  background: rgba(255, 78, 205, 0.1);
  border: 1px solid rgba(255, 78, 205, 0.28);
  margin-bottom: 18px;
}

.section-title {
  font-size: clamp(1.85rem, 1.2rem + 3vw, 3rem);
  font-weight: 800;
}
.section-title .accent {
  background: var(--grad-purple);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.section-sub {
  margin-top: 16px;
  color: var(--muted);
  font-size: clamp(1.02rem, 0.98rem + 0.4vw, 1.18rem);
  max-width: 60ch;
}
.section-head.center .section-sub { margin-inline: auto; }

.grid { display: grid; gap: clamp(16px, 2.2vw, 26px); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ------------------------------------------------------------------ */
/* 4. Buttons                                                          */
/* ------------------------------------------------------------------ */
.btn {
  --btn-bg: var(--grad-cta);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1;
  padding: 15px 26px;
  border-radius: var(--r-pill);
  white-space: nowrap;
  position: relative;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
  will-change: transform;
}
.btn svg { width: 1.15em; height: 1.15em; }

.btn-primary {
  background: var(--grad-cta);
  color: #2a0c52;
  box-shadow: var(--glow-yellow);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 50px rgba(255, 174, 0, 0.6);
}

.btn-whats {
  background: linear-gradient(135deg, #29d366 0%, #1faa4f 100%);
  color: #04230f;
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
}
.btn-whats:hover { transform: translateY(-3px); box-shadow: 0 16px 50px rgba(37, 211, 102, 0.55); }

.btn-ghost {
  background: rgba(255, 255, 255, 0.05);
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  backdrop-filter: blur(6px);
}
.btn-ghost:hover {
  transform: translateY(-3px);
  border-color: var(--pink);
  box-shadow: var(--glow-pink);
}

.btn-lg { padding: 18px 36px; font-size: 1.1rem; }
.btn-hero {
  padding: 22px 54px;
  font-size: 1.28rem;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 52px rgba(255, 174, 0, 0.62), 0 4px 18px rgba(255, 174, 0, 0.34);
}
.btn-hero svg { width: 1.4em; height: 1.4em; }
.btn-primary.btn-hero:hover {
  transform: translateY(-4px);
  box-shadow: 0 22px 70px rgba(255, 174, 0, 0.80), 0 6px 28px rgba(255, 174, 0, 0.50);
}
.btn-block { width: 100%; }

/* ------------------------------------------------------------------ */
/* 5. Page backdrop & glows                                            */
/* ------------------------------------------------------------------ */
.page-bg {
  position: fixed;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(1100px 700px at 78% -8%, rgba(224, 33, 138, 0.30), transparent 60%),
    radial-gradient(900px 650px at 12% 8%, rgba(123, 44, 191, 0.34), transparent 62%),
    radial-gradient(1200px 900px at 50% 110%, rgba(47, 123, 255, 0.16), transparent 60%),
    linear-gradient(180deg, var(--bg-1) 0%, var(--bg-0) 55%, #0a0418 100%);
}
/* faint blurred "poster grid" texture behind the page */
.page-bg::after {
  content: "";
  position: absolute;
  inset: -10%;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 64px 92px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 0%, transparent 75%);
  opacity: 0.5;
}

/* Reusable soft light orb */
.orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.55;
  pointer-events: none;
  z-index: 0;
}

/* ------------------------------------------------------------------ */
/* 6. Header                                                           */
/* ------------------------------------------------------------------ */
.site-header {
  position: sticky;
  top: var(--cd-h);
  z-index: 100;
  background: rgba(13, 5, 26, 0.55);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.site-header.scrolled {
  background: rgba(11, 4, 22, 0.82);
  border-bottom-color: var(--hairline);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.header-inner {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

/* Logo lockup (SVG mark + wordmark) */
.logo {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: 0.01em;
  color: var(--white);
  flex-shrink: 0;
}
.logo .logo-img { height: 48px; width: auto; display: block; flex-shrink: 0; }
.logo:hover .logo-img { filter: drop-shadow(0 0 12px rgba(47, 123, 255, 0.55)); }
.footer-brand .logo-img { height: 74px; }

/* Desktop nav */
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
  color: var(--muted);
  padding: 9px 13px;
  border-radius: var(--r-sm);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.nav a[aria-current="true"] { color: var(--white); }
.nav a[aria-current="true"]::after { transform: scaleX(1); }
.nav a::after {
  content: "";
  position: absolute;
  left: 14px; right: 14px; bottom: 4px;
  height: 2px;
  background: var(--grad-purple);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease);
}
.nav a:hover, .nav a:focus-visible { color: var(--white); }
.nav a:hover::after { transform: scaleX(1); }

.header-cta { display: flex; align-items: center; gap: 12px; }
.header-cta .btn { padding: 12px 22px; font-size: 0.95rem; }

.header-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(0.84rem, 0.7rem + 0.7vw, 1.04rem);
  color: var(--yellow);
  padding: 9px 13px 9px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 203, 31, 0.1);
  border: 1.5px solid rgba(255, 203, 31, 0.34);
  white-space: nowrap;
  letter-spacing: 0.015em;
  transition: background 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.header-phone:hover {
  background: rgba(255, 203, 31, 0.18);
  box-shadow: 0 0 22px rgba(255, 203, 31, 0.35);
  color: var(--yellow);
}
.header-phone svg { width: 15px; height: 15px; flex-shrink: 0; }

/* Hamburger */
.nav-toggle {
  display: none;
  width: 46px; height: 46px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--hairline);
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 50%; top: 50%;
  width: 20px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transform: translate(-50%, -50%);
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.nav-toggle span:nth-child(1) { transform: translate(-50%, -8px); }
.nav-toggle span:nth-child(3) { transform: translate(-50%, 6px); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

/* ------------------------------------------------------------------ */
/* 7. Hero                                                             */
/* ------------------------------------------------------------------ */
.hero {
  position: relative;
  padding-top: clamp(28px, 5vw, 64px);
  padding-bottom: clamp(28px, 4vw, 60px);
  overflow: hidden;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: clamp(30px, 5vw, 64px);
}
.hero-copy { position: relative; z-index: 2; }

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--white);
  padding: 8px 16px 8px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--card-border);
  margin-bottom: 22px;
}
.hero-tag .pill-mini {
  background: var(--grad-purple);
  color: #fff;
  font-size: 0.72rem;
  padding: 3px 10px;
  border-radius: var(--r-pill);
}

.hero h1 {
  font-size: clamp(2.3rem, 1.2rem + 4.6vw, 4.3rem);
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero h1 .hl {
  position: relative;
  background: var(--grad-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .num {
  color: var(--yellow);
  text-shadow: 0 0 30px rgba(255, 203, 31, 0.5);
}

.hero-sub {
  margin-top: 22px;
  font-size: clamp(1.05rem, 1rem + 0.5vw, 1.25rem);
  color: var(--muted);
  max-width: 54ch;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.hero-badges .badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: var(--r-pill);
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--white);
}
.hero-badges .badge svg { width: 17px; height: 17px; color: var(--yellow); }
.hero-badges .badge.is-yellow { color: var(--yellow); border-color: rgba(255, 203, 31, 0.4); background: rgba(255, 203, 31, 0.08); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 26px;
  color: var(--muted);
  font-size: 0.92rem;
}
.hero-trust .stars { color: var(--yellow); letter-spacing: 2px; font-size: 1rem; }

/* Hero visual */
.hero-visual {
  position: relative;
  z-index: 1;
  min-height: 380px;
  display: grid;
  place-items: center;
}
.hero-stage {
  position: relative;
  width: 100%;
  max-width: 460px;
  aspect-ratio: 1 / 1;
}
.hero-stage .orb-main {
  position: absolute;
  inset: 8% 8% 12% 8%;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 45%, rgba(255, 78, 205, 0.55), rgba(123, 44, 191, 0.35) 55%, transparent 72%);
  filter: blur(8px);
  animation: pulse-glow 5s var(--ease) infinite;
}
.hero-illustration {
  position: relative;
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.5));
}
/* floating entertainment chips */
.float-icon {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px; height: 58px;
  font-size: 1.6rem;
  border-radius: var(--r-md);
  background: var(--glass);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  box-shadow: var(--glow-purple);
  animation: float 6s ease-in-out infinite;
}
.float-icon.fi-1 { top: 4%;  left: -2%;  animation-delay: 0s; }
.float-icon.fi-2 { top: 20%; right: -4%; animation-delay: 0.8s; }
.float-icon.fi-3 { bottom: 16%; left: -5%; animation-delay: 1.6s; }
.float-icon.fi-4 { bottom: 2%; right: 4%;  animation-delay: 2.2s; font-size: 1.4rem; }

/* ------------------------------------------------------------------ */
/* 8. SEO summary                                                      */
/* ------------------------------------------------------------------ */
.seo-intro {
  padding-top: clamp(22px, 3vw, 38px);
}
.seo-intro-inner {
  max-width: 940px;
}
.seo-intro-inner p {
  max-width: 78ch;
  color: var(--muted);
  font-size: clamp(1.04rem, 1rem + 0.35vw, 1.18rem);
  margin-top: 18px;
}
.seo-facts {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 24px;
}
.seo-facts li {
  padding: 18px 20px;
  border: 1px solid var(--card-border);
  border-radius: var(--r-md);
  background: rgba(255, 255, 255, 0.04);
}
.seo-facts strong {
  display: block;
  color: var(--yellow);
  font-family: var(--font-head);
  font-size: 1.05rem;
  margin-bottom: 4px;
}
.seo-facts span {
  color: var(--muted);
  font-size: 0.94rem;
}

/* ------------------------------------------------------------------ */
/* 9. Channels & 10. Why-us cards (shared card base)                   */
/* ------------------------------------------------------------------ */
.card {
  position: relative;
  height: 100%;
  padding: clamp(24px, 3vw, 32px);
  border-radius: var(--r-lg);
  background: var(--card);
  border: 1px solid var(--card-border);
  backdrop-filter: blur(8px);
  overflow: hidden;
  transition: transform 0.32s var(--ease), border-color 0.32s var(--ease), box-shadow 0.32s var(--ease), background 0.32s var(--ease);
}
/* sheen that follows on hover */
.card::after {
  content: "";
  position: absolute;
  width: 220px; height: 220px;
  top: -60px; right: -60px;
  background: radial-gradient(circle, rgba(255, 78, 205, 0.22), transparent 70%);
  opacity: 0;
  transition: opacity 0.32s var(--ease);
  pointer-events: none;
}
.card:hover {
  transform: translateY(-8px);
  border-color: var(--card-border-hover);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.4), var(--glow-purple);
  background: var(--card-2);
}
.card:hover::after { opacity: 1; }

.card-icon {
  display: grid;
  place-items: center;
  width: 60px; height: 60px;
  border-radius: var(--r-md);
  margin-bottom: 20px;
  background: linear-gradient(140deg, rgba(157, 78, 221, 0.25), rgba(224, 33, 138, 0.2));
  border: 1px solid var(--card-border);
  font-size: 1.7rem;
}
.card-icon svg { width: 30px; height: 30px; }
.card-flag {
  width: 38px; height: 28px;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.card-count {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.02em;
  color: var(--yellow);
  background: rgba(255, 203, 31, 0.1);
  border: 1px solid rgba(255, 203, 31, 0.3);
  padding: 4px 12px;
  border-radius: var(--r-pill);
  margin-bottom: 12px;
}
.card h3 {
  font-size: clamp(1.12rem, 1rem + 0.5vw, 1.32rem);
  font-weight: 700;
  margin-bottom: 8px;
}
.card p { color: var(--muted); font-size: 0.98rem; }

/* why-us card uses an accent top stripe */
.benefit-card .card-icon { color: var(--pink-soft); }

/* ------------------------------------------------------------------ */
/* 9b. Channels section inline CTA                                     */
/* ------------------------------------------------------------------ */
.channels-cta-wrap {
  margin-top: clamp(24px, 3vw, 36px);
}
.channels-cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: clamp(28px, 4vw, 44px) clamp(28px, 7vw, 96px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(600px at 50% 50%, rgba(157, 78, 221, 0.22), transparent 70%),
    linear-gradient(135deg, rgba(58, 16, 120, 0.44), rgba(20, 8, 40, 0.64));
  border: 1px solid var(--card-border-hover);
  backdrop-filter: blur(10px);
  text-align: center;
}
.channels-cta-text {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.12rem, 1rem + 0.8vw, 1.46rem);
  color: var(--white);
  max-width: 48ch;
}
.channels-cta-sub {
  color: var(--muted);
  font-size: clamp(0.9rem, 0.88rem + 0.25vw, 1.03rem);
  margin-top: -4px;
}

/* ------------------------------------------------------------------ */
/* 11. Pricing                                                         */
/* ------------------------------------------------------------------ */
.pricing { position: relative; }
.pricing-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 52px);
  align-items: center;
  padding: clamp(30px, 5vw, 60px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(700px 400px at 85% 10%, rgba(255, 78, 205, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(58, 16, 120, 0.55), rgba(20, 8, 40, 0.7));
  border: 1px solid var(--card-border-hover);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.5), var(--glow-pink);
  overflow: hidden;
}
.pricing-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(135deg, var(--pink), transparent 40%, transparent 60%, var(--purple-bright));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0.8;
  pointer-events: none;
}

.price-left .offer-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 0.04em;
  color: #2a0c52;
  background: var(--grad-cta);
  padding: 8px 18px;
  border-radius: var(--r-pill);
  box-shadow: var(--glow-yellow);
  margin-bottom: 20px;
}
.price-left h3 {
  font-size: clamp(1.8rem, 1.2rem + 2.6vw, 2.6rem);
  margin-bottom: 8px;
}
.price-left .discount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 2vw, 2rem);
  color: var(--yellow);
  margin-bottom: 16px;
}
.price-left p { color: var(--muted); margin-bottom: 24px; max-width: 42ch; }

.price-list { display: grid; gap: 13px; }
.price-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-weight: 500;
  color: var(--text);
}
.price-list .check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--grad-purple);
  color: #fff;
  margin-top: 1px;
}
.price-list .check svg { width: 14px; height: 14px; }

/* price card (right) */
.price-card {
  position: relative;
  text-align: center;
  padding: clamp(30px, 4vw, 44px) clamp(22px, 3vw, 34px);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(31, 11, 61, 0.85), rgba(13, 5, 26, 0.9));
  border: 1px solid var(--card-border);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.price-card .cemi {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  background: var(--grad-purple);
  padding: 6px 22px;
  border-radius: var(--r-pill);
  margin-bottom: 8px;
}
.price-card .amount {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(4.5rem, 3rem + 9vw, 7.5rem);
  line-height: 0.95;
  color: var(--yellow);
  text-shadow: 0 0 50px rgba(255, 203, 31, 0.5);
  letter-spacing: -0.03em;
}
.price-card .currency {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(1.4rem, 1rem + 2vw, 2.1rem);
  color: var(--yellow);
  letter-spacing: 0.1em;
  margin-bottom: 6px;
}
.price-card .per {
  color: var(--muted);
  font-size: 0.96rem;
  margin-bottom: 24px;
}
.price-card .old-price {
  color: var(--muted-soft);
  text-decoration: line-through;
  text-decoration-color: var(--pink);
  font-weight: 600;
  margin-bottom: 4px;
}
.price-card .btn { margin-top: 4px; }
.price-card .secure {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 16px;
  color: var(--muted);
  font-size: 0.84rem;
}

/* ------------------------------------------------------------------ */
/* 12. Steps                                                           */
/* ------------------------------------------------------------------ */
.steps-grid { counter-reset: step; }
/* Number badge sits in normal flow at the top of the card, so it can never be
   clipped by the card's overflow:hidden, nor overlap the card above on mobile. */
.step-card .step-num {
  display: grid;
  place-items: center;
  width: 54px; height: 54px;
  margin-bottom: 18px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  color: #2a0c52;
  background: var(--grad-cta);
  border-radius: var(--r-md);
  box-shadow: var(--glow-yellow);
}

/* ------------------------------------------------------------------ */
/* 13. Testimonials — 3D Scroll Trigger (lightswind pattern)          */
/* ------------------------------------------------------------------ */

/* Grid container carries the perspective so children share one vanishing pt */
.tgrid-3d {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.2vw, 26px);
  perspective: 900px;
  perspective-origin: 50% 20%;
}

/* Each wrapper is the 3D stage — starts tilted, animates flat on scroll */
.tcard-3d {
  opacity: 0;
  transform: rotateX(28deg) translateY(44px) scale(0.95);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transform-style: preserve-3d;
  will-change: transform, opacity;
}

/* Staggered entrance per column position */
.tcard-3d:nth-child(1) { transition-delay: 0.00s; }
.tcard-3d:nth-child(2) { transition-delay: 0.09s; }
.tcard-3d:nth-child(3) { transition-delay: 0.18s; }
.tcard-3d:nth-child(4) { transition-delay: 0.04s; }
.tcard-3d:nth-child(5) { transition-delay: 0.13s; }
.tcard-3d:nth-child(6) { transition-delay: 0.22s; }

.tcard-3d.t3d-visible {
  opacity: 1;
  transform: rotateX(0deg) translateY(0) scale(1);
}

/* Inner card fills full height of 3D wrapper */
.tcard-3d .tcard {
  height: 100%;
  transition: box-shadow 0.28s var(--ease);
}

/* Card content styles */
.tcard { display: flex; flex-direction: column; gap: 16px; }
.tcard .stars { color: var(--yellow); font-size: 1.05rem; letter-spacing: 2px; }
.tcard blockquote {
  font-size: 1.02rem;
  color: var(--text);
  font-style: normal;
  line-height: 1.65;
  flex-grow: 1;
}
.tcard .quote-mark {
  font-family: var(--font-head);
  font-size: 3rem;
  line-height: 0.5;
  color: var(--purple-bright);
  opacity: 0.6;
  height: 24px;
}
.tcard .author { display: flex; align-items: center; gap: 12px; margin-top: auto; padding-top: 6px; }
.tcard .avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--grad-purple);
  flex-shrink: 0;
}
.tcard .author-name { font-family: var(--font-head); font-weight: 700; }
.tcard .author-role { color: var(--muted); font-size: 0.86rem; }

/* ------------------------------------------------------------------ */
/* Custom cursor (init-cursor — desktop fine pointer only)            */
/* ------------------------------------------------------------------ */
.cursor-dot,
.cursor-ring {
  position: fixed;
  top: 0; left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  will-change: left, top;
}

.cursor-dot {
  width: 7px; height: 7px;
  background: var(--magenta);
  box-shadow: 0 0 8px var(--magenta), 0 0 18px rgba(224, 33, 138, 0.45);
  transition: opacity 0.18s, transform 0.18s;
}

.cursor-ring {
  width: 34px; height: 34px;
  border: 2px solid rgba(224, 33, 138, 0.55);
  background: transparent;
  transition: width 0.22s var(--ease), height 0.22s var(--ease),
              border-color 0.22s var(--ease), box-shadow 0.22s var(--ease),
              opacity 0.18s;
}

.cursor-ring.is-hovered {
  width: 56px; height: 56px;
  border-color: var(--pink);
  box-shadow: 0 0 20px rgba(255, 78, 205, 0.38);
}

@media (pointer: fine) {
  body, a, button { cursor: none; }
}
@media (pointer: coarse) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* ------------------------------------------------------------------ */
/* 14. FAQ                                                             */
/* ------------------------------------------------------------------ */
.faq-list { max-width: 820px; margin-inline: auto; display: grid; gap: 14px; }
.faq-item {
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--card-border);
  overflow: hidden;
  transition: border-color 0.25s var(--ease), background 0.25s var(--ease);
}
.faq-item.open { border-color: var(--card-border-hover); background: var(--card-2); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  text-align: left;
  padding: 20px clamp(18px, 3vw, 26px);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1rem, 0.96rem + 0.3vw, 1.12rem);
  color: var(--white);
}
.faq-q .chev {
  flex-shrink: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(157, 78, 221, 0.18);
  color: var(--pink-soft);
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.faq-item.open .faq-q .chev { transform: rotate(180deg); background: var(--grad-purple); color: #fff; }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s var(--ease);
}
.faq-a-inner { overflow: hidden; }
.faq-a p {
  padding: 0 clamp(18px, 3vw, 26px) 22px;
  color: var(--muted);
}
.faq-item.open .faq-a { grid-template-rows: 1fr; }

/* ------------------------------------------------------------------ */
/* 15. Contact                                                         */
/* ------------------------------------------------------------------ */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(24px, 4vw, 48px);
  align-items: center;
}
.contact-cards { display: grid; grid-template-columns: 1fr; gap: 14px; align-content: center; }
.contact-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px;
  border-radius: var(--r-md);
  background: var(--card);
  border: 1px solid var(--card-border);
  transition: transform 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--card-border-hover); box-shadow: var(--glow-purple); }
.contact-card .ci {
  flex-shrink: 0;
  width: 48px; height: 48px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: linear-gradient(140deg, rgba(157, 78, 221, 0.3), rgba(224, 33, 138, 0.25));
  color: var(--pink-soft);
}
.contact-card .ci svg { width: 24px; height: 24px; }
.contact-card .cl { font-size: 0.8rem; color: var(--muted); }
.contact-card .cv { font-family: var(--font-head); font-weight: 700; color: var(--white); font-size: 1.02rem; word-break: break-word; }

.contact-panel {
  padding: clamp(28px, 4vw, 40px);
  border-radius: var(--r-xl);
  background:
    radial-gradient(500px 300px at 80% 0%, rgba(255, 78, 205, 0.18), transparent 60%),
    linear-gradient(160deg, rgba(58, 16, 120, 0.5), rgba(20, 8, 40, 0.66));
  border: 1px solid var(--card-border-hover);
  text-align: center;
  box-shadow: var(--glow-pink);
}
.contact-panel h3 { font-size: 1.4rem; margin-bottom: 10px; }
.contact-panel p { color: var(--muted); margin-bottom: 22px; }
.contact-panel .btn { width: 100%; margin-bottom: 12px; }

/* ------------------------------------------------------------------ */
/* 16. Footer                                                          */
/* ------------------------------------------------------------------ */
.site-footer {
  position: relative;
  padding-top: clamp(50px, 7vw, 80px);
  padding-bottom: 34px;
  border-top: 1px solid var(--hairline);
  background: linear-gradient(180deg, transparent, rgba(8, 3, 15, 0.7));
}
.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  margin-bottom: 40px;
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-brand p { color: var(--muted); max-width: 36ch; margin-bottom: 18px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 42px; height: 42px;
  border-radius: var(--r-sm);
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--card-border);
  color: var(--muted);
  transition: transform 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.footer-social a:hover { transform: translateY(-3px); color: var(--white); border-color: var(--pink); box-shadow: var(--glow-pink); }
.footer-social a svg { width: 20px; height: 20px; }

.footer-col h4 {
  font-size: 0.82rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--pink-soft);
  margin-bottom: 16px;
}
.footer-col ul { display: grid; gap: 11px; }
.footer-col a, .footer-col li { color: var(--muted); font-size: 0.96rem; transition: color 0.2s var(--ease); }
.footer-col a:hover { color: var(--white); }
.footer-col .ic { display: inline-flex; align-items: center; gap: 9px; }

/* prominent footer phone (tel: — dials on mobile, no-op on desktop) */
.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  padding: 12px 20px 12px 12px;
  border-radius: var(--r-pill);
  background: rgba(255, 203, 31, 0.1);
  border: 1px solid rgba(255, 203, 31, 0.38);
  color: var(--yellow);
  font-family: var(--font-head);
  font-weight: 800;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.footer-phone:hover {
  transform: translateY(-2px);
  background: rgba(255, 203, 31, 0.16);
  box-shadow: var(--glow-yellow);
  color: var(--yellow);
}
.footer-phone-ic {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--grad-cta);
  color: #2a0c52;
}
.footer-phone-ic svg { width: 21px; height: 21px; }
.footer-phone-num { font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.5rem); letter-spacing: 0.01em; white-space: nowrap; }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  align-items: center;
  padding-top: 24px;
  border-top: 1px solid var(--hairline);
  color: var(--muted-soft);
  font-size: 0.88rem;
}
.footer-bottom a { color: var(--muted); }
.footer-bottom a:hover { color: var(--white); }

/* ------------------------------------------------------------------ */
/* Floating WhatsApp button                                           */
/* ------------------------------------------------------------------ */
.fab-whats {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 90;
  width: 60px; height: 60px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #29d366, #1faa4f);
  color: #fff;
  box-shadow: 0 10px 36px rgba(37, 211, 102, 0.5);
  transition: transform 0.25s var(--ease);
}
.fab-whats svg { width: 30px; height: 30px; }
.fab-whats::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid #29d366;
  animation: ring 2.4s ease-out infinite;
}
.fab-whats:hover { transform: scale(1.08); }

/* ------------------------------------------------------------------ */
/* 17. Animations                                                      */
/* ------------------------------------------------------------------ */
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-16px) rotate(2deg); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.7; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.06); }
}
@keyframes ring {
  0% { transform: scale(1); opacity: 0.7; }
  100% { transform: scale(1.7); opacity: 0; }
}
@keyframes kernel-pop {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }
.reveal.d1 { transition-delay: 0.08s; }
.reveal.d2 { transition-delay: 0.16s; }
.reveal.d3 { transition-delay: 0.24s; }
.reveal.d4 { transition-delay: 0.32s; }
.reveal.d5 { transition-delay: 0.40s; }

/* ------------------------------------------------------------------ */
/* 18. Responsive                                                      */
/* ------------------------------------------------------------------ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .tgrid-3d { grid-template-columns: repeat(2, 1fr); }
  .seo-facts { grid-template-columns: 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { order: -1; min-height: 300px; }
  .hero-stage { max-width: 340px; }
  .pricing-wrap { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 900px) {
  /* mobile nav drawer */
  .nav-toggle { display: block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 16px var(--gutter) 24px;
    background: rgba(11, 4, 22, 0.97);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--hairline);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transform: translateY(-120%);
    transition: transform 0.35s var(--ease);
    max-height: calc(100dvh - var(--header-h));
    overflow-y: auto;
  }
  .nav.open { transform: translateY(0); }
  .nav a { padding: 14px 12px; font-size: 1.05rem; border-radius: var(--r-sm); }
  .nav a::after { display: none; }
  .nav a:hover { background: rgba(255, 255, 255, 0.06); }
  .header-cta .btn-nav-hide { display: none; }
  .header-cta { gap: 8px; }
}

@media (max-width: 360px) {
  .header-phone-text { display: none; }
  .header-phone { padding: 10px; border-radius: 50%; gap: 0; }
}

@media (max-width: 560px) {
  .grid-2, .grid-3, .grid-4, .tgrid-3d { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-cards { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-actions, .hero-actions .btn { width: 100%; }
  .footer-bottom { justify-content: center; text-align: center; }
  .btn-hero { padding: 20px 36px; font-size: 1.15rem; }
  .channels-cta-inner { padding-inline: clamp(18px, 5vw, 28px); }
  .channels-cta-inner .btn { width: 100%; }
}

/* ------------------------------------------------------------------ */
/* Countdown banner                                                    */
/* ------------------------------------------------------------------ */
.countdown-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px clamp(8px, 1.5vw, 14px);
  padding: 10px var(--gutter);
  background: rgba(6, 2, 12, 0.97);
  border-bottom: 1px solid rgba(255, 203, 31, 0.18);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  font-family: var(--font-head);
  font-size: 0.84rem;
  color: var(--muted);
}
.countdown-bar.hidden { display: none; }
.cd-label {
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}
.cd-timer {
  display: flex;
  align-items: center;
  gap: 5px;
}
.cd-unit {
  display: inline-flex;
  align-items: baseline;
  gap: 3px;
}
.cd-num {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.02rem;
  color: var(--yellow);
  letter-spacing: -0.01em;
  font-variant-numeric: tabular-nums;
  min-width: 2ch;
  display: inline-block;
  text-align: right;
}
.cd-u {
  font-size: 0.7rem;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}
.cd-colon {
  color: rgba(255, 203, 31, 0.45);
  font-weight: 800;
  font-size: 0.85rem;
  line-height: 1;
  padding-bottom: 2px;
}
.cd-tail { font-weight: 600; font-size: 0.82rem; white-space: nowrap; }

/* ------------------------------------------------------------------ */
/* Device compatibility strip                                          */
/* ------------------------------------------------------------------ */
.device-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 3px 7px;
  margin-top: 18px;
  font-family: var(--font-head);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--muted);
  line-height: 1.6;
}
.ds-sep {
  color: var(--card-border);
  font-size: 0.75rem;
  line-height: 1;
}

/* ------------------------------------------------------------------ */
/* Mobile sticky CTA bar                                               */
/* ------------------------------------------------------------------ */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 89;
  padding: 10px var(--gutter) calc(10px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(to top, rgba(6, 2, 12, 0.98) 65%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  pointer-events: none;
}
.mobile-sticky-bar.visible {
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
  animation: slide-up-bar 0.32s var(--ease) both;
}
@keyframes slide-up-bar {
  from { transform: translateY(100%); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}
.mobile-sticky-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  max-width: 420px;
  padding: 15px 22px;
  border-radius: var(--r-pill);
  background: var(--grad-cta);
  color: #2a0c52;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1rem;
  box-shadow: 0 8px 30px rgba(255, 174, 0, 0.5);
  white-space: nowrap;
  text-decoration: none;
  transition: transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
}
.mobile-sticky-cta:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(255, 174, 0, 0.65); }
.mobile-sticky-cta svg { width: 1.15em; height: 1.15em; flex-shrink: 0; }

@media (max-width: 900px) {
  body.has-sticky-bar .fab-whats {
    bottom: calc(68px + clamp(16px, 3vw, 28px));
    transition: bottom 0.3s var(--ease), transform 0.25s var(--ease);
  }
}

/* ------------------------------------------------------------------ */
/* Reduced motion                                                      */
/* ------------------------------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  /* fully stop looping decorative motion (belt-and-suspenders) */
  .fab-whats::before, .float-icon, .orb-main, .kernel { animation: none !important; }
}
