/* SnapCal - Fresh Green Theme 2026 */
:root {
  --green-primary: #2DB152;
  --green-light: #4CD964;
  --green-pale: #EDF7EF;
  --green-mid: #D4EDDA;
  --bg: #FFFFFF;
  --bg-alt: #F5FAF6;
  --text: #0D1B12;
  --text-muted: #5A7060;
  --text-light: #8FA896;
  --border: #E2EEE5;
  --card: #FFFFFF;
  --shadow: 0 2px 16px rgba(45,177,82,0.08);
  --shadow-lg: 0 8px 40px rgba(45,177,82,0.14);
  --radius: 16px;
  --radius-sm: 10px;
  --radius-xs: 6px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

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

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

/* ── TYPOGRAPHY ── */
h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.5rem); font-weight: 700; line-height: 1.2; letter-spacing: -0.02em; }
h3 { font-size: 1.25rem; font-weight: 600; line-height: 1.3; }
p  { font-size: 1.0625rem; color: var(--text-muted); line-height: 1.7; }

/* ── LAYOUT ── */
.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }
.section { padding: 96px 0; }
.section-alt { background: var(--bg-alt); }

/* ── BADGE ── */
.badge {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-pale); color: var(--green-primary);
  font-size: 0.8125rem; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid var(--green-mid);
  text-transform: uppercase;
}

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 28px; border-radius: 100px;
  font-size: 1rem; font-weight: 600; cursor: pointer;
  transition: all 0.2s ease; border: none; text-decoration: none;
}
.btn-primary {
  background: var(--green-primary); color: #fff;
  box-shadow: 0 4px 20px rgba(45,177,82,0.35);
}
.btn-primary:hover { background: #259647; transform: translateY(-1px); box-shadow: 0 6px 28px rgba(45,177,82,0.45); }
.btn-secondary {
  background: transparent; color: var(--text);
  border: 1.5px solid var(--border);
}
.btn-secondary:hover { border-color: var(--green-primary); color: var(--green-primary); }
.btn-lg { padding: 18px 36px; font-size: 1.125rem; }

/* App Store button */
.app-store-btn {
  display: inline-flex; align-items: center; gap: 10px;
  background: #0D1B12; color: #fff;
  padding: 12px 24px; border-radius: 12px;
  font-size: 0.9375rem; font-weight: 600;
  transition: all 0.2s; border: 1.5px solid rgba(255,255,255,0.1);
}
.app-store-btn:hover { background: #1a3522; transform: translateY(-1px); }
.app-store-btn svg { flex-shrink: 0; }
.app-store-btn-text { display: flex; flex-direction: column; line-height: 1.2; }
.app-store-btn-text small { font-size: 0.6875rem; font-weight: 400; opacity: 0.75; }

/* ── HEADER ── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.88);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.logo { display: flex; align-items: center; gap: 10px; }
.logo img { width: 36px; height: 36px; border-radius: 9px; }
.logo-text { font-size: 1.125rem; font-weight: 800; color: var(--text); letter-spacing: -0.02em; }
.logo-text span { color: var(--green-primary); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav a { font-size: 0.9375rem; font-weight: 500; color: var(--text-muted); transition: color 0.2s; }
.nav a:hover { color: var(--green-primary); }

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

.burger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; background: none; border: none; }
.burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all 0.3s; }

/* ── HERO ── */
.hero {
  padding: 80px 0 96px;
  background: linear-gradient(160deg, #fff 0%, var(--bg-alt) 100%);
  position: relative; overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute; top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(76,217,100,0.12) 0%, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; bottom: -150px; left: -100px;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,177,82,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 64px;
  position: relative; z-index: 1;
}
.hero-badge { margin-bottom: 20px; }
.hero-title { margin-bottom: 20px; }
.hero-title mark {
  background: linear-gradient(135deg, var(--green-primary), var(--green-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.hero-desc { font-size: 1.125rem; margin-bottom: 36px; max-width: 480px; }
.hero-cta { display: flex; align-items: center; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.hero-stats { display: flex; gap: 36px; flex-wrap: wrap; }
.hero-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--text); line-height: 1; }
.hero-stat-label { font-size: 0.8125rem; color: var(--text-light); margin-top: 2px; }

/* Phone mockup */
.hero-visual { display: flex; justify-content: center; align-items: center; }
.phone-mockup {
  position: relative;
  width: 280px; height: 580px;
}
.phone-frame {
  width: 100%; height: 100%;
  background: #0D1B12;
  border-radius: 44px;
  border: 8px solid #1a3522;
  box-shadow: 0 32px 80px rgba(0,0,0,0.25), 0 0 0 1px rgba(255,255,255,0.05);
  overflow: hidden;
  position: relative;
}
.phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #F5FAF6 0%, #EDF7EF 100%);
  display: flex; flex-direction: column; align-items: center;
  padding: 32px 20px 20px;
}
.phone-notch {
  width: 100px; height: 6px;
  background: #0D1B12; border-radius: 3px;
  margin-bottom: 24px;
}
.phone-ui-day { font-size: 0.7rem; font-weight: 700; color: var(--text-muted); text-align: center; margin-bottom: 12px; }
.phone-ui-card {
  background: #fff; border-radius: 16px;
  padding: 16px; width: 100%;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  margin-bottom: 10px;
}
.phone-cal-label { font-size: 0.65rem; color: var(--text-muted); }
.phone-cal-num { font-size: 1.6rem; font-weight: 800; color: var(--text); line-height: 1.1; }
.phone-cal-sub { font-size: 0.6rem; color: var(--text-light); }
.phone-macros { display: flex; gap: 8px; margin-top: 10px; }
.phone-macro {
  flex: 1; text-align: center;
  padding: 8px 4px; border-radius: 10px;
  font-size: 0.6rem; font-weight: 600;
}
.phone-macro.carbs { background: #FFF8E6; color: #E6A817; }
.phone-macro.protein { background: #FFEEF0; color: #E63B2E; }
.phone-macro.fat { background: #E8F8F0; color: #2DB152; }
.phone-macro-num { font-size: 0.85rem; font-weight: 800; display: block; }
.phone-scan-btn {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-primary);
  display: flex; align-items: center; justify-content: center;
  margin: 8px auto;
  box-shadow: 0 4px 16px rgba(45,177,82,0.4);
}
.phone-scan-icon { font-size: 1.5rem; }

/* Floating badge */
.float-badge {
  position: absolute; right: -28px; top: 80px;
  background: #fff; border-radius: 12px;
  padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  display: flex; align-items: center; gap: 8px;
  font-size: 0.8rem; font-weight: 600; white-space: nowrap;
}
.float-badge-dot { width: 8px; height: 8px; background: var(--green-primary); border-radius: 50%; }
.float-badge2 {
  position: absolute; left: -28px; bottom: 120px;
  background: var(--green-primary); color: #fff;
  border-radius: 12px; padding: 10px 14px;
  box-shadow: 0 4px 20px rgba(45,177,82,0.35);
  font-size: 0.8rem; font-weight: 700; white-space: nowrap;
}

/* ── FEATURES ── */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
  margin-top: 56px;
}
.feature-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 32px;
  transition: all 0.25s ease;
}
.feature-card:hover { box-shadow: var(--shadow-lg); border-color: var(--green-mid); transform: translateY(-3px); }
.feature-icon {
  width: 52px; height: 52px; border-radius: var(--radius-sm);
  background: var(--green-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 20px;
}
.feature-title { font-size: 1.125rem; font-weight: 700; color: var(--text); margin-bottom: 8px; }
.feature-desc { font-size: 0.9375rem; }

/* ── HOW IT WORKS ── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto 64px; }
.section-header p { margin-top: 14px; font-size: 1.0625rem; }

.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.step { text-align: center; padding: 0 16px; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--green-primary); color: #fff;
  font-size: 1.25rem; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
}
.step h3 { margin-bottom: 10px; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--green-primary);
  padding: 60px 0;
}
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; text-align: center; }
.stat-num { font-size: 2.25rem; font-weight: 800; color: #fff; line-height: 1; }
.stat-label { font-size: 0.9rem; color: rgba(255,255,255,0.75); margin-top: 6px; }

/* ── PRICING ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.pricing-card {
  border: 1.5px solid var(--border); border-radius: var(--radius);
  padding: 36px 28px; text-align: center; position: relative;
  transition: all 0.25s;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }
.pricing-card.popular {
  border-color: var(--green-primary);
  box-shadow: var(--shadow-lg);
}
.popular-tag {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--green-primary); color: #fff;
  font-size: 0.75rem; font-weight: 700; padding: 4px 16px; border-radius: 100px;
  letter-spacing: 0.04em; text-transform: uppercase; white-space: nowrap;
}
.pricing-plan { font-size: 0.875rem; font-weight: 600; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 12px; }
.pricing-price { font-size: 2.5rem; font-weight: 800; color: var(--text); line-height: 1; }
.pricing-price sub { font-size: 1rem; font-weight: 500; color: var(--text-muted); }
.pricing-period { font-size: 0.875rem; color: var(--text-light); margin-bottom: 28px; margin-top: 4px; }
.pricing-features { text-align: left; margin-bottom: 28px; }
.pricing-features li {
  display: flex; align-items: center; gap: 10px;
  font-size: 0.9375rem; color: var(--text-muted);
  padding: 7px 0; border-bottom: 1px solid var(--border);
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before { content: '✓'; color: var(--green-primary); font-weight: 700; flex-shrink: 0; }

/* ── BLOG ── */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.blog-card {
  border: 1px solid var(--border); border-radius: var(--radius);
  overflow: hidden; transition: all 0.25s;
  background: var(--card);
}
.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.blog-card-img {
  height: 180px; background: var(--green-pale);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative;
}
.coming-soon-overlay {
  position: absolute; inset: 0;
  background: rgba(237,247,239,0.85);
  display: flex; align-items: center; justify-content: center;
}
.coming-soon-badge {
  background: var(--green-primary); color: #fff;
  font-size: 0.75rem; font-weight: 700;
  padding: 6px 16px; border-radius: 100px;
  text-transform: uppercase; letter-spacing: 0.06em;
}
.blog-card-body { padding: 24px; }
.blog-card-cat { font-size: 0.75rem; font-weight: 600; color: var(--green-primary); text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 8px; }
.blog-card-title { font-size: 1.0625rem; font-weight: 700; color: var(--text); line-height: 1.4; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 56px auto 0; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--radius-sm);
  margin-bottom: 12px; overflow: hidden;
}
.faq-q {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-size: 1rem; font-weight: 600;
  color: var(--text); text-align: left; gap: 16px;
}
.faq-q:hover { color: var(--green-primary); }
.faq-icon { font-size: 1.25rem; color: var(--green-primary); flex-shrink: 0; transition: transform 0.3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.faq-a-inner { padding: 0 24px 20px; font-size: 0.9375rem; color: var(--text-muted); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--green-primary) 0%, #1a9e45 100%);
  border-radius: var(--radius); padding: 72px 48px;
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px;
  width: 240px; height: 240px;
  background: rgba(255,255,255,0.08); border-radius: 50%;
}
.cta-banner h2 { color: #fff; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.82); font-size: 1.125rem; margin: 14px 0 36px; position: relative; }
.cta-banner .app-store-btn { background: #fff; color: var(--text); position: relative; }
.cta-banner .app-store-btn:hover { background: var(--bg-alt); }
.cta-banner .app-store-btn svg path { fill: var(--green-primary); }

/* ── FOOTER ── */
.footer {
  background: var(--bg-alt);
  border-top: 1px solid var(--border);
  padding: 56px 0 32px;
}
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px; margin-bottom: 48px;
}
.footer-brand p { font-size: 0.9375rem; margin-top: 12px; max-width: 240px; }
.footer-col h4 { font-size: 0.875rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 16px; color: var(--text); }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 0.9375rem; color: var(--text-muted); transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--green-primary); }
.footer-bottom {
  border-top: 1px solid var(--border); padding-top: 24px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px;
}
.footer-copy { font-size: 0.875rem; color: var(--text-light); }

/* ── BREADCRUMBS ── */
.breadcrumbs {
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.breadcrumbs ol {
  display: flex; align-items: center; flex-wrap: wrap; gap: 6px;
  list-style: none; margin: 0; padding: 0;
}
.breadcrumbs li { display: flex; align-items: center; gap: 6px; }
.breadcrumbs li + li::before { content: '›'; color: var(--text-light); font-size: 0.9rem; }
.breadcrumbs a { font-size: 0.875rem; color: var(--text-muted); transition: color 0.2s; }
.breadcrumbs a:hover { color: var(--green-primary); }
.breadcrumbs span { font-size: 0.875rem; color: var(--text-light); }

/* ── ARTICLE ── */
.article-hero {
  padding: 56px 0 48px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
}
.article-meta { display: flex; align-items: center; flex-wrap: wrap; gap: 12px; margin-bottom: 20px; }
.article-cat { font-size: 0.8125rem; font-weight: 700; color: var(--green-primary); text-transform: uppercase; letter-spacing: 0.06em; }
.article-dot { color: var(--text-light); }
.article-date { font-size: 0.8125rem; color: var(--text-light); }
.article-read { font-size: 0.8125rem; color: var(--text-light); }
.article-hero h1 { max-width: 760px; }
.article-hero .lead { font-size: 1.125rem; color: var(--text-muted); max-width: 680px; margin-top: 16px; line-height: 1.7; }

.article-body {
  max-width: 760px; margin: 0 auto;
  padding: 56px 24px 80px;
}
.article-body h2 { font-size: 1.5rem; margin-top: 48px; margin-bottom: 14px; color: var(--text); }
.article-body h3 { font-size: 1.125rem; margin-top: 32px; margin-bottom: 10px; color: var(--text); }
.article-body p { margin-bottom: 20px; font-size: 1.0625rem; line-height: 1.8; }
.article-body ul, .article-body ol { margin: 0 0 20px 24px; }
.article-body ul li, .article-body ol li { font-size: 1.0625rem; color: var(--text-muted); margin-bottom: 8px; line-height: 1.7; }
.article-body ul li { list-style: disc; }
.article-body ol li { list-style: decimal; }
.article-body strong { color: var(--text); font-weight: 600; }
.article-body a { color: var(--green-primary); text-decoration: underline; }
.article-body blockquote {
  border-left: 4px solid var(--green-primary);
  padding: 16px 20px; margin: 32px 0;
  background: var(--green-pale); border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.article-body blockquote p { margin: 0; font-style: italic; color: var(--text); font-size: 1.0625rem; }

.article-callout {
  background: var(--green-pale); border: 1px solid var(--green-mid);
  border-radius: var(--radius); padding: 24px 28px; margin: 32px 0;
}
.article-callout-title { font-weight: 700; color: var(--green-primary); margin-bottom: 8px; font-size: 0.9375rem; }
.article-callout p { margin: 0; font-size: 0.9375rem; }

.article-table { width: 100%; border-collapse: collapse; margin: 28px 0; font-size: 0.9375rem; }
.article-table th { background: var(--green-pale); color: var(--text); font-weight: 700; padding: 12px 16px; text-align: left; border-bottom: 2px solid var(--green-mid); }
.article-table td { padding: 11px 16px; border-bottom: 1px solid var(--border); color: var(--text-muted); }
.article-table tr:last-child td { border-bottom: none; }

.article-footer {
  border-top: 1px solid var(--border); padding-top: 32px; margin-top: 48px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px;
}
.back-link { display: inline-flex; align-items: center; gap: 8px; font-size: 0.9375rem; font-weight: 600; color: var(--green-primary); transition: gap 0.2s; }
.back-link:hover { gap: 12px; }

.article-cta {
  background: linear-gradient(135deg, var(--green-primary) 0%, #1a9e45 100%);
  border-radius: var(--radius); padding: 48px 40px; text-align: center; margin: 0 auto;
  max-width: 760px; margin-bottom: 80px;
}
.article-cta h3 { color: #fff; font-size: 1.5rem; margin-bottom: 10px; }
.article-cta p { color: rgba(255,255,255,0.82); margin-bottom: 24px; }
.article-cta .app-store-btn { background: #fff; color: var(--text); display: inline-flex; }
.article-cta .app-store-btn:hover { background: var(--bg-alt); }

/* Blog card — clickable */
.blog-card-link { display: block; text-decoration: none; color: inherit; }
.blog-card-link .blog-card { cursor: pointer; }

/* ── INNER PAGES ── */
.page-hero {
  padding: 72px 0 56px;
  background: var(--bg-alt);
  border-bottom: 1px solid var(--border);
  text-align: center;
}
.page-hero h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); }
.page-hero p { margin-top: 12px; font-size: 1.0625rem; }

.prose {
  max-width: 760px; margin: 0 auto;
  padding: 64px 0;
}
.prose h2 { font-size: 1.375rem; margin-top: 40px; margin-bottom: 12px; color: var(--text); }
.prose h3 { font-size: 1.125rem; margin-top: 28px; margin-bottom: 8px; color: var(--text); }
.prose p { margin-bottom: 16px; }
.prose ul { margin: 12px 0 16px 20px; }
.prose ul li { list-style: disc; color: var(--text-muted); margin-bottom: 6px; font-size: 1.0625rem; }
.prose a { color: var(--green-primary); text-decoration: underline; }
.prose strong { color: var(--text); font-weight: 600; }

/* Support form */
.support-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; max-width: 900px; margin: 0 auto; padding: 64px 0; }
.support-info h3 { margin-bottom: 12px; }
.support-info p { margin-bottom: 24px; }
.contact-item { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--radius-sm); background: var(--green-pale); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-label { font-size: 0.8125rem; color: var(--text-light); }
.contact-val { font-size: 0.9375rem; font-weight: 600; color: var(--text); }

.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.875rem; font-weight: 600; margin-bottom: 6px; color: var(--text); }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 1rem; font-family: inherit; color: var(--text);
  background: var(--bg); outline: none; transition: border 0.2s;
}
.form-control:focus { border-color: var(--green-primary); box-shadow: 0 0 0 3px rgba(45,177,82,0.1); }
textarea.form-control { min-height: 120px; resize: vertical; }
.form-success { display: none; padding: 14px 20px; background: var(--green-pale); border: 1px solid var(--green-mid); border-radius: var(--radius-sm); color: var(--green-primary); font-weight: 600; margin-top: 12px; }

/* ── MOBILE NAV ── */
.mobile-nav {
  display: none;
  position: fixed; inset: 0; z-index: 200;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px); -webkit-backdrop-filter: blur(20px);
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a { font-size: 1.5rem; font-weight: 700; color: var(--text); }
.mobile-nav a:hover { color: var(--green-primary); }
.mobile-nav-close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; font-size: 1.75rem; cursor: pointer; color: var(--text);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }
  .nav { display: none; }
  .header-actions .app-store-btn { display: none; }
  .burger { display: flex; }

  .hero { padding: 56px 0 72px; }
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { order: -1; }
  .phone-mockup { width: 220px; height: 460px; }
  .float-badge { display: none; }
  .float-badge2 { display: none; }

  .features-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 360px; margin-left: auto; margin-right: auto; }
  .blog-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .support-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 48px 24px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-stats { gap: 24px; }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.625rem; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; }
  .phone-frame { border-radius: 36px; }
}
