/* Ads Gorilla — Cosmic Premium Design System
 * Matches the demo aesthetic: deep cosmic black + electric violet + glass nav + dashboard imagery
 * 2026 rebuild
 */

:root {
  /* ===== CORE PALETTE ===== */
  --bg: #fafbff;
  --bg-raised: #f3f5fb;
  --bg-deep: #eef1f8;

  /* ===== TEXT ===== */
  --text-primary: #0a0e1f;
  --text-soft: #1a1f3a;
  --text-muted: #4a5070;
  --text-dim: #6b7090;

  /* ===== ACCENT (Electric Violet) ===== */
  --accent: #7555ff;
  --accent-bright: #a790ff;
  --accent-soft: #c4b0ff;
  --accent-deep: #5630a8;
  --accent-glow: rgba(117, 85, 255, 0.38);
  --accent-glow-strong: rgba(149, 87, 255, 0.58);

  /* ===== GOLD ===== */
  --gold: #e2a938;
  --gold-line: rgba(210, 145, 32, 0.83);

  /* ===== BLUE (cyan accent) ===== */
  --blue: #80bcff;
  --blue-glow: rgba(91, 160, 255, 0.56);

  /* ===== LINES / BORDERS ===== */
  --line-soft: rgba(210, 202, 255, 0.13);
  --line: rgba(210, 202, 255, 0.21);
  --line-strong: rgba(219, 211, 255, 0.24);
  --line-bright: rgba(219, 211, 255, 0.36);

  /* ===== GLASS / SURFACES ===== */
  --glass-soft: rgba(11, 12, 22, 0.62);
  --glass-panel: rgba(9, 10, 19, 0.76);
  --glass-rim: rgba(255, 255, 255, 0.18);
  --glass-rim-soft: rgba(255, 255, 255, 0.08);
  --glass-highlight: linear-gradient(145deg, rgba(255,255,255,0.20), transparent 34%, rgba(151,129,255,0.08) 62%, transparent);
  --glass-sheen: linear-gradient(100deg, transparent 0%, rgba(255,255,255,0.18) 43%, transparent 64%);
  --glass-blur: blur(18px) saturate(1.22);

  --surface-card: linear-gradient(135deg, rgba(35, 37, 50, 0.46), rgba(8, 9, 16, 0.90) 47%, rgba(4, 5, 10, 0.96));
  --surface-card-accent: radial-gradient(circle at 18% 0%, rgba(127, 96, 255, 0.12), transparent 17rem);
  --surface-glass: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.06) 42%, rgba(130, 105, 255, 0.12));
  --surface-control: linear-gradient(135deg, rgba(255,255,255,0.16), rgba(255,255,255,0.04) 48%, rgba(119, 88, 255, 0.15));
  --surface-control-strong: linear-gradient(135deg, rgba(139, 101, 255, 0.90), rgba(47, 35, 112, 0.92));

  /* ===== VIGNETTES ===== */
  --section-vignette: linear-gradient(90deg, rgba(0,0,0,0.88), transparent 20%, transparent 80%, rgba(0,0,0,0.88));
  --section-fade-bottom: linear-gradient(180deg, transparent, rgba(2,2,7,0.94));

  /* ===== RADII ===== */
  --radius-control: 999px;
  --radius-button: 18px;
  --radius-panel: 20px;
  --radius-card: 14px;
  --radius-shell: 28px;

  /* ===== SHADOWS ===== */
  --shadow-control: 0 14px 30px rgba(0, 0, 0, 0.22);
  --shadow-panel: 0 30px 94px rgba(0, 0, 0, 0.42), 0 0 34px rgba(117, 85, 255, 0.08);
  --shadow-card: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 24px rgba(117, 85, 255, 0.07);
  --shadow-violet: 0 0 36px var(--accent-glow);

  /* ===== LAYOUT ===== */
  --section-max: 1620px;
  --section-pad-x: 24px;
  --section-pad-y: 112px;

  /* ===== FONTS ===== */
  --font-body: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Bebas Neue", Impact, Haettenschweiler, "Arial Narrow Bold", sans-serif;
}

/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
html, body { overflow-x: hidden; }
body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text-primary);
  line-height: 1.55;
  font-size: 16px;
  font-feature-settings: "cv02","cv03","cv04","cv11";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(107, 76, 230, 0.06), transparent 30rem),
    radial-gradient(circle at 20% 80%, rgba(91, 160, 255, 0.05), transparent 30rem),
    linear-gradient(180deg, var(--bg) 0%, var(--bg-raised) 62%, var(--bg-deep) 100%);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }

/* ===== UTILS ===== */
.container { max-width: var(--section-max); margin: 0 auto; padding: 0 var(--section-pad-x); }
.muted { color: var(--text-muted); }
.kicker {
  /* neon glow */
  color: var(--accent-bright);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 24px;
}

/* ============================================================
   HERO NAV (Glass Pill)
   ============================================================ */
.site-header { position: fixed; top: 0; left: 0; right: 0; z-index: 100; }
.hero-nav-space { display: block; height: 72px; width: 100%; }

.hero-nav {
  z-index: 100;
  border: 1px solid var(--line);
  background: rgba(11, 12, 22, 0.92);
  pointer-events: auto;
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
  border-radius: 0;
  align-items: center;
  width: 100%;
  height: 72px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  overflow: visible;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.30),
    inset 0 -1px rgba(255, 255, 255, 0.08);
  gap: 24px;
  isolation: isolate;
}
.hero-nav::before {
  content: "";
  border-radius: 0;
  opacity: 0.4;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255,255,255,0.06), transparent 50%),
    radial-gradient(circle at 78% 50%, rgba(255,255,255,0.06), transparent 30rem);
  position: absolute;
  inset: 0;
}
.hero-nav::after {
  content: "";
  opacity: 0.5;
  pointer-events: none;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.20), transparent);
  height: 1px;
  position: absolute;
  top: 0;
  left: 22px;
  right: 22px;
}

.hero-brand {
  z-index: 1;
  color: #ffffff;
  align-items: center;
  gap: 0;
  font-size: 22px;
  font-weight: 800;
  text-decoration: none;
  display: flex !important;
  position: relative;
  flex-shrink: 0;
  height: 72px;
  padding: 0;
}
.hero-brand img { height: 32px !important; width: auto !important; max-width: 180px !important; max-height: 32px !important; }

.hero-links {
  z-index: 1;
  justify-content: center !important;
  gap: clamp(8px, 1.4vw, 24px) !important;
  flex: 1 1 auto !important;
  min-width: 0;
  align-items: center !important;
  display: flex !important;
  flex-direction: row !important;
  position: relative;
  overflow: hidden;
  height: 72px;
  padding: 0 12px;
  margin-left: auto;
}
.hero-links a {
  color: #ffffff;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  display: flex;
  position: relative;
  white-space: nowrap;
  flex-shrink: 0;
  padding: 8px 6px;
}
.hero-links a.active { color: #ffffff; }
.hero-links a.active::after {
  content: "";
  background: linear-gradient(90deg, transparent, var(--accent-bright), transparent);
  width: 92px;
  height: 2px;
  position: absolute;
  bottom: -1px;
  left: 50%;
  transform: translate(-50%);
}

.hero-nav-actions {
  z-index: 1;
  justify-content: flex-end !important;
  gap: 8px !important;
  align-items: center !important;
  display: flex !important;
  flex-direction: row !important;
  position: relative;
  flex-shrink: 0;
  height: 72px;
  margin-left: auto;
}

.hero-nav-secondary {
  border: 1px solid rgba(255, 255, 255, 0.30);
  min-height: 42px;
  color: #ffffff;
  white-space: nowrap;
  background: linear-gradient(135deg, rgba(255,255,255,0.07), rgba(255,255,255,0.02) 52%, rgba(119, 88, 255, 0.07));
  border-radius: var(--radius-control);
  justify-content: center;
  align-items: center;
  padding: 0 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: color .18s, border-color .18s, background .18s, transform .18s, box-shadow .18s;
  display: inline-flex;
}
.hero-nav-secondary:hover {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.50);
  background: linear-gradient(135deg, rgba(255,255,255,0.18), rgba(255,255,255,0.05) 52%, rgba(119, 88, 255, 0.25));
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,0.4), inset 0 1px rgba(255,255,255,0.20);
}

.hero-nav-cta {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 46%, var(--accent-deep) 100%);
  min-height: 42px;
  box-shadow:
    0 12px 28px rgba(0,0,0,0.28),
    0 8px 22px var(--accent-glow),
    inset 0 1px 0 rgba(255,255,255,0.40),
    inset 0 -9px 20px rgba(45, 33, 108, 0.40);
  -webkit-backdrop-filter: blur(16px) saturate(1.22);
  backdrop-filter: blur(16px) saturate(1.22);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-control);
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 0 20px;
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s, border-color .18s, box-shadow .18s, background .18s;
  display: inline-flex;
}
.hero-nav-cta::before,
.hero-nav-cta::after {
  content: "";
  pointer-events: none;
  position: absolute;
}
.hero-nav-cta::before {
  border-radius: inherit;
  opacity: 0.64;
  mix-blend-mode: screen;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.28), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.18), transparent 5rem);
  inset: 1px;
}
.hero-nav-cta::after {
  opacity: 0.18;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  width: 58%;
  height: 230%;
  transition: transform .52s;
  top: -72%;
  left: -36%;
  transform: rotate(24deg);
}
.hero-nav-cta:hover {
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-2px);
  box-shadow:
    0 18px 40px rgba(0,0,0,0.34),
    0 12px 30px var(--accent-glow-strong),
    inset 0 1px 0 rgba(255,255,255,0.50),
    inset 0 -9px 20px rgba(45, 33, 108, 0.42);
}
.hero-nav-cta:hover::after { transform: translate(250%) rotate(24deg); }
.hero-nav-cta img { width: 16px !important; height: 16px !important; object-fit: contain; position: relative; max-width: 16px; max-height: 16px; }
.hero-nav-secondary img { width: 16px !important; height: 16px !important; object-fit: contain; max-width: 16px; max-height: 16px; }
.hero-nav img { max-width: 24px; max-height: 24px; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  z-index: 1;
  background:
    radial-gradient(circle at 67% 42%, rgba(94, 68, 190, 0.36), transparent 26rem),
    radial-gradient(circle at 76% 48%, rgba(120, 91, 255, 0.28), transparent 35rem),
    linear-gradient(180deg, #020207 0%, #05040b 62%, #010104 100%);
  flex-direction: column;
  width: min(100%, 2400px);
  min-height: 100svh;
  margin: 0 auto;
  padding: clamp(36px, 1.55vw, 42px) 10% clamp(72px, 5.2vw, 124px);
  display: flex;
  position: relative;
  overflow: hidden;
}
.hero-section::before,
.hero-section::after {
  content: "";
  pointer-events: none;
  position: absolute;
}
.hero-section::before {
  z-index: 0;
  background:
    linear-gradient(90deg, rgba(0,0,0,0.92) 0%, rgba(0,0,0,0.28) 34%, rgba(0,0,0,0.08) 63%, rgba(0,0,0,0.88) 100%),
    linear-gradient(rgba(0,0,0,0.2), transparent 42%, rgba(0,0,0,0.72) 89%);
  inset: 0;
}
.hero-section::after {
  z-index: 2;
  background: linear-gradient(transparent, rgba(1,1,4,0.92));
  height: 170px;
  bottom: 0;
  left: 0;
  right: 0;
}

.hero-stage {
  z-index: 3;
  flex: auto;
  min-height: 0;
  margin-top: -2px;
  position: relative;
}

.hero-visual {
  z-index: 1;
  object-fit: cover;
  object-position: center right;
  filter: saturate(1.06) contrast(1.04);
  width: 100%;
  height: 100%;
  pointer-events: none;
  will-change: opacity;
  transition: opacity .92s cubic-bezier(.16,1,.3,1);
  display: block;
  position: absolute;
  inset: 0;
}
.hero-visual video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
}

/* Hero content (text overlay) */
.hero-content {
  z-index: 4;
  position: absolute;
  display: grid;
  inset: 0;
  padding: 0 10%;
  height: 100%;
}
.hero-message {
  position: relative;
}
.hero-message-top {
  place-self: start;
  padding-top: clamp(40px, 8vw, 100px);
}
.hero-message-bottom {
  text-align: right;
  place-self: end;
  max-width: 760px;
  padding-bottom: clamp(20px, 4vw, 60px);
}

.hero-eyebrow {
  color: var(--accent-bright);
  letter-spacing: 0.42em;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 18px;
}
.hero-title {
  max-width: 1120px;
  color: #f4f2fb;
  font-family: var(--font-display);
  letter-spacing: 0.008em;
  text-transform: uppercase;
  text-align: left;
  background: linear-gradient(105deg,
    #ded9eb 0%, #ffffff 13%, #faf8ff 18%, #9b8ee0 27%,
    #f5f1ff 42%, #ffffff 46%, #8c79dd 53%, #f4f1fa 68%, #cdc5ea 100%) 0 0 / 320% 100%;
  -webkit-text-fill-color: transparent;
  text-shadow:
    0 0 22px rgba(247, 244, 255, 0.34),
    0 0 58px rgba(130, 101, 255, 0.28),
    0 16px 38px rgba(0, 0, 0, 0.6);
  -webkit-background-clip: text;
  background-clip: text;
  margin: 0;
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 400;
  line-height: 1.02;
  animation: 6.4s ease-in-out infinite hero-title-sheen;
  position: relative;
}
.hero-title-secondary {
  max-width: 760px;
}
@keyframes hero-title-sheen {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.hero-sub {
  color: #ffffff;
  font-size: clamp(16px, 1.3vw, 19px);
  line-height: 1.5;
  margin-top: 18px;
  max-width: 540px;
  text-shadow: 0 2px 14px rgba(0,0,0,0.6);
}
.hero-actions {
  display: flex;
  gap: 14px;
  margin-top: 30px;
  flex-wrap: wrap;
}
.hero-button {
  position: relative;
  overflow: hidden;
  z-index: 1;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-bright) 0%, var(--accent) 46%, var(--accent-deep) 100%);
  min-height: 56px;
  box-shadow:
    0 14px 30px rgba(0,0,0,0.34),
    0 10px 24px var(--accent-glow),
    inset 0 1px 0 rgba(255,255,255,0.40),
    inset 0 -9px 20px rgba(45, 33, 108, 0.40);
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: var(--radius-control);
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  font-size: 16px;
  font-weight: 800;
  text-decoration: none;
  transition: transform .18s, border-color .18s, box-shadow .18s;
  display: inline-flex;
}
.hero-button::before, .hero-button::after {
  content: "";
  pointer-events: none;
  position: absolute;
}
.hero-button::before {
  border-radius: inherit;
  opacity: 0.64;
  mix-blend-mode: screen;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.28), transparent 36%),
    radial-gradient(circle at 78% 18%, rgba(255,255,255,0.18), transparent 5rem);
  inset: 1px;
}
.hero-button::after {
  opacity: 0.18;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.32), transparent);
  width: 58%;
  height: 230%;
  transition: transform .52s;
  top: -72%;
  left: -36%;
  transform: rotate(24deg);
}
.hero-button:hover {
  border-color: rgba(255,255,255,0.50);
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(0,0,0,0.34),
    0 0 24px rgba(151, 119, 255, 0.16),
    inset 0 1px 0 rgba(255,255,255,0.50),
    inset 0 -10px 22px rgba(60, 42, 132, 0.22);
}
.hero-button:hover::after { transform: translate(250%) rotate(24deg); }
.hero-button img { width: 24px; height: 24px; object-fit: contain; }

/* Floating glass chips beside hero */
.hero-chips {
  position: absolute;
  top: 8%;
  right: 4%;
  z-index: 4;
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 240px;
}
.hero-chip {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: var(--glass-soft);
  backdrop-filter: blur(16px) saturate(1.4);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-control);
  font-size: 13px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 14px 30px rgba(0,0,0,0.22);
}
.hero-chip .dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--accent-bright);
  box-shadow: 0 0 12px var(--accent-glow);
}

/* ============================================================
   NIGHTMARE SECTION
   ============================================================ */
.nightmare-section {
  z-index: 1;
  background:
    radial-gradient(at 18% 18%, rgba(107, 76, 230, 0.08), transparent 28rem),
    radial-gradient(at 82% 44%, rgba(138, 111, 245, 0.06), transparent 34rem),
    linear-gradient(180deg, #e8ebf3 0%, #f0f2f8 50%, #e8ebf3 100%);
  padding: 132px var(--section-pad-x) 112px;
  position: relative;
  overflow: hidden;
}
.nightmare-shell {
  z-index: 1;
  width: min(100%, 1480px);
  margin: 0 auto;
  position: relative;
}
.nightmare-orbit {
  opacity: 0.42;
  pointer-events: none;
  border: 2px solid rgba(151, 126, 255, 0.34);
  border-radius: 50%;
  width: min(860px, 60vw);
  height: min(860px, 60vw);
  position: absolute;
  top: -106px;
  left: 25%;
  transform: translate(-50%);
  box-shadow:
    0 0 42px rgba(129, 100, 255, 0.30),
    inset 0 0 34px rgba(129, 100, 255, 0.18);
}
.nightmare-layout {
  z-index: 2;
  align-items: start;
  gap: clamp(54px, 7vw, 112px);
  display: grid;
  position: relative;
  grid-template-columns: minmax(390px, 0.86fr) minmax(460px, 0.92fr);
}
.nightmare-hero {
  text-align: left;
  justify-content: flex-start;
  min-height: 0;
  padding: 10px 0 0;
  display: flex;
  position: sticky;
  top: 144px;
}
.nightmare-copy { z-index: 2; width: min(100%, 660px); margin: 0; position: relative; }
.nightmare-kicker {
  color: #a78cff;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin: 0 0 30px;
  font-size: 14px;
  font-weight: 800;
}
.nightmare-title {
  letter-spacing: 0.01em;
  color: var(--text-primary);
  text-transform: uppercase;
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 6.4vw, 80px);
  font-weight: 400;
  line-height: 0.96;
}
.nightmare-title span { color: #7555ff; }

.nightmare-ticker {
  background: linear-gradient(90deg, rgba(118, 92, 255, 0.10), rgba(255,255,255,0.02), rgba(118, 92, 255, 0.08));
  border-block: 1px solid rgba(199, 190, 255, 0.15);
  width: min(100%, 620px);
  margin-top: 46px;
  position: relative;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10% 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10% 90%, transparent);
}
.nightmare-ticker-track {
  display: flex;
  gap: 22px;
  padding: 16px 0;
  width: max-content;
  animation: nm-marquee 22s linear infinite;
}
.nightmare-ticker-group {
  display: flex;
  gap: 22px;
  padding-right: 22px;
}
.nightmare-ticker .pill {
  border: 1px solid var(--line-strong);
  background: var(--glass-soft);
  backdrop-filter: blur(12px);
  color: var(--text-soft);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
}
@keyframes nm-marquee {
  to { transform: translateX(-50%); }
}

.nightmare-grid {
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}
.nightmare-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: var(--shadow-card);
  overflow: hidden;
}
.nightmare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--surface-card-accent);
  pointer-events: none;
  opacity: 0.7;
}
.nightmare-card > * { position: relative; }
.nightmare-card h3 {
  color: var(--text-primary);
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.nightmare-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.55;
}
.nightmare-card .nm-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--font-display);
  color: var(--accent-bright);
  font-size: 28px;
  line-height: 1;
  opacity: 0.7;
}

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-section {
  z-index: 1;
  width: min(100%, 1954px);
  margin: 0 auto;
  padding: 145px clamp(34px, 5.4vw, 86px) 66px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f5f7fc 0%, #fafbff 50%, #f5f7fc 100%);
}
.services-hero {
  z-index: 2;
  align-items: start;
  gap: 120px;
  width: min(100%, 1540px);
  margin: 0 auto;
  display: grid;
  position: relative;
  grid-template-columns: minmax(0, 1fr) 438px;
}
.services-kicker {
  color: #7555ff;
  text-transform: uppercase;
  margin: 0 0 22px;
  font-size: 14px;
  font-weight: 800;
}
.services-title {
  max-width: 1240px;
  margin: 42px 0 0;
  font-family: var(--font-display);
  font-size: clamp(48px, 8.5vw, 96px);
  font-weight: 400;
  line-height: 0.98;
}
.services-title span { color: #7555ff; }

.services-aside {
  color: var(--text-muted);
  text-align: left;
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.55;
}
.services-aside .aside-line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--accent-bright);
  margin-bottom: 18px;
}

.platform-cards {
  display: grid;
  gap: 39px;
  padding: 80px 0 54px;
  position: relative;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.platform-card {
  text-align: left;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
              radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.15), transparent 60%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 12px;
  min-height: 720px;
  padding: 56px 48px 44px;
  box-shadow: var(--shadow-card), 0 0 40px rgba(107, 76, 230, 0.30);
  display: flex;
  flex-direction: column;
}
.platform-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--glass-highlight);
  opacity: 0.5;
  pointer-events: none;
}
.platform-card > * { position: relative; }
.brand-orb {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  position: relative;
  border: 1px solid rgba(250, 232, 159, 0.70);
  box-shadow: inset 0 0 0 18px #090c13, inset 0 0 0 25px rgba(255,255,255,0.04), 0 0 28px rgba(235, 190, 68, 0.22);
}
.facebook-orb {
  background: conic-gradient(from -30deg, #1877f2, #4267B2, #1877f2);
}
.google-orb {
  background: conic-gradient(from -30deg, #4285f4, #34a853, #fbbc05, #ea4335, #4285f4);
}
.tiktok-orb {
  background: conic-gradient(from -30deg, #25f4ee, #fe2c55, #000, #25f4ee);
}
.brand-orb img { width: 46px; height: 46px; filter: brightness(1.2); }
.card-kicker {
  color: var(--accent-bright);
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 8px;
}
.platform-card h2 {
  letter-spacing: 0.01em;
  text-transform: uppercase;
  color:#ffffff;
  margin: 20px 0 18px;
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 400;
  line-height: 1;
}
.platform-card p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 22px;
}
.platform-card ul {
  gap: 18px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  display: grid;
}
.platform-card li {
  color: rgba(255, 255, 255, 0.85);
  padding-left: 36px;
  font-size: 15px;
  line-height: 1.45;
  position: relative;
}
.platform-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  color: var(--accent-bright);
  font-weight: 800;
}
.platform-card-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent) 46%, var(--accent-deep));
  border-radius: 999px;
  padding: 12px 24px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow: 0 12px 28px rgba(0,0,0,0.32), 0 6px 18px var(--accent-glow);
  border: 1px solid rgba(255,255,255,0.22);
  transition: transform .18s, box-shadow .18s;
}
.platform-card-cta:hover { transform: translateY(-2px); box-shadow: 0 18px 36px rgba(0,0,0,0.36), 0 8px 22px var(--accent-glow-strong); }
.platform-card-cta img { width: 16px; height: 16px; }

/* Service strip (icons row) */
.service-strip {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
  padding: 28px 36px;
  border: 1px solid var(--line);
  background: var(--surface-card);
  border-radius: var(--radius-panel);
  box-shadow: var(--shadow-card);
}
.strip-icon {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 0;
}
.strip-icon img {
  width: 28px;
  height: 28px;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(138, 111, 245, 0.50));
}
.strip-icon span {
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
}
/* ============================================================
   TRUST SECTION (Earth Horizon)
   ============================================================ */
.trust-section {
  z-index: 1;
  text-align: center;
  background: linear-gradient(180deg, #f7efff 0%, #f5eafa 100%);
  width: min(100%, 1954px);
  min-height: 1040px;
  margin: 0 auto;
  padding: 126px 84px 118px;
  position: relative;
  overflow: hidden;
}
.trust-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(91, 160, 255, 0.10), transparent 30%),
    radial-gradient(circle at 80% 90%, rgba(151, 113, 255, 0.12), transparent 30%);
  pointer-events: none;
}
.trust-orb {
  z-index: 1;
  background: linear-gradient(90deg, transparent, rgba(151, 113, 255, 0.82), rgba(255,255,255,0.96), rgba(151, 113, 255, 0.82), transparent);
  width: min(760px, 54vw);
  height: 2px;
  position: absolute;
  top: 470px;
  left: 50%;
  transform: translate(-50%);
  box-shadow:
    0 0 18px rgba(146, 107, 255, 0.86),
    0 0 60px rgba(108, 80, 255, 0.58);
}
.trust-title {
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-primary);
  margin: 0 auto;
  font-size: clamp(48px, 6.2vw, 96px);
  line-height: 1.14;
  max-width: 1200px;
}
.trust-title span { color: #7555ff; }
.trust-subcopy {
  color: var(--text-muted);
  margin: 126px auto 0;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.55;
  max-width: 800px;
}
.trust-stats {
  position: relative;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.18);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
  background:
    linear-gradient(120deg, #2d1b69, #4a2a8f 50%, #6b4ce6),
    radial-gradient(circle at 14% 26%, rgba(255, 255, 255, 0.18), transparent 17rem),
    radial-gradient(circle at 88% 28%, rgba(91, 160, 255, 0.30), transparent 16rem);
  border-radius: 34px;
  width: min(100%, 1780px);
  min-height: 296px;
  margin: 108px auto 64px;
  padding: 58px 52px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  box-shadow:
    inset 0 0 0 1px rgba(255,255,255,0.18),
    0 34px 90px rgba(0,0,0,0.52);, 0 0 40px rgba(107, 76, 230, 0.40);
}
.trust-stat {
  align-content: center;
  min-width: 0;
  min-height: 178px;
  padding: 20px 34px 0;
  display: grid;
  position: relative;
  border-left: 1px solid var(--line-bright);
}
.trust-stat:first-child { border-left: 0; }
.trust-stat strong {
  font-family: var(--font-display);
  font-size: clamp(56px, 6vw, 88px);
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1;
}
.trust-stat strong span { color: #ffffff; }
.trust-stat span.label {
  color: rgba(255, 255, 255, 0.85);
  font-size: 16px;
  font-weight: 700;
  margin-top: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.trust-pin {
  background: var(--accent-bright);
  border-radius: 50%;
  width: 8px;
  height: 8px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%);
  box-shadow: 0 0 18px 7px rgba(136, 91, 255, 0.58);
}
.trust-stat:nth-child(2) .trust-pin { background: #80bcff; box-shadow: 0 0 18px 7px rgba(91, 160, 255, 0.56); }
.trust-stat:nth-child(3) .trust-pin { background: var(--gold); box-shadow: 0 0 18px 7px rgba(245, 179, 66, 0.56); }
.trust-stat:nth-child(4) .trust-pin { background: #ff5cb1; box-shadow: 0 0 18px 7px rgba(255, 92, 177, 0.56); }

.partner-strip {
  margin-top: 80px;
  padding: 30px 0;
  border: 1px solid rgba(210, 202, 255, 0.21);
  background: linear-gradient(135deg, rgba(35, 37, 50, 0.96) 0%, rgba(8, 9, 16, 0.99) 47%, rgba(4, 5, 10, 1.00) 100%);
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.32), 0 0 24px rgba(117, 85, 255, 0.16);
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.partner-marquee {
  display: flex;
  gap: 60px;
  width: max-content;
  animation: partner-marquee 40s linear infinite;
}
.partner-icon {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #ffffff;
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
}
.partner-icon img {
  width: 28px;
  height: 28px;
  opacity: 1;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(138, 111, 245, 0.55));
}
@keyframes partner-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ============================================================
   FEATURES / BENTO SECTION
   ============================================================ */
.features-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  position: relative;
  background: linear-gradient(180deg, #fff0f6 0%, #fff5f0 100%);
}
.features-shell {
  width: min(100%, 1480px);
  margin: 0 auto;
}
.features-header {
  text-align: center;
  margin-bottom: 60px;
}
.features-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6.4vw, 88px);
  line-height: 1;
  margin: 12px 0 14px;
}
.features-title span { color: #7555ff; }
.features-sub {
  color: var(--text-muted);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.55;
}

.bento {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 900px) {
  .bento { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .bento { grid-template-columns: 1fr; }
}
.bento-card {
  position: relative;
  overflow: hidden;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 210px;
  transition: transform .3s, border-color .3s, box-shadow .3s;
  box-shadow: var(--shadow-card);
}
/* Force uniform sizing: ignore span modifiers so grid stays clean 3-col */
.bento-card.span-2 { grid-column: auto; }
.bento-card.span-row-2 { grid-row: auto; }
.bento-card:hover {
  border-color: rgba(117, 85, 255, 0.4);
  transform: translateY(-2px);
  box-shadow: var(--shadow-panel);
}
.bento-card.feature-bg {
  background:
    linear-gradient(135deg, rgba(107, 76, 230, 0.20), rgba(138, 111, 245, 0.16), rgba(91, 160, 255, 0.20)),
    radial-gradient(600px 300px at 0% 100%, rgba(138, 111, 245, 0.18), transparent 60%),
    radial-gradient(600px 300px at 100% 0%, rgba(255, 62, 181, 0.12), transparent 60%),
    repeating-linear-gradient(0deg, transparent, transparent 28px, rgba(138, 111, 245, 0.05) 28px, rgba(138, 111, 245, 0.05) 30px),
    repeating-linear-gradient(90deg, transparent, transparent 28px, rgba(91, 160, 255, 0.04) 28px, rgba(91, 160, 255, 0.04) 30px),
    var(--surface-card);
  border-color: rgba(138, 111, 245, 0.50);
  box-shadow:
    0 0 0 1px rgba(138, 111, 245, 0.20),
    0 0 40px rgba(138, 111, 245, 0.30);
  position: relative;
  overflow: hidden;
}
.bento-card.feature-bg::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      135deg,
      transparent 0px,
      transparent 12px,
      rgba(255, 255, 255, 0.06) 12px,
      rgba(255, 255, 255, 0.06) 14px
    );
  pointer-events: none;
  z-index: 0;
}
.bento-card.feature-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.20), transparent 40%),
    radial-gradient(circle at 80% 20%, rgba(91, 160, 255, 0.18), transparent 40%);
  pointer-events: none;
  z-index: 0;
}
.bento-card.feature-bg > * { position: relative; z-index: 1; }
.bento-card .icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(117, 85, 255, 0.18), transparent);
  border: 1px solid rgba(117, 85, 255, 0.20);
  display: flex;
  align-items: center;
  justify-content: center;
}
.bento-card .icon-bg img {
  width: 26px;
  height: 26px;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(138, 111, 245, 0.60));
}
.bento-card .num {
  position: absolute;
  top: 20px; right: 24px;
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-bright);
  padding: 4px 10px;
  border-radius: 6px;
  background: rgba(117, 85, 255, 0.12);
  border: 1px solid rgba(117, 85, 255, 0.30);
}
.bento-card h3 {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
}
.bento-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.bento-card.feature-bg h3 { font-size: 22px; }
.bento-card.feature-bg p { font-size: 15px; }

/* ============================================================
   REVIEWS SECTION
   ============================================================ */
.reviews-section {
  z-index: 1;
  padding: 130px 0 130px;
  background: linear-gradient(180deg, #effaff 0%, #f0f7ff 100%);
  overflow: hidden;
}
.reviews-shell
.reviews-shell { width: 100%; margin: 0 auto; }
.reviews-header {
  text-align: center;
  margin-bottom: 60px;
}
.reviews-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.reviews-title span { color: #7555ff; }

.reviews-summary {
  display: flex;
  justify-content: center;
  gap: 60px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}
.review-stat {
  text-align: center;
}
.review-stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: 56px;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
}
.review-stat strong span { color: var(--gold); }
.review-stat span {
  display: block;
  color: var(--text-muted);
  font-size: 14px;
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 80px, #000 calc(100% - 80px), transparent 100%);
}
.reviews-grid {
  display: flex;
  gap: 26px;
  width: max-content;
  animation: reviews-marquee 70s linear infinite;
  will-change: transform;
}
.reviews-grid:hover { animation-play-state: paused; }
@keyframes reviews-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.review-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 36px 32px;
  overflow: hidden;
  flex: 0 0 400px;
  min-width: 400px;
}
.review-card::before {
  content: """;
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 140px;
  color: var(--accent-bright);
  opacity: 0.18;
  line-height: 1;
}
.review-card > * { position: relative; }
.review-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 18px;
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
}
.review-card p {
  color: var(--text-soft);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 28px;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 22px;
}
.review-author img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line-bright);
}
.review-author strong {
  color: var(--text-primary);
  font-size: 15px;
  font-weight: 700;
  display: block;
}
.review-author span {
  color: var(--text-muted);
  font-size: 13px;
}

/* ============================================================
   COMPARISON SECTION
   ============================================================ */
.comparison-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  background: linear-gradient(180deg, #f1fff5 0%, #f0fff4 100%);
}
.comparison-shell
.comparison-shell { width: min(100%, 1280px); margin: 0 auto; }
.comparison-header { text-align: center; margin-bottom: 60px; }
.comparison-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.comparison-title span { color: #7555ff; }

.comparison-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 50px;
  display: grid;
  grid-template-columns: 1.1fr 1.4fr 1.4fr;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.comparison-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--glass-highlight);
  opacity: 0.4;
  pointer-events: none;
}
.comparison-card > * { position: relative; }
.comparison-col h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 24px;
  color: var(--text-muted);
  margin-bottom: 22px;
}
.comparison-col.featured h3 { color: var(--accent-bright); }
.comparison-row {
  border-top: 1px solid var(--line);
  padding: 18px 0;
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 14px;
  color: var(--text-soft);
  line-height: 1.5;
}
.comparison-row:first-child { border-top: 0; }
.comparison-row .icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
}
.comparison-col.no .icon { background: rgba(255, 91, 110, 0.18); color: #ff5b6e; }
.comparison-col.no .comparison-row { color: var(--text-muted); }
.comparison-col.featured .icon { background: rgba(117, 85, 255, 0.20); color: var(--accent-bright); }

/* ============================================================
   GUARANTEES SECTION
   ============================================================ */
.guarantees-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  background: linear-gradient(180deg, #f7e8ff 0%, #fcf0ff 100%);
}
.guarantees-shell { width: min(100%, 1480px); margin: 0 auto; }
.guarantees-header { text-align: center; margin-bottom: 60px; }
.guarantees-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.guarantees-title span { color: #7555ff; }

.guarantee-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.guarantee-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 36px;
  overflow: hidden;
}
.guarantee-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--glass-highlight);
  opacity: 0.5;
  pointer-events: none;
}
.guarantee-card > * { position: relative; }
.guarantee-num {
  font-family: var(--font-display);
  font-size: 72px;
  color: var(--accent-bright);
  opacity: 0.7;
  line-height: 1;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.guarantee-card h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}
.guarantee-card p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   PROCESS SECTION
   ============================================================ */
.process-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  background: linear-gradient(180deg, #f7efff 0%, #f5eafa 100%);
}
.process-shell { width: min(100%, 1480px); margin: 0 auto; }
.process-header { text-align: center; margin-bottom: 70px; }
.process-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.process-title span { color: #7555ff; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}
.process-step {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 40px;
  position: relative;
}
.process-step::after {
  content: "→";
  position: absolute;
  right: -22px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  color: var(--accent-bright);
  z-index: 2;
  background: var(--bg);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
}
.process-step:last-child::after { display: none; }
.process-step .step-num {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--accent-bright);
  letter-spacing: 0.32em;
  margin-bottom: 18px;
  text-transform: uppercase;
}
.process-step h3 {
  color: var(--text-primary);
  font-size: 24px;
  font-weight: 800;
  margin-bottom: 14px;
}
.process-step p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/* ============================================================
   PRICING SECTION
   ============================================================ */
.pricing-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  background: linear-gradient(180deg, #fff0f6 0%, #fff5f0 100%);
}
.pricing-shell { width: min(100%, 1380px); margin: 0 auto; }
.pricing-header { text-align: center; margin-bottom: 60px; }
.pricing-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.pricing-title span { color: #7555ff; }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.pricing-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 85, 255, 0.30);
  box-shadow: var(--shadow-panel);
}
.pricing-card.featured {
  background:
    linear-gradient(180deg, rgba(117, 85, 255, 0.18), rgba(117, 85, 255, 0.04)),
    var(--surface-card);
  border-color: rgba(117, 85, 255, 0.40);
  box-shadow: var(--shadow-panel), 0 0 36px rgba(117, 85, 255, 0.20);
}
.pricing-card.featured::before {
  content: "MOST POPULAR";
  position: absolute;
  top: 16px;
  right: 16px;
  background: linear-gradient(135deg, var(--accent-bright), var(--accent));
  color: #fff;
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
}
.pricing-card .plan-name {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 22px;
  color: var(--text-primary);
  margin-bottom: 6px;
}
.pricing-card.featured .plan-name { color: var(--accent-bright); }
.pricing-card .plan-tag {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 22px;
}
.pricing-card .price {
  font-family: var(--font-display);
  font-size: 64px;
  color: var(--text-primary);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 4px;
  background: linear-gradient(135deg, var(--text-primary), var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card.featured .price {
  background: linear-gradient(135deg, var(--gold), var(--accent-bright));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.pricing-card .price-sub {
  color: var(--text-muted);
  font-size: 13px;
  margin-bottom: 26px;
}
.pricing-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
}
.pricing-card li {
  color: var(--text-soft);
  font-size: 14px;
  padding-left: 28px;
  position: relative;
  line-height: 1.4;
}
.pricing-card li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--accent-bright);
  font-weight: 800;
}
.pricing-card .pricing-cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(255,255,255,0.10), rgba(255,255,255,0.04) 48%, rgba(119, 88, 255, 0.20));
  border: 1px solid var(--line-strong);
  color: var(--text-primary);
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 800;
  font-size: 14px;
  text-decoration: none;
  transition: transform .18s, border-color .18s, background .18s;
  width: auto;
  min-width: 0;
}
.pricing-card .pricing-cta img { width: 14px; height: 14px; max-width: 14px; max-height: 14px; }
.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent) 46%, var(--accent-deep));
  color: #fff;
  border-color: rgba(255,255,255,0.30);
  box-shadow: 0 12px 28px rgba(0,0,0,0.32), 0 6px 18px var(--accent-glow);
}
.pricing-card .pricing-cta:hover { transform: translateY(-2px); border-color: rgba(117, 85, 255, 0.40); }

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  background: linear-gradient(180deg, #effaff 0%, #f0f7ff 100%);
}
.faq-shell { width: min(100%, 980px); margin: 0 auto; }
.faq-header { text-align: center; margin-bottom: 50px; }
.faq-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.faq-title span { color: #7555ff; }

.faq-item {
  border: 1px solid var(--line);
  background: var(--surface-card);
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  overflow: hidden;
  transition: border-color .25s;
}
.faq-item:hover { border-color: var(--line-strong); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 24px 28px;
  background: none;
  border: 0;
  cursor: pointer;
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 700;
  text-align: left;
  letter-spacing: -0.01em;
}
.faq-q::after {
  content: "+";
  font-size: 28px;
  color: var(--accent-bright);
  font-weight: 300;
  transition: transform .3s var(--ease);
}
.faq-item.open .faq-q::after { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease), padding .35s var(--ease);
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  padding: 0 28px;
}
.faq-item.open .faq-a {
  max-height: 320px;
  padding: 0 28px 24px;
}

/* ============================================================
   BLOG SECTION
   ============================================================ */
.blog-section {
  display: none !important;
}
.blog-shell { width: min(100%, 1480px); margin: 0 auto; }
.blog-header { text-align: center; margin-bottom: 50px; }
.blog-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.blog-title span { color: #7555ff; }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.blog-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .3s, border-color .3s, box-shadow .3s;
}
.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(117, 85, 255, 0.30);
  box-shadow: var(--shadow-panel);
}
.blog-card .thumb {
  position: relative;
  aspect-ratio: 16 / 10;
  background:
    radial-gradient(circle at 70% 30%, rgba(117, 85, 255, 0.40), transparent 50%),
    radial-gradient(circle at 30% 70%, rgba(91, 160, 255, 0.30), transparent 50%),
    linear-gradient(135deg, #110e1c, #020207);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.blog-card .thumb .globe {
  width: 70%;
  max-width: 200px;
  height: auto;
  opacity: 0.6;
}
.blog-card .thumb .tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--glass-soft);
  backdrop-filter: blur(12px);
  border: 1px solid var(--line);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  color: var(--accent-bright);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.blog-card .body {
  padding: 26px 24px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card h3 {
  color: var(--text-primary);
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  line-height: 1.3;
}
.blog-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 18px;
  flex: 1;
}
.blog-card .meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid var(--line);
  padding-top: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.blog-card .meta a {
  color: var(--accent-bright);
  font-weight: 800;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-section {
  z-index: 1;
  padding: 130px var(--section-pad-x);
  background: linear-gradient(180deg, #f7e8ff 0%, #fcf0ff 100%);
}
.contact-shell { width: min(100%, 1380px); margin: 0 auto; }
.contact-header { text-align: center; margin-bottom: 60px; }
.contact-title {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 1;
  margin: 12px 0 14px;
}
.contact-title span { color: #7555ff; }

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 36px;
  align-items: start;
}
.contact-info {
  display: grid;
  gap: 18px;
}
.contact-info-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 26px 28px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-card .icon-bg {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(35, 37, 50, 0.96), rgba(8, 9, 16, 0.99));
  border: 1px solid rgba(138, 111, 245, 0.40);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-info-card .icon-bg img {
  width: 22px;
  height: 22px;
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(138, 111, 245, 0.65));
}
.contact-info-card h3 {
  color: var(--text-primary);
  font-size: 17px;
  font-weight: 800;
  margin-bottom: 4px;
}
.contact-info-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.5;
}
.contact-info-card p a { color: var(--accent-bright); font-weight: 700; }

.contact-card {
  background: var(--surface-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-panel);
  padding: 40px;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: var(--glass-highlight);
  opacity: 0.4;
  pointer-events: none;
}
.contact-card > * { position: relative; }
.contact-card h3 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--text-primary);
  font-size: 28px;
  margin-bottom: 8px;
}
.contact-card p {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 24px;
}
.contact-card .form-grid {
  display: grid;
  gap: 14px;
  grid-template-columns: 1fr 1fr;
}
.contact-card .form-grid .full { grid-column: span 2; }
.contact-card input,
.contact-card textarea {
  width: 100%;
  padding: 14px 18px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--line);
  border-radius: 12px;
  color: var(--text-primary);
  font: inherit;
  font-size: 15px;
  transition: border-color .2s, background .2s;
}
.contact-card input:focus,
.contact-card textarea:focus {
  outline: 0;
  border-color: var(--accent-bright);
  background: rgba(255,255,255,0.06);
}
.contact-card textarea { min-height: 140px; resize: vertical; }
.contact-card button[type="submit"] {
  background: linear-gradient(135deg, var(--accent-bright), var(--accent) 46%, var(--accent-deep));
  color: #fff;
  border: 1px solid rgba(255,255,255,0.30);
  border-radius: 999px;
  padding: 14px 28px;
  font-weight: 800;
  font-size: 15px;
  margin-top: 14px;
  cursor: pointer;
  box-shadow: 0 12px 28px rgba(0,0,0,0.32), 0 6px 18px var(--accent-glow);
  transition: transform .18s, box-shadow .18s;
}
.contact-card button[type="submit"]:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(0,0,0,0.36), 0 8px 22px var(--accent-glow-strong);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  z-index: 1;
  padding: 80px var(--section-pad-x) 40px;
  background: var(--bg-deep);
  border-top: 1px solid var(--line);
}
.footer-grid {
  width: min(100%, 1380px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
.footer-brand img { height: 36px; margin-bottom: 18px; }
.footer-brand p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 22px;
}
.footer-socials { display: flex; gap: 10px; }
.footer-socials a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--surface-2, rgba(255,255,255,0.05));
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-soft);
  transition: color .2s, border-color .2s, background .2s;
}
.footer-socials a:hover {
  color: var(--accent-bright);
  border-color: var(--accent);
  background: var(--accent-soft);
}
.footer-socials img { width: 18px; height: 18px; }
.footer-col h4 {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-primary);
  font-size: 16px;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: grid; gap: 10px; }
.footer-col a {
  color: var(--text-muted);
  font-size: 14px;
  transition: color .2s;
}
.footer-col a:hover { color: var(--accent-bright); }

.footer-bottom {
  width: min(100%, 1380px);
  margin: 30px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--text-muted);
  font-size: 13px;
}
.footer-bottom a { color: var(--text-muted); margin-left: 18px; }
.footer-bottom a:hover { color: var(--accent-bright); }

/* ============================================================
   TELEGRAM FAB
   ============================================================ */
.tg-fab {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 60;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #229ED9, #0088cc);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 34px rgba(0,0,0,0.4), 0 0 24px rgba(34, 158, 217, 0.40);
  animation: tg-pulse 2.4s ease-in-out infinite;
}
.tg-fab img { width: 30px; height: 30px; filter: brightness(0) invert(1); }
@keyframes tg-pulse {
  0%, 100% { box-shadow: 0 14px 34px rgba(0,0,0,0.4), 0 0 24px rgba(34, 158, 217, 0.40); }
  50% { box-shadow: 0 14px 34px rgba(0,0,0,0.4), 0 0 48px rgba(34, 158, 217, 0.80); }
}

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

/* ============================================================
   SCROLL ANIMATIONS + SECTION VARIETY (post-hero)
   ============================================================ */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .9s cubic-bezier(.22,1,.36,1), transform .9s cubic-bezier(.22,1,.36,1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left { transform: translateX(-50px); }
.reveal-right { transform: translateX(50px); }
.reveal.is-visible.reveal-left,
.reveal.is-visible.reveal-right { transform: translateX(0); }

.reveal-scale { transform: scale(0.92); }
.reveal.is-visible.reveal-scale { transform: scale(1); }

/* Floating animation */
@keyframes float-up {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.float { animation: float-up 4s ease-in-out infinite; }
.float-slow { animation: float-up 6s ease-in-out infinite; }

/* Subtle glow pulse for cards */
@keyframes card-glow {
  0%, 100% { box-shadow: 0 24px 70px rgba(26, 31, 58, 0.10), 0 0 24px rgba(107, 76, 230, 0.05); }
  50% { box-shadow: 0 24px 70px rgba(26, 31, 58, 0.12), 0 0 48px rgba(107, 76, 230, 0.20); }
}
.glow-pulse { animation: card-glow 4s ease-in-out infinite; }

/* Hero gradient shine on hover */
@keyframes shine-sweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* Bento card hover - lift + glow */
.bento-card:hover {
  transform: translateY(-8px) scale(1.02);
  border-color: rgba(107, 76, 230, 0.40);
  box-shadow: 0 40px 90px rgba(26, 31, 58, 0.16), 0 0 40px rgba(107, 76, 230, 0.18);
}

/* Section variety - alternating styles */

/* NIGHTMARE - card with darker gradient on light bg */
.nightmare-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-card);
  padding: 28px;
  box-shadow: 0 12px 40px rgba(26, 31, 58, 0.06), 0 0 0 1px rgba(255, 255, 255, 0.50) inset;
  position: relative;
  overflow: hidden;
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease;
}
.nightmare-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(107, 76, 230, 0.08), transparent 50%);
  pointer-events: none;
  opacity: 0;
  transition: opacity .4s;
}
.nightmare-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(26, 31, 58, 0.12), 0 0 32px rgba(107, 76, 230, 0.12);
}
.nightmare-card:hover::before { opacity: 1; }

/* SERVICES - dark purple gradient cards (popping against light bg) */
.platform-card {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  min-height: 720px;
  padding: 56px 48px 44px;
  box-shadow: 0 30px 70px rgba(74, 42, 143, 0.30), 0 0 40px rgba(107, 76, 230, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  color: #ffffff;
  position: relative;
  overflow: hidden;
  transition: transform .5s cubic-bezier(.22,1,.36,1), box-shadow .5s ease;
}
.platform-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 100%, rgba(255, 255, 255, 0.10), transparent 60%);
  pointer-events: none;
}
.platform-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 50px 100px rgba(74, 42, 143, 0.40), 0 0 60px rgba(107, 76, 230, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

/* TRUST - dark gradient stats panel on light bg */
.trust-stats {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 34px;
  box-shadow: 0 40px 90px rgba(74, 42, 143, 0.30), 0 0 60px rgba(107, 76, 230, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  color: #ffffff;
}
.trust-stat strong {
  color: #ffffff;
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

/* BENTO - dark purple gradient featured cards */
.bento-card.feature-bg {
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(74, 42, 143, 0.30), 0 0 40px rgba(107, 76, 230, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.15);
}
.bento-card.feature-bg h3 { color: #ffffff; }
.bento-card.feature-bg p { color: rgba(255, 255, 255, 0.78); }

/* Regular bento cards - light with organic soft shape patterns */
.bento-card:not(.feature-bg) {
  background: #ffffff;
  border: 1px solid rgba(117, 85, 255, 0.14);
  box-shadow: 0 12px 40px rgba(26, 31, 58, 0.06);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s ease, border-color .4s;
}
/* Soft rounded blobs - lavender */
.bento-card:not(.feature-bg):nth-child(3n+1) {
  background:
    radial-gradient(140px 110px at 90% 10%, rgba(167, 140, 255, 0.35), transparent 70%),
    radial-gradient(180px 130px at 10% 100%, rgba(138, 111, 245, 0.22), transparent 70%),
    radial-gradient(100px 80px at 60% 60%, rgba(167, 140, 255, 0.18), transparent 70%),
    linear-gradient(135deg, #fbf7ff 0%, #f1e9ff 100%);
  border-color: rgba(138, 111, 245, 0.35);
}
/* Soft rounded blobs - sky */
.bento-card:not(.feature-bg):nth-child(3n+2) {
  background:
    radial-gradient(150px 120px at 85% 15%, rgba(91, 160, 255, 0.30), transparent 70%),
    radial-gradient(190px 140px at 15% 90%, rgba(120, 180, 255, 0.22), transparent 70%),
    radial-gradient(110px 80px at 70% 70%, rgba(91, 160, 255, 0.16), transparent 70%),
    linear-gradient(135deg, #f5f9ff 0%, #e6efff 100%);
  border-color: rgba(91, 160, 255, 0.35);
}
/* Soft rounded blobs - mint */
.bento-card:not(.feature-bg):nth-child(3n+3) {
  background:
    radial-gradient(140px 110px at 90% 10%, rgba(80, 200, 165, 0.32), transparent 70%),
    radial-gradient(180px 130px at 10% 100%, rgba(100, 210, 175, 0.22), transparent 70%),
    radial-gradient(100px 80px at 60% 60%, rgba(80, 200, 165, 0.18), transparent 70%),
    linear-gradient(135deg, #f4fff9 0%, #e4faf0 100%);
  border-color: rgba(80, 200, 165, 0.35);
}
.bento-card:not(.feature-bg):hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 30px 80px rgba(26, 31, 58, 0.12), 0 0 32px rgba(107, 76, 230, 0.18);
}

/* Dark icon background on regular cards */
.bento-card:not(.feature-bg) .icon-bg {
  background: linear-gradient(135deg, rgba(35, 37, 50, 0.96), rgba(8, 9, 16, 0.99)) !important;
  border: 1px solid rgba(138, 111, 245, 0.40) !important;
}
.bento-card:not(.feature-bg) .icon-bg img {
  filter: brightness(0) invert(1) drop-shadow(0 0 6px rgba(138, 111, 245, 0.65)) !important;
}

/* REVIEWS - mix: dark quote + light card */
.review-card {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-panel);
  padding: 36px 32px;
  color: #ffffff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(74, 42, 143, 0.25), 0 0 40px rgba(107, 76, 230, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.review-card::before {
  content: """;
  position: absolute;
  top: -10px;
  right: 14px;
  font-family: var(--font-display);
  font-size: 140px;
  color: rgba(255, 255, 255, 0.30);
  opacity: 0.5;
  line-height: 1;
}
.review-card > * { position: relative; }
.review-card p { color: rgba(255, 255, 255, 0.88); }
.review-card .review-author { border-top: 1px solid rgba(255, 255, 255, 0.18); }
.review-card .review-author strong { color: #ffffff; }
.review-card .review-author span { color: rgba(255, 255, 255, 0.66); }
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(74, 42, 143, 0.35), 0 0 60px rgba(107, 76, 230, 0.20);
}

/* COMPARISON - white card with dark gradient header */
.comparison-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-panel);
  padding: 50px;
  box-shadow: 0 30px 80px rgba(26, 31, 58, 0.10), 0 0 32px rgba(107, 76, 230, 0.08);
}

/* GUARANTEES - dark gradient numbered cards */
.guarantee-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-panel);
  padding: 36px;
  box-shadow: 0 12px 40px rgba(26, 31, 58, 0.06);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.guarantee-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(26, 31, 58, 0.12), 0 0 32px rgba(107, 76, 230, 0.15);
}
.guarantee-num {
  background: linear-gradient(135deg, #6b4ce6 0%, #4a2a8f 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 4px 12px rgba(107, 76, 230, 0.30));
}

/* PROCESS - dark gradient step cards with glow */
.process-step {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-panel);
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 30px 70px rgba(74, 42, 143, 0.25), 0 0 40px rgba(107, 76, 230, 0.15), inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
  position: relative;
  overflow: hidden;
}
.process-step::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 100% 0%, rgba(255, 255, 255, 0.10), transparent 50%);
  pointer-events: none;
}
.process-step h3 { color: #ffffff; }
.process-step p { color: rgba(255, 255, 255, 0.82); }
.process-step:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 90px rgba(74, 42, 143, 0.35), 0 0 60px rgba(107, 76, 230, 0.25);
}

/* PRICING - featured = dark gradient, others = light */
.pricing-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-panel);
  padding: 40px 32px;
  box-shadow: 0 12px 40px rgba(26, 31, 58, 0.06);
  color: var(--text-primary);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(26, 31, 58, 0.12), 0 0 32px rgba(107, 76, 230, 0.12);
}
.pricing-card.featured {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: #ffffff;
  box-shadow: 0 40px 90px rgba(74, 42, 143, 0.40), 0 0 60px rgba(107, 76, 230, 0.30), inset 0 1px 0 rgba(255, 255, 255, 0.20);
  animation: card-glow 4s ease-in-out infinite;
}
.pricing-card.featured .plan-name { color: #ffffff; }
.pricing-card.featured .plan-tag { color: rgba(255, 255, 255, 0.78); }
.pricing-card.featured .price-sub { color: rgba(255, 255, 255, 0.78); }
.pricing-card.featured li { color: rgba(255, 255, 255, 0.88); }
.pricing-card.featured li::before { color: #ffffff; }

/* FAQ - light with hover lift */
.faq-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-card);
  margin-bottom: 14px;
  box-shadow: 0 6px 20px rgba(26, 31, 58, 0.04);
  transition: transform .3s cubic-bezier(.22,1,.36,1), box-shadow .3s, border-color .3s;
}
.faq-item:hover {
  transform: translateX(6px);
  border-color: rgba(107, 76, 230, 0.30);
  box-shadow: -6px 0 0 var(--accent), 0 12px 30px rgba(26, 31, 58, 0.08);
}

/* BLOG - mix: dark thumb + light body */
.blog-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-panel);
  overflow: hidden;
  box-shadow: 0 12px 40px rgba(26, 31, 58, 0.06);
  transition: transform .4s cubic-bezier(.22,1,.36,1), box-shadow .4s;
}
.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 30px 80px rgba(26, 31, 58, 0.12), 0 0 32px rgba(107, 76, 230, 0.12);
}
.blog-card .thumb {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
}

/* CONTACT - dark gradient form + light info */
.contact-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 255, 0.95));
  border: 1px solid rgba(26, 31, 58, 0.10);
  border-radius: var(--radius-panel);
  padding: 26px 28px;
  box-shadow: 0 6px 20px rgba(26, 31, 58, 0.04);
  transition: transform .3s, box-shadow .3s;
}
.contact-info-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(26, 31, 58, 0.08), 0 0 24px rgba(107, 76, 230, 0.10);
}
.contact-card {
  background: linear-gradient(135deg, #2d1b69 0%, #4a2a8f 50%, #6b4ce6 100%);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-panel);
  padding: 40px;
  color: #ffffff;
  box-shadow: 0 40px 90px rgba(74, 42, 143, 0.30), 0 0 60px rgba(107, 76, 230, 0.20), inset 0 1px 0 rgba(255, 255, 255, 0.20);
}
.contact-card h3 { color: #ffffff; }
.contact-card p { color: rgba(255, 255, 255, 0.78); }
.contact-card input,
.contact-card textarea {
  background: rgba(255, 255, 255, 0.10);
  border: 1px solid rgba(255, 255, 255, 0.20);
  color: #ffffff;
}
.contact-card input::placeholder,
.contact-card textarea::placeholder {
  color: rgba(255, 255, 255, 0.50);
}
.contact-card input:focus,
.contact-card textarea:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.50);
}
.contact-card button[type="submit"] {
  background: linear-gradient(135deg, #ffffff 0%, #f0e8ff 100%);
  color: #4a2a8f;
  border: 1px solid rgba(255, 255, 255, 0.40);
}

/* Service strip - dark surface */
.service-strip {
  background: linear-gradient(135deg, rgba(35, 37, 50, 0.96) 0%, rgba(8, 9, 16, 0.99) 47%, rgba(4, 5, 10, 1.00) 100%);
  border: 1px solid rgba(210, 202, 255, 0.21);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38), 0 0 24px rgba(117, 85, 255, 0.18);
}
.service-strip .strip-icon span { color: #ffffff; }
.service-strip .strip-icon img {
  filter: brightness(0) invert(1) drop-shadow(0 0 8px rgba(138, 111, 245, 0.65));
}

/* Nightmare ticker - light frosted */
.nightmare-ticker {
  background: linear-gradient(90deg, rgba(107, 76, 230, 0.06), rgba(255, 255, 255, 0.50), rgba(107, 76, 230, 0.04));
  border-block-color: rgba(26, 31, 58, 0.10);
}
.nightmare-ticker .pill {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(26, 31, 58, 0.10);
  color: var(--text-soft);
}

/* Comparison rows - subtle borders */
.comparison-row {
  border-top: 1px solid rgba(26, 31, 58, 0.10);
  color: var(--text-soft);
}

/* Featured comparison col - subtle highlight */
.comparison-col.featured {
  background: linear-gradient(135deg, rgba(107, 76, 230, 0.05), rgba(138, 111, 245, 0.02));
  border-radius: 12px;
  padding: 20px;
  margin: -10px -10px;
}

/* Neon text effect for body text in dark cards */
.neon-text {
  background: linear-gradient(135deg, #8a6ff5 0%, #ff3eb5 50%, #ff7e3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 12px rgba(138, 111, 245, 0.30));
}

/* Neon gradient for kickers and eyebrows */
.kicker {
  /* neon glow */
  background: linear-gradient(135deg, #6b4ce6 0%, #ff3eb5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 8px rgba(138, 111, 245, 0.30));
  letter-spacing: 0.42em;
}

/* Neon gradient for h3 in light cards */
.nightmare-card h3,
.guarantee-card h3,
.faq-q {
  background: linear-gradient(135deg, #0a0e1f 0%, #6b4ce6 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 6px rgba(107, 76, 230, 0.20));
}

/* Neon price text */
.pricing-card .price {
  background: linear-gradient(135deg, #6b4ce6 0%, #ff3eb5 50%, #ff7e3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 16px rgba(138, 111, 245, 0.30));
  background-size: 200% 100%;
  animation: neon-shimmer 4s ease-in-out infinite;
}
@keyframes neon-shimmer {
  0%, 100% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
}
.pricing-card.featured .price {
  background: linear-gradient(135deg, #ffffff 0%, #ffd6e8 50%, #ff7e3a 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.40));
}

/* Number badges - dark gradient */
.bento-card .num {
  background: linear-gradient(135deg, #6b4ce6 0%, #4a2a8f 100%);
  color: #ffffff;
  border: none;
}

/* Icon backgrounds - keep purple but lighter */
.bento-card .icon-bg {
  background: linear-gradient(135deg, rgba(107, 76, 230, 0.15), rgba(138, 111, 245, 0.05));
  border: 1px solid rgba(107, 76, 230, 0.30);
}
.bento-card.feature-bg .icon-bg {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05));
  border: 1px solid rgba(255, 255, 255, 0.30);
}

/* Card kicker - lighter purple for visibility */
.card-kicker {
  color: rgba(138, 111, 245, 0.90);
}

/* Platform card CTA - white inverse */
.platform-card-cta {
  background: linear-gradient(135deg, #ffffff 0%, #f0e8ff 100%);
  color: #4a2a8f;
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.20);
}
.platform-card-cta:hover {
  background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.30), 0 0 30px rgba(255, 255, 255, 0.40);
}

/* Pricing featured CTA - glass on dark */
.pricing-card.featured .pricing-cta {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.20), rgba(255, 255, 255, 0.05));
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.40);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.30);
}

/* Marquee/partner strip border */
.partner-strip {
  border: 1px solid rgba(210, 202, 255, 0.21);
}

/* Footer - darkest surface with light text */
.site-footer {
  background: linear-gradient(135deg, #04050a 0%, #08090f 47%, #03040a 100%);
  border-top: 1px solid rgba(210, 202, 255, 0.18);
  color: rgba(255, 255, 255, 0.85);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}
.footer-brand p { color: rgba(255, 255, 255, 0.70); }
.footer-grid {
  border-bottom: 1px solid rgba(210, 202, 255, 0.18);
}
.footer-socials a {
  background: rgba(138, 111, 245, 0.14);
  border: 1px solid rgba(138, 111, 245, 0.35);
  color: #ffffff;
}
.footer-socials a:hover {
  background: rgba(138, 111, 245, 0.30);
  border-color: #a790ff;
  color: #ffffff;
}
.footer-socials img { filter: brightness(0) invert(1); }
.footer-col h4 { color: #ffffff; }
.footer-col a { color: rgba(255, 255, 255, 0.70); }
.footer-col a:hover { color: #a790ff; }
.footer-bottom { color: rgba(255, 255, 255, 0.55); }
.footer-bottom a { color: rgba(255, 255, 255, 0.70); }
.footer-bottom a:hover { color: #a790ff; }
@media (max-width: 1024px) {
  .hero-nav { width: 100%; padding: 0 18px; height: 60px; border-radius: 0; }
  .hero-links { display: none; }
  .hero-chips { display: none; }
  .hero-nav-space { display: none; }
  .nightmare-layout { grid-template-columns: 1fr; }
  .nightmare-hero { position: static; }
  .services-hero { grid-template-columns: 1fr; gap: 30px; }
  .platform-cards { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: repeat(2, 1fr); }
  .bento { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid, .guarantee-grid, .process-grid, .pricing-grid, .blog-grid { grid-template-columns: 1fr; }
  .comparison-card { grid-template-columns: 1fr; padding: 30px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .service-strip { grid-template-columns: repeat(2, 1fr); }
  .comparison-card { padding: 30px; gap: 16px; }
  .comparison-col { padding: 10px; }
}
@media (max-width: 640px) {
  :root { --section-pad-x: 18px; }
  .hero-nav { width: 100%; padding: 0 14px; height: 54px; border-radius: 0; }
  .hero-nav-space { display: none; }
  .hero-title { font-size: clamp(40px, 12vw, 56px); }
  .hero-content { padding-top: 20px; }
  .bento { grid-template-columns: 1fr; }
  .trust-stats { grid-template-columns: 1fr 1fr; padding: 30px 22px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { justify-content: center; text-align: center; }
  .hero-button { width: 100%; justify-content: center; }
  .tg-fab { width: 52px; height: 52px; bottom: 18px; right: 18px; }
  .process-step::after { display: none; }
  .hero-nav-cta, .hero-nav-secondary { padding: 0 14px; font-size: 13px; min-height: 38px; }
}

/* FINAL OVERRIDE: dark neon flat — replace gradient text on light sections */
.kicker {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  color: var(--text-primary) !important;
  letter-spacing: 0.42em !important;
}
.nightmare-card h3,
.guarantee-card h3,
.faq-q {
  background: none !important;
  -webkit-background-clip: initial !important;
  background-clip: initial !important;
  -webkit-text-fill-color: currentColor !important;
  filter: none !important;
  color: var(--text-primary) !important;
}
