:root {
  --green-main: #00c853;
  --green-deep: #00994b;
  --accent-orange: #ff9800;
  --text-main: #111827;
  --text-soft: #6b7280;
  --max-width: 1120px;
  --shadow-header: 0 20px 60px rgba(15, 23, 42, 0.16);
  --shadow-hero-btn: 0 14px 40px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 18px 40px rgba(15, 23, 42, 0.06);
  --card-radius: 18px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Poppins", system-ui, -apple-system, BlinkMacSystemFont,
    "Segoe UI", sans-serif;
  color: var(--text-main);
}

img {
  max-width: 100%;
  display: block;
}

/* Generic container */
.container {
  width: min(var(--max-width), 100% - 2.6rem);
  margin: 0 auto;
}

/* ------------- HEADER ------------- */

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  justify-content: center;
  pointer-events: none;
}

.header-inner {
  pointer-events: auto;
  width: min(var(--max-width), 100% - 3rem);
  background: #ffffff;
  border-radius: 999px;
  box-shadow: var(--shadow-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.4rem 1.8rem;
}

.header-left {
  display: flex;
  align-items: center;
}

.header-logo {
  height: 44px;
  width: auto;
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  font-size: 0.95rem;
}

.header-nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
}

.header-nav a:hover {
  color: var(--green-deep);
}

/* Buttons */
.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.btn-prebook {
  font-size: 0.9rem;
  font-weight: 700;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  color: #ffffff;
  background-image: linear-gradient(135deg, var(--green-main), var(--accent-orange));
  box-shadow: 0 12px 28px rgba(0, 200, 120, 0.4);
}

@media (max-width: 768px) {
  .header-inner {
    padding-inline: 1rem;
  }
  .header-nav {
    display: none;
  }
}

/* ------------- HERO ------------- */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #ffffff;
  padding-inline: 1.5rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.85)),
    url("images/hero-microgreens.jpg") center/cover no-repeat;
  z-index: -1;
  filter: brightness(0.95);
}

.hero-content {
  max-width: 750px;
  margin-top: 40px; /* header offset */
}

.hero-title {
  font-size: clamp(3rem, 7vw, 4.5rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  margin-bottom: 0.4rem;
}

.hero-title-nutri {
  color: #00e676;
}

.hero-title-nest {
  color: #ffffff;
}

.hero-tagline {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.hero-text {
  font-size: 1rem;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 1.8rem;
}

/* Hero CTA */
.btn-hero-cta {
  font-size: 0.95rem;
  font-weight: 700;
  padding: 0.9rem 2.6rem;
  border-radius: 999px;
  background: #ffffff;
  color: #111827;
  border: 3px solid #7c3aed;
  box-shadow: var(--shadow-hero-btn);
}

@media (max-width: 640px) {
  .hero-title {
    font-size: 2.5rem;
  }
  .hero-text {
    font-size: 0.9rem;
  }
}

/* ------------- CATEGORY CHIP BAR ------------- */

.category-bar {
  background: #0a5b28;
  padding: 12px 0;
  width: 100%;
}

.category-scroll {
  display: flex;
  overflow-x: auto;
  gap: 14px;
  padding: 0 22px;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.cat-chip {
  background: #ffffff;
  padding: 8px 22px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 500;
  color: #0a5b28;
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.25);
  border: 2px solid transparent;
}

.cat-chip.green {
  border-color: #00e676;
}

/* ------------- STORY SECTION ------------- */

.story-section {
  padding: 70px 0;
  background: #ffffff;
}

.story-container {
  width: min(1200px, 100% - 3rem);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
}

.story-image-card {
  background: #f3fdf7;
  padding: 14px;
  border-radius: 22px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.09);
  border: 1px solid #d7f3e4;
}

.story-image-card img {
  width: 100%;
  border-radius: 16px;
}

.story-text-block h2 {
  font-size: 2rem;
  font-weight: 700;
  color: #0a0a0a;
  margin-bottom: 20px;
}

.story-text-block p {
  font-size: 1.05rem;
  line-height: 1.72;
  color: #374151;
  margin-bottom: 18px;
}

.story-text-block p strong {
  font-weight: 700;
  color: #0a0a0a;
}

/* ------------- GENERIC SECTIONS ------------- */

.section {
  padding: 4rem 0;
}

.section-soft {
  background: #f3fbf6;
}

.section-title {
  text-align: center;
  font-size: 1.7rem;
  margin: 0 0 0.7rem;
}

.section-subtitle {
  text-align: center;
  margin: 0 auto 2rem;
  max-width: 540px;
  color: var(--text-soft);
  font-size: 0.93rem;
}

/* GRID & CARDS */

.grid {
  display: grid;
  gap: 1.6rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.card {
  background: #ffffff;
  border-radius: var(--card-radius);
  padding: 1.35rem 1.4rem;
  box-shadow: var(--shadow-soft);
}

.card-icon {
  font-size: 1.6rem;
  margin-bottom: 0.6rem;
}

.card h3 {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.card p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-soft);
}

/* ------------- HOW IT WORKS (NEW TIMELINE) ------------- */

.how {
  background: #ffffff;
}

.how-header {
  text-align: center;
  margin-bottom: 28px;
}

.how-title-row {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.how-main-icon {
  font-size: 1.4rem;
  color: #16a34a;
}

.how-title {
  font-size: 1.7rem;
  font-weight: 700;
}

.how-subtitle {
  margin-top: 6px;
  font-size: 0.95rem;
  color: #6b7280;
}

/* timeline row */
.how-timeline {
  position: relative;
  max-width: 980px;
  margin: 50px auto 0;
  padding: 40px 0 10px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}

.how-timeline::before {
  content: "";
  position: absolute;
  top: 72px;
  left: 4%;
  right: 4%;
  height: 1px;
  background: #e5e7eb;
  z-index: 0;
}

.how-step {
  position: relative;
  text-align: center;
  flex: 1;
  z-index: 1;
}

.how-step-pill {
  display: inline-block;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 999px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #6b7280;
  font-weight: 600;
  margin-bottom: 18px;
}

.how-circle {
  width: 86px;
  height: 86px;
  border-radius: 999px;
  background: #ffffff;
  box-shadow: 0 14px 32px rgba(15,23,42,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  border: 2px solid transparent;
}

.how-circle-icon {
  font-size: 2rem;
}

.how-circle-green { border-color: #22c55e; }
.how-circle-blue { border-color: #3b82f6; }
.how-circle-purple { border-color: #a855f7; }
.how-circle-pink { border-color: #ec4899; }
.how-circle-yellow { border-color: #facc15; }

.how-step-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: #111827;
  line-height: 1.4;
}

/* ------------- USES ------------- */

.uses-grid .card h3 {
  font-size: 0.98rem;
}

/* ------------- GALLERY ------------- */

.gallery {
  background: #ffffff;
}

.gallery-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 1.7rem;
}

.gallery-item img {
  width: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
}

/* ------------- MIXES ------------- */

.mix-card h3 {
  font-size: 1rem;
  margin-bottom: 0.2rem;
}

.mix-subtitle {
  margin: 0 0 0.65rem;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.mix-list {
  list-style: disc;
  padding-left: 1.15rem;
  margin: 0 0 0.65rem;
  font-size: 0.9rem;
  color: #4b5563;
}

.mix-note {
  margin: 0;
  font-size: 0.86rem;
  color: var(--text-soft);
}

/* ------------- PRICING ------------- */

.pricing {
  background: #ffffff;
}

/* keep default pricing-inner but we'll add .new-pricing-inner for the new layout */
.pricing-inner {
  display: grid;
  gap: 2.5rem;
  align-items: flex-start;
}

/* NEW: updated layout to match first image (left content + big green prelaunch + right glass form) */
.new-pricing-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 40px;
  align-items: start;
  padding: 64px 0;
  position: relative;
  /* decorative accent image (uploaded) */
  background-image: url("/mnt/data/abd8592b-3c3b-4e2d-ace7-3c7c80073374.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 420px auto;
}

.pricing-left { padding-right: 20px; }

.pricing-heading {
  font-size: 44px;
  margin: 0 0 12px;
  color: #1f3740;
  font-weight: 800;
}

.pricing-sub {
  color: #536471;
  font-size: 16px;
  line-height: 1.6;
  max-width: 680px;
  margin-bottom: 28px;
}

/* Prelaunch green outlined card */
.prelaunch-highlight {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 10px 30px rgba(17, 88, 46, 0.06);
  border: 4px solid rgba(35, 177, 103, 0.12);
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(255,255,255,0.95));
  margin-bottom: 28px;
  overflow: visible;
}

.prelaunch-left .prelaunch-label {
  font-weight: 700;
  color: #0f7d3a;
  font-size: 18px;
  margin-bottom: 6px;
}

.prelaunch-left .prelaunch-desc {
  color: #566a71;
  font-size: 14px;
  margin: 0;
}

.prelaunch-right {
  text-align: right;
  min-width: 160px;
}

.prelaunch-price {
  margin: 0;
  display:flex;
  align-items: baseline;
  justify-content: flex-end;
  gap:6px;
}

.prelaunch-price .currency {
  font-size: 20px;
  color: #1c6b3a;
  font-weight: 700;
  opacity: .9;
}

.prelaunch-price .price-big {
  font-size: 48px;
  color: #0b8f4b;
  font-weight: 900;
  line-height: 1;
}

.prelaunch-note {
  margin-top: 6px;
  color: #586b72;
  font-size: 13px;
}

/* Plans card */
.subtle-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 22px;
  margin-top: 18px;
  box-shadow: 0 18px 50px rgba(14, 50, 30, 0.04);
}

.plans-title {
  margin: 0 0 8px;
  font-size: 20px;
  color: #0f2b2a;
  font-weight: 700;
}

.plans-list {
  list-style: none;
  padding: 10px 0 0;
  margin: 0;
}

.plans-list li {
  padding: 14px 0;
  border-bottom: 1px solid #eef5f2;
  color: #24383b;
  display:flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}

.plans-list li:last-child { border-bottom: none; }

.plan-cost {
  font-weight: 700;
  color: #0b6b3d;
}

/* RIGHT - Glass form */
.pricing-right {
  align-self: start;
  position: relative;
  border-radius: 14px;
  padding: 26px;
  width: 100%;
}

.glass-card {
  background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(250,250,250,0.95));
  border-radius: 14px;
  box-shadow:
    0 6px 18px rgba(10, 32, 20, 0.06),
    0 30px 60px rgba(10, 32, 20, 0.04);
  border: 1px solid rgba(15, 72, 42, 0.03);
  padding: 30px;
}

/* form inside right card */
.form-title {
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
  color: #132a2a;
}

.lead-form .form-group {
  margin-bottom: 14px;
}

.lead-form label { display:block; font-size:13px; color:#425b5a; margin-bottom:6px; font-weight:600; }

.lead-form input,
.lead-form textarea,
.lead-form select {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #e6eeec;
  background: #fff;
  font-size: 14px;
  color: #213737;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
  transition: border-color .15s, box-shadow .15s;
}

.lead-form textarea { resize: vertical; min-height: 90px; }

/* CTA - big green pill with subtle gradient + shadow */
.big-cta {
  display: block;
  width: 100%;
  padding: 18px 20px;
  border-radius: 50px;
  border: none;
  font-weight: 800;
  font-size: 16px;
  letter-spacing: .6px;
  margin-top: 10px;
  cursor: pointer;
  background: linear-gradient(90deg, #11b06c 0%, #1dbf6e 45%, #f6a33a 100%);
  color: #ffffff;
  box-shadow: 0 10px 30px rgba(26, 160, 86, 0.12), inset 0 -6px 20px rgba(255,255,255,0.06);
}

/* small note below form CTA */
.form-note {
  margin-top: 12px;
  color: #6b8b85;
  font-size: 13px;
  text-align: center;
}

/* keep older pricing rules for fallbacks */
.prelaunch {
  margin-top: 1.3rem;
  border-left: 4px solid var(--green-main);
}

.prelaunch-label {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-deep);
}

.prelaunch-desc {
  margin: 0.3rem 0 0.8rem;
  font-size: 0.9rem;
  color: var(--text-soft);
}

.prelaunch-price {
  margin: 0;
}

.price-main {
  font-size: 1.7rem;
  font-weight: 700;
  margin-right: 0.4rem;
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-soft);
}

.plans h3 {
  margin: 1.4rem 0 0.5rem;
  font-size: 1rem;
}

.plans ul {
  list-style: disc;
  padding-left: 1.2rem;
  margin: 0;
  font-size: 0.9rem;
  color: #4b5563;
}

.pricing-right {
  max-width: 360px;
  margin-left: auto;
  margin-right: auto;
}

/* input focus */
.lead-form input:focus,
.lead-form textarea:focus,
.lead-form select:focus {
  outline: none;
  border-color: var(--green-main);
  box-shadow: 0 0 0 4px rgba(34,197,94,0.06);
}

/* ------------- TESTIMONIALS ------------- */

.testimonial-text {
  font-size: 0.9rem;
  color: #4b5563;
  margin-bottom: 0.75rem;
}

.testimonial-name {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green-deep);
}

/* ------------- FAQ ------------- */

.faq-list {
  max-width: 700px;
  margin: 2rem auto 0;
}

.faq-item + .faq-item {
  margin-top: 0.7rem;
}

.faq-question {
  width: 100%;
  text-align: left;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e5e7eb;
  padding: 0.8rem 1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font: inherit;
  font-size: 0.9rem;
  cursor: pointer;
}

.faq-icon {
  margin-left: 1rem;
  font-weight: 600;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.22s ease;
  background: #f9fafb;
  border-radius: 0 0 14px 14px;
}

.faq-answer p {
  margin: 0;
  padding: 0 1rem 0.8rem;
  font-size: 0.86rem;
  color: var(--text-soft);
}

.faq-item.open .faq-answer {
  max-height: 210px;
}

.faq-item.open .faq-icon {
  transform: rotate(45deg);
}

/* ------------- CONTACT ------------- */

/* ---------- Contact Hero (centered) ---------- */

.contact-hero {
  /* subtle mint background like screenshot + decorative top accent */
  background: linear-gradient(180deg, rgba(236, 252, 242, 0.9), rgba(245, 255, 249, 0.9));
  position: relative;
  padding: 64px 0 90px;
  /* decorative graphic on top center-right (uploaded) */
  background-image: url("/mnt/data/98071d36-617a-4035-979b-5ab9566d76d0.png");
  background-repeat: no-repeat;
  background-position: top right;
  background-size: 420px auto;
}

.contact-hero-inner {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

/* heading */
.contact-hero-header h2 {
  font-size: 34px;
  line-height: 1.05;
  margin-bottom: 8px;
  font-weight: 800;
  color: var(--text-main);
}

.contact-hero-sub {
  max-width: 760px;
  color: var(--text-soft);
  margin: 0 auto 6px;
  font-size: 1rem;
  line-height: 1.6;
}

/* centered card container */
.contact-card-centered {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

/* the white card */
.contact-card-hero {
  width: min(640px, 92%);
  padding: 28px;
  border-radius: 12px;
  box-shadow: 0 18px 50px rgba(10, 40, 20, 0.06);
  background: linear-gradient(180deg, #ffffff, #fbfffb);
  border: 1px solid rgba(10, 40, 20, 0.03);
}

/* form inputs inside */
.contact-card-hero .form-group {
  margin-bottom: 14px;
  text-align: left;
}

.contact-card-hero label {
  display: block;
  font-size: 0.9rem;
  color: #34484a;
  margin-bottom: 6px;
  font-weight: 600;
}

.contact-card-hero input {
  width: 100%;
  border-radius: 10px;
  border: 1px solid #e6ece8;
  padding: 12px 14px;
  font-size: 0.95rem;
  background: #fafafa;
  color: #123230;
  box-shadow: inset 0 1px 0 rgba(0,0,0,0.02);
  transition: border-color .12s, box-shadow .12s;
}

.contact-card-hero input:focus {
  outline: none;
  border-color: var(--green-main);
  box-shadow: 0 0 0 6px rgba(0,200,83,0.06);
}

/* CTA uses same pill style but slightly taller for this section */
.contact-cta {
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 16px;
  width: 100%;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--green-deep) 0%, var(--green-main) 60%);
  color: #fff;
  box-shadow: 0 12px 30px rgba(8, 120, 60, 0.12);
  border: none;
  cursor: pointer;
}

/* small responsive tweaks */
@media (max-width: 900px) {
  .contact-hero {
    padding: 48px 0 60px;
    background-image: none;
  }

  .contact-card-hero {
    padding: 20px;
  }

  .contact-hero-header h2 {
    font-size: 28px;
  }
}

@media (max-width: 480px) {
  .contact-hero-header h2 { font-size: 22px; }
  .contact-hero-sub { font-size: 0.95rem; }
  .contact-card-hero { padding: 16px; }
  .contact-card-hero input { padding: 10px 12px; }
  .contact-cta { padding: 12px; font-size: 15px; }
}


/* ------------- FOOTER ------------- */

.site-footer {
  background: #0f172a;
  color: #e5e7eb;
  margin-top: 2.5rem;
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 2rem;
  padding: 2.2rem 0 1.4rem;
}

.footer-brand .logo-mark {
  font-size: 1.5rem;
}

.footer-brand .logo-text {
  font-size: 1.2rem;
}

.footer-tagline {
  margin: 0.5rem 0 0;
  font-size: 0.83rem;
  color: #9ca3af;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 2.3rem;
}

.footer-col h4 {
  margin: 0 0 0.6rem;
  font-size: 0.9rem;
}

.footer-col a,
.footer-col p {
  display: block;
  font-size: 0.83rem;
  margin-bottom: 0.3rem;
  color: #d1d5db;
  text-decoration: none;
}

.footer-col a:hover {
  color: #ffffff;
}

.footer-bottom {
  border-top: 1px solid #1f2937;
  text-align: center;
  padding: 0.75rem 0;
  font-size: 0.78rem;
  color: #9ca3af;
}

/* ------------- RESPONSIVE ------------- */

@media (min-width: 768px) {
  .story-container {
    grid-template-columns: 1.1fr 1fr;
  }
  .pricing-inner {
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.9fr);
  }
  .contact-inner {
    grid-template-columns: 1.1fr 1fr;
  }
}

@media (max-width: 900px) {
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .story-container {
    grid-template-columns: 1fr;
  }
  .how-timeline {
    flex-wrap: wrap;
  }
  .new-pricing-inner {
    grid-template-columns: 1fr;
    background-image: none;
    padding: 36px 0;
  }
  .pricing-right { order: -1; margin-bottom: 20px; }
  .pricing-left { padding-right: 0; }
}

@media (max-width: 640px) {
  .grid-3 {
    grid-template-columns: 1fr;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
  }
  .how-timeline {
    flex-direction: column;
    align-items: center;
  }
  .pricing-heading { font-size: 28px; }
  .prelaunch-price .price-big { font-size: 36px; }
  .big-cta { padding: 14px; font-size: 15px; }
}
