/* ===================================
   FoodPeel — Dark Green Theme
   =================================== */

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

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

:root {
  --bg-primary: #0a0f0a;
  --bg-secondary: #0f1a0f;
  --bg-card: #111c11;
  --bg-card-hover: #152015;
  --accent-green: #22c55e;
  --accent-green-dark: #16a34a;
  --accent-green-light: #4ade80;
  --accent-amber: #f59e0b;
  --accent-red: #ef4444;
  --text-primary: #f0fdf0;
  --text-secondary: #86efac;
  --text-muted: #4b7a4b;
  --border: #1a2e1a;
  --border-accent: #22c55e33;
  --shadow-green: 0 0 40px rgba(34, 197, 94, 0.08);
  --shadow-card: 0 4px 24px rgba(0, 0, 0, 0.4);
  --radius: 12px;
  --radius-lg: 20px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

/* ===================================
   UTILITY
   =================================== */

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

.section {
  padding: 96px 0;
}

.section-label {
  display: inline-block;
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent-green);
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.2);
  border-radius: 100px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  line-height: 1.15;
  color: var(--text-primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 20px;
  color: #9ca3af;
  max-width: 560px;
  line-height: 1.7;
}

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

.text-center .section-sub {
  margin: 0 auto;
}

/* ===================================
   NAVIGATION
   =================================== */

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

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

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

.nav-logo-emoji {
  font-size: 26px;
  line-height: 1;
}

.nav-logo-text {
  font-size: 20px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

.nav-logo-text span {
  color: var(--accent-green);
}

.nav-tagline {
  font-size: 16px;
  color: var(--text-muted);
  font-weight: 500;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  background: var(--accent-green);
  color: #000;
  font-size: 17px;
  font-weight: 700;
  padding: 10px 22px;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.nav-cta:hover {
  background: var(--accent-green-light);
  transform: translateY(-1px);
}

/* ===================================
   HERO
   =================================== */

.hero {
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(34, 197, 94, 0.08);
  border: 1px solid rgba(34, 197, 94, 0.25);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 16px;
  font-weight: 600;
  color: var(--accent-green);
  margin-bottom: 28px;
}

.hero-badge-dot {
  width: 7px;
  height: 7px;
  background: var(--accent-green);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.85); }
}

.hero-headline {
  font-size: clamp(38px, 6.5vw, 72px);
  font-weight: 900;
  line-height: 1.07;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 22px;
  max-width: 800px;
}

.hero-headline .highlight {
  color: var(--accent-green);
}

.hero-sub {
  font-size: clamp(17px, 2vw, 20px);
  color: #9ca3af;
  max-width: 560px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-platforms {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 16px;
  color: var(--text-muted);
}

.platform-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 6px;
  padding: 4px 10px;
  font-size: 17px;
  color: #6b7280;
  font-weight: 500;
}

/* ===================================
   FORMS
   =================================== */

.email-form {
  display: flex;
  gap: 12px;
  max-width: 480px;
  flex-wrap: wrap;
}

.email-form input[type="email"] {
  flex: 1;
  min-width: 240px;
  background: rgba(255, 255, 255, 0.05);
  border: 1.5px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius);
  padding: 15px 20px;
  font-size: 17px;
  color: var(--text-primary);
  font-family: 'Inter', sans-serif;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}

.email-form input[type="email"]::placeholder {
  color: #4b5563;
}

.email-form input[type="email"]:focus {
  border-color: var(--accent-green);
  background: rgba(34, 197, 94, 0.04);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent-green);
  color: #000;
  border: none;
  border-radius: var(--radius);
  padding: 15px 28px;
  font-size: 17px;
  font-weight: 700;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  background: var(--accent-green-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(34, 197, 94, 0.3);
}

.btn-primary:active {
  transform: translateY(0);
}

.form-note {
  font-size: 17px;
  color: #4b5563;
  margin-top: 10px;
}

.form-note span {
  color: var(--accent-green);
}

/* ===================================
   SOCIAL PROOF TICKER
   =================================== */

.social-proof-banner {
  background: rgba(34, 197, 94, 0.06);
  border: 1px solid rgba(34, 197, 94, 0.15);
  border-radius: var(--radius);
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  font-size: 17px;
  font-weight: 500;
  color: var(--text-secondary);
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatar {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 2px solid var(--bg-primary);
  margin-left: -8px;
  font-size: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-card);
}

.proof-avatar:first-child {
  margin-left: 0;
}

.proof-count {
  font-weight: 700;
  color: var(--accent-green);
}

/* ===================================
   PROBLEM SECTION
   =================================== */

.problem-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
}

.problem-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color 0.25s, background 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.problem-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-amber), transparent);
  opacity: 0;
  transition: opacity 0.3s;
}

.problem-card:hover {
  border-color: rgba(245, 158, 11, 0.3);
  background: var(--bg-card-hover);
  transform: translateY(-3px);
}

.problem-card:hover::before {
  opacity: 1;
}

.problem-emoji {
  font-size: 40px;
  line-height: 1;
  margin-bottom: 20px;
  display: block;
}

.problem-title {
  font-size: 19px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.3;
}

.problem-desc {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.65;
}

/* ===================================
   HOW IT WORKS
   =================================== */

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 56px;
  position: relative;
}

.step-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: border-color 0.25s, transform 0.25s;
}

.step-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 1.5px solid rgba(34, 197, 94, 0.25);
  font-size: 17px;
  font-weight: 800;
  color: var(--accent-green);
  margin-bottom: 20px;
}

.step-icon {
  font-size: 42px;
  line-height: 1;
  margin-bottom: 16px;
  display: block;
}

.step-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.step-desc {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.65;
}

/* ===================================
   RATING SYSTEM
   =================================== */

.ratings-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.ratings-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 48px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px 24px;
  transition: transform 0.2s, border-color 0.2s;
}

.rating-row:hover {
  transform: translateX(4px);
}

.rating-row.clean { border-left: 4px solid #22c55e; }
.rating-row.mostly { border-left: 4px solid #84cc16; }
.rating-row.iffy { border-left: 4px solid #f59e0b; }
.rating-row.dirty { border-left: 4px solid #ef4444; }
.rating-row.toxic { border-left: 4px solid #7f1d1d; }

.rating-row.clean:hover { border-color: #22c55e; }
.rating-row.mostly:hover { border-color: #84cc16; }
.rating-row.iffy:hover { border-color: #f59e0b; }
.rating-row.dirty:hover { border-color: #ef4444; }
.rating-row.toxic:hover { border-color: #7f1d1d; }

.rating-emoji {
  font-size: 30px;
  line-height: 1;
  flex-shrink: 0;
}

.rating-info {
  flex: 1;
}

.rating-label {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 3px;
}

.rating-desc {
  font-size: 17px;
  color: #6b7280;
  line-height: 1.5;
}

.rating-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 100px;
  flex-shrink: 0;
}

.badge-clean { background: rgba(34, 197, 94, 0.12); color: #22c55e; }
.badge-mostly { background: rgba(132, 204, 22, 0.12); color: #84cc16; }
.badge-iffy { background: rgba(245, 158, 11, 0.12); color: #f59e0b; }
.badge-dirty { background: rgba(239, 68, 68, 0.12); color: #ef4444; }
.badge-toxic { background: rgba(127, 29, 29, 0.25); color: #fca5a5; }

/* ===================================
   BOTTOM CTA SECTION
   =================================== */

.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  bottom: -100px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.cta-box {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  padding: 64px 48px;
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}

.cta-box .email-form {
  max-width: 100%;
  justify-content: center;
  margin: 32px auto 0;
}

.cta-headline {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 14px;
}

.cta-sub {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.75;
}

/* ===================================
   FOOTER
   =================================== */

footer {
  border-top: 1px solid var(--border);
  padding: 32px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copy {
  font-size: 17px;
  color: #4b5563;
}

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

.footer-links a {
  font-size: 17px;
  color: #4b5563;
  text-decoration: none;
  transition: color 0.2s;
}

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

.footer-heart {
  color: var(--accent-green);
}

/* ===================================
   FORM SUCCESS STATE
   =================================== */

.form-success {
  display: none;
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  padding: 16px 24px;
  font-size: 17px;
  font-weight: 600;
  color: var(--accent-green);
  text-align: center;
  margin-top: 12px;
}

/* ===================================
   DIVIDER
   =================================== */

.divider {
  width: 40px;
  height: 3px;
  background: var(--accent-green);
  border-radius: 2px;
  margin: 20px 0 32px;
}

.divider.center {
  margin: 20px auto 32px;
}

/* ===================================
   RESPONSIVE
   =================================== */

@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .hero {
    padding: 130px 0 80px;
  }

  .nav-tagline {
    display: none;
  }

  .email-form {
    flex-direction: column;
  }

  .email-form input[type="email"] {
    min-width: unset;
    width: 100%;
  }

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

  .cta-box {
    padding: 40px 24px;
  }

  .cta-box .email-form {
    flex-direction: column;
  }

  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .rating-row {
    flex-wrap: wrap;
  }

  .rating-badge {
    margin-left: 50px;
  }
}

@media (max-width: 480px) {
  .hero-headline {
    font-size: 36px;
  }

  .hero-sub {
    font-size: 16px;
  }

  .problem-card,
  .step-card {
    padding: 28px 22px;
  }
}

/* ===================================
   NAV LINKS (for Pricing link)
   =================================== */

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

.nav-link {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
  letter-spacing: 0.01em;
}

.nav-link:hover {
  color: var(--accent-green);
}

/* ===================================
   APP MOCKUP SECTION
   =================================== */

.mockup-section {
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.mockup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 56px;
  align-items: start;
  justify-items: center;
}

/* Phone chassis */
.phone-mockup-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  transition: transform 0.3s;
}

.phone-mockup-wrap:hover {
  transform: translateY(-6px);
}

.phone-mockup-wrap.phone-featured .phone-mockup {
  border-color: var(--accent-green);
  box-shadow: 0 0 48px rgba(34, 197, 94, 0.25), 0 8px 32px rgba(0,0,0,0.5);
  transform: scale(1.04);
}

.phone-mockup {
  width: 220px;
  border-radius: 36px;
  background: #0d1a0d;
  border: 2px solid #2a3a2a;
  box-shadow: 0 8px 32px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.05);
  padding: 16px 12px 20px;
  position: relative;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.phone-notch {
  width: 60px;
  height: 10px;
  background: #0a0f0a;
  border-radius: 0 0 12px 12px;
  margin: 0 auto 12px;
}

.phone-screen {
  background: #0f1a0f;
  border-radius: 20px;
  min-height: 360px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  padding: 0 0 12px;
}

/* App header bar */
.app-header {
  background: rgba(34,197,94,0.08);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  padding: 10px 14px;
  margin-bottom: 12px;
}

.app-header-logo {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  letter-spacing: -0.01em;
}

/* Scan frame (Phone 1) */
.scan-frame {
  margin: 0 14px 10px;
  border: 1.5px dashed rgba(34,197,94,0.4);
  border-radius: 12px;
  height: 130px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: rgba(34,197,94,0.03);
}

.scan-corners .corner {
  position: absolute;
  width: 14px;
  height: 14px;
  border-color: var(--accent-green);
  border-style: solid;
}
.corner.tl { top: -1px; left: -1px; border-width: 2px 0 0 2px; border-radius: 4px 0 0 0; }
.corner.tr { top: -1px; right: -1px; border-width: 2px 2px 0 0; border-radius: 0 4px 0 0; }
.corner.bl { bottom: -1px; left: -1px; border-width: 0 0 2px 2px; border-radius: 0 0 0 4px; }
.corner.br { bottom: -1px; right: -1px; border-width: 0 2px 2px 0; border-radius: 0 0 4px 0; }

.scan-line {
  position: absolute;
  left: 0; right: 0;
  height: 1.5px;
  background: linear-gradient(90deg, transparent, var(--accent-green), transparent);
  animation: scanline 2s ease-in-out infinite;
  top: 50%;
}

@keyframes scanline {
  0%, 100% { transform: translateY(-40px); opacity: 0.3; }
  50% { transform: translateY(40px); opacity: 1; }
}

.barcode-art {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.barcode-bars {
  width: 80px;
  height: 40px;
  background: repeating-linear-gradient(
    90deg,
    #22c55e 0px, #22c55e 2px,
    transparent 2px, transparent 4px,
    #22c55e 4px, #22c55e 5px,
    transparent 5px, transparent 8px,
    #22c55e 8px, #22c55e 11px,
    transparent 11px, transparent 13px,
    #22c55e 13px, #22c55e 14px,
    transparent 14px, transparent 17px,
    #22c55e 17px, #22c55e 20px
  );
  opacity: 0.7;
  border-radius: 1px;
}

.barcode-num {
  font-size: 7px;
  color: #4b7a4b;
  letter-spacing: 0.05em;
  font-family: monospace;
}

.scan-hint {
  text-align: center;
  font-size: 10px;
  color: var(--accent-green);
  padding: 4px 14px;
  font-weight: 600;
}

.scan-products {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding: 6px 14px;
  justify-content: center;
}

.scan-product-chip {
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 100px;
  padding: 3px 8px;
  font-size: 9px;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Rating result (Phone 2) */
.result-product {
  padding: 4px 14px 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  margin-bottom: 8px;
}

.result-product-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
}

.result-product-brand {
  font-size: 9px;
  color: #4b5563;
}

.result-rating {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 14px 10px;
  padding: 10px 12px;
  border-radius: 10px;
}

.result-rating.dirty-result {
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.25);
}

.result-emoji {
  font-size: 22px;
  line-height: 1;
}

.result-label {
  font-size: 13px;
  font-weight: 800;
  color: #ef4444;
  letter-spacing: 0.05em;
}

.result-sub {
  font-size: 9px;
  color: #9ca3af;
}

.result-ingredients {
  padding: 0 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ingredient-row {
  display: flex;
  align-items: center;
  gap: 7px;
}

.ing-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  flex-shrink: 0;
}

.bad-dot { background: #ef4444; }
.good-dot { background: #22c55e; }

.ing-name {
  font-size: 9px;
  color: #9ca3af;
  line-height: 1.4;
}

/* Alternative (Phone 3) */
.alt-header {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 6px 14px 10px;
  border-bottom: 1px solid rgba(34,197,94,0.1);
  margin-bottom: 10px;
}

.alt-icon { font-size: 16px; line-height: 1; }

.alt-title {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent-green);
}

.alt-product {
  margin: 0 14px 10px;
  background: rgba(34,197,94,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 10px;
  padding: 10px 12px;
}

.alt-product-name {
  font-size: 11px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.alt-product-brand {
  font-size: 9px;
  color: #4b5563;
  margin-bottom: 6px;
}

.alt-rating {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
}

.alt-rating-label {
  font-weight: 700;
  color: var(--accent-green);
  font-size: 10px;
}

.alt-why {
  padding: 0 14px;
  margin-bottom: 10px;
}

.alt-why-title {
  font-size: 9px;
  font-weight: 700;
  color: #6b7280;
  margin-bottom: 5px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.alt-why-point {
  font-size: 9px;
  color: #86efac;
  line-height: 1.8;
}

.alt-price {
  margin: 0 14px;
  font-size: 9px;
  color: #4b5563;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  padding: 5px 8px;
  text-align: center;
}

/* Phone labels */
.phone-label {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-primary);
  text-align: center;
}

.phone-sublabel {
  font-size: 13px;
  color: #4b5563;
  text-align: center;
  margin-top: -8px;
}

/* ===================================
   PRICING PAGE
   =================================== */

.pricing-hero {
  padding: 140px 0 60px;
  text-align: center;
}

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

.pricing-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  position: relative;
  transition: transform 0.25s, border-color 0.25s;
}

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

.pricing-card.featured {
  border-color: var(--accent-green);
  box-shadow: 0 0 40px rgba(34,197,94,0.15);
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--accent-green);
  color: #000;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 100px;
  white-space: nowrap;
}

.pricing-tier {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent-green);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.pricing-price {
  font-size: 48px;
  font-weight: 900;
  color: var(--text-primary);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 4px;
}

.pricing-price span {
  font-size: 24px;
  font-weight: 600;
  color: #6b7280;
  vertical-align: super;
  font-size: 20px;
}

.pricing-price-note {
  font-size: 13px;
  color: #4b5563;
  margin-bottom: 6px;
}

.pricing-annual {
  font-size: 13px;
  color: var(--accent-green);
  font-weight: 600;
  margin-bottom: 24px;
  min-height: 20px;
}

.pricing-divider {
  width: 100%;
  height: 1px;
  background: var(--border);
  margin: 20px 0;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing-features li {
  font-size: 15px;
  color: #9ca3af;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.4;
}

.pricing-features li .check {
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-features li .cross {
  color: #374151;
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.btn-pricing-primary {
  display: block;
  width: 100%;
  background: var(--accent-green);
  color: #000;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  font-family: 'Inter', sans-serif;
  border: none;
  cursor: pointer;
}

.btn-pricing-primary:hover {
  background: var(--accent-green-light);
  transform: translateY(-1px);
}

.btn-pricing-secondary {
  display: block;
  width: 100%;
  background: transparent;
  color: var(--accent-green);
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  padding: 13px 20px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid rgba(34,197,94,0.35);
  transition: border-color 0.2s, background 0.2s;
  font-family: 'Inter', sans-serif;
  cursor: pointer;
}

.btn-pricing-secondary:hover {
  border-color: var(--accent-green);
  background: rgba(34,197,94,0.06);
}

.pricing-faq {
  margin-top: 80px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.faq-item {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  margin-bottom: 14px;
}

.faq-q {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.faq-a {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.65;
}

/* Responsive for mockups + pricing */
@media (max-width: 900px) {
  .mockup-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .phone-mockup-wrap.phone-featured .phone-mockup {
    transform: none;
  }

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

@media (max-width: 900px) {
  .nav-links {
    gap: 10px;
  }
  .nav-link {
    font-size: 13px;
  }
  .nav-cta {
    padding: 7px 14px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }
  .nav-inner {
    justify-content: space-between;
  }
  /* Show a simplified mobile nav row below the logo */
  nav {
    padding-bottom: 0;
  }
}

/* Mobile nav override: show key links on small screens */
@media (max-width: 768px) {
  .nav-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: flex-end;
  }
  /* Hide lower-priority links on small screens */
  .nav-link:nth-child(1),
  .nav-link:nth-child(4),
  .nav-link:nth-child(5) {
    display: none;
  }
  .nav-link {
    font-size: 13px;
  }
  .nav-cta {
    padding: 7px 12px;
    font-size: 13px;
  }
}

/* ===================================
   TRUST BADGES (Hero)
   =================================== */

.trust-badges {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(34,197,94,0.08);
  border: 1px solid rgba(34,197,94,0.22);
  border-radius: 100px;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 600;
  color: var(--accent-green-light);
  white-space: nowrap;
}

.trust-badge .tb-icon {
  font-size: 14px;
}

/* ===================================
   AS SEEN IN
   =================================== */

.press-bar {
  padding: 36px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.press-bar-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.press-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.press-logo-badge {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 700;
  color: #4b5563;
  letter-spacing: 0.06em;
  opacity: 0.7;
  transition: opacity 0.2s;
}

.press-logo-badge:hover {
  opacity: 1;
  border-color: rgba(34,197,94,0.3);
  color: #6b7280;
}

/* ===================================
   INGREDIENT DEMO (inline)
   =================================== */

.ingredient-demo {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 28px;
  max-width: 480px;
}

.ingredient-demo-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 14px;
}

.ing-demo-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}

.ing-demo-row:last-child {
  border-bottom: none;
}

.ing-demo-emoji {
  font-size: 16px;
  flex-shrink: 0;
}

.ing-demo-name {
  flex: 1;
  font-weight: 500;
  color: var(--text-primary);
}

.ing-demo-status {
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}

.ing-demo-status.clean   { background: rgba(34,197,94,0.12); color: #4ade80; }
.ing-demo-status.caution { background: rgba(245,158,11,0.12); color: #fcd34d; }
.ing-demo-status.avoid   { background: rgba(239,68,68,0.12);  color: #f87171; }

/* ===================================
   TESTIMONIALS
   =================================== */

.testimonials-section {
  background: var(--bg-secondary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  transition: border-color 0.2s, transform 0.2s;
}

.testimonial-card:hover {
  border-color: rgba(34,197,94,0.3);
  transform: translateY(-2px);
}

.testimonial-stars {
  font-size: 15px;
  margin-bottom: 14px;
  letter-spacing: 2px;
}

.testimonial-quote {
  font-size: 15px;
  line-height: 1.7;
  color: #d1d5db;
  margin-bottom: 20px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  background: rgba(34,197,94,0.1);
  border: 1px solid rgba(34,197,94,0.2);
}

.testimonial-name {
  font-size: 14px;
  font-weight: 700;
  color: var(--text-primary);
}

.testimonial-handle {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================================
   COMPARISON TABLE
   =================================== */

.compare-table-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: 16px;
  border: 1px solid var(--border-accent);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
}

.compare-table th {
  padding: 20px 24px;
  text-align: center;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  border-bottom: 1px solid var(--border);
}

.compare-table th.col-feature {
  text-align: left;
  color: var(--text-muted);
  width: 30%;
}

.compare-table th.col-foodpeel {
  color: var(--accent-green);
  background: rgba(34,197,94,0.06);
}

.compare-table th.col-other {
  color: #6b7280;
}

.compare-table td {
  padding: 16px 24px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}

.compare-table tr:last-child td {
  border-bottom: none;
}

.compare-table td.feature-name {
  text-align: left;
  font-weight: 600;
  color: var(--text-primary);
  font-size: 15px;
}

.compare-table td.col-foodpeel {
  background: rgba(34,197,94,0.04);
  font-weight: 700;
}

.compare-table tr:hover td {
  background: rgba(255,255,255,0.02);
}

.compare-table tr:hover td.col-foodpeel {
  background: rgba(34,197,94,0.06);
}

.check    { color: #22c55e; font-size: 20px; }
.cross    { color: #6b7280; font-size: 18px; }
.partial  { color: #f59e0b; font-size: 18px; }

/* ===================================
   NEWSLETTER PAGE
   =================================== */

.newsletter-hero {
  padding: 120px 0 64px;
  text-align: center;
}

.newsletter-preview {
  background: var(--bg-card);
  border: 1px solid var(--border-accent);
  border-radius: 20px;
  overflow: hidden;
  max-width: 600px;
  margin: 48px auto 0;
}

.nl-email-header {
  background: #0f1a0f;
  padding: 20px 28px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 16px;
}

.nl-email-from {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-primary);
}

.nl-email-sub {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

.nl-body {
  padding: 32px 28px;
}

.nl-body h2 {
  font-size: 22px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  line-height: 1.3;
}

.nl-section {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.nl-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.nl-section-label {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 8px;
}

.nl-section-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.nl-section-body {
  font-size: 14px;
  color: #9ca3af;
  line-height: 1.65;
}

/* ===================================
   404 PAGE
   =================================== */

.error-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
}

.error-code {
  font-size: clamp(80px, 16vw, 160px);
  font-weight: 900;
  color: rgba(34,197,94,0.15);
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: -4px;
}

.error-emoji {
  font-size: 64px;
  display: block;
  margin: 0 auto 16px;
}

.error-title {
  font-size: clamp(22px, 4vw, 36px);
  font-weight: 800;
  color: var(--text-primary);
  margin: 12px 0;
}

.error-sub {
  font-size: 18px;
  color: #9ca3af;
  max-width: 480px;
  margin: 0 auto 36px;
  line-height: 1.6;
}

.error-links {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.error-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.error-link:hover {
  border-color: rgba(34,197,94,0.4);
  color: var(--accent-green);
}

/* ===================================
   BLOG CATEGORY PAGES
   =================================== */

.category-hero {
  padding: 120px 0 64px;
  text-align: center;
}

.category-filters {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
  margin: 24px 0 40px;
}

.cat-filter {
  display: inline-block;
  padding: 8px 18px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: 1px solid var(--border);
  color: #6b7280;
  background: var(--bg-card);
  transition: all 0.2s;
}

.cat-filter:hover, .cat-filter.active {
  border-color: var(--accent-green);
  color: var(--accent-green);
  background: rgba(34,197,94,0.08);
}

.blog-articles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 32px;
}

.blog-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 28px;
  text-decoration: none;
  display: block;
  transition: border-color 0.2s, transform 0.2s;
}

.blog-card:hover {
  border-color: rgba(34,197,94,0.35);
  transform: translateY(-2px);
}

.blog-card-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent-green);
  margin-bottom: 10px;
}

.blog-card-title {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
  line-height: 1.35;
}

.blog-card-excerpt {
  font-size: 14px;
  color: #6b7280;
  line-height: 1.6;
  margin-bottom: 16px;
}

.blog-card-meta {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===================================
   RESPONSIVE ADDITIONS
   =================================== */

@media (max-width: 768px) {
  .trust-badges {
    gap: 8px;
  }
  .trust-badge {
    font-size: 12px;
    padding: 5px 11px;
  }
  .press-logos {
    gap: 10px;
  }
  .press-logo-badge {
    padding: 8px 14px;
    font-size: 12px;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  .compare-table th, .compare-table td {
    padding: 12px 14px;
    font-size: 13px;
  }
  .error-links {
    flex-direction: column;
    align-items: center;
  }
}
