:root {
  --bg-primary: #0a0a12;
  --bg-secondary: #12121c;
  --bg-card: #1a1a28;
  --bg-card-hover: #222232;

  --honey: #ffb020;
  --honey-dark: #e09800;
  --honey-light: #ffc854;
  --honey-glow: rgba(255, 176, 32, 0.12);

  --teal: #10b981;
  --teal-dark: #059669;
  --teal-glow: rgba(16, 185, 129, 0.12);

  --coral: #f97066;
  --coral-glow: rgba(249, 112, 102, 0.12);

  --text-primary: #f8f8fc;
  --text-secondary: #9898b0;
  --text-muted: #5c5c70;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --font-display: 'Outfit', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-display);
  background: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)'/%3E%3C/svg%3E");
  opacity: 0.025;
  pointer-events: none;
  z-index: 1000;
}

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

/* Navigation */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  background: rgba(10, 10, 18, 0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}

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

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

.logo-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}

.logo-text { font-size: 20px; font-weight: 700; color: var(--text-primary); }
.logo-text span { color: var(--honey); }

.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; font-weight: 500; transition: var(--transition); }
.nav-links a:hover { color: var(--text-primary); }

.nav-login {
  padding: 8px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 14px;
  color: var(--text-secondary) !important;
  transition: all 0.2s ease;
}
.nav-login:hover {
  border-color: var(--text-muted);
  color: var(--text-primary) !important;
}

.nav-cta {
  background: var(--honey);
  color: var(--bg-primary) !important;
  padding: 10px 20px;
  border-radius: 8px;
  font-weight: 600 !important;
}
.nav-cta:hover { background: var(--honey-light); transform: translateY(-1px); }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text-primary);
  font-size: 24px;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-menu-btn { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--bg-secondary);
    flex-direction: column;
    padding: 24px;
    gap: 16px;
    border-bottom: 1px solid var(--border);
  }
  .nav-links.active { display: flex; }
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex; align-items: center;
  position: relative;
  padding: 120px 0 80px;
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 30% 20%, var(--honey-glow) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 70% 70%, var(--teal-glow) 0%, transparent 50%);
  pointer-events: none;
}

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

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
}

.hero-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 13px;
  color: var(--text-secondary);
  margin-bottom: 24px;
  animation: fadeIn 0.6s ease forwards;
}

.hero-label-dot { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; }

.hero h1 {
  font-size: clamp(40px, 5.5vw, 64px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -1.5px;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s ease 0.1s forwards;
  opacity: 0;
}
.hero h1 .highlight { color: var(--honey); }

.hero-subtitle {
  font-size: clamp(17px, 2vw, 20px);
  color: var(--text-secondary);
  max-width: 520px;
  margin-bottom: 32px;
  line-height: 1.7;
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}
@media (max-width: 900px) { .hero-subtitle { margin: 0 auto 32px; } }

.hero-cta {
  display: flex; gap: 12px; flex-wrap: wrap;
  animation: fadeInUp 0.6s ease 0.3s forwards;
  opacity: 0;
}
@media (max-width: 900px) { .hero-cta { justify-content: center; } }

.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-display);
}

.btn-primary { background: var(--honey); color: var(--bg-primary); }
.btn-primary:hover { background: var(--honey-light); transform: translateY(-2px); box-shadow: 0 8px 30px var(--honey-glow); }

.btn-secondary { background: var(--bg-card); color: var(--text-primary); border: 1px solid var(--border); }
.btn-secondary:hover { background: var(--bg-card-hover); border-color: var(--border-hover); }

/* Hero visual */
.hero-visual {
  position: relative;
  animation: fadeIn 0.8s ease 0.4s forwards;
  opacity: 0;
  display: flex;
  justify-content: center;
}

.video-container {
  position: relative;
  width: 280px;
  aspect-ratio: 9 / 16;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  cursor: pointer;
  transition: var(--transition);
}

.video-placeholder:hover {
  background: linear-gradient(135deg, var(--bg-card-hover) 0%, var(--bg-card) 100%);
}

.video-placeholder:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 40px var(--honey-glow);
}

.play-btn {
  width: 72px;
  height: 72px;
  background: var(--honey);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: var(--transition);
}

.play-btn::after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent var(--bg-primary);
  margin-left: 4px;
}

.video-placeholder span {
  font-size: 14px;
  color: var(--text-secondary);
  font-weight: 500;
}

.video-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 11px;
  color: var(--text-primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 5;
}

.video-sound-btn {
  position: absolute;
  bottom: 16px;
  right: 16px;
  width: 44px;
  height: 44px;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(10px);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition: var(--transition);
}

.video-sound-btn:hover {
  background: rgba(0, 0, 0, 0.8);
  transform: scale(1.1);
}

.video-sound-btn svg {
  width: 20px;
  height: 20px;
  fill: var(--text-primary);
}

.video-sound-btn .icon-unmuted {
  display: none;
}

.video-sound-btn.unmuted .icon-muted {
  display: none;
}

.video-sound-btn.unmuted .icon-unmuted {
  display: block;
}

.video-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle, var(--honey-glow) 0%, transparent 70%);
  pointer-events: none;
  z-index: -1;
}

.hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 16px;
  width: 280px;
}

.hero-mini {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.hero-mini-value { font-size: 24px; font-weight: 700; color: var(--honey); margin-bottom: 4px; }
.hero-mini-label { font-size: 12px; color: var(--text-muted); }

@media (max-width: 900px) {
  .video-container { width: 240px; }
  .hero-stats { width: 240px; }
}

@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }

/* Social Proof */
.social-proof {
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.social-proof-content {
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}

.social-proof-logos {
  display: flex; gap: 36px; align-items: center; flex-wrap: wrap; justify-content: center;
}

.logo-item { font-size: 16px; font-weight: 600; color: var(--text-secondary); opacity: 0.7; transition: var(--transition); }
.logo-item:hover { opacity: 1; color: var(--text-primary); }

.social-proof-text { color: var(--text-muted); font-size: 13px; }

/* App Screenshots - ChallengeMe style */
.app-screenshots {
  padding: 80px 0;
  background: var(--bg-secondary);
}

.app-screenshots .section-header {
  margin-bottom: 48px;
}

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

@media (max-width: 900px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .products-grid {
    grid-template-columns: 1fr;
  }
}

/* Flip Card */
.flip-card {
  perspective: 1000px;
  cursor: pointer;
  height: 380px;
}

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

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

.flip-card-front,
.flip-card-back {
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  border-radius: 20px;
  overflow: hidden;
}

.flip-card-front {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
}

.flip-card-front:hover {
  border-color: var(--honey);
}

/* Tap hint icon */
.tap-hint {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.flip-card:hover .tap-hint {
  opacity: 1;
}

.flip-card.flipped .tap-hint {
  opacity: 0;
}

.tap-hint-icon {
  width: 56px;
  height: 56px;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(8px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  animation: tapPulse 1.5s ease-in-out infinite;
}

@keyframes tapPulse {
  0%, 100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.4);
  }
  50% {
    transform: scale(1.1);
    box-shadow: 0 0 0 12px rgba(255, 176, 32, 0);
  }
}

.flip-card-back {
  background: var(--bg-primary);
  border: 1px solid var(--honey);
  transform: rotateY(180deg);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.flip-card-back .product-card-header {
  margin-bottom: 16px;
}

.flip-card-description {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  flex: 1;
  overflow-y: auto;
}

.product-card-image {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.flip-card:hover .product-card-image img {
  transform: scale(1.05);
}

.product-card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.product-card-icon {
  width: 36px;
  height: 36px;
  background: var(--honey-glow);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.product-card-content h3,
.flip-card-back h3 {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-primary);
}

.product-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--honey);
  text-decoration: none;
  font-weight: 500;
  transition: var(--transition);
}

@media (max-width: 600px) {
  .flip-card {
    height: 360px;
  }
}

/* Sections */
section { padding: 100px 0; }

.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-label { display: inline-block; font-family: var(--font-mono); font-size: 14px; color: var(--honey); text-transform: uppercase; letter-spacing: 2px; margin-bottom: 12px; }
.section-title { font-size: clamp(24px, 3.5vw, 36px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.section-subtitle { font-size: 17px; color: var(--text-secondary); line-height: 1.7; }

/* Problem */
.problem { background: var(--bg-secondary); }

.problem-intro { text-align: center; max-width: 600px; margin: 0 auto 48px; }
.problem-intro h2 { font-size: clamp(28px, 4vw, 40px); font-weight: 700; margin-bottom: 12px; }
.problem-intro p { font-size: 17px; color: var(--text-secondary); }

.problem-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 48px;
}
@media (max-width: 700px) { .problem-grid { grid-template-columns: 1fr; } }

.problem-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  display: flex; gap: 16px;
  transition: var(--transition);
}
.problem-card:hover { border-color: var(--border-hover); }

.problem-check {
  flex-shrink: 0;
  width: 24px; height: 24px;
  background: var(--coral-glow);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--coral);
  font-size: 14px;
}

.problem-card p { font-size: 15px; color: var(--text-secondary); line-height: 1.6; }
.problem-card strong { color: var(--text-primary); }

.problem-anchor {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-primary) 100%);
  border: 1px solid var(--honey);
  border-radius: 16px;
  padding: 32px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.problem-anchor::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at center, var(--honey-glow) 0%, transparent 70%);
  pointer-events: none;
}
.problem-anchor p { position: relative; font-size: 20px; line-height: 1.6; }
.problem-anchor .dim { color: var(--text-secondary); }
.problem-anchor strong { color: var(--honey); }

/* Solution */
.solution-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
@media (max-width: 768px) { .solution-grid { grid-template-columns: 1fr; } }

.solution-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}

.solution-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
}
.solution-card.personal::before { background: linear-gradient(90deg, var(--honey) 0%, var(--honey-dark) 100%); }
.solution-card.team::before { background: linear-gradient(90deg, var(--teal) 0%, var(--teal-dark) 100%); }

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

.solution-card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
}
.solution-card.personal .solution-card-icon { background: var(--honey-glow); }
.solution-card.team .solution-card-icon { background: var(--teal-glow); }

.solution-card h3 { font-size: 22px; font-weight: 600; }

.solution-list { list-style: none; margin-bottom: 20px; }
.solution-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
  color: var(--text-secondary);
}
.solution-list li:last-child { border-bottom: none; }

.solution-list .icon {
  flex-shrink: 0;
  width: 22px; height: 22px;
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  font-size: 12px;
}
.solution-card.personal .solution-list .icon { background: var(--honey-glow); color: var(--honey); }
.solution-card.team .solution-list .icon { background: var(--teal-glow); color: var(--teal); }

.solution-card-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding: 14px 16px;
  background: linear-gradient(135deg, var(--teal-glow) 0%, rgba(45, 212, 191, 0.15) 100%);
  border: 1px solid var(--teal);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-primary);
}
.solution-card-highlight .icon {
  font-size: 18px;
}

.solution-card-footer { font-size: 13px; color: var(--text-muted); font-style: italic; }
.solution-card-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255,255,255,0.1);
  opacity: 0.8;
}

.solution-center {
  text-align: center;
  margin-top: 40px;
  padding: 28px;
  background: linear-gradient(135deg, var(--honey-glow) 0%, var(--teal-glow) 100%);
  border-radius: 14px;
  border: 1px solid var(--border);
}
.solution-center p { font-size: 18px; font-weight: 500; }
.solution-center strong { color: var(--honey); }

/* How it Works */
.how-it-works { background: var(--bg-secondary); position: relative; overflow: hidden; }

.steps { display: flex; gap: 20px; margin-bottom: 48px; }
@media (max-width: 900px) { .steps { flex-direction: column; } }

.step {
  flex: 1;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  position: relative;
}

.step-number {
  position: absolute;
  top: -14px; left: 32px;
  width: 28px; height: 28px;
  background: var(--honey);
  color: var(--bg-primary);
  font-weight: 700;
  font-size: 13px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}

.step h3 { font-size: 18px; font-weight: 600; margin-bottom: 10px; margin-top: 6px; }
.step p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

/* Example Card */
.example-card {
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  display: flex; gap: 32px; align-items: center;
}
@media (max-width: 768px) { .example-card { flex-direction: column; text-align: center; } }

.example-avatar {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--honey) 0%, var(--honey-dark) 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  flex-shrink: 0;
}

.example-content h4 { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
.example-content p { font-size: 14px; color: var(--text-secondary); margin-bottom: 14px; }

.example-result {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--teal-glow);
  color: var(--teal);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 600;
}

/* Central Bank */
.central-bank { position: relative; overflow: hidden; }

.central-bank::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 700px; height: 700px;
  background: radial-gradient(circle, var(--honey-glow) 0%, transparent 70%);
  pointer-events: none;
}

.bank-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
  z-index: 2;
}
@media (max-width: 900px) { .bank-grid { grid-template-columns: 1fr; } }

.bank-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 32px;
  text-align: center;
  transition: var(--transition);
}
.bank-card:hover { border-color: var(--honey); transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0, 0, 0, 0.25); }

.bank-card-icon {
  width: 64px; height: 64px;
  background: var(--honey-glow);
  border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  margin: 0 auto 20px;
}

.bank-card h3 { font-size: 20px; font-weight: 600; margin-bottom: 10px; }
.bank-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.6; }

.bank-quote { text-align: center; margin-top: 48px; position: relative; z-index: 2; }
.bank-quote p { font-size: 18px; color: var(--text-muted); font-style: italic; }
.bank-quote strong { color: var(--text-primary); }

/* Analytics */
.analytics { background: var(--bg-secondary); }

/* Analytics Slider */
.analytics-slider {
  max-width: 900px;
  margin: 0 auto;
}

.slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.slider-container {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: transparent;
  height: 50vh;
  min-height: 300px;
  max-height: 600px;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.4s ease;
}

.slider-slide {
  flex: 0 0 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.slider-slide img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 12px;
}

.slider-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
}

.slider-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.slider-dot:hover {
  background: var(--text-secondary);
}

.slider-dot.active {
  background: var(--honey);
}

.slider-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--honey);
  color: var(--honey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--honey);
  color: var(--bg-primary);
}

.slider-arrow svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 600px) {
  .slider-arrow {
    width: 40px;
    height: 40px;
  }
  .slider-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* App Carousel */
.app-carousel {
  background: var(--bg-primary);
}

.carousel-container {
  display: flex;
  align-items: center;
  gap: 16px;
}

.carousel-wrapper {
  flex: 1;
  overflow: hidden;
  margin: 0 -12px;
}

.carousel-track {
  display: flex;
  transition: transform 0.4s ease;
  align-items: center;
}

.carousel-slide {
  flex: 0 0 calc(33.333% - 24px);
  margin: 0 12px;
}

.carousel-slide img {
  width: 100%;
  height: auto;
  border-radius: 16px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 32px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.carousel-dot:hover {
  background: var(--text-secondary);
}

.carousel-dot.active {
  background: var(--honey);
}

.carousel-arrow {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: transparent;
  border: 2px solid var(--honey);
  color: var(--honey);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.carousel-arrow:hover {
  background: var(--honey);
  color: var(--bg-primary);
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
}

/* Carousel responsive */
@media (max-width: 900px) {
  .carousel-slide {
    flex: 0 0 calc(50% - 24px);
  }
}

@media (max-width: 600px) {
  .carousel-slide {
    flex: 0 0 calc(100% - 24px);
  }
  .carousel-arrow {
    width: 40px;
    height: 40px;
  }
  .carousel-arrow svg {
    width: 20px;
    height: 20px;
  }
}

/* Cases */
.cases-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 20px;
}

.case-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: var(--transition);
}
.case-card:hover { border-color: var(--border-hover); }

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

.case-logo {
  width: 44px; height: 44px;
  background: var(--bg-card);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: var(--honey);
}

.case-info h3 { font-size: 16px; font-weight: 600; }
.case-info span { font-size: 12px; color: var(--text-muted); }

.case-card blockquote {
  font-size: 14px;
  color: var(--text-secondary);
  line-height: 1.7;
  font-style: italic;
  border-left: 2px solid var(--honey);
  padding-left: 14px;
  margin: 0;
}

.case-card-empty {
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
}

/* Featured Case - Global */
.case-featured {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-secondary) 100%);
  border: 1px solid var(--honey);
  border-radius: 20px;
  padding: 36px;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 32px;
  align-items: center;
  margin-bottom: 8px;
  position: relative;
  overflow: hidden;
}

.case-featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at top left, var(--honey-glow) 0%, transparent 50%);
  pointer-events: none;
}

@media (max-width: 800px) {
  .case-featured {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

.case-featured-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--honey);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 100px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.case-featured-left {
  position: relative;
  z-index: 2;
}

.case-featured-logo {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.case-featured-logo-icon {
  width: 56px;
  height: 56px;
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  color: var(--honey);
}

.case-featured-logo h3 {
  font-size: 24px;
  font-weight: 700;
}

.case-featured-logo span {
  font-size: 14px;
  color: var(--text-muted);
}

.case-featured-stats {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

@media (max-width: 800px) {
  .case-featured-stats {
    justify-content: center;
  }
}

.case-featured-stat {
  text-align: left;
}

@media (max-width: 800px) {
  .case-featured-stat {
    text-align: center;
  }
}

.case-featured-stat-value {
  font-size: 36px;
  font-weight: 700;
  color: var(--honey);
  line-height: 1;
}

.case-featured-stat-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-top: 4px;
}

.case-featured-right {
  position: relative;
  z-index: 2;
}

.case-featured-right h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--honey);
}

.case-featured-right p {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 12px;
}

.case-featured-right blockquote {
  font-size: 16px;
  color: var(--text-primary);
  font-style: italic;
  border-left: 3px solid var(--honey);
  padding-left: 16px;
  margin: 0;
}

/* Pricing */
.pricing { background: var(--bg-secondary); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  align-items: start;
}
@media (max-width: 900px) { .pricing-grid { grid-template-columns: 1fr; } }

.pricing-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px;
  transition: var(--transition);
}

.pricing-card.featured { border-color: var(--honey); position: relative; transform: scale(1.05); }
@media (max-width: 900px) { .pricing-card.featured { transform: none; } }

.pricing-card.featured::before {
  content: 'Популярный';
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--honey);
  color: var(--bg-primary);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 14px;
  border-radius: 100px;
}

.pricing-card h3 { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
.pricing-card-desc { font-size: 13px; color: var(--text-muted); margin-bottom: 20px; }

.pricing-card-price { margin-bottom: 20px; }
.pricing-card-price .amount { font-size: 44px; font-weight: 700; }
.pricing-card-price .period { font-size: 14px; color: var(--text-muted); }

.pricing-card-features { list-style: none; margin-bottom: 28px; }
.pricing-card-features li { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 14px; color: var(--text-secondary); }
.pricing-card-features li::before { content: '✓'; color: var(--teal); font-weight: 600; }

.pricing-card .btn { width: 100%; justify-content: center; }

/* FAQ */
.faq-list { max-width: 700px; margin: 0 auto; }

.faq-item { border-bottom: 1px solid var(--border); }

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  text-align: left;
}

.faq-question h3 { font-size: 16px; font-weight: 600; color: var(--text-primary); }
.faq-question .icon { font-size: 22px; color: var(--honey); transition: var(--transition); }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }

.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.faq-item.active .faq-answer { max-height: 180px; }
.faq-answer p { padding-bottom: 20px; font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* CTA */
.cta { text-align: center; position: relative; overflow: hidden; }

.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 50% 50%, var(--honey-glow) 0%, transparent 50%);
  pointer-events: none;
}

.cta-content { position: relative; z-index: 2; max-width: 600px; margin: 0 auto; }

.cta h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 700; letter-spacing: -0.5px; margin-bottom: 16px; }
.cta h2 .highlight { color: var(--honey); }

.cta-subtitle { font-size: 18px; color: var(--text-secondary); margin-bottom: 36px; }

.cta-form {
  display: flex; gap: 12px; flex-direction: column;
  max-width: 380px;
  margin: 0 auto 20px;
}

.cta-form input, .cta-form select {
  padding: 14px 20px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  color: var(--text-primary);
  font-family: var(--font-display);
  transition: var(--transition);
}
.cta-form input:focus, .cta-form select:focus { outline: none; border-color: var(--honey); }
.cta-form input::placeholder { color: var(--text-muted); }

.cta-note { font-size: 13px; color: var(--text-muted); }

/* Footer */
footer {
  background: var(--bg-secondary);
  padding: 48px 0 24px;
  border-top: 1px solid var(--border);
}

.footer-content {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 24px;
  margin-bottom: 32px;
}

.footer-links { display: flex; gap: 28px; }
.footer-links a { color: var(--text-secondary); text-decoration: none; font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--honey); }

.footer-bottom {
  text-align: center;
  padding-top: 24px;
  border-top: 1px solid var(--border);
  font-size: 13px;
  color: var(--text-muted);
}

/* Animations */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Decorative honeycomb images */
.decor-honeycomb {
  position: absolute;
  pointer-events: none;
  z-index: -1;
}

.hero-decor-left {
  left: 0;
  bottom: 0;
  height: 30%;
  width: auto;
}

.hero-decor-right {
  right: 0;
  top: 0;
  height: 50%;
  width: auto;
}

.central-bank-decor-left {
  left: 0;
  top: 0;
  height: 100%;
  width: auto;
}

.how-it-works-decor-left {
  left: 0;
  bottom: 0;
  height: 100%;
  width: auto;
}

.how-it-works-decor-right {
  right: 0;
  top: 0;
  height: 100%;
  width: auto;
}

@media (max-width: 768px) {
  .decor-honeycomb {
    opacity: 0.25;
  }
}
