/* ===================================
   FOR WOMAN LANDING — DESIGN SYSTEM
   Neumorphism + Premium Soft Pastel
   =================================== */

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

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
  /* Neumorphism Base */
  --nm-bg: #e8e8ee;
  --nm-bg-card: #e8e8ee;
  --nm-surface: #f0f0f3;

  /* Neumorphism Shadows */
  --nm-shadow-light: #ffffff;
  --nm-shadow-dark: #c8c8cc;
  --nm-shadow-sm: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light);
  --nm-shadow-md: 6px 6px 14px var(--nm-shadow-dark), -6px -6px 14px var(--nm-shadow-light);
  --nm-shadow-lg: 10px 10px 20px var(--nm-shadow-dark), -10px -10px 20px var(--nm-shadow-light);
  --nm-shadow-xl: 15px 15px 30px var(--nm-shadow-dark), -15px -15px 30px var(--nm-shadow-light);
  --nm-inset-sm: inset 3px 3px 6px var(--nm-shadow-dark), inset -3px -3px 6px var(--nm-shadow-light);
  --nm-inset-md: inset 5px 5px 10px var(--nm-shadow-dark), inset -5px -5px 10px var(--nm-shadow-light);

  /* Accent Colors */
  --color-primary: #8b5cf6;
  --color-primary-light: #a78bfa;
  --color-primary-dark: #7c3aed;
  --color-secondary: #ec4899;
  --color-secondary-light: #f472b6;
  --color-accent-blue: #3b82f6;
  --color-accent-mint: #34d399;
  --color-accent-amber: #f59e0b;
  --color-accent-red: #ef4444;

  /* Phase Colors */
  --phase-menstrual: #ef4444;
  --phase-follicular: #3b82f6;
  --phase-ovulatory: #f59e0b;
  --phase-luteal: #8b5cf6;

  /* Text */
  --text-primary: #1e1b4b;
  --text-secondary: #4b5563;
  --text-muted: #9ca3af;
  --text-on-primary: #ffffff;

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, #8b5cf6 0%, #ec4899 50%, #f59e0b 100%);
  --gradient-primary: linear-gradient(135deg, #8b5cf6, #a78bfa);
  --gradient-card: linear-gradient(135deg, #f5f3ff, #fce7f3);
  --gradient-text: linear-gradient(135deg, #8b5cf6, #ec4899);

  /* Typography */
  --font-ui: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Nunito', 'Inter', sans-serif;

  /* Sizes */
  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  /* Spacing */
  --section-padding: 100px 0;
  --container-max: 1200px;
  --container-padding: 0 24px;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-2xl: 32px;
  --radius-full: 50%;

  /* Transitions */
  --transition-fast: 200ms ease;
  --transition-base: 300ms ease;
  --transition-slow: 500ms ease;
  --transition-spring: 400ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== DARK THEME ===== */
[data-theme="dark"] {
  --nm-bg: #1a1b2e;
  --nm-bg-card: #1e1f35;
  --nm-surface: #22233b;

  --nm-shadow-light: #252640;
  --nm-shadow-dark: #111122;
  --nm-shadow-sm: 4px 4px 8px var(--nm-shadow-dark), -4px -4px 8px var(--nm-shadow-light);
  --nm-shadow-md: 6px 6px 14px var(--nm-shadow-dark), -6px -6px 14px var(--nm-shadow-light);
  --nm-shadow-lg: 10px 10px 20px var(--nm-shadow-dark), -10px -10px 20px var(--nm-shadow-light);
  --nm-shadow-xl: 15px 15px 30px var(--nm-shadow-dark), -15px -15px 30px var(--nm-shadow-light);
  --nm-inset-sm: inset 3px 3px 6px var(--nm-shadow-dark), inset -3px -3px 6px var(--nm-shadow-light);
  --nm-inset-md: inset 5px 5px 10px var(--nm-shadow-dark), inset -5px -5px 10px var(--nm-shadow-light);

  --text-primary: #e2e8f0;
  --text-secondary: #94a3b8;
  --text-muted: #64748b;

  --gradient-card: linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.06));
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-ui);
  background-color: var(--nm-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  transition: background-color var(--transition-slow), color var(--transition-slow);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: var(--color-primary);
  transition: color var(--transition-fast);
}

a:hover {
  color: var(--color-primary-dark);
}

ul, ol {
  list-style: none;
}

/* ===== CONTAINER ===== */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

/* ===== SECTION ===== */
.section {
  padding: var(--section-padding);
}

.section__title {
  font-family: var(--font-heading);
  font-size: var(--text-4xl);
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
  color: var(--text-primary);
}

.section__subtitle {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  text-align: center;
  max-width: 640px;
  margin: 0 auto 60px;
  line-height: 1.7;
}

/* ===== GRADIENT TEXT ===== */
.gradient-text {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: all var(--transition-base);
}

.navbar.scrolled {
  background: rgba(232, 232, 238, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

[data-theme="dark"] .navbar.scrolled {
  background: rgba(26, 27, 46, 0.85);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: var(--container-padding);
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
}

.navbar__logo-icon {
  width: 36px;
  height: 36px;
  border-radius: var(--radius-md);
  background: var(--gradient-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.navbar__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.navbar__link {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--text-secondary);
  transition: color var(--transition-fast);
  position: relative;
}

.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 1px;
  transition: width var(--transition-base);
}

.navbar__link:hover {
  color: var(--color-primary);
}

.navbar__link:hover::after {
  width: 100%;
}

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

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--nm-bg-card);
  box-shadow: var(--nm-shadow-sm);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  transition: all var(--transition-base);
  color: var(--text-secondary);
}

.theme-toggle:hover {
  transform: scale(1.05);
}

.theme-toggle:active {
  box-shadow: var(--nm-inset-sm);
  transform: scale(0.95);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-md);
  border: none;
  background: var(--nm-bg-card);
  box-shadow: var(--nm-shadow-sm);
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: all var(--transition-base);
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-lg);
  font-family: var(--font-ui);
  font-size: var(--text-base);
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition-base);
  white-space: nowrap;
}

.btn--primary {
  background: var(--gradient-primary);
  color: var(--text-on-primary);
  box-shadow: 0 4px 15px rgba(139, 92, 246, 0.3);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(139, 92, 246, 0.4);
  color: var(--text-on-primary);
}

.btn--primary:active {
  transform: translateY(0);
  box-shadow: 0 2px 10px rgba(139, 92, 246, 0.3);
}

.btn--secondary {
  background: var(--nm-bg-card);
  color: var(--text-primary);
  box-shadow: var(--nm-shadow-sm);
}

.btn--secondary:hover {
  transform: translateY(-2px);
  box-shadow: var(--nm-shadow-md);
  color: var(--color-primary);
}

.btn--secondary:active {
  transform: translateY(0);
  box-shadow: var(--nm-inset-sm);
}

.btn--sm {
  padding: 10px 20px;
  font-size: var(--text-sm);
  border-radius: var(--radius-md);
}

.btn--lg {
  padding: 18px 40px;
  font-size: var(--text-lg);
  border-radius: var(--radius-xl);
}

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

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero__content {
  max-width: 560px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: var(--nm-bg-card);
  box-shadow: var(--nm-shadow-sm);
  border-radius: var(--radius-2xl);
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-primary);
  margin-bottom: 24px;
}

.hero__badge-dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--color-accent-mint);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero__title {
  font-family: var(--font-heading);
  font-size: var(--text-6xl);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}

.hero__description {
  font-size: var(--text-lg);
  color: var(--text-secondary);
  line-height: 1.8;
  margin-bottom: 40px;
}

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

.hero__visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero__phone-mockup {
  position: relative;
  z-index: 2;
}

.hero__phone-mockup img {
  width: 300px;
  border-radius: 36px;
  box-shadow: var(--nm-shadow-xl);
}

/* Background Blobs */
.hero__blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.15;
  animation: blob-float 8s ease-in-out infinite;
}

.hero__blob--1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -100px;
  right: -100px;
  animation-delay: 0s;
}

.hero__blob--2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -50px;
  left: -50px;
  animation-delay: -3s;
}

.hero__blob--3 {
  width: 250px;
  height: 250px;
  background: var(--color-accent-amber);
  top: 50%;
  right: 20%;
  animation-delay: -5s;
}

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

/* ===== FEATURES GRID ===== */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card {
  background: var(--nm-bg-card);
  border-radius: var(--radius-xl);
  padding: 36px 28px;
  box-shadow: var(--nm-shadow-md);
  transition: all var(--transition-base);
  cursor: default;
}

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

.feature-card__icon {
  width: 64px;
  height: 64px;
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  margin-bottom: 20px;
  box-shadow: var(--nm-inset-sm);
}

.feature-card__icon--violet { background: rgba(139, 92, 246, 0.12); }
.feature-card__icon--pink { background: rgba(236, 72, 153, 0.12); }
.feature-card__icon--blue { background: rgba(59, 130, 246, 0.12); }
.feature-card__icon--mint { background: rgba(52, 211, 153, 0.12); }
.feature-card__icon--amber { background: rgba(245, 158, 11, 0.12); }
.feature-card__icon--red { background: rgba(239, 68, 68, 0.12); }

.feature-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--text-primary);
}

.feature-card__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== HOW IT WORKS ===== */
.steps {
  display: flex;
  gap: 40px;
  justify-content: center;
  align-items: flex-start;
}

.step {
  text-align: center;
  max-width: 280px;
  position: relative;
}

.step::after {
  content: '';
  position: absolute;
  top: 35px;
  right: -45px;
  width: 50px;
  height: 2px;
  background: linear-gradient(90deg, var(--color-primary), transparent);
}

.step:last-child::after {
  display: none;
}

.step__number {
  width: 70px;
  height: 70px;
  border-radius: var(--radius-full);
  background: var(--nm-bg-card);
  box-shadow: var(--nm-shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 900;
  color: var(--color-primary);
  margin: 0 auto 20px;
}

.step__title {
  font-family: var(--font-heading);
  font-size: var(--text-lg);
  font-weight: 700;
  margin-bottom: 8px;
}

.step__text {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ===== SCREENSHOTS CAROUSEL ===== */
.screenshots {
  overflow: hidden;
}

.screenshots__track {
  display: flex;
  gap: 24px;
  padding: 20px 0;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  scroll-padding: 0 24px;
}

.screenshots__track::-webkit-scrollbar {
  display: none;
}

.screenshot-card {
  flex: 0 0 260px;
  scroll-snap-align: center;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--nm-shadow-md);
  transition: all var(--transition-base);
  background: var(--nm-bg-card);
}

.screenshot-card:hover {
  transform: scale(1.03);
  box-shadow: var(--nm-shadow-lg);
}

.screenshot-card img {
  width: 100%;
  aspect-ratio: 9/19.5;
  object-fit: cover;
}

.screenshot-card__label {
  padding: 14px 18px;
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--text-primary);
  text-align: center;
}

/* ===== COMPARISON TABLE ===== */
.comparison {
  overflow-x: auto;
}

.comparison__table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--nm-bg-card);
  border-radius: var(--radius-xl);
  box-shadow: var(--nm-shadow-md);
  overflow: hidden;
  min-width: 700px;
}

.comparison__table thead th {
  background: var(--nm-surface);
  padding: 18px 16px;
  font-family: var(--font-heading);
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
  border-bottom: 2px solid var(--nm-shadow-dark);
}

.comparison__table thead th:first-child {
  text-align: left;
  padding-left: 24px;
}

.comparison__table thead th.highlight {
  background: var(--gradient-primary);
  color: var(--text-on-primary);
}

.comparison__table tbody td {
  padding: 14px 16px;
  font-size: var(--text-sm);
  text-align: center;
  border-bottom: 1px solid rgba(200, 200, 204, 0.3);
  color: var(--text-secondary);
  vertical-align: middle;
}

[data-theme="dark"] .comparison__table tbody td {
  border-bottom-color: rgba(100, 100, 130, 0.2);
}

.comparison__table tbody td:first-child {
  text-align: left;
  padding-left: 24px;
  font-weight: 500;
  color: var(--text-primary);
}

.comparison__table tbody td.highlight {
  background: rgba(139, 92, 246, 0.04);
  color: var(--color-primary);
  font-weight: 600;
}

[data-theme="dark"] .comparison__table tbody td.highlight {
  background: rgba(139, 92, 246, 0.08);
}

.comparison__table tbody tr:last-child td {
  border-bottom: none;
}

.check { color: var(--color-accent-mint); font-weight: 700; }
.cross { color: var(--text-muted); }
.partial { color: var(--color-accent-amber); }

/* ===== PRICING ===== */
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 800px;
  margin: 0 auto;
}

.pricing-card {
  background: var(--nm-bg-card);
  border-radius: var(--radius-xl);
  padding: 40px 32px;
  box-shadow: var(--nm-shadow-md);
  text-align: center;
  transition: all var(--transition-base);
  position: relative;
}

.pricing-card--featured {
  box-shadow: var(--nm-shadow-lg);
  border: 2px solid var(--color-primary);
}

.pricing-card--featured::before {
  content: 'Популярный';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gradient-primary);
  color: white;
  padding: 4px 20px;
  border-radius: var(--radius-2xl);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.pricing-card:hover {
  transform: translateY(-4px);
}

.pricing-card__name {
  font-family: var(--font-heading);
  font-size: var(--text-2xl);
  font-weight: 800;
  margin-bottom: 8px;
}

.pricing-card__price {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: 4px;
}

.pricing-card__price span {
  font-size: var(--text-lg);
  font-weight: 400;
  color: var(--text-muted);
}

.pricing-card__period {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 32px;
}

.pricing-card__feature {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.pricing-card__feature::before {
  content: '✓';
  width: 22px;
  height: 22px;
  border-radius: var(--radius-full);
  background: rgba(52, 211, 153, 0.15);
  color: var(--color-accent-mint);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.pricing-card__feature--disabled {
  color: var(--text-muted);
  text-decoration: line-through;
}

.pricing-card__feature--disabled::before {
  content: '—';
  background: rgba(156, 163, 175, 0.1);
  color: var(--text-muted);
}

/* ===== STATS ===== */
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.stat-card {
  background: var(--nm-bg-card);
  border-radius: var(--radius-xl);
  padding: 36px 24px;
  box-shadow: var(--nm-shadow-md);
  text-align: center;
  transition: all var(--transition-base);
}

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

.stat-card__number {
  font-family: var(--font-heading);
  font-size: var(--text-5xl);
  font-weight: 900;
  margin-bottom: 8px;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ===== FAQ ===== */
.faq__list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--nm-bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--nm-shadow-sm);
  overflow: hidden;
  transition: all var(--transition-base);
}

.faq-item.active {
  box-shadow: var(--nm-shadow-md);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--text-primary);
  user-select: none;
  transition: all var(--transition-fast);
}

.faq-item__question:hover {
  color: var(--color-primary);
}

.faq-item__icon {
  width: 28px;
  height: 28px;
  border-radius: var(--radius-full);
  background: var(--nm-surface);
  box-shadow: var(--nm-shadow-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
  transition: transform var(--transition-base);
  color: var(--color-primary);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  box-shadow: var(--nm-inset-sm);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-item__answer {
  max-height: 300px;
}

.faq-item__answer-text {
  padding: 0 24px 20px;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

/* ===== FOOTER ===== */
.footer {
  background: var(--nm-surface);
  padding: 60px 0 30px;
}

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

.footer__brand {
  max-width: 300px;
}

.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__description {
  font-size: var(--text-sm);
  color: var(--text-secondary);
  line-height: 1.7;
}

.footer__heading {
  font-family: var(--font-heading);
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.footer__link {
  display: block;
  font-size: var(--text-sm);
  color: var(--text-secondary);
  padding: 4px 0;
  transition: color var(--transition-fast);
}

.footer__link:hover {
  color: var(--color-primary);
}

.footer__bottom {
  border-top: 1px solid rgba(200, 200, 204, 0.3);
  padding-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-xs);
  color: var(--text-muted);
}

[data-theme="dark"] .footer__bottom {
  border-top-color: rgba(100, 100, 130, 0.2);
}

/* ===== CTA BANNER ===== */
.cta-banner {
  background: var(--gradient-primary);
  border-radius: var(--radius-2xl);
  padding: 60px 40px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(139, 92, 246, 0.25);
  margin-bottom: 60px;
}

.cta-banner__title {
  font-family: var(--font-heading);
  font-size: var(--text-3xl);
  font-weight: 800;
  color: white;
  margin-bottom: 16px;
}

.cta-banner__text {
  font-size: var(--text-lg);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-banner .btn {
  background: white;
  color: var(--color-primary);
  font-weight: 700;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.cta-banner .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: var(--color-primary-dark);
}

/* ===== PARTNERS PAGE — ALLOWED/FORBIDDEN ===== */
.categories__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 900px;
  margin: 0 auto;
}

.categories-card {
  background: var(--nm-bg-card);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  box-shadow: var(--nm-shadow-md);
}

.categories-card--allowed {
  border-left: 4px solid var(--color-accent-mint);
}

.categories-card--forbidden {
  border-left: 4px solid var(--color-accent-red);
}

.categories-card__title {
  font-family: var(--font-heading);
  font-size: var(--text-xl);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.categories-card__list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: var(--text-sm);
  color: var(--text-secondary);
}

.categories-card--allowed li::before {
  content: '✓';
  color: var(--color-accent-mint);
  font-weight: 700;
}

.categories-card--forbidden li::before {
  content: '✕';
  color: var(--color-accent-red);
  font-weight: 700;
}

/* ===== PARTNER BENEFITS ===== */
.partner-benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* ===== UTILITY ===== */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-40 { margin-bottom: 40px; }
.mb-60 { margin-bottom: 60px; }
