 :root {
    --green: #80BB01;
    --green-dark: #5d8a00;
    --green-deep: #1a2e05;
    --green-light: #e8f4c8;
    --green-xlight: #f4faeb;
    --cream: #f8f3e8;
    --cream-dark: #ede5d0;
    --gold: #b8780f;
    --gold-light: #f5e8c8;
    --text: #1e2a0e;
    --text-muted: #5a6a3a;
    --white: #ffffff;
    --radius: 14px;
    --radius-sm: 8px;
  }
  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    font-family: 'Outfit', sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
  }
  h1, h2, h3, h4 {
    font-family: 'Fraunces', serif;
    line-height: 1.2;
  }
  img { max-width: 100%; display: block; }
  a { color: inherit; text-decoration: none; }

/* ── NAV ─────────────────────────────────────────── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
  height: 64px;
  background: rgba(26,46,5,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(128,187,1,0.2);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 24px rgba(0,0,0,0.2); }

/* Logo */
.nav-logo {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
}
.nav-logo span { color: #80bb01; }

/* ── Desktop links — VISIBLE by default ── */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.875rem;
  font-weight: 400;
  transition: color 0.2s;
}
.nav-links a:hover { color: #80bb01; }
.nav-links .nav-cta {
  background: #80bb01;
  color: #1a2e05;
  padding: 8px 20px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.82rem;
  white-space: nowrap;
}
.nav-links .nav-cta:hover { background: #95d000; color: #1a2e05; }

/* ── Hamburger — hidden on desktop ── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background 0.2s;
}
.nav-hamburger:hover { background: rgba(128,187,1,0.15); }
.nav-hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease, width 0.3s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile panel ── */
.nav-mobile-panel {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: rgba(26,46,5,0.98);
  border-bottom: 2px solid rgba(128,187,1,0.25);
  padding: 1.5rem 2rem 2rem;
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  visibility: hidden;
}
.nav-mobile-panel.open {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
  visibility: visible;
}
.nav-mobile-panel a {
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
  font-weight: 500;
  padding: 0.85rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s, padding-left 0.2s;
}
.nav-mobile-panel a:hover { color: #80BB01; padding-left: 4px; }
.nav-mobile-panel a::after { content: '→'; font-size: 0.85rem; opacity: 0.35; }
.nav-mobile-panel a:last-child {
  border-bottom: none;
  margin-top: 1rem;
  background: #80BB01;
  color: #1a2e05;
  padding: 1rem 1.5rem;
  border-radius: 100px;
  justify-content: center;
  font-weight: 700;
}
.nav-mobile-panel a:last-child::after { content: none; }
.nav-mobile-panel a:last-child:hover { background: #95d000; padding-left: 1.5rem; }

/* ── Responsive — mobile only ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
}

/* ── WordPress admin bar offsets ── */
.admin-bar nav { top: 32px; }
.admin-bar .nav-mobile-panel { top: calc(64px + 32px); }
@media (max-width: 782px) {
  .admin-bar nav { top: 46px; }
  .admin-bar .nav-mobile-panel { top: calc(64px + 46px); }
}
.wrapper {
  margin-top: 0 !important;
  padding-top: 0 !important;
}
/* ── Hero offset ── */
.page-id-9299 .hero { padding-top: 64px !important; }
.page-id-9299.admin-bar .hero { padding-top: 96px !important; }

  /* HERO */
  .hero {
  padding-top: calc(64px + 4rem) !important;
}
  .hero {
  min-height: 92vh;
  background: var(--green-deep);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: calc(64px + 4rem) 5% 4rem; /* ← nav height + breathing room, left/right/bottom unchanged */
}
  .hero-bg {
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 70% at 70% 50%, rgba(128,187,1,0.12) 0%, transparent 60%),
      radial-gradient(ellipse 40% 50% at 20% 80%, rgba(128,187,1,0.08) 0%, transparent 50%);
  }
  .hero-pattern {
    position: absolute; inset: 0; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2380BB01' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
  .hero-content { position: relative; max-width: 600px; }
  .hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(128,187,1,0.15);
    border: 1px solid rgba(128,187,1,0.35);
    color: var(--green);
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
  }
  .hero-badge::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--green); }
  .hero h1 {
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1.5rem;
    line-height: 1.1;
  }
  .hero h1 em {
    font-style: italic;
    color: var(--green);
    font-weight: 300;
  }
  .hero-desc {
    color: rgba(255,255,255,0.65);
    font-size: 1.05rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 480px;
    line-height: 1.8;
  }
  .hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
  .btn-primary {
    background: var(--green);
    color: var(--green-deep);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
    letter-spacing: 0.01em;
    display: inline-flex; align-items: center; gap: 8px;
  }
  .btn-primary:hover { background: #95d000; transform: translateY(-1px); }
  .btn-secondary {
    background: transparent;
    color: rgba(255,255,255,0.8);
    padding: 13px 28px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 400;
    font-size: 0.9rem;
    transition: all 0.2s;
  }
  .btn-secondary:hover { border-color: rgba(255,255,255,0.5); color: white; }
  .hero-pills {
    display: flex; gap: 10px; flex-wrap: wrap;
    margin-top: 3rem;
  }
  .pill {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.7);
    padding: 6px 14px;
    border-radius: 40px;
    font-size: 0.78rem;
    font-weight: 400;
  }
  .hero-image-area {
    position: absolute; right: 5%; top: 50%;
    transform: translateY(-50%);
    width: min(420px, 38%);
  }
  .hero-circle {
    width: 100%; padding-bottom: 100%;
    border-radius: 50%;
    background: radial-gradient(ellipse at 30% 30%, rgba(128,187,1,0.25), rgba(128,187,1,0.05));
    border: 1px solid rgba(128,187,1,0.2);
    position: relative;
    overflow: hidden;
  }
  .hero-circle img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
    opacity: 0.85;
  }
  .hero-stat-float {
    position: absolute;
    background: var(--green-deep);
    border: 1px solid rgba(128,187,1,0.3);
    border-radius: 12px;
    padding: 12px 16px;
    text-align: center;
  }
  .hero-stat-float.s1 { bottom: 15%; left: -14%; }
  .hero-stat-float.s2 { top: 8%; right: -8%; }
  .hero-stat-float strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.6rem;
    color: var(--green);
    font-weight: 500;
    line-height: 1;
  }
  .hero-stat-float span { font-size: 0.7rem; color: rgba(255,255,255,0.5); }

  /* TRUST BAR */
  .trust-bar {
    background: var(--white);
    padding: 1.5rem 5%;
    display: flex; align-items: center; justify-content: center;
    gap: clamp(1.5rem, 4vw, 4rem);
    flex-wrap: wrap;
    border-bottom: 1px solid var(--cream-dark);
  }
  .trust-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; font-weight: 500; color: var(--text-muted);
  }
  .trust-icon {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--green-xlight);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; flex-shrink: 0;
  }

  /* SECTION BASE */
  section { padding: 6rem 5%; }
  .section-tag {
    display: inline-block;
    font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--green-dark);
    background: var(--green-light);
    padding: 5px 14px; border-radius: 40px;
    margin-bottom: 1.2rem;
  }
  .section-title {
    font-size: clamp(1.9rem, 4vw, 2.8rem);
    font-weight: 500;
    color: var(--green-deep);
    margin-bottom: 1rem;
    line-height: 1.2;
  }
  .section-title em { font-style: italic; color: var(--green-dark); font-weight: 300; }
  .section-sub {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 560px;
    line-height: 1.8;
    font-weight: 300;
  }

  /* ABOUT A2 */
  .about-a2 {
    background: var(--white);
  }
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
  }
  .about-visual {
    position: relative;
  }
  .about-img-frame {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 4/5;
    background: var(--green-light);
  }
  .about-img-frame img {
    width: 100%; height: 100%;
    object-fit: cover;
  }
  .about-card-float {
    position: absolute;
    bottom: -20px; right: -20px;
    background: var(--green-deep);
    border-radius: var(--radius);
    padding: 20px 24px;
    max-width: 220px;
  }
  .about-card-float p { font-size: 0.82rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
  .about-card-float strong {
    display: block;
    font-family: 'Fraunces', serif;
    font-size: 1.8rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 4px;
  }
  .about-text {}
  .about-text p {
    font-size: 1rem;
    color: var(--text-muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1.2rem;
  }
  .about-text p strong {
    color: var(--text);
    font-weight: 500;
  }
  .research-link {
    display: inline-flex; align-items: center; gap: 8px;
    color: var(--green-dark);
    font-size: 0.875rem;
    font-weight: 500;
    border: 1px solid var(--green);
    padding: 9px 20px;
    border-radius: 40px;
    transition: all 0.2s;
    margin-top: 0.5rem;
  }
  .research-link:hover { background: var(--green-light); }
  .highlight-box {
    background: var(--green-xlight);
    border-left: 3px solid var(--green);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: 16px 20px;
    margin: 1.5rem 0;
  }
  .highlight-box p {
    font-size: 0.9rem !important;
    margin: 0 !important;
    color: var(--green-deep) !important;
  }

  /* A2 vs A1 */
  .comparison { background: var(--cream); }
  .compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 0;
    margin-top: 3rem;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: 0 2px 40px rgba(26,46,5,0.08);
  }
  .compare-col {
    padding: 0;
  }
  .compare-header {
    padding: 2rem 2.5rem 1.5rem;
    text-align: center;
  }
  .compare-col.a2 .compare-header { background: var(--green-deep); }
  .compare-col.a1 .compare-header { background: #3d2f1f; }
  .compare-col.a2 .compare-header h3 { color: var(--green); }
  .compare-col.a1 .compare-header h3 { color: #c9956a; }
  .compare-header h3 {
    font-size: 1.4rem;
    font-weight: 500;
    margin-bottom: 0.3rem;
  }
  .compare-header p {
    font-size: 0.78rem;
    opacity: 0.6;
    color: white;
  }
  .compare-header .badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 4px 12px;
    border-radius: 40px;
    margin-bottom: 1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }
  .compare-col.a2 .badge { background: rgba(128,187,1,0.2); color: var(--green); }
  .compare-col.a1 .badge { background: rgba(201,149,106,0.2); color: #c9956a; }
  .compare-rows {
    background: var(--white);
  }
  .compare-row {
    padding: 1rem 2.5rem;
    border-bottom: 1px solid var(--cream-dark);
    font-size: 0.88rem;
    line-height: 1.5;
    display: flex; align-items: flex-start; gap: 10px;
  }
  .compare-row:last-child { border-bottom: none; }
  .compare-col.a2 .compare-row { color: var(--text); }
  .compare-col.a1 .compare-row { color: var(--text-muted); }
  .row-icon { font-size: 1rem; flex-shrink: 0; margin-top: 2px; }
  .compare-divider {
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    background: var(--cream-dark);
    padding: 0 1rem;
    position: relative;
  }
  .vs-circle {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--cream);
    border: 2px solid var(--cream-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
    letter-spacing: 0.05em;
    flex-shrink: 0;
    z-index: 1;
  }
  .compare-divider-line {
    flex: 1; width: 1px; background: var(--cream-dark);
  }
  .compare-row-labels {
    display: flex; flex-direction: column;
    background: var(--cream-dark);
    justify-content: center;
  }
  .row-label {
    padding: 1rem 1rem;
    border-bottom: 1px solid rgba(0,0,0,0.07);
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--text-muted);
    white-space: nowrap;
  }

  /* WHY SHOP APNI */
  .why { background: var(--green-deep); }
  .why .section-title { color: var(--white); }
  .why .section-title em { color: var(--green); }
  .why .section-tag { background: rgba(128,187,1,0.15); color: var(--green); }
  .why .section-sub { color: rgba(255,255,255,0.55); }
  .why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5px;
    margin-top: 3.5rem;
    border: 1.5px solid rgba(128,187,1,0.15);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .why-card {
    background: rgba(255,255,255,0.04);
    padding: 2rem 1.8rem;
    transition: background 0.25s;
    position: relative;
  }
  .why-card:hover { background: rgba(128,187,1,0.07); }
  .why-icon {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    line-height: 1;
  }
  .why-card h4 {
    font-family: 'Fraunces', serif;
    font-size: 1.05rem;
    color: var(--white);
    font-weight: 500;
    margin-bottom: 0.5rem;
  }
  .why-card p {
    font-size: 0.84rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.7;
    font-weight: 300;
  }
  .why-philosophy {
    margin-top: 3rem;
    text-align: center;
    font-family: 'Fraunces', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: rgba(255,255,255,0.4);
    font-weight: 300;
  }
  .why-philosophy strong {
    color: var(--green);
    font-style: normal;
    font-weight: 500;
  }

  /* BELAHI */
  .belahi { background: var(--white); }
  .belahi-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    margin-top: 3.5rem;
  }
  .belahi-text p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.9;
    font-weight: 300;
    margin-bottom: 1rem;
  }
  .belahi-tags {
    display: flex; flex-wrap: wrap; gap: 8px;
    margin-top: 1.5rem;
  }
  .belahi-tag {
    background: var(--green-xlight);
    color: var(--green-dark);
    font-size: 0.78rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 40px;
    border: 1px solid var(--green-light);
  }
  .belahi-chart-box {
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--cream-dark);
  }
  .belahi-chart-title {
    background: var(--cream);
    padding: 14px 20px;
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-bottom: 1px solid var(--cream-dark);
  }

  /* PRICING */
  .pricing { background: var(--cream); }
  .pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3.5rem;
  }
  .price-card {
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--cream-dark);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    transition: transform 0.2s, box-shadow 0.2s;
  }
  .price-card:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(26,46,5,0.08); }
  .price-card.featured {
    background: var(--green-deep);
    border-color: var(--green);
  }
  .price-popular {
    position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
    background: var(--green);
    color: var(--green-deep);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 5px 16px;
    border-radius: 40px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
  }
  .price-qty {
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 0.8rem;
  }
  .price-card.featured .price-qty { color: rgba(255,255,255,0.5); }
  .price-amount {
    font-family: 'Fraunces', serif;
    font-size: 3.2rem;
    font-weight: 500;
    color: var(--green-deep);
    line-height: 1;
    margin-bottom: 0.2rem;
  }
  .price-card.featured .price-amount { color: var(--green); }
  .price-amount sup { font-size: 1.2rem; vertical-align: super; }
  .price-per {
    font-size: 0.78rem;
    color: var(--text-muted);
    margin-bottom: 1.8rem;
  }
  .price-card.featured .price-per { color: rgba(255,255,255,0.45); }
  .price-savings {
    display: inline-block;
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.72rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 40px;
    margin-bottom: 1.5rem;
  }
  .price-card.featured .price-savings { background: rgba(128,187,1,0.2); color: var(--green); }
  .price-btn {
    display: block;
    background: var(--green-deep);
    color: var(--white);
    padding: 12px;
    border-radius: 40px;
    font-size: 0.875rem;
    font-weight: 500;
    transition: all 0.2s;
    border: 1px solid transparent;
  }
  .price-card.featured .price-btn {
    background: var(--green);
    color: var(--green-deep);
    font-weight: 600;
  }
  .price-btn:hover { opacity: 0.85; }
  .pricing-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.82rem;
    color: var(--text-muted);
    font-weight: 300;
  }
  .delivery-cities {
    margin-top: 3rem;
    background: var(--green-xlight);
    border: 1px solid var(--green-light);
    border-radius: var(--radius);
    padding: 1.5rem 2rem;
    display: flex; align-items: center; gap: 1rem; flex-wrap: wrap;
    justify-content: center;
  }
  .delivery-cities span { font-size: 0.8rem; font-weight: 500; color: var(--green-dark); }
  .city-pill {
    background: var(--white);
    border: 1px solid var(--green-light);
    color: var(--text-muted);
    font-size: 0.8rem;
    padding: 4px 14px;
    border-radius: 40px;
  }

  /* FAQ */
  .faq { background: var(--white); }
  .faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-top: 3rem;
  }
  .faq-item {
    border: 1px solid var(--cream-dark);
    border-radius: var(--radius);
    overflow: hidden;
  }
  .faq-q {
    display: flex; align-items: center; justify-content: space-between; gap: 1rem;
    padding: 1.1rem 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    background: var(--white);
    user-select: none;
    transition: background 0.15s;
  }
  .faq-q:hover { background: var(--cream); }
  .faq-q.open { background: var(--green-xlight); color: var(--green-deep); }
  .faq-chevron {
    width: 20px; height: 20px; flex-shrink: 0;
    fill: none; stroke: currentColor; stroke-width: 2;
    transition: transform 0.25s;
  }
  .faq-q.open .faq-chevron { transform: rotate(180deg); }
  .faq-a {
    display: none;
    padding: 0 1.5rem 1.2rem;
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.8;
    font-weight: 300;
    background: var(--green-xlight);
    border-top: 1px solid var(--green-light);
  }
  .faq-a a { color: var(--green-dark); text-decoration: underline; }

  /* GALLERY */
  .gallery { background: var(--cream); overflow: hidden; }
  .gallery-track {
    display: flex; gap: 1.5rem;
    margin-top: 3rem;
    overflow: hidden;
  }
  .gallery-img {
    flex-shrink: 0;
    width: 320px; height: 220px;
    border-radius: var(--radius);
    overflow: hidden;
    background: var(--cream-dark);
  }
  .gallery-img img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
  }
  .gallery-img:hover img { transform: scale(1.04); }

  /* CTA */
  .cta-section {
    background: var(--green-deep);
    padding: 6rem 5%;
    text-align: center;
    position: relative;
    overflow: hidden;
  }
  .cta-section::before {
    content: '';
    position: absolute; inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(128,187,1,0.1) 0%, transparent 70%);
  }
  .cta-section > * { position: relative; }
  .cta-section h2 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: var(--white);
    font-weight: 500;
    margin-bottom: 1rem;
  }
  .cta-section h2 em { color: var(--green); font-style: italic; font-weight: 300; }
  .cta-section p {
    color: rgba(255,255,255,0.55);
    font-size: 1rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 500px;
    margin-left: auto; margin-right: auto;
  }
  .cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-white {
    background: var(--white);
    color: var(--green-deep);
    padding: 14px 32px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.2s;
  }
  .btn-white:hover { background: var(--cream); }
  .btn-outline-white {
    background: transparent;
    color: rgba(255,255,255,0.75);
    padding: 13px 28px;
    border-radius: 40px;
    border: 1px solid rgba(255,255,255,0.3);
    font-size: 0.9rem;
    transition: all 0.2s;
  }
  .btn-outline-white:hover { border-color: rgba(255,255,255,0.6); color: white; }

  /* FOOTER */
  footer {
    background: #101c04;
    padding: 4rem 5% 2rem;
    color: rgba(255,255,255,0.5);
  }
  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    margin-bottom: 2rem;
  }
  .footer-brand h3 {
    font-family: 'Fraunces', serif;
    font-size: 1.4rem;
    color: var(--green);
    font-weight: 500;
    margin-bottom: 0.8rem;
  }
  .footer-brand p {
    font-size: 0.82rem;
    line-height: 1.8;
    font-weight: 300;
    max-width: 240px;
    margin-bottom: 1.2rem;
  }
  .footer-contact-item {
    font-size: 0.82rem;
    margin-bottom: 0.4rem;
    display: flex; gap: 8px; align-items: flex-start;
  }
  .footer-contact-item a:hover { color: var(--green); }
  .footer-col h4 {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.7);
    margin-bottom: 1.2rem;
  }
  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 0.5rem; }
  .footer-col a { font-size: 0.82rem; transition: color 0.2s; }
  .footer-col a:hover { color: var(--green); }
  .footer-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: 1rem;
    font-size: 0.78rem;
  }
  .footer-bottom a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
  .footer-bottom a:hover { color: var(--green); }
  .social-links { display: flex; gap: 14px; }
  .social-links a {
    width: 32px; height: 32px; border-radius: 50%;
    background: rgba(255,255,255,0.07);
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
    transition: background 0.2s;
  }
  .social-links a:hover { background: var(--green); color: var(--green-deep); }

  /* SCROLL REVEAL */
  .reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.65s, transform 0.65s; }
  .reveal.visible { opacity: 1; transform: none; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    .hero { padding: 5rem 5% 3rem; }
    .hero-image-area { display: none; }
    .about-grid, .belahi-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .about-visual { order: -1; }
    .compare-grid { grid-template-columns: 1fr; }
    .compare-divider { display: none; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin-left: auto; margin-right: auto; }
    .faq-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .nav-links { display: none; }
    .nav-phone { display: none; }
  }
  @media (max-width: 580px) {
    .hero h1 { font-size: 2.4rem; }
    .footer-top { grid-template-columns: 1fr; }
    .trust-bar { gap: 1rem; }
  }
.city-tab-btn {
  background: var(--white);
  border: 1px solid var(--cream-dark);
  color: var(--text-muted);
  padding: 8px 22px;
  border-radius: 40px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}
.city-tab-btn:hover { border-color: var(--green); color: var(--green-dark); }
.city-tab-btn.active {
  background: var(--green-deep);
  color: var(--green);
  border-color: var(--green-deep);
}

/* Dynamic A2 Milk city landing pages */
.a2city-page {
  background: var(--cream);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  overflow-x: hidden;
}

.a2city-page h1,
.a2city-page h2,
.a2city-page h3 {
  font-family: 'Fraunces', serif;
  line-height: 1.15;
  letter-spacing: 0;
}

.a2city-page a {
  text-decoration: none;
}

.a2city-hero {
  position: relative;
  min-height: 78vh;
  display: flex;
  align-items: center;
  padding: calc(64px + 5rem) 5% 5rem;
  background: var(--green-deep);
  overflow: hidden;
}

.admin-bar .a2city-hero {
  padding-top: calc(96px + 5rem);
}

.a2city-hero-bg,
.a2city-hero-pattern {
  position: absolute;
  inset: 0;
}

.a2city-hero-bg {
  background:
    radial-gradient(ellipse 60% 70% at 72% 48%, rgba(128,187,1,0.13) 0%, transparent 62%),
    radial-gradient(ellipse 44% 54% at 12% 88%, rgba(184,120,15,0.14) 0%, transparent 56%);
}

.a2city-hero-pattern {
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%2380BB01' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.a2city-hero-inner {
  position: relative;
  width: min(760px, 100%);
}

.a2city-eyebrow,
.a2city-section-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 40px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.a2city-eyebrow {
  margin-bottom: 1.35rem;
  padding: 7px 16px;
  color: var(--green);
  background: rgba(128,187,1,0.14);
  border: 1px solid rgba(128,187,1,0.34);
}

.a2city-hero h1 {
  max-width: 720px;
  margin: 0 0 1.35rem;
  color: var(--white);
  font-size: clamp(2.45rem, 5vw, 4.45rem);
  font-weight: 500;
}

.a2city-hero-desc {
  max-width: 600px;
  margin: 0 0 1.35rem;
  color: rgba(255,255,255,0.66);
  font-size: 1.04rem;
  font-weight: 300;
  line-height: 1.8;
}

.a2city-sectors {
  max-width: 680px;
  margin: 0 0 2rem;
  color: rgba(255,255,255,0.72);
  font-size: 0.92rem;
  line-height: 1.7;
}

.a2city-sectors strong {
  color: var(--green);
  font-weight: 600;
}

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

.a2city-cta,
.a2city-price-badge,
.a2city-guardian-link,
.a2city-no-vendors a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 40px;
  padding: 12px 24px;
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.2;
}

.a2city-cta {
  background: var(--green);
  color: var(--green-deep);
  border: 1px solid var(--green);
}

.a2city-cta:hover {
  background: #95d000;
  color: var(--green-deep);
}

.a2city-price-badge {
  color: rgba(255,255,255,0.76);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
}

.a2city-trust-bar {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: clamp(1rem, 3vw, 3rem);
  padding: 1.4rem 5%;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dark);
}

.a2city-trust-item {
  color: var(--text-muted);
  font-size: 0.86rem;
  font-weight: 500;
}

.a2city-guardians,
.a2city-why {
  padding: 5.5rem 5%;
}

.a2city-guardians {
  background: var(--white);
}

.a2city-why {
  background: var(--cream);
}

.a2city-section-head {
  max-width: 720px;
  margin-bottom: 3rem;
}

.a2city-section-tag {
  margin-bottom: 1rem;
  padding: 6px 14px;
  color: var(--green-dark);
  background: var(--green-light);
}

.a2city-section-head h2,
.a2city-cta-section h2 {
  margin: 0 0 1rem;
  color: var(--green-deep);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  font-weight: 500;
}

.a2city-section-head p {
  margin: 0;
  color: var(--text-muted);
  font-size: 1rem;
  font-weight: 300;
  line-height: 1.8;
}

.a2city-guardian-grid,
.a2city-why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.25rem;
}

.a2city-guardian-card,
.a2city-no-vendors,
.a2city-why-grid article {
  border-radius: var(--radius);
  border: 1px solid var(--cream-dark);
  background: var(--white);
}

.a2city-guardian-card {
  padding: 1.7rem;
  transition: transform 0.2s, box-shadow 0.2s;
}

.a2city-guardian-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,46,5,0.08);
}

.a2city-guardian-card h3,
.a2city-no-vendors h3,
.a2city-why-grid h3 {
  margin: 0 0 0.7rem;
  color: var(--green-deep);
  font-size: 1.18rem;
  font-weight: 500;
}

.a2city-guardian-card p,
.a2city-no-vendors p,
.a2city-why-grid p,
.a2city-cta-section p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  font-weight: 300;
  line-height: 1.75;
}

.a2city-guardian-link,
.a2city-no-vendors a {
  margin-top: 1.35rem;
  min-height: 40px;
  padding: 10px 18px;
  color: var(--green-deep);
  background: var(--green-xlight);
  border: 1px solid var(--green-light);
}

.a2city-guardian-link:hover,
.a2city-no-vendors a:hover {
  background: var(--green-light);
  color: var(--green-deep);
}

.a2city-no-vendors {
  max-width: 680px;
  padding: 2rem;
  background: var(--green-xlight);
  border-color: var(--green-light);
}

.a2city-why-grid article {
  padding: 1.8rem;
}

.a2city-cta-section {
  position: relative;
  overflow: hidden;
  padding: 5.5rem 5%;
  text-align: center;
  background: var(--green-deep);
}

.a2city-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(128,187,1,0.11) 0%, transparent 70%);
}

.a2city-cta-section > * {
  position: relative;
}

.a2city-cta-section h2 {
  color: var(--white);
}

.a2city-cta-section p {
  max-width: 520px;
  margin: 0 auto 2rem;
  color: rgba(255,255,255,0.58);
}

.a2city-cta-light {
  background: var(--white);
  color: var(--green-deep);
  border-color: var(--white);
}

.a2city-cta-light:hover {
  background: var(--cream);
}

@media (max-width: 900px) {
  .a2city-hero {
    min-height: auto;
    padding: calc(64px + 3.5rem) 5% 4rem;
  }

  .admin-bar .a2city-hero {
    padding-top: calc(110px + 3.5rem);
  }

  .a2city-guardians,
  .a2city-why,
  .a2city-cta-section {
    padding: 4rem 5%;
  }
}

@media (max-width: 580px) {
  .a2city-hero h1 {
    font-size: 2.35rem;
  }

  .a2city-hero-actions,
  .a2city-cta,
  .a2city-price-badge {
    width: 100%;
  }

  .a2city-trust-bar {
    align-items: flex-start;
    flex-direction: column;
  }
}
