/* ═══════════════════════════════════════════════
   #БезСрыва — Лендинг
   Дизайн: в стиле приложения
   ═══════════════════════════════════════════════ */

/* ── CSS Variables ── */
:root {
  /* App Palette - Female (Default) */
  --bg: #F9F4F0;
  --surface: #FFFFFF;
  --primary: #E8998D;
  --primary-hover: #D68A82;
  --secondary: #D1C4E9;
  --text: #4A3F3A;
  --text-light: rgba(74, 63, 58, 0.6);
  --text-white: #FFFFFF;
  
  /* Glassmorphism 2.0 */
  --glass-bg: rgba(255, 255, 255, 0.72);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 8px 32px rgba(232, 153, 141, 0.12), 0 4px 8px rgba(0, 0, 0, 0.04);
  --glass-blur: 16px;
  
  /* App Wave Colors */
  --wave-pink: #F5E4E0;
  --wave-lavender: #E7D1D7;
  --wave-cream: #F4EBE4;
  --wave-bg: #DAD6E8;
  
  /* Metrics Gradients */
  --grad-sleep: linear-gradient(135deg, #FFA69A, #FF8C82);
  --grad-water: linear-gradient(135deg, #93E2E6, #67D4DB);
  --grad-nutrition: linear-gradient(135deg, #A2EDB2, #7CD790);
  
  --radius: 24px;
  --radius-sm: 16px;
  --transition: 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: 'Nunito', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

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

section {
  padding: 100px 0;
  position: relative;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-weight: 700;
  line-height: 1.2;
}

h2.section-title {
  font-size: 36px;
  text-align: center;
  margin-bottom: 16px;
}

.section-subtitle {
  font-size: 18px;
  color: var(--text-light);
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-subtitle:after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ── Blob Background Elements (как в приложении) ── */
/* ── Mesh Gradient Background ── */
.wave-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(circle at 15% 50%, #F5E4E0, transparent),
              radial-gradient(circle at 85% 30%, #E7D1D7, transparent),
              radial-gradient(circle at 50% 80%, #DAD6E8, transparent);
  animation: meshGradient 20s ease infinite alternate;
}

@keyframes meshGradient {
  0% { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

.blob { display: none; }

/* ── Sparkle Particles (светлячки как в приложении) ── */
.sparkle-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.sparkle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  opacity: 0;
  animation: sparkleFloat 3s ease-in-out infinite;
}

.sparkle-core {
  position: absolute;
  border-radius: 50%;
  background: white;
  box-shadow: 0 0 4px rgba(255, 255, 255, 0.8);
}

@keyframes sparkleFloat {
  0% { opacity: 0; transform: translate(0, 0) scale(0.5); }
  20% { opacity: 0.7; }
  50% { opacity: 0.3; transform: translate(var(--dx), var(--dy)) scale(1); }
  80% { opacity: 0.7; }
  100% { opacity: 0; transform: translate(calc(var(--dx) * 1.5), calc(var(--dy) * 1.5)) scale(0.5); }
}

/* ── Glass Panel ── */
.glass {
  background: var(--glass-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass:hover {
  box-shadow: var(--shadow-hover);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-family: 'Nunito', sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 16px rgba(232, 153, 141, 0.35);
}

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(232, 153, 141, 0.45);
}

.btn-secondary {
  background: transparent;
  color: var(--text);
  border: 2px solid var(--primary);
}

.btn-secondary:hover {
  background: var(--primary);
  color: var(--text-white);
}

.btn-disabled {
  background: #E0D5D0;
  color: var(--text-light);
  cursor: not-allowed;
}

.btn-sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn-lg {
  padding: 16px 40px;
  font-size: 18px;
}

/* ── Floating Navbar ── */
.nav {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1000px;
  z-index: 1000;
  padding: 12px 24px;
  background: rgba(249, 244, 240, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 100px;
  transition: var(--transition);
}

.nav.scrolled {
  background: rgba(249, 244, 240, 0.9);
  box-shadow: 0 8px 32px rgba(74, 63, 58, 0.08);
  padding: 10px 24px;
}

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

.nav-logo {
  display: block;
}

.nav-logo-img {
  height: 28px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

.nav-links a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  transition: var(--transition);
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 80px;
  overflow: hidden;
}

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

.hero-content h1 {
  font-size: 48px;
  margin-bottom: 16px;
  line-height: 1.15;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 32px;
  line-height: 1.7;
}

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

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 700px;
  margin-left: 60px;
}

/* ── Orchid Image on Podium (как в приложении) ── */
.orchid-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: -60px;
  z-index: 2;
}

.orchid-img {
  width: 140px;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(232, 153, 141, 0.3));
}

.podium {
  display: block;
  width: 110px;
  height: 14px;
  background: #676B7D;
  border-radius: 50px;
  margin-top: -8px;
  box-shadow: 0 6px 10px rgba(103, 107, 125, 0.4);
}

/* ── Hero Phone Mockup ── */
.hero-phone {
  position: relative;
  z-index: 1;
  width: 300px;
  height: 600px;
  background: transparent;
  border-radius: 48px;
  box-shadow: 0 24px 64px rgba(74, 63, 58, 0.12), 0 0 0 10px #2A2A2A;
  overflow: hidden;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.phone-header {
  text-align: center;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(74, 63, 58, 0.05);
  position: relative;
}

/* Dynamic Island */
.dynamic-island {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 28px;
  background: #2A2A2A;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-header span {
  font-size: 13px;
  font-weight: 800;
  color: var(--text);
  letter-spacing: 0.5px;
  margin-top: 24px;
  display: block;
}

.phone-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.phone-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  background: rgba(249, 244, 240, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(74, 63, 58, 0.03);
}

.phone-stat .label {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.phone-stat .value {
  font-size: 16px;
  font-weight: 800;
  color: var(--text);
}

.phone-stat .bar {
  width: 100%;
  height: 6px;
  background: rgba(74, 63, 58, 0.05);
  border-radius: 10px;
  overflow: hidden;
}

.phone-stat .bar-fill {
  height: 100%;
  border-radius: 10px;
  background: var(--grad-water);
  transition: width 0.5s ease;
}

.phone-stat.calories .bar-fill {
  background: var(--grad-sleep);
}

.phone-meal {
  padding: 16px;
  background: rgba(249, 244, 240, 0.6);
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 20px;
  box-shadow: 0 4px 12px rgba(74, 63, 58, 0.03);
  margin-top: auto;
}

.phone-meal .meal-title {
  font-size: 11px;
  font-weight: 800;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 8px;
}

.phone-meal .meal-items {
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.5;
}

/* ── Features ── */
.features {
  background: linear-gradient(180deg, var(--bg) 0%, rgba(232, 153, 141, 0.05) 100%);
  padding: 120px 0;
}

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

.feature-card {
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.feature-card:hover {
  transform: translateY(-12px);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 48px rgba(232, 153, 141, 0.15);
}

.feature-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 24px;
  background: linear-gradient(135deg, rgba(232, 153, 141, 0.1), rgba(209, 196, 233, 0.1));
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
  position: relative;
}

.feature-icon::after {
  content: '';
  position: absolute;
  inset: -4px;
  background: inherit;
  filter: blur(12px);
  opacity: 0;
  transition: var(--transition);
  z-index: -1;
}

.feature-card:hover .feature-icon {
  transform: scale(1.1) rotate(5deg);
  background: var(--primary);
  color: white;
}

.feature-card:hover .feature-icon svg {
  stroke: white;
}

.feature-card:hover .feature-icon::after {
  opacity: 0.4;
}

.feature-card h3 {
  font-size: 22px;
  margin-bottom: 14px;
  color: var(--text);
}

.feature-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── Pricing ── */
.pricing {
  padding: 120px 0;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.pricing-card {
  padding: 48px 40px;
  text-align: center;
  transition: var(--transition);
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.pricing-card.free {
  background: rgba(255, 255, 255, 0.5);
}

.pricing-card:hover {
  transform: translateY(-8px);
  background: white;
}

.pricing-tier {
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  margin-bottom: 12px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 8px;
  line-height: 1;
}

.pricing-period {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 32px;
}

.pricing-features {
  text-align: left;
  margin-bottom: 40px;
  flex: 1;
}

.pricing-features li {
  font-size: 15px;
  color: var(--text);
  padding: 10px 0;
  display: flex;
  align-items: center;
  gap: 12px;
}

.pricing-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  background: rgba(232, 153, 141, 0.15);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 900;
  flex-shrink: 0;
}

/* Shimmer Effect for Coming Soon */
.pricing-soon {
  background: linear-gradient(135deg, rgba(255,255,255,0.4) 0%, rgba(255,255,255,0.1) 100%);
  border: 1px dashed var(--primary);
  overflow: hidden;
}

.pricing-soon::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  transform: skewX(-25deg);
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 200%; }
}

.coming-soon-badge {
  padding: 14px;
  background: var(--primary);
  color: white;
  border-radius: var(--radius-sm);
  font-size: 15px;
  font-weight: 700;
  box-shadow: 0 8px 24px rgba(232, 153, 141, 0.25);
}

/* ── FAQ ── */
.faq { padding: 120px 0; }

.faq-list {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.faq-item {
  margin-bottom: 16px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-sm);
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
  background: rgba(255, 255, 255, 0.4);
}

.faq-question {
  width: 100%;
  padding: 24px 32px;
  background: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Nunito', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  text-align: left;
  transition: var(--transition);
  gap: 20px;
}

.faq-question .faq-icon {
  width: 28px;
  height: 28px;
  background: rgba(232, 153, 141, 0.1);
  border-radius: 50%;
  flex-shrink: 0;
  transition: var(--transition);
  position: relative;
}

.faq-question .faq-icon::before,
.faq-question .faq-icon::after {
  content: '';
  position: absolute;
  background: var(--primary);
  border-radius: 2px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.faq-question .faq-icon::before {
  width: 12px;
  height: 2px;
}

.faq-question .faq-icon::after {
  width: 2px;
  height: 12px;
  transition: var(--transition);
}

.faq-item.open {
  background: white;
  box-shadow: 0 12px 32px rgba(74, 63, 58, 0.05);
}

.faq-item.open .faq-question .faq-icon {
  background: var(--primary);
  transform: rotate(45deg);
}

.faq-item.open .faq-question .faq-icon::before,
.faq-item.open .faq-question .faq-icon::after { background: white; }

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

.faq-item.open .faq-answer {
  max-height: 1000px;
  transition: max-height 1s ease-in-out;
}

.faq-answer-inner {
  padding: 0 32px 32px;
  font-size: 16px;
  color: var(--text-light);
  line-height: 1.8;
}

/* ── Contact ── */
.contact {
  padding: 120px 0;
  text-align: center;
}

.contact-cards {
  display: flex;
  justify-content: center;
  gap: 32px;
}

.contact-card {
  padding: 40px;
  min-width: 220px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.contact-card:hover {
  transform: translateY(-8px);
  background: white;
}

.contact-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  background: linear-gradient(135deg, rgba(232, 153, 141, 0.12), rgba(209, 196, 233, 0.12));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.contact-icon svg {
  stroke: var(--primary);
  transition: var(--transition);
}

.contact-card:hover .contact-icon {
  transform: scale(1.08);
  background: var(--primary);
  color: white;
}

.contact-card:hover .contact-icon svg {
  stroke: white;
}

.contact-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.contact-card p {
  font-size: 14px;
  color: var(--text-light);
}

/* ── Footer ── */
.footer {
  padding: 50px 0;
  border-top: 1px solid rgba(74, 63, 58, 0.15);
  text-align: center;
  background: rgba(249, 244, 240, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 14px;
  font-weight: 700;
  color: #1A1513;
  transition: var(--transition);
  text-decoration: none;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-copy {
  font-size: 13px;
  color: #1A1513;
  opacity: 0.85;
}

/* ── 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-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── Visibility Helpers (used elsewhere) ── */
/* .desktop-only / .mobile-only — удалены, мокап един для всех экранов */

@media (max-width: 768px) {
  .hero-visual { display: flex; justify-content: center; align-items: center; height: auto; min-height: auto; margin-left: 0; }
  .hero-phone { width: 300px; height: 580px; }
}

/* ── Pricing Tabs ── */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 32px;
  background: rgba(74, 63, 58, 0.05);
  padding: 6px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.pricing-tab {
  padding: 8px 20px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  background: transparent;
  color: var(--text-light);
}

.pricing-tab.active {
  background: var(--primary);
  color: white;
  box-shadow: 0 4px 12px rgba(232, 153, 141, 0.3);
}

.pricing-card.pro-card {
  border: 2px solid var(--primary);
}

.pricing-card .price-sub {
  font-size: 14px;
  color: var(--text-light);
  margin-top: -4px;
  margin-bottom: 16px;
}

.pricing-card .price-total {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 4px;
}

.pricing-card .price-main {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  line-height: 1;
}

.pricing-card .price-month {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-light);
}

.pricing-badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background: var(--primary);
  color: white;
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
@media (max-width: 1024px) {
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-card:first-child {
    grid-column: auto;
  }
  .pricing-card.popular {
    transform: none;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  h2.section-title { font-size: 28px; }
  section { padding: 60px 0; }

  .nav-links {
    display: none;
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    background: rgba(249, 244, 240, 0.98);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 20px;
    gap: 16px;
    border-radius: var(--radius-sm);
    box-shadow: 0 8px 32px rgba(74, 63, 58, 0.12);
    border: 1px solid rgba(255,255,255,0.8);
    z-index: 999;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .nav-links.open { 
    display: flex; 
    opacity: 1; 
    transform: translateY(0);
  }
  .nav-toggle { display: flex; }

  .nav-links a { 
    font-size: 16px; 
    padding: 10px 0;
    text-align: center;
  }
  
  .nav-links .btn {
    width: 100%;
    justify-content: center;
  }

  .hero { padding-top: 100px; }
  .hero .container {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-content h1 { font-size: 36px; }
  .hero-buttons { justify-content: center; flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }

  .pricing-card { padding: 32px 24px; }
  .pricing-card.popular { transform: none; }
  .section-subtitle { font-size: 16px; margin-bottom: 40px; }
  .section-subtitle:after { margin: 16px auto 0; }

  .contact-cards { flex-direction: column; align-items: center; gap: 16px; }
  .contact-card { min-width: auto; width: 100%; max-width: 320px; padding: 24px; }

  .faq-question { font-size: 16px; padding: 20px; gap: 16px; }
  .faq-answer-inner { padding: 0 20px 24px; font-size: 15px; }

  .footer-links { gap: 12px; flex-direction: column; align-items: center; }
  .footer-links a { font-size: 14px; padding: 4px 0; }
}

@media (max-width: 480px) {
  .hero-content h1 { font-size: 28px; }
  .btn-lg { padding: 14px 28px; font-size: 16px; }
  .pricing-card { padding: 20px 16px; }
  .container { padding: 0 16px; }
  .hero-phone { width: 260px; height: 480px; }
  .nav { width: calc(100% - 20px); top: 10px; padding: 10px 16px; border-radius: 40px; }
}