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

:root {
  --bg: #fafbfe;
  --bg-dark: #0f0f1a;
  --text: #1e293b;
  --text-muted: #64748b;
  --text-light: #94a3b8;
  --primary: #6366f1;
  --primary-hover: #4f46e5;
  --primary-light: #eef2ff;
  --primary-dark: #4338ca;
  --border: #e2e8f0;
  --card-bg: #ffffff;
  --success: #10b981;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
  --shadow: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.1);
  --shadow-xl: 0 25px 60px rgba(0,0,0,0.12);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ========== BRAND LOGO ========== */
.brand-logo {
  font-family: 'Outfit', -apple-system, sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.brand-logo-img {
  height: 36px;
  width: auto;
  border-radius: 6px;
  margin-right: 0.45rem;
}

.brand-logo span {
  color: var(--primary);
}

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border: none;
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 2px 8px rgba(99,102,241,0.3);
}

.btn-primary:hover {
  background: var(--primary-hover);
  box-shadow: 0 4px 16px rgba(99,102,241,0.4);
  transform: translateY(-1px);
}

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

.btn-secondary:hover {
  background: #f1f5f9;
  border-color: #cbd5e1;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 700;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,0,0,0.15);
}

.btn-lg {
  padding: 16px 32px;
  font-size: 1.05rem;
  border-radius: 12px;
}

.btn-full {
  width: 100%;
}

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

.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226,232,240,0.6);
  padding: 10px 0;
  box-shadow: 0 2px 16px rgba(0,0,0,0.04);
}

.navbar-inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.nav-links {
  display: flex;
  gap: 32px;
  margin-left: auto;
}

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

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

.btn-nav {
  padding: 10px 22px;
  font-size: 0.9rem;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  display: none;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  padding: 160px 0 0;
  text-align: center;
  overflow: hidden;
}

.hero-bg-glow {
  position: absolute;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse at center, rgba(99,102,241,0.12) 0%, transparent 70%);
  pointer-events: none;
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 28px;
  border: 1px solid rgba(99,102,241,0.15);
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 4rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  color: var(--text);
}

.gradient-text {
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.2rem;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-stats {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  margin-bottom: 60px;
}

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

.hero-stat strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.hero-stat span {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.hero-stat-divider {
  width: 1px;
  height: 36px;
  background: var(--border);
}

/* ========== HERO MOCKUP ========== */
.hero-mockup-wrapper {
  position: relative;
  z-index: 1;
  margin-top: -10px;
}

.hero-mockup {
  background: var(--card-bg);
  border-radius: 16px 16px 0 0;
  box-shadow: var(--shadow-xl);
  overflow: hidden;
  border: 1px solid var(--border);
  border-bottom: none;
  max-width: 960px;
  margin: 0 auto;
}

.mockup-header {
  background: #f8fafc;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid var(--border);
}

.mockup-dots {
  display: flex;
  gap: 6px;
}

.mockup-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #e2e8f0;
}

.mockup-dots span:first-child { background: #fca5a5; }
.mockup-dots span:nth-child(2) { background: #fcd34d; }
.mockup-dots span:last-child { background: #86efac; }

.mockup-url {
  background: #f1f5f9;
  padding: 6px 16px;
  border-radius: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  flex: 1;
  text-align: center;
}

/* Mockup Tabs (horizontal, like real app) */
.mockup-tabs {
  display: flex;
  gap: 2px;
  padding: 0 20px;
  border-bottom: 2px solid var(--border);
  background: #fff;
}

.mockup-tab {
  padding: 10px 14px;
  font-size: 0.78rem;
  font-weight: 500;
  color: var(--text-muted);
  cursor: default;
  border-bottom: 2px solid transparent;
  margin-bottom: -2px;
  white-space: nowrap;
}

.mockup-tab.active {
  color: var(--primary);
  border-bottom-color: var(--primary);
  font-weight: 600;
}

/* Mockup Content (full width, no sidebar) */
.mockup-content-full {
  padding: 24px;
  background: #f5f7fa;
}

.mockup-dash-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 16px;
}

/* 3 Stat Cards (like real dashboard) */
.mockup-dash-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-bottom: 24px;
}

.mockup-dash-stat {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px;
  cursor: default;
  transition: all 0.2s;
}

.mockup-dash-stat:hover {
  border-color: var(--primary);
  box-shadow: 0 4px 12px rgba(99,102,241,0.08);
  transform: translateY(-1px);
}

.mockup-dash-stat-value {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1.1;
}

.mockup-dash-stat-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-top: 2px;
}

.mockup-dash-stat-sub {
  font-size: 0.7rem;
  color: var(--text-light);
  margin-top: 4px;
}

/* Mockup Section Titles */
.mockup-section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 10px;
}

/* Mockup Cards Row */
.mockup-cards-row {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 10px;
}

/* ---- Reminder Animal Card ---- */
.mockup-animal-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.mockup-animal-card.reminder-border {
  border-left: 3px solid #f59e0b;
}

.mockup-animal-header {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 10px;
}

.mockup-animal-photo-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-emoji {
  font-size: 1.3rem;
  line-height: 1;
}

.mockup-animal-name {
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--text);
}

.mockup-animal-tags {
  display: flex;
  gap: 4px;
  align-items: center;
  margin-top: 2px;
}

.mtag {
  font-size: 0.65rem;
  font-weight: 500;
  padding: 1px 6px;
  border-radius: 20px;
  border: 1px solid var(--border);
  background: #f8fafc;
  color: var(--text-muted);
  line-height: 1.4;
}

.mtag.male {
  color: #3b82f6;
  border-color: #bfdbfe;
  background: #eff6ff;
}

.mtag.female {
  color: #ec4899;
  border-color: #fbcfe8;
  background: #fdf2f8;
}

.mtag.id {
  font-weight: 600;
}

.mtag.project-nr {
  background: var(--primary-light);
  color: var(--primary);
  border-color: rgba(99,102,241,0.2);
  font-weight: 600;
  flex-shrink: 0;
  white-space: nowrap;
}

.mockup-animal-badges {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.mockup-badge-item {
  font-size: 0.7rem;
  color: var(--text-muted);
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.3;
}

.mockup-badge-item strong {
  color: var(--text);
}

.mockup-badge-item.feeding {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #b91c1c;
}

.mockup-badge-item.feeding strong {
  color: #991b1b;
}

.mockup-badge-item.weighing {
  background: #eef2ff;
  border: 1px solid #c7d2fe;
  color: #4338ca;
}

.mockup-badge-item.weighing strong {
  color: #3730a3;
}

/* ---- Hatch Cards ---- */
.mockup-hatch-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
  display: flex;
  gap: 12px;
  align-items: center;
}

.mockup-hatch-photo-placeholder {
  width: 48px;
  height: 48px;
  border-radius: 8px;
  background: linear-gradient(135deg, #d1fae5, #ecfdf5);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mockup-emoji-hatch {
  font-size: 1.5rem;
  line-height: 1;
}

.mockup-hatch-info {
  flex: 1;
  min-width: 0;
}

.mockup-hatch-name {
  font-weight: 600;
  font-size: 0.8rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 2px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mockup-hatch-date {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.mockup-hatch-progress {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mockup-hatch-bar {
  flex: 1;
  height: 6px;
  background: #f1f5f9;
  border-radius: 3px;
  overflow: hidden;
  border: 1px solid var(--border);
}

.mockup-hatch-fill {
  height: 100%;
  border-radius: 3px;
  background: linear-gradient(90deg, #10b981, #34d399);
}

.mockup-hatch-days {
  font-size: 0.65rem;
  font-weight: 600;
  color: #059669;
  white-space: nowrap;
}

/* ========== SECTIONS ========== */
.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}

.section-badge {
  display: inline-flex;
  background: var(--primary-light);
  color: var(--primary);
  padding: 6px 16px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 16px;
  border: 1px solid rgba(99,102,241,0.12);
}

.section-header h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 14px;
  color: var(--text);
}

.section-header p {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== FEATURES ========== */
.features {
  padding: 120px 0;
  background: var(--bg);
}

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

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  transition: all 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.feature-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.feature-card p {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ========== HOW IT WORKS ========== */
.how-it-works {
  padding: 120px 0;
  background: #fff;
}

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
}

.step-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  text-align: center;
  flex: 1;
  max-width: 300px;
  transition: all 0.3s ease;
}

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

.step-number {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Outfit', sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 20px;
}

.step-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step-card p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.step-connector {
  display: flex;
  align-items: center;
  padding-top: 50px;
  flex-shrink: 0;
}

/* ========== HIGHLIGHTS ========== */
.highlights {
  padding: 120px 0;
  background: var(--bg);
}

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

.highlight-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.highlight-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.highlight-card h3 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.highlight-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ========== PRICING ========== */
.pricing {
  padding: 120px 0;
  background: #fff;
}

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

.pricing-card {
  background: var(--card-bg);
  border: 1.5px solid var(--border);
  border-radius: 20px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

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

.pricing-card.popular {
  border-color: var(--primary);
  box-shadow: 0 8px 40px rgba(99,102,241,0.15);
  transform: scale(1.04);
}

.pricing-card.popular:hover {
  transform: scale(1.04) translateY(-4px);
  box-shadow: 0 12px 48px rgba(99,102,241,0.2);
}

.popular-badge {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  padding: 5px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.pricing-tier {
  font-family: 'Outfit', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 4px;
  margin-bottom: 12px;
}

.price-amount {
  font-family: 'Outfit', sans-serif;
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--text);
  line-height: 1;
}

.price-free {
  font-size: 2.2rem;
  color: var(--text);
}

.price-currency {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-muted);
}

.pricing-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  margin-bottom: 28px;
  line-height: 1.5;
}

.pricing-features {
  list-style: none;
  margin-bottom: 32px;
}

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

.pricing-features li.disabled {
  color: var(--text-light);
}

.pricing-features li svg {
  flex-shrink: 0;
}

/* ========== FAQ ========== */
.faq {
  padding: 120px 0;
  background: var(--bg);
}

.faq-list {
  max-width: 720px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  margin-bottom: 12px;
  background: var(--card-bg);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  border-color: #cbd5e1;
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  cursor: pointer;
  text-align: left;
}

.faq-chevron {
  transition: transform 0.3s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

.faq-answer p {
  padding: 0 24px 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========== CTA ========== */
.cta {
  padding: 100px 0;
  background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
  text-align: center;
}

.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: 2.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 14px;
  letter-spacing: -0.02em;
}

.cta-inner p {
  font-size: 1.15rem;
  color: rgba(255,255,255,0.8);
  margin-bottom: 32px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-dark);
  padding: 64px 0 0;
  color: #94a3b8;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(148,163,184,0.15);
}

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

.footer .brand-logo {
  color: #f1f5f9;
  margin-bottom: 12px;
  display: inline-block;
}

.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-top: 12px;
}

.footer-links {
  display: flex;
  gap: 64px;
}

.footer-col h4 {
  color: #f1f5f9;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.footer-col a {
  display: block;
  color: #94a3b8;
  text-decoration: none;
  font-size: 0.9rem;
  padding: 4px 0;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #f1f5f9;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
}

.footer-bottom p {
  font-size: 0.82rem;
  color: #64748b;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .hero h1 {
    font-size: 3.2rem;
  }

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .highlight-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .pricing-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

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

  .mockup-tabs {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .mockup-tab {
    font-size: 0.72rem;
    padding: 8px 10px;
  }
}

@media (max-width: 768px) {
  .nav-links,
  .btn-nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    margin-left: auto;
  }

  .mobile-menu {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0 24px 16px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
  }

  .mobile-menu.open {
    max-height: 300px;
    padding: 16px 24px;
  }

  .mobile-menu a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 10px 0;
    font-size: 1rem;
  }

  .hero {
    padding: 120px 0 0;
  }

  .hero h1 {
    font-size: 2.4rem;
  }

  .hero-sub {
    font-size: 1.05rem;
    padding: 0 8px;
  }

  .hero-stats {
    gap: 20px;
    margin-bottom: 40px;
  }

  .hero-stat strong {
    font-size: 1rem;
  }

  .hero-stat span {
    font-size: 0.78rem;
  }

  .mockup-tabs {
    display: none;
  }

  .mockup-dash-stats {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .mockup-dash-stat {
    padding: 12px;
  }

  .mockup-dash-stat-value {
    font-size: 1.3rem;
  }

  .mockup-content-full {
    padding: 16px;
  }

  .section-header h2 {
    font-size: 2rem;
  }

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

  .steps-grid {
    flex-direction: column;
    align-items: center;
  }

  .step-connector {
    transform: rotate(90deg);
    padding-top: 0;
  }

  .step-card {
    max-width: 100%;
    width: 100%;
  }

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

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

  .pricing-card.popular {
    transform: none;
    order: -1;
  }

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

  .cta-inner h2 {
    font-size: 1.8rem;
  }

  .footer-inner {
    flex-direction: column;
    gap: 32px;
  }

  .footer-links {
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero-actions {
    flex-direction: column;
    align-items: center;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-stats {
    flex-direction: column;
    gap: 12px;
  }

  .hero-stat-divider {
    width: 40px;
    height: 1px;
  }

  .mockup-cards-row {
    grid-template-columns: 1fr;
  }
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-inner {
  animation: fadeInUp 0.8s ease-out;
}

.hero-mockup {
  animation: fadeInUp 1s ease-out 0.2s both;
}