/* ============================================
   FERMENTIO — Static Website Styles
   ============================================ */

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

:root {
  --green-dark: #2d5a27;
  --green-mid: #4a8c3f;
  --green-light: #7bc96f;
  --yellow-warm: #d4c957;
  --yellow-light: #f0ebb4;
  --amber: #e8a830;
  --red-accent: #d94f4f;
  --cream: #fefdf5;
  --cream-alt: #f7f5e8;
  --text: #2c2c2c;
  --text-muted: #5a5a5a;
  --text-light: #888;
  --white: #ffffff;
  --radius: 16px;
  --radius-sm: 10px;
  --shadow: 0 4px 24px rgba(45,90,39,.12);
  --shadow-lg: 0 12px 48px rgba(45,90,39,.18);
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: var(--text);
  background: var(--cream);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--green-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--green-dark); }

/* --- Utility --- */
.container { max-width: 1120px; margin: 0 auto; padding: 0 24px; }
.section { padding: 100px 0; }
.section-alt { background: var(--cream-alt); }
.text-center { text-align: center; }

/* --- Typography --- */
h1, h2, h3 { font-weight: 700; line-height: 1.2; letter-spacing: -.02em; }
h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); margin-bottom: 16px; }
h3 { font-size: 1.25rem; margin-bottom: 8px; }
.subtitle {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto;
}

.section-label {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--green-mid);
  background: rgba(74,140,63,.1);
  padding: 6px 14px;
  border-radius: 100px;
  margin-bottom: 16px;
}

/* --- Navbar --- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 16px 0;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}
.navbar.scrolled {
  background: rgba(254,253,245,.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 1px 12px rgba(0,0,0,.06);
  padding: 10px 0;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-brand {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--green-dark);
  letter-spacing: -.03em;
}
.nav-brand span { color: var(--green-mid); }
.nav-links { display: flex; gap: 28px; align-items: center; }
.nav-links a {
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
}
.nav-links a:hover { color: var(--green-dark); }
.nav-cta {
  background: var(--green-mid) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 100px;
  font-weight: 600 !important;
  font-size: .85rem !important;
  transition: background var(--transition), transform var(--transition) !important;
}
.nav-cta:hover {
  background: var(--green-dark) !important;
  transform: translateY(-1px);
}
.lang-switch {
  font-size: .85rem;
  padding: 5px 12px;
  border: 1.5px solid var(--green-mid);
  border-radius: 100px;
  color: var(--green-mid) !important;
  font-weight: 600 !important;
}
.lang-switch:hover {
  background: var(--green-mid);
  color: var(--white) !important;
}

/* Mobile nav toggle */
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 4px; }
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  margin: 5px 0;
  border-radius: 2px;
  transition: var(--transition);
}

/* --- Hero --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f5e0 0%, #f5f5c8 40%, #fefdf5 80%);
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(123,201,111,.2), transparent 70%);
  border-radius: 50%;
}
.hero .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding-top: 100px;
  padding-bottom: 60px;
}
.hero-text h1 { margin-bottom: 20px; }
.hero-text h1 .accent { color: var(--green-mid); }
.hero-text p {
  font-size: 1.15rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 500px;
  line-height: 1.7;
}
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green-mid);
  color: var(--white);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 16px rgba(74,140,63,.3);
}
.btn-primary:hover {
  background: var(--green-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(74,140,63,.35);
}
.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--green-mid);
  padding: 14px 28px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 1rem;
  border: 2px solid var(--green-mid);
  transition: background var(--transition), color var(--transition), transform var(--transition);
}
.btn-secondary:hover {
  background: var(--green-mid);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-large {
  padding: 18px 40px;
  font-size: 1.1rem;
}
.hero-image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-image img {
  width: 75%;
  max-width: 390px;
  filter: drop-shadow(0 20px 50px rgba(45,90,39,.2));
  animation: heroFloat 6s ease-in-out infinite;
}

@keyframes heroFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-16px); }
}

/* Sections with bubbles */
.section-bubbles {
  position: relative;
  overflow: hidden;
}

/* Floating bubbles decoration */
.bubble {
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(123,201,111,.35), rgba(123,201,111,.08));
  animation: bubbleUp linear infinite;
  pointer-events: none;
}
.bubble:nth-child(1) { width: 20px; height: 20px; left: 10%; animation-duration: 8s; animation-delay: 0s; }
.bubble:nth-child(2) { width: 14px; height: 14px; left: 25%; animation-duration: 10s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 24px; height: 24px; left: 55%; animation-duration: 7s; animation-delay: 1s; }
.bubble:nth-child(4) { width: 10px; height: 10px; left: 75%; animation-duration: 9s; animation-delay: 3s; }
.bubble:nth-child(5) { width: 16px; height: 16px; left: 88%; animation-duration: 11s; animation-delay: 0.5s; }
.bubble:nth-child(6) { width: 12px; height: 12px; left: 40%; animation-duration: 8.5s; animation-delay: 4s; }
.bubble:nth-child(7)  { width: 18px; height: 18px; left: 5%;  animation-duration: 9.5s;  animation-delay: 1.5s; }
.bubble:nth-child(8)  { width: 8px;  height: 8px;  left: 65%; animation-duration: 7.5s;  animation-delay: 3.5s; }
.bubble:nth-child(9)  { width: 22px; height: 22px; left: 80%; animation-duration: 10.5s; animation-delay: 0.8s; }
.bubble:nth-child(10) { width: 11px; height: 11px; left: 35%; animation-duration: 8s;   animation-delay: 5s; }
.bubble:nth-child(11) { width: 15px; height: 15px; left: 92%; animation-duration: 9s;   animation-delay: 2.5s; }
.bubble:nth-child(12) { width: 9px;  height: 9px;  left: 18%; animation-duration: 12s;  animation-delay: 1s; }
.bubble:nth-child(13) { width: 13px; height: 13px; left: 48%; animation-duration: 8.2s;  animation-delay: 6s; }
.bubble:nth-child(14) { width: 7px;  height: 7px;  left: 72%; animation-duration: 10s;  animation-delay: 0.3s; }
.bubble:nth-child(15) { width: 19px; height: 19px; left: 15%; animation-duration: 11.5s; animation-delay: 3s; }
.bubble:nth-child(16) { width: 10px; height: 10px; left: 58%; animation-duration: 7s;   animation-delay: 4.5s; }
.bubble:nth-child(17) { width: 6px;  height: 6px;  left: 83%; animation-duration: 9.8s;  animation-delay: 2s; }
.bubble:nth-child(18) { width: 17px; height: 17px; left: 30%; animation-duration: 8.8s;  animation-delay: 5.5s; }
.bubble:nth-child(19) { width: 12px; height: 12px; left: 95%; animation-duration: 10.2s; animation-delay: 1.2s; }
.bubble:nth-child(20) { width: 21px; height: 21px; left: 42%; animation-duration: 7.8s;  animation-delay: 3.8s; }
.bubble:nth-child(21) { width: 8px;  height: 8px;  left: 2%;  animation-duration: 11s;  animation-delay: 0.6s; }
.bubble:nth-child(22) { width: 14px; height: 14px; left: 68%; animation-duration: 9.2s;  animation-delay: 4.2s; }
.bubble:nth-child(23) { width: 10px; height: 10px; left: 50%; animation-duration: 8.5s;  animation-delay: 6.5s; }
.bubble:nth-child(24) { width: 16px; height: 16px; left: 22%; animation-duration: 10.8s; animation-delay: 2.8s; }

@keyframes bubbleUp {
  0%   { bottom: -30px; opacity: 0; transform: translateX(0) scale(.6); }
  10%  { opacity: .6; }
  90%  { opacity: .3; }
  100% { bottom: 110%; opacity: 0; transform: translateX(40px) scale(1); }
}

/* Badge under hero */
.hero-badges {
  display: flex;
  gap: 24px;
  margin-top: 28px;
  align-items: center;
}
.badge {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: .85rem;
  color: var(--text-muted);
}
.badge svg { width: 18px; height: 18px; color: var(--green-mid); }

/* --- How It Works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}
.step-card {
  text-align: center;
  padding: 36px 24px;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.step-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step-number {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  font-weight: 800;
  font-size: 1.2rem;
  border-radius: 50%;
  margin: 0 auto 16px;
}
.step-card h3 { color: var(--green-dark); }
.step-card p { font-size: .95rem; color: var(--text-muted); }

/* Connector line between steps on desktop */
.steps-grid .step-card:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 60px;
  right: -18px;
  width: 36px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), transparent);
}

/* --- Features --- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
  position: relative;
  z-index: 1;
}
.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(74,140,63,.08);
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.feature-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74,140,63,.12), rgba(123,201,111,.12));
  border-radius: 14px;
  margin-bottom: 20px;
  font-size: 1.6rem;
}
.feature-card h3 { color: var(--green-dark); font-size: 1.2rem; }
.feature-card p { color: var(--text-muted); font-size: .95rem; margin-top: 6px; }
.feature-card ul {
  list-style: none;
  margin-top: 12px;
}
.feature-card ul li {
  padding: 4px 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}
.feature-card ul li::before {
  content: '~';
  font-family: monospace;
  color: var(--green-mid);
  font-weight: 700;
  flex-shrink: 0;
  transform: translateY(1px);
}

/* Highlight card spans full width */
.feature-card.wide { grid-column: 1 / -1; }

/* --- Recipes marquee --- */
.recipes-marquee {
  overflow: hidden;
  padding: 20px 0;
  margin-top: 48px;
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.marquee-track {
  display: flex;
  gap: 16px;
  animation: marquee 40s linear infinite;
  width: max-content;
}
.marquee-track.marquee-reverse {
  animation: marqueeReverse 35s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.recipe-tag {
  white-space: nowrap;
  padding: 10px 20px;
  background: var(--white);
  border-radius: 100px;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text-muted);
  border: 1px solid rgba(74,140,63,.12);
  transition: border-color var(--transition), color var(--transition);
}
.recipe-tag:hover {
  border-color: var(--green-mid);
  color: var(--green-dark);
}

@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes marqueeReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 800px;
  margin: 48px auto 0;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  box-shadow: var(--shadow);
  border: 2px solid transparent;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.pricing-card.featured {
  border-color: var(--green-mid);
  background: linear-gradient(180deg, #f0fae8, var(--white));
}
.pricing-card.featured::before {
  content: attr(data-badge);
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--green-mid), var(--green-light));
  color: var(--white);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  padding: 5px 18px;
  border-radius: 100px;
}
.pricing-card h3 {
  font-size: 1.3rem;
  color: var(--green-dark);
}
.price {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--text);
  margin: 12px 0;
  letter-spacing: -.03em;
}
.price small {
  font-size: .85rem;
  font-weight: 400;
  color: var(--text-muted);
}
.pricing-card ul {
  list-style: none;
  margin: 20px 0 28px;
}
.pricing-card ul li {
  padding: 6px 0;
  font-size: .9rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pricing-card ul li::before {
  content: '';
  width: 18px;
  height: 18px;
  border-radius: 50%;
  flex-shrink: 0;
}
.pricing-card ul li.included::before {
  background: var(--green-mid);
  box-shadow: inset 0 0 0 3px var(--white), 0 0 0 1.5px var(--green-mid);
}
.pricing-card ul li.locked::before {
  background: transparent;
  box-shadow: inset 0 0 0 2px #ccc;
}
.pricing-card .btn-primary { width: 100%; justify-content: center; margin-top: auto; }

/* =============================================
   Floating veggies (decorative ingredient images)
   =============================================
   Images float around sections at low opacity with
   subtle animations. They blend into the background
   as organic, living decorations. */

.deco-veggie {
  position: absolute;
  pointer-events: none;
  z-index: 0;
  transition: opacity .5s ease;
}

/* --- Gentle floating animation keyframes --- */
@keyframes floatSlow {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-12px) rotate(2deg); }
  75% { transform: translateY(8px) rotate(-2deg); }
}
@keyframes floatMedium {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  33% { transform: translateY(-18px) rotate(-3deg); }
  66% { transform: translateY(10px) rotate(3deg); }
}
@keyframes floatDrift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  25% { transform: translate(8px, -14px) rotate(4deg); }
  50% { transform: translate(-4px, -6px) rotate(-2deg); }
  75% { transform: translate(6px, 10px) rotate(3deg); }
}

/* --- Hero decorative veggies --- */
.deco-hero-garlic {
  width: auto;
  top: 18%;
  left: -20px;
  opacity: .25;
  animation: floatSlow 9s ease-in-out infinite;
  transform: rotate(-15deg);
}
.deco-hero-pepper {
  width: auto;
  bottom: 12%;
  left: 8%;
  opacity: .22;
  animation: floatMedium 11s ease-in-out infinite;
  transform: rotate(20deg);
}
.deco-hero-ginger {
  width: auto;
  top: 25%;
  right: 2%;
  opacity: .18;
  animation: floatDrift 13s ease-in-out infinite;
  transform: rotate(10deg);
}

/* --- Features section decorative veggies --- */
.deco-features-carrots {
  width: auto;
  top: -30px;
  right: -50px;
  opacity: .22;
  animation: floatSlow 10s ease-in-out infinite;
  transform: rotate(25deg);
}
.deco-features-napa {
  width: auto;
  bottom: -20px;
  left: -45px;
  opacity: .18;
  animation: floatMedium 12s ease-in-out infinite;
  transform: rotate(-10deg);
}

/* --- Recipes section decorative veggies --- */
.deco-recipes-habanero {
  width: auto;
  top: 20px;
  right: -30px;
  opacity: .25;
  animation: floatDrift 10s ease-in-out infinite;
  transform: rotate(15deg);
}
.deco-recipes-onions {
  width: auto;
  bottom: 30px;
  left: -35px;
  opacity: .20;
  animation: floatSlow 11s ease-in-out infinite;
  transform: rotate(-20deg);
}

/* --- CTA section decorative veggies — more visible, encircle the CTA --- */
.section-cta {
  position: relative;
  overflow: hidden;
  background: linear-gradient(160deg, #e8f5e0 0%, #fefdf5 50%, #f5f5c8 100%);
}
.section-cta .container {
  position: relative;
  z-index: 1;
}

.deco-cta-garlic {
  width: auto;
  top: -10px;
  left: -40px;
  opacity: .30;
  animation: floatSlow 8s ease-in-out infinite;
  transform: rotate(-20deg);
}
.deco-cta-carrots {
  width: auto;
  bottom: -10px;
  right: -40px;
  opacity: .28;
  animation: floatMedium 10s ease-in-out infinite;
  transform: rotate(30deg);
}
.deco-cta-habanero {
  width: auto;
  top: 30%;
  right: -20px;
  opacity: .25;
  animation: floatDrift 9s ease-in-out infinite;
  transform: rotate(10deg);
}
.deco-cta-ginger {
  width: auto;
  bottom: 20%;
  left: -30px;
  opacity: .22;
  animation: floatSlow 11s ease-in-out infinite;
  transform: rotate(15deg);
}

/* --- Privacy banner --- */
.privacy-banner {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(74,140,63,.1);
}
.privacy-banner-content {
  display: flex;
  align-items: center;
  gap: 28px;
}
.privacy-icon {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(74,140,63,.08), rgba(123,201,111,.08));
  border-radius: 50%;
}
.privacy-banner h3 {
  color: var(--green-dark);
  font-size: 1.3rem;
  margin-bottom: 6px;
}
.privacy-banner p {
  color: var(--text-muted);
  font-size: .95rem;
  line-height: 1.7;
}

/* --- Privacy / TOS / Legal pages --- */
.legal-page {
  padding-top: 120px;
  padding-bottom: 80px;
}
.legal-page h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 8px;
}
.legal-page .updated {
  color: var(--text-muted);
  margin-bottom: 36px;
}
.legal-content {
  max-width: 740px;
  margin: 0 auto;
}
.legal-content h2 {
  font-size: 1.3rem;
  margin-top: 40px;
  margin-bottom: 12px;
  color: var(--green-dark);
}
.legal-content p,
.legal-content li {
  color: var(--text-muted);
  font-size: .95rem;
  margin-bottom: 12px;
}
.legal-content ul {
  padding-left: 20px;
}

/* --- FAQ --- */
.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
}
.faq-item {
  border-bottom: 1px solid rgba(0,0,0,.07);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text);
  text-align: left;
  font-family: inherit;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--green-mid); }
.faq-chevron {
  width: 20px;
  height: 20px;
  transition: transform var(--transition);
  flex-shrink: 0;
  color: var(--text-muted);
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
}
.faq-item.open .faq-answer {
  max-height: 300px;
  padding-bottom: 20px;
}
.faq-answer p {
  font-size: .95rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- Footer --- */
.footer {
  background: var(--green-dark);
  color: rgba(255,255,255,.7);
  padding: 60px 0 36px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 40px;
}
.footer h4 {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-brand {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -.03em;
  margin-bottom: 8px;
}
.footer-brand span { color: var(--green-light); }
.footer p { font-size: .9rem; line-height: 1.65; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a {
  color: rgba(255,255,255,.6);
  font-size: .9rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: .82rem;
}

/* --- Animations (Intersection Observer) --- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 900px) {
  .hero .container { grid-template-columns: 1fr; text-align: center; }
  .hero-text p { margin: 0 auto 32px; }
  .hero-buttons { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-image { order: -1; }
  .hero-image img { max-width: 360px; }
  .steps-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .steps-grid .step-card::after { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 420px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .privacy-banner-content { flex-direction: column; text-align: center; }

  /* Hide floating veggies that would overlap on smaller screens */
  .deco-hero-garlic,
  .deco-hero-pepper,
  .deco-hero-ginger,
  .deco-features-carrots,
  .deco-features-napa,
  .deco-recipes-habanero,
  .deco-recipes-onions {
    display: none;
  }
}

@media (max-width: 640px) {
  .section { padding: 64px 0; }
  .nav-links {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(254,253,245,.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    z-index: 99;
  }
  .nav-links.open { display: flex; }
  .nav-links a { font-size: 1.2rem; }
  .nav-toggle { display: block; z-index: 101; }
  .hero { min-height: auto; padding: 120px 0 60px; }
  .hero-image img { max-width: 280px; }
  h1 { font-size: 2rem; }
  .hero-badges { flex-direction: column; gap: 12px; }
  .privacy-banner { padding: 28px 20px; }

  /* CTA veggies scale down on mobile */
  .deco-cta-garlic,
  .deco-cta-carrots,
  .deco-cta-habanero,
  .deco-cta-ginger {
    opacity: .12;
    max-width: 120px;
  }
}

/* --- App Store badge styling --- */
.appstore-badge {
  height: 50px;
  transition: transform var(--transition);
}
.appstore-badge:hover { transform: scale(1.05); }

/* --- Coming Soon button variant --- */
.btn-coming-soon {
  background: var(--amber) !important;
  box-shadow: 0 4px 16px rgba(232,168,48,.3) !important;
}
.btn-coming-soon:hover {
  background: #d49a20 !important;
  box-shadow: 0 8px 28px rgba(232,168,48,.35) !important;
}
.nav-cta-coming-soon {
  background: var(--amber) !important;
}
.nav-cta-coming-soon:hover {
  background: #d49a20 !important;
}

/* --- Subscribe form --- */
.subscribe-form {
  max-width: 480px;
  margin: 32px auto 0;
  position: relative;
}
.subscribe-input-group {
  display: flex;
  gap: 12px;
  align-items: stretch;
}
.subscribe-input {
  flex: 1;
  padding: 14px 20px;
  border: 2px solid rgba(74,140,63,.2);
  border-radius: 100px;
  font-size: 1rem;
  font-family: inherit;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: border-color var(--transition);
}
.subscribe-input:focus {
  border-color: var(--green-mid);
}
.subscribe-input::placeholder {
  color: var(--text-light);
}
.subscribe-btn {
  border: none;
  cursor: pointer;
  white-space: nowrap;
  font-family: inherit;
}
.subscribe-status {
  margin-top: 12px;
  font-size: .9rem;
  min-height: 1.4em;
}
.subscribe-status.success { color: var(--green-mid); }
.subscribe-status.error { color: var(--red-accent); }

@media (max-width: 640px) {
  .subscribe-input-group {
    flex-direction: column;
  }
  .subscribe-btn {
    width: 100%;
    justify-content: center;
  }
}
