/* ============================================
   ЛИСИЙ З YOUTUBE — Landing Page Styles
   Design: Light gradient, orange/amber accents
   Inspired by Лисий Прайм UI
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ── CSS Variables ── */
:root {
  /* Primary orange palette */
  --orange-50: #FFF7ED;
  --orange-100: #FFEDD5;
  --orange-200: #FED7AA;
  --orange-300: #FDBA74;
  --orange-400: #FB923C;
  --orange-500: #F97316;
  --orange-600: #EA580C;
  --orange-700: #C2410C;

  /* Accent amber/gold */
  --amber-400: #FBBF24;
  --amber-500: #F59E0B;

  /* Neutral */
  --gray-50: #FAFAFA;
  --gray-100: #F5F5F5;
  --gray-200: #E5E5E5;
  --gray-300: #D4D4D4;
  --gray-400: #A3A3A3;
  --gray-500: #737373;
  --gray-600: #525252;
  --gray-700: #404040;
  --gray-800: #262626;
  --gray-900: #171717;

  /* Purple accents (for gradient) */
  --purple-100: #F3E8FF;
  --purple-200: #E9D5FF;
  --purple-300: #D8B4FE;
  --purple-400: #C084FC;

  /* Functional */
  --bg-gradient-start: #FDF2F8;
  --bg-gradient-mid: #FAF5FF;
  --bg-gradient-end: #FFFBEB;
  --card-bg: rgba(255, 255, 255, 0.85);
  --card-border: rgba(255, 255, 255, 0.6);
  --card-shadow: 0 4px 24px rgba(249, 115, 22, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
  --card-shadow-hover: 0 8px 40px rgba(249, 115, 22, 0.15), 0 2px 8px rgba(0, 0, 0, 0.06);

  /* Typography */
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing */
  --section-padding: 70px 0;
  --container-width: 1140px;
  --border-radius: 20px;
  --border-radius-sm: 12px;
  --border-radius-lg: 28px;
}

/* ── Reset & Base ── */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--gray-800);
  line-height: 1.7;
  overflow-x: hidden;
  background: linear-gradient(180deg, var(--bg-gradient-start) 0%, var(--bg-gradient-mid) 30%, #FFFFFF 60%, var(--bg-gradient-end) 100%);
}

/* ── Container ── */
.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.2;
  color: var(--gray-900);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }

p {
  color: var(--gray-600);
  font-size: 1.05rem;
}

/* ── Section Title ── */
.section-title {
  text-align: center;
  margin-bottom: 40px;
}

.section-title h2 {
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--amber-400));
  border-radius: 2px;
}

.section-title h2.no-default-underline::after {
  display: none;
}

.underline-accent {
  position: relative;
  display: inline-block;
}

.underline-accent::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--amber-400));
  border-radius: 2px;
}

.section-title p {
  max-width: 600px;
  margin: 16px auto 0;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 40px;
  border: none;
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--amber-500) 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.45);
}

.btn-primary:active {
  transform: translateY(-1px);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-secondary {
  background: var(--card-bg);
  color: var(--orange-600);
  border: 2px solid var(--orange-200);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--orange-50);
  border-color: var(--orange-400);
  transform: translateY(-2px);
}

/* ── Navigation ── */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all 0.3s ease;
  background: transparent;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
  padding: 10px 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  object-fit: cover;
}

.nav-logo span {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--gray-900);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--gray-600);
  font-weight: 500;
  font-size: 0.95rem;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: var(--orange-500);
}

.nav-cta {
  padding: 10px 24px !important;
  font-size: 0.95rem !important;
  color: white !important;
}

.nav-mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.nav-mobile-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gray-700);
  margin: 6px 0;
  transition: all 0.3s;
  border-radius: 2px;
}

/* ── Hero Section ── */
.hero {
  min-height: auto;
  display: flex;
  align-items: center;
  padding: 110px 0 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.07) 0%, transparent 70%);
  border-radius: 50%;
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  50% { transform: translate(30px, -30px); }
}

.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--orange-100), var(--amber-400)20);
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange-700);
  margin-bottom: 24px;
  border: 1px solid var(--orange-200);
}

.hero-badge span {
  font-size: 1.1rem;
}

.hero-content h1 {
  margin-bottom: 20px;
  color: var(--gray-900);
}

.hero-content h1 .highlight {
  background: linear-gradient(135deg, var(--orange-500) 0%, var(--amber-500) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content .subtitle {
  font-size: 1.15rem;
  color: var(--gray-500);
  margin-bottom: 36px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid var(--gray-200);
}

.hero-stat {
  text-align: left;
}

.hero-stat .number {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-stat .label {
  font-size: 0.85rem;
  color: var(--gray-400);
  margin-top: 4px;
}

/* Hero visual (right side) */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-card {
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-lg);
  padding: 48px 48px 36px;
  box-shadow: var(--card-shadow);
  text-align: center;
  position: relative;
  max-width: 480px;
  width: 100%;
}

.hero-card-logo {
  width: 180px;
  height: 180px;
  border-radius: 30px;
  object-fit: cover;
  margin-bottom: 24px;
  box-shadow: 0 8px 30px rgba(249, 115, 22, 0.2);
}

.hero-card h3 {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.hero-card p {
  font-size: 0.95rem;
  color: var(--gray-400);
  margin-bottom: 8px;
}

.hero-floating-badge {
  position: absolute;
  background: white;
  border-radius: var(--border-radius-sm);
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: float 6s ease-in-out infinite;
  white-space: nowrap;
}

.hero-floating-badge.badge-top-left {
  top: -12px;
  left: -30px;
  color: #E85D04;
  background: #FFF3E6;
  border: 1px solid #FFD6A5;
  animation-delay: -1s;
}

.hero-floating-badge.badge-top-right {
  top: -20px;
  right: -8px;
  color: #7C3AED;
  background: #F3EAFF;
  border: 1px solid #D8B4FE;
  animation-delay: -4s;
}

.hero-floating-badge.badge-mid-left {
  top: 46%;
  left: -65px;
  color: #0891B2;
  background: #ECFEFF;
  border: 1px solid #A5F3FC;
  animation-delay: -2s;
}

.hero-floating-badge.badge-mid-right {
  top: 53%;
  right: -44px;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  animation-delay: -5s;
}

.hero-floating-badge.badge-bottom-left {
  bottom: -10px;
  left: 5px;
  color: #DB2777;
  background: #FDF2F8;
  border: 1px solid #FBCFE8;
  animation-delay: -3s;
}

.hero-floating-badge.badge-bottom-right {
  bottom: -18px;
  right: -16px;
  color: #D97706;
  background: #FFFBEB;
  border: 1px solid #FDE68A;
  animation-delay: -0.5s;
}

/* ── Niches Flip Cards Section ── */
.niches {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-gradient-end) 50%, #FFFFFF 100%);
}

.niches-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  perspective: 1200px;
}

/* ── Playing Card Style ── */
.niche-flip-card {
  height: 440px;
  cursor: pointer;
}

.niche-flip-inner {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.niche-flip-card:hover .niche-flip-inner,
.niche-flip-card.flipped .niche-flip-inner {
  transform: rotateY(180deg);
}

/* Hide front content when flipped to prevent bleed-through */
.niche-flip-card:hover .niche-front,
.niche-flip-card.flipped .niche-front {
  visibility: hidden;
  transition: visibility 0s 0s;
}
.niche-flip-card .niche-front {
  visibility: visible;
  transition: visibility 0s 0.5s;
}

.niche-flip-card:hover .niche-card-img,
.niche-flip-card.flipped .niche-card-img {
  opacity: 0 !important;
  transition: opacity 0s 0s !important;
}

.niche-front,
.niche-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.niche-front *,
.niche-front::before,
.niche-front::after {
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

/* ── Front Side — Playing Card Back ── */
.niche-front {
  background: linear-gradient(145deg, #E8590C 0%, #F97316 40%, #FB923C 70%, #F59E0B 100%);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 8px 40px rgba(249,115,22,0.25);
  overflow: hidden;
  color: white;
  border: 3px solid rgba(255,255,255,0.3);
  padding: 20px;
}

/* Inner decorative border — like a playing card */
.niche-front::before {
  content: '';
  position: absolute;
  top: 12px;
  left: 12px;
  right: 12px;
  bottom: 12px;
  border: 2px solid rgba(255,255,255,0.35);
  border-radius: 10px;
  pointer-events: none;
  z-index: 0;
}

/* Diamond pattern overlay */
.niche-front::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image:
    repeating-linear-gradient(45deg, transparent, transparent 15px, rgba(255,255,255,0.04) 15px, rgba(255,255,255,0.04) 16px),
    repeating-linear-gradient(-45deg, transparent, transparent 15px, rgba(255,255,255,0.04) 15px, rgba(255,255,255,0.04) 16px);
  pointer-events: none;
  z-index: 0;
}

.niche-number {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  background: rgba(255, 255, 255, 0.15);
  padding: 5px 14px;
  border-radius: 50px;
  letter-spacing: 1.5px;
  position: absolute;
  top: 24px;
  left: 24px;
  z-index: 2;
  border: 1px solid rgba(255,255,255,0.2);
}

/* Corner number bottom-right (mirrored like playing cards) */
.niche-number-br {
  top: auto;
  left: auto;
  bottom: 24px;
  right: 24px;
  transform: rotate(180deg);
}

.niche-icon {
  display: none;
}

.niche-card-img {
  width: 180px;
  height: auto;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
  opacity: 0.9;
  transition: opacity 0.3s ease;
}

.niche-flip-card:hover .niche-card-img {
  opacity: 0;
  transition: opacity 0s 0s;
}
.niche-flip-card .niche-card-img {
  opacity: 0.9;
  transition: opacity 0s 0.5s;
}

.niche-front-label {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 800;
  color: white;
  margin-bottom: 6px;
  position: relative;
  z-index: 1;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.niche-front-hint {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  position: relative;
  z-index: 1;
  font-style: italic;
}

.niche-hint-mobile {
  display: none;
}

@media (max-width: 968px) {
  .niche-hint-desktop { display: none; }
  .niche-hint-mobile { display: block; }
}

/* ── Back Side — Card Face (Dark) ── */
.niche-back {
  background: #1C1C1C;
  transform: rotateY(180deg);
  color: #FFFFFF;
  border: 3px solid rgba(249, 115, 22, 0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3), 0 8px 40px rgba(0,0,0,0.2);
  padding: 36px 28px;
}

/* Subtle inner border on back */
.niche-back::before {
  content: '';
  position: absolute;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  border: 1px solid rgba(249, 115, 22, 0.2);
  border-radius: 8px;
  pointer-events: none;
}

.niche-back-icon {
  font-size: 2.8rem;
  margin-bottom: 14px;
}

.niche-back h3 {
  font-size: 1.4rem;
  color: #FFFFFF;
  margin-bottom: 10px;
  font-weight: 800;
}

.niche-back p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.6;
  margin-bottom: 18px;
  max-width: 260px;
}

.niche-back-tag,
.niche-btn {
  align-self: stretch !important;
  width: auto !important;
  min-height: 46px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
  padding: 10px 20px !important;
  border-radius: 50px !important;
  font-size: 0.82rem !important;
  font-weight: 600 !important;
}

.niche-back-tag {
  background: rgba(249, 115, 22, 0.15);
  color: #FDBA74;
  margin-bottom: 10px;
  border: 1px solid rgba(249, 115, 22, 0.3);
}

.niche-btn {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500)) !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.3) !important;
}

.niche-btn:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2) !important;
  opacity: 0.9;
}



/* ── Responsive for Niches ── */
@media (max-width: 968px) {
  .niches-grid {
    grid-template-columns: 1fr 1fr;
  }

  .niche-flip-card {
    height: 400px;
  }
}

@media (max-width: 640px) {
  .niches-grid {
    grid-template-columns: 1fr;
    max-width: 340px;
    margin: 0 auto;
  }

  .niche-flip-card {
    height: 400px;
  }

  .niche-card-img {
    width: 200px;
  }

  .niche-back {
    padding: 30px 22px;
  }
}

/* ── Problem/Solution Section ── */
.problem-solution {
  padding: var(--section-padding);
}

.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.ps-card {
  padding: 40px;
  border-radius: var(--border-radius);
  position: relative;
  overflow: hidden;
}

.ps-card.problem {
  background: linear-gradient(135deg, #FEF2F2, #FFF1F2);
  border: 1px solid #FECACA;
}

.ps-card.solution {
  background: linear-gradient(135deg, var(--orange-50), #FFFBEB);
  border: 1px solid var(--orange-200);
}

.ps-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.ps-card.problem .ps-card-icon {
  background: #FEE2E2;
}

.ps-card.solution .ps-card-icon {
  background: var(--orange-100);
}

.ps-card h3 {
  font-size: 1.3rem;
  margin-bottom: 16px;
}

.ps-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.ps-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.5;
}

.ps-card ul li::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-top: 8px;
  flex-shrink: 0;
}

.ps-card.problem ul li::before {
  background: #F87171;
}

.ps-card.solution ul li::before {
  background: var(--orange-400);
}

/* ── Course Contents ── */
.course-contents {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-gradient-mid) 50%, #FFFFFF 100%);
}

.course-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.course-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.course-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--orange-400), var(--amber-400));
  opacity: 0;
  transition: opacity 0.3s;
}

.course-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--card-shadow-hover);
}

.course-card:hover::before {
  opacity: 1;
}

.course-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.course-card h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
}

.course-card p {
  font-size: 0.9rem;
  line-height: 1.6;
}

/* ── Bonus Section (Лисий Прайм) ── */
.bonus {
  padding: var(--section-padding);
}

.bonus-wrapper {
  background: linear-gradient(135deg, var(--orange-50), var(--purple-100), #FFFBEB);
  border-radius: var(--border-radius-lg);
  padding: 60px;
  border: 1px solid var(--orange-200);
  position: relative;
  overflow: hidden;
}

.bonus-wrapper::before {
  content: '';
  position: absolute;
  top: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.bonus-header {
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  z-index: 1;
}

.bonus-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: white;
  margin-bottom: 20px;
}

.bonus-features {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  position: relative;
  z-index: 1;
}

.bonus-feature {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border-radius: var(--border-radius-sm);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  transition: transform 0.3s;
}

.bonus-feature:hover {
  transform: translateY(-3px);
}

.bonus-feature-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.bonus-feature h4 {
  font-size: 1rem;
  margin-bottom: 4px;
  font-weight: 700;
}

.bonus-feature p {
  font-size: 0.85rem;
}

/* ── Testimonials / Results ── */
.results {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-gradient-start) 100%);
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.result-card {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius);
  padding: 32px;
  transition: all 0.3s;
}

.result-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--card-shadow-hover);
}

.result-card-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

.result-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-200), var(--purple-200));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange-700);
}

.result-card-header .name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
}

.result-card-header .role {
  font-size: 0.8rem;
  color: var(--gray-400);
}

.result-card .stars {
  color: var(--amber-400);
  margin-bottom: 12px;
  font-size: 1rem;
}

.result-card blockquote {
  font-size: 0.92rem;
  color: var(--gray-600);
  line-height: 1.7;
  font-style: italic;
}

/* ── Pricing Section ── */
.pricing {
  padding: var(--section-padding);
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #FFF7ED 0%, #FEF3C7 30%, #FFF7ED 60%, #FFFFFF 100%);
}

.pricing > .container {
  position: relative;
  z-index: 1;
}

/* Decorative background shapes */
.pricing-bg-shapes {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.pricing-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.pricing-shape-1 {
  width: 350px;
  height: 350px;
  background: #F97316;
  top: -80px;
  left: -100px;
  animation: pricingFloat 8s ease-in-out infinite;
}

.pricing-shape-2 {
  width: 250px;
  height: 250px;
  background: #FBBF24;
  top: 20%;
  right: -60px;
  animation: pricingFloat 10s ease-in-out infinite reverse;
}

.pricing-shape-3 {
  width: 200px;
  height: 200px;
  background: #A855F7;
  bottom: 10%;
  left: 5%;
  animation: pricingFloat 12s ease-in-out infinite;
}

.pricing-shape-4 {
  width: 180px;
  height: 180px;
  background: #F97316;
  bottom: -50px;
  right: 15%;
  animation: pricingFloat 9s ease-in-out infinite reverse;
}

.pricing-shape-5 {
  width: 120px;
  height: 120px;
  background: #FBBF24;
  top: 40%;
  left: 20%;
  animation: pricingFloat 11s ease-in-out infinite;
}

@keyframes pricingFloat {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -15px) scale(1.05); }
  66% { transform: translate(-15px, 10px) scale(0.95); }
}

/* Countdown timer */
.pricing-countdown {
  text-align: center;
  margin-bottom: 36px;
}

.countdown-label {
  display: block;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #92400E;
  margin-bottom: 12px;
}

.countdown-timer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 16px;
  padding: 12px 24px;
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.countdown-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 48px;
}

.countdown-num {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #F97316;
  line-height: 1;
}

.countdown-sep {
  font-family: 'Outfit', sans-serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: #FBBF24;
  margin-top: -10px;
}

.countdown-unit {
  font-size: 0.7rem;
  color: #9CA3AF;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 2px;
}

/* Pricing layout with photo */
.pricing-layout {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.pricing-photo {
  flex-shrink: 0;
  position: relative;
}

.pricing-photo img {
  width: 280px;
  height: auto;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.15));
}

.pricing-photo-bubble {
  position: absolute;
  bottom: 20px;
  left: -10px;
  background: #fff;
  border: 2px solid #F97316;
  border-radius: 16px 16px 16px 4px;
  padding: 10px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  color: #1A1A1A;
  box-shadow: 0 4px 15px rgba(249, 115, 22, 0.15);
  max-width: 220px;
  animation: bubblePulse 3s ease-in-out infinite;
}

@keyframes bubblePulse {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}

/* Shimmer effect */
.pricing-shimmer {
  overflow: hidden;
}

.pricing-shimmer::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(
    105deg,
    transparent 40%,
    rgba(255, 255, 255, 0.4) 45%,
    rgba(255, 255, 255, 0.6) 50%,
    rgba(255, 255, 255, 0.4) 55%,
    transparent 60%
  );
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

@keyframes shimmer {
  0% { left: -60%; }
  40%, 100% { left: 150%; }
}

@media (max-width: 968px) {
  .pricing-layout {
    flex-direction: column;
    gap: 20px;
  }

  .pricing-photo img {
    width: 200px;
  }

  .pricing-photo-bubble {
    bottom: 10px;
    left: 0;
    font-size: 0.8rem;
  }
}

@media (max-width: 640px) {
  .pricing-photo img {
    width: 160px;
  }
}

/* Pricing grid */
.pricing-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
  align-items: stretch;
}

/* Pricing card wrapper */
.pricing-card-wrapper {
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  border-radius: 22px;
  perspective: 800px;
  width: 100%;
}

.pricing-card {
  width: 100%;
  background: var(--card-bg);
  backdrop-filter: blur(20px);
  border: none;
  border-radius: var(--border-radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.pricing-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange-400), var(--amber-400), var(--orange-400));
}

.pricing-popular {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 24px;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  color: white;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  align-self: center;
}

.pricing-card h3 {
  font-size: 1.6rem;
  margin-bottom: 8px;
}

.pricing-card .pricing-description {
  color: var(--gray-500);
  margin-bottom: 24px;
}

.pricing-price {
  margin-bottom: 32px;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 14px;
}

.pricing-old-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gray-300);
  text-decoration: line-through;
  line-height: 1;
}

.pricing-new {
  display: flex;
  align-items: baseline;
}

.pricing-price .currency {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-right: 2px;
}

.pricing-price .amount {
  font-family: var(--font-heading);
  font-size: 3.5rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.pricing-features {
  list-style: none;
  text-align: left;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
}

.pricing-features li .check {
  width: 32px;
  height: 32px;
  min-width: 32px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-100), var(--orange-50));
  display: inline-grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--orange-500);
  font-size: 0.85rem;
  line-height: 32px;
  text-align: center;
  border: 1px solid var(--orange-200);
}

.pricing-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

.pricing-btn-main {
  width: 100%;
  padding: 18px !important;
  font-size: 1.15rem !important;
}

.pricing-btn-installment {
  width: 100%;
  padding: 18px !important;
  font-size: 1.05rem !important;
}

.btn-crypto {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 18px !important;
  border: 2px solid var(--orange-200);
  border-radius: 50px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem !important;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  background: var(--orange-50);
  color: var(--orange-700);
  box-shadow: none;
}

.btn-crypto:hover {
  background: var(--orange-100);
  border-color: var(--orange-400);
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.1);
}

.pricing-guarantee {
  margin-top: 20px;
  font-size: 0.85rem;
  color: var(--gray-400);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* Both cards same height */
.pricing-grid .pricing-card-wrapper {
  display: flex;
}
.pricing-grid .pricing-card {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pricing-grid .pricing-buttons {
  margin-top: auto;
}

/* Mentor card dark style */
.pricing-card-mentor {
  background: #1C1C1C !important;
  border: none !important;
  color: white;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2) !important;
}

/* Shimmer on mentor card too */
.pricing-card-mentor::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.08) 45%, rgba(255,255,255,0.15) 50%, rgba(255,255,255,0.08) 55%, transparent 60%);
  animation: shimmer 4s ease-in-out infinite;
  pointer-events: none;
  z-index: 10;
}

.pricing-spots {
  background: rgba(249, 115, 22, 0.15);
  color: #FDBA74;
  font-size: 0.82rem;
  font-weight: 600;
  padding: 10px 18px;
  border-radius: 8px;
  border: 1px solid rgba(249, 115, 22, 0.3);
  margin-bottom: 16px;
  text-align: center;
}

.pricing-card-mentor h3 {
  color: white;
}

.pricing-card-mentor .pricing-description {
  color: rgba(255,255,255,0.7);
}

.pricing-card-mentor .pricing-old-price {
  color: rgba(255,255,255,0.4);
}

.pricing-card-mentor .pricing-features li {
  color: rgba(255,255,255,0.85);
}

.pricing-card-mentor .pricing-features li .check {
  background: rgba(249, 115, 22, 0.2);
}

.pricing-card-mentor .pricing-guarantee {
  color: rgba(255,255,255,0.4);
}

.pricing-popular-mentor {
  background: linear-gradient(135deg, #1C1C1C, #333) !important;
  color: #F97316 !important;
  border: 1px solid rgba(249,115,22,0.4) !important;
}

/* Pricing grid responsive */
@media (max-width: 968px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
  }
}

/* ── Installments Section ── */
.installments {
  padding: var(--section-padding);
}

.installments-wrapper {
  background: linear-gradient(135deg, var(--orange-50), #FFFBEB, var(--orange-100));
  border-radius: var(--border-radius-lg);
  padding: 60px;
  border: 1px solid var(--orange-200);
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: center;
  overflow: visible;
  position: relative;
}

.installments-wrapper::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(249, 115, 22, 0.08) 0%, transparent 70%);
  border-radius: 50%;
}

.installments-content h2 {
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  margin-bottom: 28px;
  color: var(--gray-900);
}

.installments-content h2 .highlight {
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ── Slider Calculator ── */
.inst-calculator {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--border-radius-sm);
  padding: 24px;
  margin-bottom: 28px;
}

.inst-calc-label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gray-600);
  margin-bottom: 14px;
}

.inst-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--orange-200), var(--orange-300));
  outline: none;
  cursor: pointer;
  margin-bottom: 16px;
}

.inst-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
  cursor: pointer;
  transition: transform 0.2s;
}

.inst-slider::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.inst-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  box-shadow: 0 2px 10px rgba(249, 115, 22, 0.4);
  cursor: pointer;
  border: none;
}

.inst-calc-result {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
}

.inst-months {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.inst-months-label {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--gray-600);
  margin-right: 8px;
}

.inst-per-month {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--gray-700);
  background: rgba(249, 115, 22, 0.1);
  padding: 4px 14px;
  border-radius: 50px;
}

/* ── Installments List ── */
.installments-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-bottom: 32px;
}

.installments-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.95rem;
  color: var(--gray-700);
  line-height: 1.6;
}

.installments-check {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--orange-500), var(--amber-500));
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 0.75rem;
  font-weight: 700;
}

.installments-btn {
  padding: 16px 36px !important;
}

/* ── Visual with character ── */
.installments-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  min-height: 400px;
}

.installments-img {
  max-width: 160%;
  max-height: 620px;
  object-fit: contain;
  position: relative;
  z-index: 2;
  margin-bottom: -90px;
  margin-right: -60px;
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.12));
}

/* ── Floating badges around character ── */
@keyframes instFloat1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes instFloat2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}
@keyframes instFloat3 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.inst-badge {
  position: absolute;
  background: white;
  border-radius: var(--border-radius-sm);
  padding: 10px 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  font-size: 0.82rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 3;
}

/* 5 плашок дугою — широко розкидані, тільки вертикальний рух */
.inst-badge-1 {
  top: 95px;
  left: 8%;
  color: #059669;
  background: #ECFDF5;
  border: 1px solid #A7F3D0;
  animation: instFloat1 5s ease-in-out infinite;
}

.inst-badge-2 {
  top: 15px;
  left: 15%;
  color: #7C3AED;
  background: #F3EAFF;
  border: 1px solid #D8B4FE;
  animation: instFloat2 6s ease-in-out infinite 1s;
}

.inst-badge-3 {
  top: -5px;
  left: 50%;
  transform: translateX(-50%);
  color: #E85D04;
  background: #FFF3E6;
  border: 1px solid #FFD6A5;
  animation: instFloat3 4s ease-in-out infinite;
}

.inst-badge-4 {
  top: 70px;
  right: -25px;
  color: #DB2777;
  background: #FDF2F8;
  border: 1px solid #FBCFE8;
  animation: instFloat1 5.5s ease-in-out infinite 0.5s;
}

/* ── Responsive ── */
@media (max-width: 968px) {
  .installments-wrapper {
    grid-template-columns: 1fr;
    padding: 40px 28px;
    gap: 20px;
    overflow: hidden;
  }

  .installments-visual {
    order: -1;
    min-height: auto;
    margin-bottom: 16px;
  }

  .installments-wrapper {
    padding: 30px 24px;
  }

  .installments-img {
    max-height: 250px;
    margin-bottom: 0;
    margin-right: 0;
    max-width: 100%;
  }

  .inst-badge {
    display: none;
  }
}

@media (max-width: 640px) {
  .installments-wrapper {
    padding: 32px 20px;
  }
}

/* ── FAQ Section ── */
.faq {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #FFFFFF 0%, var(--bg-gradient-end) 100%);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--card-bg);
  backdrop-filter: blur(10px);
  border: 1px solid var(--card-border);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  transition: all 0.3s;
}

.faq-item.active {
  border-color: var(--orange-300);
  box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
}

.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 28px;
  cursor: pointer;
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--gray-800);
  transition: color 0.3s;
}

.faq-question:hover {
  color: var(--orange-500);
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--orange-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange-500);
  font-size: 1.1rem;
  transition: transform 0.3s;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
  background: var(--orange-500);
  color: white;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.4s;
}

.faq-answer-inner {
  padding: 0 28px 22px;
  color: var(--gray-600);
  font-size: 0.95rem;
  line-height: 1.8;
}

/* ── Footer ── */
.footer {
  padding: 60px 0 30px;
  background: var(--gray-900);
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 40px;
}

.footer-brand {
  max-width: 320px;
}

.footer-brand .nav-logo {
  margin-bottom: 16px;
}

.footer-brand .nav-logo span {
  color: white;
}

.footer-brand p {
  color: var(--gray-400);
  font-size: 0.9rem;
}

.footer-column h4 {
  color: white;
  font-size: 0.95rem;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-column ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column ul a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s;
}

.footer-column ul a:hover {
  color: var(--orange-400);
}

.footer-legal {
  text-align: center;
  padding: 20px 0 0;
}

.footer-legal a {
  color: var(--gray-400);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #F97316;
}

.footer-legal-sep {
  color: var(--gray-600);
  margin: 0 12px;
}

.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--gray-700);
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gray-500);
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--gray-800);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray-400);
  text-decoration: none;
  transition: all 0.3s;
  font-size: 1.1rem;
}

.footer-social a:hover {
  background: var(--orange-500);
  color: white;
  transform: translateY(-2px);
}

/* ── Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-up.delay-1 { transition-delay: 0.1s; }
.fade-up.delay-2 { transition-delay: 0.2s; }
.fade-up.delay-3 { transition-delay: 0.3s; }
.fade-up.delay-4 { transition-delay: 0.4s; }
.fade-up.delay-5 { transition-delay: 0.5s; }
.fade-up.delay-6 { transition-delay: 0.6s; }

/* ── Responsive ── */
@media (max-width: 968px) {
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-visual {
    order: -1;
  }

  .hero-card {
    max-width: 320px;
  }

  .hero-floating-badge {
    display: none;
  }

  .ps-grid {
    grid-template-columns: 1fr;
  }

  .course-grid {
    grid-template-columns: 1fr 1fr;
  }

  .bonus-wrapper {
    padding: 40px 24px;
  }

  .bonus-features {
    grid-template-columns: 1fr;
  }

  .results-grid {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--gray-200);
  }

  .nav-links.active {
    display: flex;
  }

  .nav-mobile-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .course-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .course-card {
    padding: 20px 16px;
  }

  .course-card-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 12px;
  }

  .course-card-full {
    display: none;
  }

  .course-contents {
    padding: 40px 0;
  }

  .course-card h3 {
    font-size: 0.95rem;
  }

  .course-card p {
    font-size: 0.8rem;
  }

  .hero-stats {
    gap: 24px;
  }

  .pricing-card {
    padding: 32px 24px;
  }

  .pricing-price .amount {
    font-size: 2.8rem;
  }

  .btn {
    padding: 14px 32px;
    font-size: 1rem;
    width: 100%;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn-secondary {
    order: -1;
  }

  .pricing-buttons {
    display: flex;
    flex-direction: column;
  }

  .niche-back-tag,
  .niche-btn {
    width: 100% !important;
    text-align: center;
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* ════════ STATS PROOF — Scattered Cards ════════ */
.stats-proof {
  padding: 100px 0 80px;
  background: #FAFAFA;
  overflow: hidden;
  position: relative;
}

.stats-proof > .container {
  position: relative;
  z-index: 1;
}

.stats-scattered {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
  max-width: 1100px;
  margin: 0 auto;
  padding: 40px 20px;
}

.stat-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              box-shadow 0.4s ease,
              opacity 0.8s ease;
  transform: rotate(var(--rot, 0deg)) scale(0.85) translateY(30px);
  opacity: 0;
  cursor: pointer;
}

.stat-card img {
  width: 100%;
  height: auto;
  display: block;
}

/* When section scrolls into view — cards fade in but STAY scattered */
.stat-card.aligned {
  transform: rotate(var(--rot, 0deg)) scale(1);
  opacity: 1;
}

/* Hover — lift and glow, keep the tilt */
.stat-card:hover {
  transform: rotate(var(--rot, 0deg)) scale(1.05) !important;
  box-shadow: 0 12px 40px rgba(249, 115, 22, 0.2),
              0 0 0 2px rgba(249, 115, 22, 0.15);
  z-index: 10;
}

/* Lightbox overlay for full-size view */
.stat-lightbox {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  animation: fadeIn 0.3s ease;
  cursor: pointer;
}

.stat-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Mobile responsive */
@media (max-width: 968px) {
  .stats-scattered {
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 20px;
  }
}

@media (max-width: 640px) {
  .stats-proof {
    padding: 60px 0 50px;
  }

  .stats-scattered {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 20px 16px;
  }

  .stat-card {
    transform: rotate(calc(var(--rot, 0deg) * 0.5)) scale(0.95);
  }
}

/* ════════ ROADMAP / TIMELINE ════════ */
.roadmap {
  padding: 100px 0;
  background: white;
}

.timeline {
  position: relative;
  max-width: 700px;
  margin: 0 auto;
  padding: 40px 0;
}

/* Vertical line */
.timeline-line {
  position: absolute;
  left: 28px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #F97316, #FBBF24, #A855F7);
  border-radius: 3px;
  transform-origin: top;
  transform: scaleY(0);
  transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.timeline-line.animate {
  transform: scaleY(1);
}

/* Each timeline step */
.timeline-item {
  position: relative;
  padding-left: 80px;
  margin-bottom: 40px;
}

.timeline-item:last-child {
  margin-bottom: 0;
}

/* Dot on the line */
.timeline-dot {
  position: absolute;
  left: 14px;
  top: 20px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, #F97316, #FBBF24);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 0 0 6px rgba(249, 115, 22, 0.15);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.timeline-dot span {
  color: white;
  font-weight: 700;
  font-size: 0.85rem;
  font-family: 'Outfit', sans-serif;
}

.timeline-dot-final {
  background: linear-gradient(135deg, #A855F7, #F97316);
  box-shadow: 0 0 0 6px rgba(168, 85, 247, 0.15);
}

.timeline-dot-final span {
  font-size: 1rem;
}

.timeline-item:hover .timeline-dot {
  transform: scale(1.2);
  box-shadow: 0 0 0 10px rgba(249, 115, 22, 0.2);
}

/* Card */
.timeline-card {
  background: #FAFAFA;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.timeline-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.timeline-card-final {
  background: linear-gradient(135deg, rgba(249, 115, 22, 0.05), rgba(168, 85, 247, 0.05));
  border-color: rgba(249, 115, 22, 0.15);
}

.timeline-week {
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #F97316;
  margin-bottom: 8px;
}

.timeline-icon {
  font-size: 2rem;
  margin-bottom: 8px;
}

.timeline-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 8px;
}

.timeline-card p {
  font-size: 0.95rem;
  color: #6B7280;
  line-height: 1.6;
  margin: 0;
}

/* Mobile responsive */
@media (max-width: 640px) {
  .roadmap {
    padding: 60px 0;
  }

  .timeline {
    padding: 20px 0;
  }

  .timeline-line {
    left: 18px;
  }

  .timeline-dot {
    left: 4px;
    width: 28px;
    height: 28px;
  }

  .timeline-item {
    padding-left: 60px;
    margin-bottom: 28px;
  }

  .timeline-card {
    padding: 20px;
  }

  .timeline-card h3 {
    font-size: 1.05rem;
  }
}

/* ════════ MARQUEE TICKER ════════ */
.marquee-section {
  background: linear-gradient(135deg, #1A1A1A, #2D2D2D);
  padding: 16px 0;
  overflow: hidden;
  border-top: 2px solid rgba(249, 115, 22, 0.3);
  border-bottom: 2px solid rgba(249, 115, 22, 0.3);
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marqueeScroll 25s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.marquee-item {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #FFFFFF;
  white-space: nowrap;
  padding: 0 12px;
}

.marquee-money {
  background: linear-gradient(135deg, #F97316, #FBBF24);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.marquee-dot {
  color: rgba(249, 115, 22, 0.4);
  font-size: 1.2rem;
  padding: 0 4px;
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.333%);
  }
}

@media (max-width: 640px) {
  .marquee-item {
    font-size: 0.85rem;
    padding: 0 8px;
  }

  .marquee-section {
    padding: 12px 0;
  }
}

/* ════════ PARALLAX SHAPES (Hero) ════════ */
.parallax-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.hero .container {
  position: relative;
  z-index: 1;
}

.pshape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.12;
  will-change: transform;
  transition: transform 0.1s linear;
}

/* Large orange gradient circle — top right */
.pshape-1 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, #F97316 0%, transparent 70%);
  top: -100px;
  right: -80px;
}

/* Small purple circle — left */
.pshape-2 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, #A855F7 0%, transparent 70%);
  top: 30%;
  left: -60px;
}

/* Medium amber blob — bottom center */
.pshape-3 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, #FBBF24 0%, transparent 70%);
  bottom: -80px;
  left: 40%;
}

/* Tiny orange dot — top left */
.pshape-4 {
  width: 80px;
  height: 80px;
  background: #F97316;
  opacity: 0.08;
  top: 20%;
  left: 15%;
}

/* Diamond shape — right middle */
.pshape-5 {
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, #F97316, #A855F7);
  opacity: 0.07;
  border-radius: 16px;
  transform: rotate(45deg);
  top: 55%;
  right: 10%;
}

/* Ring — bottom left */
.pshape-6 {
  width: 160px;
  height: 160px;
  border: 3px solid rgba(249, 115, 22, 0.15);
  background: transparent;
  opacity: 1;
  bottom: 10%;
  left: 8%;
}

@media (max-width: 640px) {
  .pshape-1 { width: 250px; height: 250px; }
  .pshape-2 { width: 120px; height: 120px; }
  .pshape-3 { width: 180px; height: 180px; }
  .pshape-5 { width: 80px; height: 80px; }
  .pshape-6 { width: 100px; height: 100px; }
}

/* ════════ MONEY CONFETTI (Pricing) ════════ */
.money-confetti {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

.pricing .container {
  position: relative;
  z-index: 1;
}

.money {
  position: absolute;
  top: -40px;
  left: var(--x, 50%);
  font-size: var(--size, 1.2rem);
  opacity: 0;
  animation: moneyFall var(--dur, 5s) var(--delay, 0s) linear infinite;
  will-change: transform, opacity;
}

@keyframes moneyFall {
  0% {
    transform: translateY(-20px) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.35;
  }
  50% {
    opacity: 0.25;
  }
  90% {
    opacity: 0.15;
  }
  100% {
    transform: translateY(calc(100vh + 40px)) rotate(360deg);
    opacity: 0;
  }
}

/* ════════ GUARANTEE SECTION ════════ */
.guarantee {
  padding: 80px 0;
  background: linear-gradient(180deg, #FFF7ED, #FFFFFF);
}

/* Animated border wrapper */
.guarantee-card {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  background: white;
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  overflow: hidden;
}

/* Animated gradient border */
.guarantee-card::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: 26px;
  background: conic-gradient(from var(--border-angle, 0deg), #F97316, #FBBF24, #A855F7, #F97316);
  z-index: -1;
  animation: rotateBorder 4s linear infinite;
}

@property --border-angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to {
    --border-angle: 360deg;
  }
}

/* Fallback for browsers that don't support @property */
@supports not (background: conic-gradient(from 0deg, red, blue)) {
  .guarantee-card::before {
    background: linear-gradient(135deg, #F97316, #A855F7);
  }
}

.guarantee-icon {
  font-size: 3.5rem;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 15px rgba(249, 115, 22, 0.3));
}

.guarantee-card h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.8rem;
  font-weight: 800;
  color: #1A1A1A;
  margin-bottom: 36px;
}

.guarantee-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  text-align: left;
}

.guarantee-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  padding: 16px;
  background: #FFF7ED;
  border-radius: 14px;
  border: 1px solid rgba(249, 115, 22, 0.1);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.guarantee-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(249, 115, 22, 0.12);
  border-color: rgba(249, 115, 22, 0.25);
}

.guarantee-check {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.guarantee-item h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #1A1A1A;
  margin-bottom: 4px;
}

.guarantee-item p {
  font-size: 0.9rem;
  color: #6B7280;
  line-height: 1.5;
  margin: 0;
}

/* Payment system icons row */
.payment-icons {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.payment-icon {
  width: 64px;
  height: 42px;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.payment-icon:hover {
  transform: scale(1.1);
}

.payment-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 640px) {
  .guarantee {
    padding: 50px 0;
  }

  .guarantee-card {
    padding: 28px 20px;
  }

  .guarantee-card h2 {
    font-size: 1.4rem;
  }

  .guarantee-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* ════════ BANK LOGOS ════════ */
.bank-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 24px;
}

.bank-logo-item {
  background: rgba(249, 115, 22, 0.06);
  border: 1px solid rgba(249, 115, 22, 0.15);
  border-radius: 10px;
  padding: 8px 14px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #92400E;
  white-space: nowrap;
}

/* ════════ STICKY MOBILE CTA ════════ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 12px 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(249, 115, 22, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.sticky-cta.visible {
  transform: translateY(0);
}

.sticky-cta-btn {
  display: block;
  width: 100%;
  text-align: center;
  padding: 16px;
  font-size: 1.05rem;
  font-weight: 700;
  border-radius: 14px;
}

@media (max-width: 968px) {
  .sticky-cta {
    display: block;
  }
}

@media (min-width: 969px) {
  .sticky-cta {
    display: none !important;
  }
}

/* ════════ PRICING PULSE BUTTON ════════ */
.pricing-pulse {
  animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
  0%, 100% {
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.3);
  }
  50% {
    box-shadow: 0 4px 30px rgba(249, 115, 22, 0.6), 0 0 40px rgba(249, 115, 22, 0.2);
  }
}

/* ════════ PRICING 3D TILT ════════ */
.pricing-card-wrapper {
  transition: transform 0.15s ease;
  transform-style: preserve-3d;
}

