*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green: #2e7d32;
  --green-light: #43a047;
  --green-pale: linear-gradient(135deg, #e8d5ff 40%, #b6f2b9 100%);
  --green-mid: #c8e6c9;
  --amber: #f57f17;
  --amber-light: #fff8e1;
  --dark: #1a1a1a;
  --mid: #555;
  --muted: #888;
  --border: #30904d;
  --white: #fff;
  --radius: 14px;
  --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
}



/* ── NAV ── */
/* nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--border);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 100px;
} */


/* ── HERO ── */


.btn-store {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--dark);
  padding: 13px 22px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.92rem;
  transition:
    transform 0.2s,
    box-shadow 0.2s;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.btn-store:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.2);
}

.btn-store .store-icon {
  font-size: 1.4rem;
}

.btn-store small {
  display: block;
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--muted);
}

.hero-stat-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-stat {
  text-align: center;
}

.hero-stat strong {
  display: block;
  font-size: 1.8rem;
  font-weight: 900;
}

.hero-stat span {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ── TRUST BAR ── */
.trust-bar {
  background: var(--green-pale);
  border-bottom: 1px solid var(--green-mid);
  padding: 14px 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--green);
}

.trust-item .ti {
  font-size: 1.1rem;
}

/* ── SECTION BASICS ── */
section {
  padding: 80px 24px;
}

.section-label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 560px;
}

.text-center {
  text-align: center;
}

.text-center .section-sub {
  margin: 0 auto;
}

/* ── PROBLEM SECTION ── */
/* .problem {
  background: #fafafa;
} */

.problem-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.problem-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
}

.problem-card .icon {
  margin-bottom: 12px;
}

.problem-card .icon svg {
  width: 40px;
  height: 40px;
}

.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.problem-card p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* ── HIDDEN INGREDIENTS ── */
.ingredients {
  background: var(--white);
}

.ing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 48px;
}

.ing-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.ing-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.ing-card .ing-icon {
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.ing-card h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--dark);
}

.ing-card p {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.5;
}

.ing-card .found-in {
  margin-top: 10px;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--amber);
  background: var(--amber-light);
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
}

/* ── HOW IT WORKS ── */
.how {
  background: var(--green-pale);
}

.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 32px;
  margin-top: 52px;
}

.step {
  text-align: center;
}

.step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 1.3rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
}

.step h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.9rem;
  color: var(--mid);
}

.step-connector {
  display: none;
}

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 52px;
}

.feat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: box-shadow 0.2s;
}

.feat-card:hover {
  box-shadow: var(--shadow);
}

.feat-icon {
  font-size: 2rem;
  margin-bottom: 14px;
}

.feat-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.feat-card p {
  font-size: 0.9rem;
  color: var(--mid);
}

/* ── SOCIAL PROOF ── */
.social-proof {
  background: var(--dark);
  color: var(--white);
}

.social-proof .section-title {
  color: var(--white);
}

.social-proof .section-sub {
  color: rgba(255, 255, 255, 0.6);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.review-card {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.review-stars {
  color: #ffd600;
  font-size: 1rem;
  margin-bottom: 12px;
}

.review-card p {
  font-size: 0.92rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
  margin-bottom: 16px;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
}

.reviewer-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviewer-name {
  font-weight: 700;
  font-size: 0.88rem;
}

.reviewer-tag {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── COMMUNITY ── */
.community {
  background: var(--white);
  padding-bottom: 20px;
}

.community-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 48px;
}

.comm-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  text-align: center;
}

.comm-card .comm-icon {
  margin-bottom: 14px;
}

.comm-card .comm-icon svg {
  width: 50px;
  height: 50px;
}

.comm-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.comm-card p {
  font-size: 0.87rem;
  color: var(--mid);
}

.blog-section {
  padding: 100px 0 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.blog-card {
  position: relative;
  border-radius: 24px;
  background: #fff;
  transition: all 0.35s ease;
  overflow: hidden;
}

/* .blog-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #524a86, #4caf50, #a664d9);
} */

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.blog-card h3 {
  font-size: 24px;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #001e2b;
  font-weight: 700;
}

.blog-card p {
  color: #6b7280;
  line-height: 1.8;
  font-size: 16px;
  margin: 0;
}

.blog-meta {
  margin-bottom: 18px;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 14px;
  border-radius: 50px;
  background: rgb(89 65 149 / 13%);
  color: #594195;
  font-size: 14px;
  font-weight: 600;
}
.article-hero {
  padding: 100px 0 0;
  text-align: center;
}

.article-inner {
  background: linear-gradient(135deg, #e9d5ff 40%, #bdeec2 100%);
  padding: 80px 24px;
}

.article-hero .crumb {
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(33, 37, 41, 0.7);
  margin-bottom: 18px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.article-hero h1 {
  font-size: clamp(1.8rem, 4.5vw, 2.9rem);
  font-weight: 900;
  line-height: 1.18;
  max-width: 800px;
  margin: 0 auto 18px;
}

.article-hero h1 span {
  color: #2e7d32;
}

.article-meta {
  font-size: 0.85rem;
  color: rgba(33, 37, 41, 0.7);
}

.article-body {
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 24px 40px;
}

.article-body p {
  font-size: 1.02rem;
  color: #333;
  margin-bottom: 22px;
  line-height: 1.75;
}

.article-body h2 {
  font-size: 1.5rem;
  font-weight: 800;
  margin: 44px 0 16px;
  line-height: 1.3;
}

.article-body strong {
  color: var(--dark);
}

.article-body a {
  color: var(--green);
  font-weight: 600;
  border-bottom: 1.5px solid var(--green-mid);
}

.article-body a:hover {
  border-color: var(--green);
}

.lead {
  font-size: 1.15rem !important;
  color: var(--mid) !important;
}

.callout {
  background: var(--green-mid);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.97rem;
}

.callout strong {
  color: var(--green);
}

.ing-entry {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 28px;
  margin: 22px 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.ing-entry:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.ing-entry .ing-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.ing-entry .ing-num {
  width: 34px;
  height: 34px;
  min-width: 34px;
  border-radius: 50%;
  background: var(--green);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ing-entry h3 {
  font-size: 1.15rem;
  font-weight: 800;
}

.ing-entry h3 small {
  font-weight: 600;
  color: var(--muted);
  font-size: 0.85rem;
}

.ing-entry p {
  font-size: 0.95rem;
  color: var(--mid);
  margin-bottom: 12px;
}

.found-in {
  font-size: 0.8rem;
  font-weight: 600;
  color: #701fd2;
  background: #e9d5ff;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
}

.alias {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--green);
  background: #deffe3;
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  margin: 0 8px 8px 0;
}

.cta-section {
  background: linear-gradient(135deg, #1b5e20, #2e7d32);
  color: var(--white);
  text-align: center;
  padding: 70px 24px;
}

.cta-section h2 {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  font-weight: 900;
  margin-bottom: 14px;
}

.cta-section p {
  font-size: 1.02rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 520px;
  margin: 0 auto 36px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section {
  background: linear-gradient(135deg, #701fd2, #2e7d32);
  color: var(--white);
  text-align: center;
  padding: 90px 24px;
}

.cta-section h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  margin-bottom: 16px;
}

.cta-section p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 40px;
}

.cta-btns {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--white);
  color: var(--green);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 800;
  font-size: 1rem;
  transition: transform 0.2s;
}

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

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.5);
  padding: 14px 28px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.btn-outline:hover {
  border-color: var(--white);
}

.scenario-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 18px 0;
}
.scenario-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}
.scenario-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}
.scenario-card h4 .ico {
  margin-right: 8px;
}
.scenario-card p {
  font-size: 0.92rem;
  color: var(--mid);
  margin-bottom: 0;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}

.compare-table th,
.compare-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.compare-table th {
  background: var(--green-mid);
  font-weight: 700;
  color: var(--green);
}

.compare-table td:first-child {
  font-weight: 600;
}
.lead {
  font-size: 1.15rem !important;
  color: var(--mid) !important;
}

.callout {
  background: var(--green-mid);
  border-left: 4px solid var(--green);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.97rem;
}

.callout strong {
  color: var(--green);
}

.warn-callout {
  background: var(--amber-light);
  border-left: 4px solid var(--amber);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 20px 24px;
  margin: 28px 0;
  font-size: 0.97rem;
}

.tip-card {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  margin: 18px 0;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}

.tip-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow);
}

.tip-card h4 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.tip-card h4 .ico {
  margin-right: 8px;
}

.tip-card p {
  font-size: 0.92rem;
  color: var(--mid);
  margin-bottom: 0;
}

.region-table {
  width: 100%;
  border-collapse: collapse;
  margin: 28px 0;
  font-size: 0.92rem;
}

.region-table th,
.region-table td {
  padding: 13px 16px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  vertical-align: top;
}

.region-table th {
  background: var(--green-mid);
  font-weight: 700;
  color: var(--green);
}

.region-table td:first-child {
  font-weight: 700;
  white-space: nowrap;
}
/* ── FAQ ── */
.faq {
  background: #fafafa;
}

.faq-list {
  max-width: 720px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
}

.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  padding: 18px 20px;
  font-size: 0.95rem;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--dark);
}

.faq-q .arrow {
  transition: transform 0.2s;
  font-size: 0.8rem;
  color: var(--muted);
}

.faq-q.open .arrow {
  transform: rotate(180deg);
}

.faq-a {
  display: none;
  padding: 0 20px 18px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.7;
}

.faq-a.open {
  display: block;
}


