/* ================================================
   PUREHILLS — style.css
   Brand: Deep forest green + cream/off-white
   Typography: Playfair Display (headings) + DM Sans (body)
   ================================================ */


/* ------------------------------------------------
   1. CSS VARIABLES (Brand tokens — edit here)
   ------------------------------------------------ */
:root {
  /* Colors */
  --green-dark:   #2d5a3d;   /* Primary deep forest green */
  --green-mid:    #3d6b4f;   /* Mid green */
  --green-light:  #5a8a68;   /* Accent green */
  --green-pale:   #e8f2ec;   /* Pale green tint for backgrounds */
  --cream:        #f5f0e8;   /* Main cream/off-white */
  --cream-dark:   #ede7d9;   /* Slightly darker cream */
  --white:        #ffffff;
  --text-dark:    #1a2e22;   /* Near-black text */
  --text-body:    #3a4f40;   /* Body text */
  --text-muted:   #6b8070;   /* Muted text */
  --border:       rgba(45,90,61,0.15);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;

  /* Spacing */
  --section-py:   80px;
  --container-w:  1180px;
  --container-px: 24px;

  /* Shadows */
  --shadow-sm:    0 2px 12px rgba(45,90,61,0.08);
  --shadow-md:    0 8px 32px rgba(45,90,61,0.12);
  --shadow-lg:    0 20px 60px rgba(45,90,61,0.16);

  /* Radius */
  --radius-sm:    8px;
  --radius-md:    16px;
  --radius-lg:    24px;
  --radius-full:  9999px;

  /* Transitions */
  --transition:   0.25s ease;
}


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

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

body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 var(--container-px);
}

.section { padding: var(--section-py) 0; }


/* ------------------------------------------------
   3. TYPOGRAPHY HELPERS
   ------------------------------------------------ */
.section-eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 12px;
}

.section-eyebrow--light { color: rgba(245,240,232,0.75); }

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 16px;
}

.section-sub {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-bottom: 40px;
}


/* ------------------------------------------------
   4. BUTTONS
   ------------------------------------------------ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius-full);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  white-space: nowrap;
}

.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary green button */
.btn--primary {
  background: var(--green-dark);
  color: var(--cream);
  box-shadow: 0 4px 16px rgba(45,90,61,0.3);
}
.btn--primary:hover {
  background: var(--green-mid);
  box-shadow: 0 8px 24px rgba(45,90,61,0.4);
}

/* Outline button */
.btn--outline {
  background: transparent;
  color: var(--green-dark);
  border: 2px solid var(--green-dark);
}
.btn--outline:hover {
  background: var(--green-dark);
  color: var(--cream);
}

/* WhatsApp green button */
.btn--whatsapp {
  background: #25d366;
  color: #fff;
  box-shadow: 0 4px 16px rgba(37,211,102,0.3);
}
.btn--whatsapp:hover {
  background: #1ebe5b;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
}

/* Cream button (for dark backgrounds) */
.btn--cream {
  background: var(--cream);
  color: var(--green-dark);
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
}
.btn--cream:hover {
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* Large size modifier */
.btn--lg {
  padding: 16px 36px;
  font-size: 1.05rem;
}


/* ------------------------------------------------
   5. HEADER
   ------------------------------------------------ */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245,240,232,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow var(--transition);
}

.header.scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  gap: 32px;
  height: 72px;
}

.header__logo img {
  height: 48px;
  width: auto;
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
}

.header__nav a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-body);
  transition: color var(--transition);
  position: relative;
}

.header__nav a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--green-dark);
  transition: width var(--transition);
}
.header__nav a:hover { color: var(--green-dark); }
.header__nav a:hover::after { width: 100%; }

.header__cta { margin-left: 16px; }

.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  margin-left: auto;
}
.header__hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--green-dark);
  border-radius: 2px;
  transition: var(--transition);
}


/* ------------------------------------------------
   6. MOBILE NAV OVERLAY
   ------------------------------------------------ */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: var(--green-dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

.mobile-nav.open { transform: translateX(0); }

.mobile-nav__close {
  position: absolute;
  top: 24px; right: 24px;
  color: var(--cream);
  font-size: 1.5rem;
}

.mobile-nav__link {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  transition: color var(--transition);
}
.mobile-nav__link:hover { color: var(--green-pale); }

.mobile-nav__cta { margin-top: 8px; }


/* ------------------------------------------------
   7. HERO SECTION
   ------------------------------------------------ */
.hero {
  position: relative;
  background: linear-gradient(150deg, var(--green-dark) 0%, var(--green-mid) 60%, var(--green-light) 100%);
  overflow: hidden;
  padding: 100px 0 80px;
}

.hero__bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(255,255,255,0.04) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 50%);
  pointer-events: none;
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero__eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.7);
  margin-bottom: 16px;
}

.hero__headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 24px;
}

.hero__headline em {
  font-style: italic;
  color: #a8d5b0;  /* Soft kiwi green */
}

.hero__sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.85);
  line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-top: 24px;
}
.hero__trust span {
  font-size: 0.82rem;
  color: rgba(245,240,232,0.75);
  font-weight: 500;
}

/* Hero visual / image area */
.hero__visual { display: flex; justify-content: center; align-items: center; }

.hero__img-wrap {
  position: relative;
  width: 100%;
  max-width: 420px;
}

.hero__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: rgba(255,255,255,0.1);
  border: 2px dashed rgba(245,240,232,0.3);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.hero__img-inner {
  text-align: center;
  color: rgba(245,240,232,0.7);
}
.hero__fruit-emoji { font-size: 4rem; display: block; margin-bottom: 8px; }
.hero__img-inner p { font-size: 0.85rem; }
.hero__img-inner small { font-size: 0.75rem; opacity: 0.6; }

/* The actual image tag (uncomment when ready) */
.hero__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.hero__badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--cream);
  color: var(--green-dark);
  width: 80px; height: 80px;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  box-shadow: var(--shadow-md);
  line-height: 1.2;
}

.hero__wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero__wave svg { width: 100%; height: 60px; }


/* ------------------------------------------------
   8. BENEFITS STRIP
   ------------------------------------------------ */
.benefits {
  padding: 60px 0;
  background: var(--cream);
}

.benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.benefits__card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  transition: transform var(--transition), box-shadow var(--transition);
}
.benefits__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.benefits__icon { font-size: 2rem; margin-bottom: 16px; }

.benefits__card h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.benefits__card p {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.6;
}


/* ------------------------------------------------
   9. ABOUT SECTION
   ------------------------------------------------ */
.about { background: var(--cream); }

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about__text p {
  color: var(--text-body);
  margin-bottom: 16px;
  line-height: 1.8;
}

.about__pillars {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}
.about__pillar {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--green-pale);
  color: var(--green-dark);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  border: 1px solid rgba(45,90,61,0.15);
}

.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--green-pale);
  border: 2px dashed rgba(45,90,61,0.2);
  border-radius: var(--radius-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  gap: 8px;
  font-size: 0.85rem;
}
.about__img-placeholder span { font-size: 3rem; }

.about__img {
  width: 100%;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  object-fit: cover;
  aspect-ratio: 4/3;
}


/* ------------------------------------------------
   10. PRODUCTS SECTION
   ------------------------------------------------ */
.products {
  background: var(--white);
  text-align: center;
}

.products .section-sub {
  margin: 0 auto 56px;
}

/* Featured product card */
.product__featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: 48px;
  margin-bottom: 64px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  text-align: left;
}

.product__featured-img { position: relative; }

.product__img-placeholder {
  width: 100%;
  aspect-ratio: 1;
  background: var(--green-pale);
  border: 2px dashed rgba(45,90,61,0.2);
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  text-align: center;
  gap: 8px;
  font-size: 0.85rem;
}
.product__img-placeholder span { font-size: 4rem; }

.product__tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--green-dark);
  color: var(--cream);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 6px 14px;
  border-radius: var(--radius-full);
}

.product__name {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin: 8px 0 16px;
}

.product__desc {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 24px;
}

.product__highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 32px;
}
.product__highlights li {
  font-size: 0.92rem;
  color: var(--green-dark);
  font-weight: 500;
}

/* Coming Soon section */
.coming-soon { margin-top: 16px; }

.coming-soon__title {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.coming-soon__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.coming-soon__card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 32px 20px;
  text-align: center;
  border: 1px solid var(--border);
  opacity: 0.7;
  transition: opacity var(--transition);
}
.coming-soon__card:hover { opacity: 1; }

.coming-soon__emoji { font-size: 2.5rem; display: block; margin-bottom: 12px; }
.coming-soon__name {
  font-weight: 600;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.coming-soon__badge {
  display: inline-block;
  background: var(--cream-dark);
  color: var(--text-muted);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border);
}


/* ------------------------------------------------
   11. HOW IT WORKS
   ------------------------------------------------ */
.how {
  background: var(--green-dark);
  text-align: center;
}

.how .section-eyebrow { color: rgba(168,213,176,0.8); }
.how .section-title { color: var(--cream); }
.how .section-sub { color: rgba(245,240,232,0.7); margin: 0 auto 56px; }

.how__steps {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}

.how__step {
  flex: 1;
  min-width: 180px;
  max-width: 220px;
  padding: 0 16px;
  text-align: center;
}

.how__step-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 800;
  color: rgba(255,255,255,0.12);
  line-height: 1;
  margin-bottom: -8px;
}

.how__step-icon { font-size: 2rem; margin-bottom: 16px; }

.how__step h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 8px;
}

.how__step p {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.65);
  line-height: 1.6;
}

.how__connector {
  font-size: 1.5rem;
  color: rgba(245,240,232,0.2);
  align-self: center;
  padding-bottom: 30px;
  flex-shrink: 0;
}


/* ------------------------------------------------
   12. WHY CHOOSE PUREHILLS
   ------------------------------------------------ */
.why { background: var(--cream); }

.why__inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 80px;
  align-items: start;
}

.why__left .section-title { margin-bottom: 20px; }
.why__left p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 32px;
}

.why__right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.why__check {
  width: 32px; height: 32px;
  background: var(--green-dark);
  color: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
}

.why__item strong {
  display: block;
  color: var(--text-dark);
  font-weight: 600;
  margin-bottom: 4px;
}
.why__item p {
  font-size: 0.9rem;
  color: var(--text-muted);
}


/* ------------------------------------------------
   13. FAQ SECTION
   ------------------------------------------------ */
.faq { background: var(--white); }

.faq__inner { text-align: center; }
.faq__inner .section-title { margin-bottom: 0; }

.faq__list {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: left;
}

.faq__item {
  border-bottom: 1px solid var(--border);
}

.faq__question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.faq__question:hover { color: var(--green-dark); }

.faq__icon {
  font-size: 1.4rem;
  font-weight: 300;
  color: var(--green-dark);
  flex-shrink: 0;
  transition: transform var(--transition);
}

.faq__question[aria-expanded="true"] .faq__icon {
  transform: rotate(45deg);
}

.faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.2s ease;
}

.faq__answer.open { max-height: 200px; }

.faq__answer p {
  padding-bottom: 20px;
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.8;
}


/* ------------------------------------------------
   14. CONTACT / FINAL CTA
   ------------------------------------------------ */
.contact {
  position: relative;
  background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-mid) 100%);
  overflow: hidden;
}

.contact__bg-pattern {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 90%, rgba(255,255,255,0.05) 0%, transparent 40%),
    radial-gradient(circle at 90% 10%, rgba(255,255,255,0.07) 0%, transparent 40%);
  pointer-events: none;
}

.contact__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}

.contact__title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact__sub {
  font-size: 1.05rem;
  color: rgba(245,240,232,0.8);
  max-width: 520px;
  margin: 0 auto 40px;
  line-height: 1.7;
}

.contact__details {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 48px;
  padding-top: 40px;
  border-top: 1px solid rgba(245,240,232,0.15);
}

.contact__detail {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(245,240,232,0.8);
  font-size: 0.95rem;
}
.contact__detail a { color: inherit; }
.contact__detail a:hover { color: var(--cream); }
.contact__detail-icon { font-size: 1.1rem; }


/* ------------------------------------------------
   15. FOOTER
   ------------------------------------------------ */
.footer {
  background: var(--text-dark);
  color: rgba(245,240,232,0.7);
}

.footer__inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding: 64px var(--container-px) 40px;
  max-width: var(--container-w);
  margin: 0 auto;
}

.footer__logo { height: 44px; width: auto; margin-bottom: 12px; }

.footer__tagline {
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-style: italic;
  color: rgba(245,240,232,0.5);
  margin-bottom: 12px;
}

.footer__desc {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 260px;
}

.footer__links h4,
.footer__contact h4 {
  font-family: var(--font-display);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cream);
  margin-bottom: 20px;
  letter-spacing: 0.03em;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__links a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--cream); }

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__contact p, .footer__contact a {
  font-size: 0.88rem;
  color: rgba(245,240,232,0.6);
  transition: color var(--transition);
}
.footer__contact a:hover { color: var(--cream); }

.footer__wa-btn {
  margin-top: 12px;
  font-size: 0.85rem;
  padding: 10px 20px;
}

.footer__bottom {
  text-align: center;
  padding: 20px var(--container-px);
  border-top: 1px solid rgba(245,240,232,0.08);
  font-size: 0.82rem;
  color: rgba(245,240,232,0.35);
  max-width: var(--container-w);
  margin: 0 auto;
}


/* ------------------------------------------------
   16. SCROLL ANIMATIONS
   ------------------------------------------------ */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}


/* ------------------------------------------------
   17. RESPONSIVE — TABLET (≤ 900px)
   ------------------------------------------------ */
@media (max-width: 900px) {
  :root { --section-py: 60px; }

  /* Header */
  .header__nav { display: none; }
  .header__cta { display: none; }
  .header__hamburger { display: flex; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .hero__sub { margin: 0 auto 36px; }
  .hero__trust { justify-content: center; }
  .hero__visual { order: -1; }
  .hero__img-wrap { max-width: 320px; }

  /* Benefits */
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }

  /* About */
  .about__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about__visual { order: -1; max-width: 480px; margin: 0 auto; width: 100%; }

  /* Products */
  .product__featured {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 32px;
  }

  /* Why */
  .why__inner { grid-template-columns: 1fr; gap: 40px; }

  /* How */
  .how__connector { display: none; }
  .how__steps { gap: 32px; }
  .how__step { min-width: 140px; }

  /* Footer */
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
  .footer__brand { grid-column: 1 / -1; }
}


/* ------------------------------------------------
   18. RESPONSIVE — MOBILE (≤ 600px)
   ------------------------------------------------ */
@media (max-width: 600px) {
  :root {
    --section-py: 48px;
    --container-px: 20px;
  }

  /* Benefits */
  .benefits__grid { grid-template-columns: 1fr; gap: 16px; }

  /* How */
  .how__steps { flex-direction: column; align-items: center; }
  .how__step { max-width: 100%; padding: 0; }

  /* Coming soon grid */
  .coming-soon__grid { grid-template-columns: 1fr; }

  /* Contact details */
  .contact__details { flex-direction: column; align-items: center; gap: 16px; }

  /* Footer */
  .footer__inner { grid-template-columns: 1fr; }
  .footer__brand { grid-column: 1; }

  /* Product */
  .product__featured { padding: 24px; }
}
