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

:root {
  --green: #2E7D32;
  --green-light: #43A047;
  --green-pale: #E8F5E9;
  --green-pale2: #F1F8F1;
  --red: #C62828;
  --red-light: #EF5350;
  --red-pale: #FFEBEE;
  --wa: #25D366;
  --wa-dark: #1da851;
  --yellow: #FFF9C4;
  --yellow-accent: #F9A825;
  --white: #FFFFFF;
  --off-white: #FAFDF9;
  --text: #1B2E1C;
  --text-mid: #4A6741;
  --text-light: #6A8A6B;
  --border: #C8E6C9;
  --shadow: 0 4px 24px rgba(46,125,50,0.10);
  --shadow-card: 0 2px 16px rgba(46,125,50,0.08);
  --radius: 20px;
  --radius-sm: 12px;
}

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4 {
  font-family: 'Poppins', sans-serif;
  line-height: 1.25;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; display: block; }

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

/* ===== NAV ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.navbar.scrolled { box-shadow: 0 2px 20px rgba(46,125,50,0.12); }

.nav-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-badge {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  box-shadow: 0 2px 8px rgba(46,125,50,0.3);
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-name {
  font-family: 'Poppins', sans-serif;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--text);
}
.logo-accent { color: var(--green); }
.logo-tagline {
  font-size: 0.65rem;
  color: var(--text-light);
  font-weight: 600;
  letter-spacing: 0.3px;
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--wa);
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 12px rgba(37,211,102,0.35);
}
.nav-cta:hover { background: var(--wa-dark); transform: translateY(-1px); }

/* ===== SECTION COMMON ===== */
.section-header {
  text-align: center;
  margin-bottom: 56px;
}
.section-label {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 12px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: var(--text);
  margin-bottom: 12px;
}
.section-header p {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 540px;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--wa);
  color: white;
  border: none;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.btn-whatsapp:hover { background: var(--wa-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(37,211,102,0.5); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  color: var(--green);
  border: 2px solid var(--green);
  padding: 13px 26px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.btn-outline:hover { background: var(--green); color: white; }

.btn-whatsapp-large {
  padding: 16px 36px;
  font-size: 1.1rem;
  margin-top: 24px;
}

.btn-order-card {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: 100%;
  background: var(--wa);
  color: white;
  border: none;
  padding: 11px 20px;
  border-radius: 50px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
  margin-top: 14px;
}
.btn-order-card:hover { background: var(--wa-dark); transform: translateY(-1px); }

.btn-instagram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  color: white;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-instagram:hover { opacity: 0.9; transform: translateY(-1px); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  background: linear-gradient(135deg, #E8F5E9 0%, #F9FBE7 50%, #FFFFFF 100%);
  display: flex;
  align-items: center;
  padding: 100px 24px 60px;
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 10% 20%, rgba(46,125,50,0.06) 0%, transparent 50%),
    radial-gradient(circle at 90% 80%, rgba(198,40,40,0.04) 0%, transparent 40%);
  pointer-events: none;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  max-width: 1140px;
  margin: 0 auto;
  align-items: center;
}

.hero-badge {
  display: inline-block;
  background: var(--green-pale);
  color: var(--green);
  font-weight: 700;
  font-size: 0.82rem;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  border: 1px solid var(--border);
}

.hero-headline {
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: 20px;
  line-height: 1.15;
}
.headline-accent { color: var(--green); }

.hero-subtext {
  font-size: 1.1rem;
  color: var(--text-mid);
  margin-bottom: 24px;
  line-height: 1.7;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}
.pill {
  background: white;
  border: 1.5px solid var(--border);
  color: var(--text-mid);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 50px;
  box-shadow: 0 1px 6px rgba(46,125,50,0.07);
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.wa-svg { width: 20px; height: 20px; flex-shrink: 0; }

/* Hero Visual */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero-veggie-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 14px;
}
.veggie-card {
  background: white;
  border-radius: 20px;
  padding: 22px 12px 18px;
  text-align: center;
  font-size: 2.4rem;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: default;
}
.veggie-card span {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.veggie-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(46,125,50,0.15); }
.vc1, .vc4 { background: linear-gradient(135deg, #FFFDE7, #FFFFFF); }
.vc2, .vc5 { background: linear-gradient(135deg, #E8F5E9, #FFFFFF); }
.vc3, .vc6 { background: linear-gradient(135deg, #FFEBEE, #FFFFFF); }

.hero-badge-float {
  position: absolute;
  bottom: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--wa);
  color: white;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 6px;
  box-shadow: 0 4px 16px rgba(37,211,102,0.4);
  white-space: nowrap;
}

/* ===== ABOUT ===== */
.about {
  padding: 100px 0;
  background: white;
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-text h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  margin-bottom: 16px;
}
.text-green { color: var(--green); }
.about-text p {
  color: var(--text-mid);
  font-size: 1.02rem;
  margin-bottom: 14px;
  line-height: 1.75;
}
.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 28px;
}
.highlight-pill {
  display: flex;
  align-items: center;
  gap: 14px;
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  padding: 14px 18px;
}
.pill-icon {
  font-size: 1.8rem;
  flex-shrink: 0;
}
.highlight-pill div {
  display: flex;
  flex-direction: column;
  line-height: 1.3;
}
.highlight-pill strong {
  color: var(--text);
  font-size: 0.95rem;
}
.highlight-pill span {
  color: var(--text-light);
  font-size: 0.82rem;
}

.about-visual { display: flex; justify-content: center; }
.about-img-box {
  position: relative;
  width: 320px;
  height: 320px;
}
.about-emoji-collage {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 10px;
  width: 100%;
  height: 100%;
}
.collage-item {
  background: var(--green-pale);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  gap: 4px;
  border: 1px solid var(--border);
  transition: transform 0.3s;
}
.collage-item:hover { transform: scale(1.05); }
.collage-item small {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-mid);
  text-transform: uppercase;
}
.ci1 { background: linear-gradient(135deg, #E8F5E9, #f0f9f0); }
.ci2 { background: linear-gradient(135deg, #FFFDE7, #fffff0); }
.ci3 { background: linear-gradient(135deg, #FFEBEE, #fff0f0); }
.ci4 { background: linear-gradient(135deg, #FFFDE7, #fffff0); }
.ci5 { background: linear-gradient(135deg, #E8F5E9, #f0f9f0); }
.ci6 { background: linear-gradient(135deg, #FFEBEE, #fff0f0); }

.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: white;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  font-size: 0.82rem;
}
.about-badge strong { display: block; color: var(--green); font-size: 0.9rem; }
.about-badge small { color: var(--text-light); }

/* ===== PRODUCTS ===== */
.products {
  padding: 100px 0;
  background: var(--off-white);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.product-card {
  background: white;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(46,125,50,0.14); }

.product-img {
  background: linear-gradient(135deg, var(--green-pale), var(--yellow));
  height: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-size: 4.5rem;
}
.product-label-badge {
  position: absolute;
  top: 12px; right: 12px;
  background: white;
  color: var(--green);
  font-size: 0.65rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: 50px;
  border: 1px solid var(--border);
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.product-info {
  padding: 20px;
}
.product-info h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.product-info p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.55;
  margin-bottom: 14px;
}
.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.weight {
  background: var(--green-pale);
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 50px;
}
.price {
  font-family: 'Poppins', sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
}

.product-card-cta {
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border: none;
}
.product-cta-inner {
  padding: 40px 28px;
  text-align: center;
  color: white;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.product-cta-emoji { font-size: 3.5rem; }
.product-cta-inner h3 { color: white; font-size: 1.3rem; }
.product-cta-inner p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.55; }
.product-cta-inner .btn-whatsapp {
  background: white;
  color: var(--green);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.product-cta-inner .btn-whatsapp:hover { background: var(--green-pale); }

/* ===== WHY US ===== */
.why-us {
  padding: 100px 0;
  background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 24px;
}
.why-card {
  background: white;
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transition: transform 0.3s, box-shadow 0.3s;
}
.why-card:hover { transform: translateY(-4px); box-shadow: 0 8px 28px rgba(46,125,50,0.13); }
.why-icon {
  font-size: 2.6rem;
  margin-bottom: 14px;
}
.why-card h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.why-card p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}

/* ===== HOW IT WORKS ===== */
.how-it-works {
  padding: 100px 0;
  background: white;
}
.steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.step {
  background: var(--off-white);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  border: 1px solid var(--border);
  position: relative;
}
.step-number {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--green);
  color: white;
  width: 30px; height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.85rem;
  font-family: 'Poppins', sans-serif;
}
.step-icon {
  font-size: 3rem;
  margin-bottom: 14px;
}
.step h3 {
  font-size: 1.05rem;
  margin-bottom: 8px;
  color: var(--text);
}
.step p {
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
}
.step-arrow {
  font-size: 2rem;
  color: var(--green-light);
  font-weight: 300;
  flex-shrink: 0;
}
.how-cta { text-align: center; }

/* ===== TESTIMONIALS ===== */
.testimonials {
  padding: 100px 0;
  background: var(--off-white);
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
  margin-bottom: 40px;
}
.testimonial-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.stars { font-size: 1.1rem; margin-bottom: 12px; }
.testimonial-text {
  color: var(--text-mid);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--green), var(--green-light));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 800;
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.9rem;
  color: var(--text);
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--text-light);
}

.instagram-cta {
  background: white;
  border-radius: var(--radius);
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid #f0c0d0;
  box-shadow: var(--shadow-card);
  flex-wrap: wrap;
}
.insta-icon { font-size: 2.2rem; flex-shrink: 0; }
.instagram-cta div { flex: 1; min-width: 160px; }
.instagram-cta strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: 2px; }
.instagram-cta p { font-size: 0.85rem; color: var(--text-light); margin: 0; }

/* ===== CONTACT ===== */
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #E8F5E9 0%, #FFFFFF 100%);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  background: white;
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.contact-icon { font-size: 1.4rem; flex-shrink: 0; margin-top: 2px; }
.contact-item strong {
  display: block;
  font-size: 0.88rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 3px;
}
.contact-item span, .contact-item a {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.5;
}
.contact-item a { color: var(--green); font-weight: 600; }
.contact-item a:hover { text-decoration: underline; }

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
}
.map-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: var(--text);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1.2fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  color: white;
  margin-bottom: 8px;
}
.logo-icon-sm { font-size: 1.4rem; }
.footer-tagline {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 12px;
  letter-spacing: 0.5px;
}
.footer-about {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 20px;
  color: rgba(255,255,255,0.65);
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
  color: white;
}
.social-link:hover { background: rgba(255,255,255,0.2); transform: translateY(-2px); }
.social-wa:hover { background: var(--wa); }

.footer-links h4, .footer-contact-info h4 {
  color: white;
  font-size: 1rem;
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--wa); }

.footer-contact-info p {
  font-size: 0.88rem;
  line-height: 1.65;
  margin-bottom: 10px;
  color: rgba(255,255,255,0.65);
}
.footer-contact-info a { color: var(--wa); }
.footer-contact-info a:hover { text-decoration: underline; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* ===== FLOATING WHATSAPP ===== */
.float-wa {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 60px; height: 60px;
  background: var(--wa);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  z-index: 999;
  transition: transform 0.3s, box-shadow 0.3s;
}
.float-wa:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.float-wa::before {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid var(--wa);
  opacity: 0;
  animation: wa-pulse 2s ease-in-out infinite;
}
@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.5); opacity: 0; }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding: 100px 24px 60px;
    text-align: center;
  }
  .hero-pills { justify-content: center; }
  .hero-ctas { justify-content: center; }
  .hero-visual { order: -1; }
  .hero-veggie-grid { max-width: 340px; margin: 0 auto; }

  .about-inner { grid-template-columns: 1fr; }
  .about-visual { order: -1; }

  .contact-inner { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero-headline { font-size: 2.2rem; }

  .steps { flex-direction: column; align-items: stretch; }
  .step { max-width: 100%; }
  .step-arrow { transform: rotate(90deg); align-self: center; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }

  .instagram-cta { flex-direction: column; text-align: center; }

  .about-img-box { width: 280px; height: 280px; }

  .float-wa { bottom: 20px; right: 20px; width: 52px; height: 52px; }

  .hero-veggie-grid { gap: 10px; }
  .veggie-card { padding: 16px 8px 14px; font-size: 2rem; }
}

@media (max-width: 400px) {
  .logo-tagline { display: none; }
  .nav-cta span.wa-icon { display: none; }
}
