/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --hero-bg:    #09152e;
  --bg:         #1c459a;
  --bg2:        #163a88;
  --bg3:        #1044a8;
  --blue:       #5bbdff;
  --blue-dark:  #2b7fff;
  --tt-pink:    #FE2C55;
  --tt-cyan:    #25F4EE;
  --text:       #ffffff;
  --text-muted: #a8c4ee;
  --border:     rgba(255,255,255,0.14);
  --card-bg:    rgba(255,255,255,0.09);
  --card-border:rgba(255,255,255,0.14);
  --radius:     16px;
  --radius-sm:  10px;
  --transition: 0.3s ease;
}

html { scroll-behavior: smooth; overflow-x: hidden; }
html, body { max-width: 100%; }

body {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
  background: linear-gradient(180deg,
    #07090f 0%,
    #0d1e45 12%,
    #1c459a 28%,
    #1c459a 100%
  );
  background-attachment: fixed;
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  font-weight: 200;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; background: transparent; }
.section-dark { background: rgba(0,0,0,0.18); }

/* ===== TYPOGRAPHY ===== */
.blue            { color: var(--blue); }
.blue-gradient   { background: linear-gradient(135deg, #25F4EE 0%, #ffffff 48%, #FE2C55 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.blue-gradient-text { background: linear-gradient(135deg, #4da3ff 0%, #25F4EE 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

.section-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--tt-cyan);
  background: rgba(37,244,238,0.1);
  border: 1px solid rgba(37,244,238,0.3);
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 16px;
}

.section-header { text-align: center; margin-bottom: 60px; }
.section-title   { font-size: clamp(28px, 4vw, 44px); font-weight: 800; line-height: 1.15; }
.section-subtitle{ font-size: 16px; color: var(--text-muted); margin-top: 12px; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, #ffffff 0%, #7ec8ff 55%, #1c6fd4 100%);
  color: #07090f;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 32px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 4px 24px rgba(28,111,212,0.45);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(28,111,212,0.65); }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: rgba(255,255,255,0.85);
  font-weight: 600;
  font-size: 16px;
  padding: 13px 32px;
  border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
  cursor: pointer;
  transition: var(--transition);
}
.btn-secondary:hover { border-color: rgba(255,255,255,0.65); background: rgba(255,255,255,0.07); }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(12, 24, 48, 0.95);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding: 10px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo { display: flex; align-items: center; gap: 10px; }
.logo-img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.logo-text { font-size: 20px; font-weight: 800; letter-spacing: -0.5px; color: #fff; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 7px 16px;
  border-radius: 50px;
  border: 1px solid transparent;
  transition: var(--transition);
}
.nav-links a:hover { color: #fff; border-color: rgba(255,255,255,0.3); background: rgba(255,255,255,0.07); }
.nav-links .btn-nav {
  background: linear-gradient(135deg, #FE2C55, #ff5e3a);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  padding: 8px 22px;
  border-radius: 50px;
  border: none;
}
.nav-links .btn-nav:hover { opacity: 0.9; color: #fff; border-color: transparent; }

.nav-right { display: flex; align-items: center; gap: 12px; }

.lang-toggle {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9);
  font-weight: 700;
  font-size: 13px;
  padding: 6px 14px;
  border-radius: 50px;
  cursor: pointer;
  transition: var(--transition);
  letter-spacing: 0.5px;
}
.lang-toggle:hover { background: rgba(255,255,255,0.14); }

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: rgba(10, 20, 45, 0.98);
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 12px 24px 20px;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255,255,255,0.7);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: var(--transition);
}
.mobile-menu a:hover { color: #fff; }
.mobile-menu .btn-nav {
  background: linear-gradient(135deg, #FE2C55, #ff5e3a);
  color: #fff;
  font-weight: 700;
  padding: 12px 0;
  text-align: center;
  border-radius: 50px;
  border: none;
  margin-top: 8px;
}

/* ===== HERO ===== */
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-14px); }
}
@keyframes glow-pulse {
  0%, 100% { opacity: 0.5; transform: translateX(-50%) scale(1); }
  50%       { opacity: 0.9; transform: translateX(-50%) scale(1.1); }
}

.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  background: transparent;
}

.hero-bg-glow {
  position: absolute;
  top: -150px; left: -150px;
  width: 800px; height: 800px;
  background: radial-gradient(circle, rgba(37,244,238,0.13) 0%, rgba(77,163,255,0.12) 35%, transparent 70%);
  pointer-events: none;
}
.hero-bg-glow2 {
  position: absolute;
  bottom: -100px; right: 15%;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(254,44,85,0.15) 0%, rgba(150,50,255,0.08) 45%, transparent 70%);
  pointer-events: none;
}

/* ---- Фото снизу ---- */
.hero-photo-full {
  position: relative;
  width: 100%;
  height: 90vh;
  overflow: hidden;
  clip-path: inset(0);
  background:
    radial-gradient(ellipse 75% 65% at 42% 42%,
      #1c3d72 0%,
      #102248 28%,
      #07152e 58%,
      #020810 100%);
}

.lilia-img-full {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 94%;
  max-width: none;
  height: auto;
  display: block;
  z-index: 1;
  filter:
    drop-shadow(0 30px 50px rgba(3,10,40,0.85))
    drop-shadow(0 0 30px rgba(20,70,210,0.6))
    drop-shadow(0 0 40px rgba(254,44,85,0.4))
    drop-shadow(0 0 80px rgba(37,244,238,0.25));
}

.lilia-floor-shadow {
  position: absolute;
  bottom: 0;
  left: calc(50% - 10px);
  transform: translateX(-50%);
  width: 80%;
  height: 140px;
  background: radial-gradient(ellipse 70% 100% at 50% 100%,
    rgba(3,8,30,0.9) 0%,
    rgba(5,15,55,0.6) 40%,
    transparent 70%);
  pointer-events: none;
  z-index: 2;
}

/* TikTok орбы вокруг Лилии */
.hero-orb {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  animation: sticker-float 5s ease-in-out infinite;
  filter: drop-shadow(0 8px 32px rgba(0,0,0,0.35));
}
.hero-orb1 {
  width: 70px;
  top: 26%;
  left: 10%;
  transform: rotate(-20deg);
  animation: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.hero-orb2 {
  width: 92px;
  top: 7%;
  right: 8%;
  transform: rotate(12deg);
  animation: none;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}
.hero-phone-ui {
  position: absolute;
  z-index: 2;
  pointer-events: none;
  width: 100px;
  top: 38%;
  left: calc(8% - 10px);
  animation: none;
  filter: drop-shadow(0 4px 16px rgba(0,0,0,0.3));
}
.hero-orb3 {
  width: 80px;
  top: 7%;
  left: 18%;
  transform: rotate(-12deg);
  animation: none;
  z-index: 0;
  filter: drop-shadow(0 4px 10px rgba(0,0,0,0.5));
}

.hero-photo-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 150%; height: 150%;
  background: radial-gradient(ellipse at center,
    rgba(80,160,255,0.75) 0%,
    rgba(40,100,220,0.55) 30%,
    rgba(20,60,180,0.3) 55%,
    rgba(10,30,100,0.15) 72%,
    transparent 85%);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
  z-index: 0;
}

/* Свет за Лилией — белый-голубой градиент */
.hero-lilia-glow {
  position: absolute;
  top: 5%; left: 50%;
  transform: translateX(-50%);
  width: 85%;
  height: 95%;
  background: radial-gradient(ellipse 60% 55% at 50% 55%,
    rgba(235,248,255,0.75) 0%,
    rgba(140,200,255,0.8) 12%,
    rgba(60,140,255,0.55) 35%,
    rgba(20,60,180,0.3) 58%,
    transparent 75%);
  pointer-events: none;
  z-index: 0;
}

/* ---- Контент наверху ---- */
.hero-bottom {
  text-align: center;
  padding-top: 104px;
  padding-bottom: 40px;
}

.hero-bottom .title-stickers-wrap { display: inline-block; }
.hero-bottom .hero-cta  { justify-content: center; }
.hero-bottom .hero-stat { margin: 0 auto 32px; }
.hero-bottom .hero-text { margin: 0 auto 28px; }

/* Лілія chip — поверх фото, знизу справа */
.hero-lilia {
  position: absolute;
  bottom: 90px;
  right: 20px;
  left: auto;
  z-index: 5;
  animation: none !important;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  background: linear-gradient(135deg, rgba(8,14,40,0.92) 0%, rgba(15,30,70,0.88) 100%);
  backdrop-filter: blur(24px);
  border-radius: 20px;
  padding: 16px 22px 16px 0;
  box-shadow: 0 8px 32px rgba(0,0,0,0.6), 0 0 0 1px rgba(255,255,255,0.06);
  overflow: hidden;
}
.hero-lilia::before {
  content: '';
  display: block;
  width: 4px;
  align-self: stretch;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--tt-pink) 0%, #b44fff 50%, var(--tt-cyan) 100%);
  border-radius: 0 4px 4px 0;
  margin-right: 0;
}
.hero-lilia-dot {
  width: 8px; height: 8px;
  background: var(--tt-pink);
  border-radius: 50%;
  box-shadow: 0 0 8px rgba(254,44,85,1), 0 0 16px rgba(254,44,85,0.5);
  flex-shrink: 0;
}
.hero-lilia-info {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.hero-lilia-name {
  font-size: 24px;
  font-weight: 800;
  color: #ffffff;
  white-space: nowrap;
  line-height: 1;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.hero-lilia-role {
  font-size: 12px;
  font-weight: 400;
  color: var(--tt-cyan);
  white-space: nowrap;
  line-height: 1.3;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.hero-title {
  font-size: clamp(44px, 6vw, 84px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -3px;
  margin-bottom: 28px;
  color: #fff;
}

.hero-text {
  font-size: 20px;
  font-weight: 200;
  color: rgba(255,255,255,0.95);
  line-height: 1.75;
  margin-bottom: 36px;
  max-width: 440px;
}

.highlight-word { font-weight: 700; color: var(--tt-cyan); }

.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-stat {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 12px 20px;
  border-radius: 50px;
}
.stat-number { font-size: 22px; font-weight: 800; color: var(--tt-cyan); }
.stat-label  { font-size: 14px; color: rgba(255,255,255,0.6); }

/* Trust strip */
.trust-strip {
  position: relative;
  z-index: 2;
  background: rgba(0,0,0,0.35);
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 28px 0;
}
.trust-strip .container { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.trust-title { font-size: 15px; font-weight: 600; color: rgba(255,255,255,0.55); white-space: nowrap; }
.trust-avatars { display: flex; align-items: center; }
.trust-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.2);
  object-fit: cover;
  margin-left: -10px;
}
.trust-avatar:first-child { margin-left: 0; }
.trust-more {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--tt-pink);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: -10px;
  border: 2px solid rgba(255,255,255,0.2);
}

/* ===== HOW IT WORKS HEADER DECO ===== */
.hiw-header { position: relative; padding: 90px 0 12px; overflow: visible; }

.hiw-orbs { position: absolute; inset: 0; pointer-events: none; z-index: 0; }

.hiw-orb {
  position: absolute;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-orb svg { width: 45%; height: 45%; filter: drop-shadow(0 0 4px rgba(255,255,255,0.6)); }

/* Маленька — ліво-верх */
.hiw-orb1 {
  width: 72px; height: 72px;
  top: 0; left: 4%;
  background: radial-gradient(circle at 35% 30%, rgba(37,244,238,0.55), rgba(168,85,247,0.45) 55%, rgba(254,44,85,0.3) 100%);
  box-shadow: 0 0 24px rgba(37,244,238,0.5), 0 0 55px rgba(37,244,238,0.2), inset 0 0 18px rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  animation: sticker-float 4s ease-in-out infinite;
}

/* Велика — право */
.hiw-orb2 {
  width: 118px; height: 118px;
  top: 10px; right: 3%;
  background: radial-gradient(circle at 32% 28%, rgba(37,244,238,0.25), rgba(254,44,85,0.55) 55%, rgba(168,85,247,0.4) 100%);
  box-shadow: 0 0 36px rgba(254,44,85,0.5), 0 0 80px rgba(254,44,85,0.22), inset 0 0 28px rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  animation: sticker-float-slow 5s ease-in-out infinite;
  animation-delay: 0.6s;
}

/* Середня — ліво-низ */
.hiw-orb3 {
  width: 88px; height: 88px;
  bottom: -20px; left: 10%;
  background: radial-gradient(circle at 30% 30%, rgba(168,85,247,0.55), rgba(37,244,238,0.4) 60%, rgba(254,44,85,0.25) 100%);
  box-shadow: 0 0 28px rgba(168,85,247,0.5), 0 0 65px rgba(168,85,247,0.2), inset 0 0 22px rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.18);
  animation: sticker-float 4.5s ease-in-out infinite;
  animation-delay: 1.1s;
}

.hiw-header .section-tag,
.hiw-header .section-title { position: relative; z-index: 1; }

/* ===== STEPS ===== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 32px 28px;
  position: relative;
  transition: var(--transition);
  overflow: hidden;
}
.step-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--tt-pink), var(--tt-cyan));
  opacity: 0;
  transition: var(--transition);
}
.step-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-4px); }
.step-card:hover::before { opacity: 1; }

.step-num { font-size: 48px; font-weight: 900; color: rgba(255,255,255,0.08); line-height: 1; margin-bottom: 8px; }
.step-icon { font-size: 28px; margin-bottom: 12px; }
.step-title { font-size: 17px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.step-text { font-size: 17px; color: var(--text-muted); line-height: 1.7; font-weight: 200; }

.step-card:nth-child(4) { grid-column: 1; }
.step-card:nth-child(5) { grid-column: 2; }

/* ===== CASES ===== */
.cases-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  text-align: left;
  margin-bottom: 40px;
}
.cases-header-left { text-align: left; }
.cases-arrows { display: flex; gap: 12px; }
.cases-arrow {
  width: 52px; height: 52px;
  border-radius: 14px;
  border: 2px solid var(--tt-cyan);
  background: transparent;
  color: var(--tt-cyan);
  font-size: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  box-shadow: 0 0 18px rgba(37,244,238,0.35);
  line-height: 1;
  font-weight: 300;
}
.cases-arrow:hover {
  background: rgba(37,244,238,0.1);
  box-shadow: 0 0 30px rgba(37,244,238,0.55);
}

.cases-slider-wrap { overflow: hidden; }

.cases-grid {
  display: flex;
  gap: 24px;
  transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.case-card {
  flex: 0 0 100%;
  max-width: 480px;
  margin: 0 auto;
  background: rgba(8, 12, 28, 0.9);
  backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 24px;
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
  gap: 22px;
  box-sizing: border-box;
}

.case-card-top {
  display: flex;
  align-items: center;
  gap: 20px;
}

.case-avatar-ring {
  width: 88px; height: 88px;
  border-radius: 50%;
  padding: 3px;
  background: linear-gradient(135deg, #25F4EE 0%, #a855f7 40%, #FE2C55 70%, #f97316 100%);
  flex-shrink: 0;
}
.case-avatar-img {
  width: 100%; height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #080c1c;
  display: block;
}

.case-name  { font-size: 26px; font-weight: 900; color: #fff; letter-spacing: 1px; text-transform: uppercase; line-height: 1.1; }
.case-handle{ font-size: 14px; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

.case-income-pill {
  border: 1px dashed rgba(255,255,255,0.22);
  border-radius: 50px;
  padding: 13px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.case-income-label { font-size: 14px; color: rgba(255,255,255,0.6); font-weight: 500; }
.case-income-amount {
  font-size: 24px;
  font-weight: 900;
  background: linear-gradient(135deg, #25F4EE 0%, #a855f7 50%, #FE2C55 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.case-story {
  font-weight: 200;
  font-size: 17px;
  color: rgba(255,255,255,0.68);
  line-height: 1.8;
  text-align: center;
  font-weight: 500;
  flex: 1;
}

.case-btn-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: linear-gradient(135deg, #ffffff 0%, #7ec8ff 55%, #1c6fd4 100%);
  color: #07090f;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1.5px;
  padding: 18px 24px;
  border-radius: 14px;
  border: none;
  width: 100%;
  cursor: pointer;
  transition: opacity 0.3s, transform 0.3s;
  text-transform: uppercase;
  text-decoration: none;
}
.case-btn-profile:hover { opacity: 0.9; transform: translateY(-2px); }

/* ===== EARN SECTION ===== */
.earn-section { background: rgba(0,0,0,0.22); }
.earn-inner { display: grid; grid-template-columns: 1fr 1fr; align-items: center; gap: 64px; }
.earn-title { font-size: clamp(30px, 4vw, 48px); font-weight: 900; line-height: 1.15; margin: 12px 0 20px; color: #fff; }
.earn-desc { font-size: 19px; font-weight: 200; color: rgba(255,255,255,0.62); line-height: 1.75; margin-bottom: 32px; }
.earn-section .section-tag { color: var(--tt-cyan); background: rgba(37,244,238,0.08); border-color: rgba(37,244,238,0.25); }
.earn-img-wrap { position: relative; }
.earn-glow { position: absolute; inset: -30px; background: radial-gradient(circle at 50% 60%, rgba(37,244,238,0.12), rgba(254,44,85,0.08) 60%, transparent 80%); pointer-events: none; z-index: 0; }
.earn-img { width: 150%; max-width: 150%; object-fit: contain; display: block; position: relative; z-index: 1; margin-left: -25%; filter: drop-shadow(0 0 40px rgba(37,244,238,0.18)) drop-shadow(0 0 80px rgba(254,44,85,0.12)); }
.earn-float-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: rgba(7,9,15,0.88); backdrop-filter: blur(12px);
  border: 1px solid rgba(37,244,238,0.25); border-radius: var(--radius);
  padding: 12px 16px; display: flex; align-items: center; gap: 12px;
}
.earn-badge-icon { font-size: 24px; }
.earn-badge-num  { display: block; font-size: 20px; font-weight: 800; color: var(--tt-cyan); }
.earn-badge-label{ display: block; font-size: 11px; color: rgba(255,255,255,0.5); }

/* ===== BENEFITS ===== */
.benefits-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.benefit-card {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.benefit-card:hover { border-color: rgba(255,255,255,0.22); transform: translateY(-3px); }
.benefit-highlight {
  background: linear-gradient(135deg, rgba(77,163,255,0.1), rgba(37,244,238,0.06));
  border-color: rgba(77,163,255,0.25);
}
.benefit-icon  { font-size: 32px; margin-bottom: 14px; }
.benefit-title { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: #fff; }
.benefit-text  { font-size: 17px; color: var(--text-muted); line-height: 1.7; font-weight: 200; }

/* ===== WHO ===== */
.who-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-bottom: 36px; }
.who-card {
  background: var(--card-bg); border: 1px solid var(--card-border);
  border-radius: var(--radius); padding: 28px 24px;
  display: flex; align-items: flex-start; gap: 20px; transition: var(--transition);
}
.who-card:hover { border-color: rgba(255,255,255,0.2); }
.who-num { font-size: 36px; font-weight: 900; color: var(--tt-cyan); opacity: 0.5; flex-shrink: 0; line-height: 1; }
.who-text { font-size: 18px; color: var(--text-muted); line-height: 1.7; font-weight: 200; }
.who-text em { color: #fff; font-style: normal; }

.smm-note {
  background: linear-gradient(135deg, rgba(77,163,255,0.08), rgba(37,244,238,0.05));
  border: 1px solid rgba(77,163,255,0.2);
  border-radius: var(--radius); padding: 20px 24px;
  display: flex; align-items: flex-start; gap: 16px;
}
.smm-icon { font-size: 24px; flex-shrink: 0; }
.smm-note p { font-size: 18px; font-weight: 200; color: var(--text-muted); line-height: 1.7; font-style: italic; }

/* ===== FORM ===== */
.form-section { background: var(--bg); }
.registration-form {
  max-width: 680px; margin: 0 auto;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 40px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group-full { margin-bottom: 20px; }
.form-group label { font-size: 13px; font-weight: 600; color: var(--text-muted); letter-spacing: 0.5px; }
.form-group input,
.form-group textarea {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius-sm); color: #fff;
  font-family: inherit; font-size: 15px; padding: 12px 16px;
  outline: none; transition: var(--transition); resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.3); }
.form-group input:focus,
.form-group textarea:focus { border-color: var(--tt-cyan); background: rgba(37,244,238,0.05); }
.form-check { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 28px; }
.form-check input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; accent-color: var(--tt-pink); margin-top: 2px; }
.form-check label { font-size: 13px; color: var(--text-muted); line-height: 1.6; cursor: pointer; }
.btn-submit { width: 100%; justify-content: center; font-size: 17px; padding: 16px; }

.form-success {
  display: none; align-items: center; gap: 12px;
  background: rgba(81,207,102,0.08); border: 1px solid rgba(81,207,102,0.2);
  border-radius: var(--radius-sm); padding: 16px 20px; margin-top: 16px;
}
.form-success.show { display: flex; }
.form-success span { font-size: 20px; }
.form-success p { font-size: 15px; color: #51cf66; }

/* ===== FOOTER ===== */
.footer { background: var(--hero-bg); border-top: 1px solid rgba(255,255,255,0.08); padding: 32px 0; }
.footer-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer-copy  { font-size: 13px; color: var(--text-muted); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: var(--text-muted); transition: var(--transition); }
.footer-links a:hover { color: var(--tt-cyan); }

/* ===== TIKTOK STICKERS ===== */
@keyframes sticker-float {
  0%, 100% { transform: translateY(0) rotate(0deg) scale(1); }
  33%       { transform: translateY(-12px) rotate(5deg) scale(1.05); }
  66%       { transform: translateY(-6px) rotate(-4deg) scale(0.97); }
}
@keyframes sticker-float-slow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50%       { transform: translateY(-16px) rotate(-6deg); }
}
.title-stickers-wrap {
  position: relative;
  padding: 110px 52px 110px 52px;
  margin-bottom: 0;
  display: inline-block;
}

.hero-title { position: relative; z-index: 2; margin-bottom: 0; }

.tt-stickers {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
  z-index: 3;
  overflow: visible;
}

.tt-sticker {
  position: absolute;
  opacity: 0.95;
  animation: sticker-float 4s ease-in-out infinite;
}

/* TikTok logo — 10 годин (зліва зверху) */
.tt-s1 { top: 30px; left: 8px; animation-delay: 0s; }
/* LIVE — 12 годин (по центру зверху) */
.tt-s2 { top: 4px; left: calc(50% - 35px); transform: translateX(-50%); animation-delay: 0.6s; animation-name: sticker-float-slow; }
/* viewers — 2 години (справа зверху) */
.tt-s5 { top: 30px; right: 8px; animation-delay: 0.4s; }
/* rose gift — 4-5 годин (справа знизу) */
.tt-s3 { bottom: 30px; right: 8px; animation-delay: 1s; }
/* diamond — 7-8 годин (зліва знизу) */
.tt-s4 { bottom: 30px; left: 8px; animation-delay: 1.6s; animation-name: sticker-float-slow; }

.tt-logo-svg { width: 54px; height: 54px; filter: drop-shadow(0 4px 16px rgba(0,0,0,0.4)); }

.tt-live-badge {
  background: linear-gradient(135deg, #FE2C55, #ff4757);
  color: #fff; font-size: 15px; font-weight: 900; letter-spacing: 2px;
  padding: 5px 13px; border-radius: 8px;
  box-shadow: 0 4px 20px rgba(254,44,85,0.55), 0 0 0 1px rgba(255,255,255,0.15);
  display: inline-block;
}

.tt-gift-bubble {
  background: rgba(12, 20, 45, 0.85); backdrop-filter: blur(12px);
  border: 1px solid rgba(37,244,238,0.35); border-radius: 22px;
  padding: 7px 14px; font-size: 14px;
  display: inline-flex; align-items: center; gap: 6px;
  color: #fff; font-weight: 600; white-space: nowrap;
  box-shadow: 0 4px 20px rgba(37,244,238,0.2);
}
.tt-gift-bubble .tt-gift-count { font-size: 12px; font-weight: 700; color: var(--tt-cyan); }

.tt-viewers-bubble {
  background: rgba(12, 20, 45, 0.85);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(254,44,85,0.35);
  border-radius: 22px;
  padding: 7px 14px;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #fff;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: 0 4px 20px rgba(254,44,85,0.2);
}
.tt-viewers-bubble span { font-size: 12px; font-weight: 700; color: var(--tt-pink); }

/* ===== SCROLL ANIMATION ===== */
.fade-up { opacity: 0; transform: translateY(32px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-inner    { gap: 32px; }
  .steps-grid    { grid-template-columns: repeat(2, 1fr); }
  .step-card:nth-child(4), .step-card:nth-child(5) { grid-column: auto; }
  .cases-grid    { grid-template-columns: repeat(2, 1fr); }
  .earn-inner    { gap: 40px; }
  .benefits-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }

  .navbar { background: rgba(10,20,45,0.95); backdrop-filter: blur(16px); border-bottom: 1px solid rgba(255,255,255,0.08); }
  .nav-links { display: none; }
  .burger    { display: flex; }

  /* Hero mobile — контент наверху, фото снизу */
  .hero { min-height: auto; }
  .hero-bottom { padding-top: 88px; padding-bottom: 28px; }
  .hero-title { font-size: clamp(34px, 9vw, 52px); letter-spacing: -1px; }
  .hero-text  { font-size: 18px; max-width: 92%; }
  .hero-lilia { right: 14px; left: auto; bottom: 70px; padding: 13px 18px 13px 0; }
  .hero-lilia-name { font-size: 20px; }
  .hero-lilia-role { font-size: 10px; letter-spacing: 0.8px; }

  .trust-strip .container { flex-direction: column; align-items: flex-start; gap: 12px; }

  .steps-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .hiw-header { padding: 70px 0 8px; }
  .hiw-orb1 { width: 52px; height: 52px; top: 4px; left: 0; }
  .hiw-orb2 { width: 74px; height: 74px; top: 0; right: 0; }
  .hiw-orb3 { width: 58px; height: 58px; bottom: -10px; left: 5%; }

  .earn-inner  { grid-template-columns: 1fr; gap: 32px; }
  .earn-img    { width: 100%; max-width: 100%; margin-left: 0; }
  .earn-text   { text-align: center; }
  .earn-text .section-tag { display: inline-block; }
  .earn-text .btn-primary  { width: 100%; justify-content: center; }

  .benefits-grid { grid-template-columns: 1fr; }
  .who-grid { grid-template-columns: 1fr; }

  .form-row { grid-template-columns: 1fr; }
  .registration-form { padding: 20px 16px; }

  .footer-inner  { flex-direction: column; align-items: center; text-align: center; gap: 16px; }
  .footer-links  { flex-wrap: wrap; justify-content: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .section   { padding: 48px 0; }
  .section-title { font-size: clamp(24px, 7vw, 32px); }
  .hero-cta  { flex-direction: column; width: 100%; }
  .hero-cta .btn-primary,
  .hero-cta .btn-secondary { width: 100%; justify-content: center; }
  .hero-stat { width: 100%; justify-content: center; }
  .trust-avatars { flex-wrap: nowrap; }
  .case-income .income-value { font-size: 20px; }
  .who-card  { gap: 12px; }
  .who-num   { font-size: 28px; }
  .registration-form { border-radius: 12px; }
}
