
/* ── TOKENS ─────────────────────────────────── */
:root {
  --white:       #FFFFFF;
  --off-white:   #F8F7F4;
  --light:       #EEF0EC;
  --mid:         #D4D9CF;
  --body-color:  #4A4F48;
  --dark:        #1E2320;
  --green:       #2D5A3D;
  --green-mid:   #3D7A52;
  --green-lt:    #5A9E6F;
  --accent:      #C8A96E;
  --accent-lt:   #DFC08B;

  /* Override per category — set by Blade below */
  --brand:       var(--green);
  --brand-dark:  #1A3D28;
  --brand-lt:    var(--green-lt);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Outfit', sans-serif;
  --radius-sm: 6px; --radius-md: 12px; --radius-lg: 24px;
  --shadow-card: 0 2px 24px rgba(30,35,32,.07);
  --shadow-lift: 0 8px 48px rgba(30,35,32,.13);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--dark); background: var(--white); overflow-x: hidden; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { text-decoration: none; color: inherit; }

/* ── HERO ────────────────────────────────────── */
.fhero {
  background: var(--brand);
  position: relative; overflow: hidden;
  padding: 5rem 0 0;
}
.fhero::before {
  content: ''; position: absolute; top: -30%; right: -5%;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 65%);
  pointer-events: none;
}
.fhero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.fhero__inner {
  max-width: 1100px; margin: 0 auto; padding: 0 2rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center;
  position: relative; z-index: 2;
}
.fhero__left { padding-bottom: 5rem; color: var(--white); }
.fhero__tag {
  display: inline-flex; align-items: center; gap: .5rem;
  font-size: .68rem; font-weight: 600; letter-spacing: .16em; text-transform: uppercase;
  color: rgba(255,255,255,.7);
  background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.18);
  padding: .35rem .9rem; border-radius: 100px; margin-bottom: 1.5rem;
}
.fhero__tag span { width: 6px; height: 6px; border-radius: 50%; background: var(--accent-lt); }
.fhero__h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem); font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 1.2rem;
  animation: fadeUp .5s ease both;
}
.fhero__h1 em { font-style: italic; color: var(--accent-lt); }
.fhero__sub {
  font-size: .95rem; font-weight: 300; line-height: 1.8;
  color: rgba(255,255,255,.65); max-width: 400px; margin-bottom: 2.5rem;
  animation: fadeUp .5s .1s ease both;
}
.fhero__checks { list-style: none; display: flex; flex-direction: column; gap: .65rem; margin-bottom: 2.8rem; animation: fadeUp .5s .2s ease both; }
.fhero__check { display: flex; align-items: center; gap: .6rem; font-size: .85rem; color: rgba(255,255,255,.85); }
.fhero__check svg { width: 18px; height: 18px; flex-shrink: 0; }
.fhero__check circle { stroke: var(--accent-lt); }
.fhero__check path   { stroke: var(--accent-lt); }
.fhero__cta {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent); color: var(--dark);
  font-size: .9rem; font-weight: 700; padding: 1rem 2.2rem;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background .25s, transform .2s;
  animation: fadeUp .5s .3s ease both;
  text-decoration: none;
}
.fhero__cta:hover { background: var(--accent-lt); transform: translateY(-2px); color: var(--dark); }
.fhero__cta svg { width: 16px; height: 16px; stroke: currentColor; fill: none; }

/* Hero right — product image area */
.fhero__right {
  display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
  padding-bottom: 2rem; position: relative;
  animation: fadeUp .5s .15s ease both;
}
.fhero__img-wrap {
  position: relative; height: 340px;
  display: flex; align-items: flex-end; justify-content: center;
}
.fhero__img { width: 100%; height: 100%; object-fit: contain; drop-shadow: 0 20px 40px rgba(0,0,0,.3); }
.fhero__img-glow {
  position: absolute; bottom: -20px; left: 50%; transform: translateX(-50%);
  width: 180px; height: 40px; border-radius: 50%;
  background: rgba(0,0,0,.25); filter: blur(16px);
}
/* floating trust chip */
.fhero__chip {
  position: absolute; top: 1.5rem; right: -1rem;
  background: var(--white); border-radius: var(--radius-md);
  padding: 1rem 1.2rem; box-shadow: var(--shadow-lift);
  min-width: 140px;
}
.fhero__chip-num { font-family: var(--font-display); font-size: 1.8rem; font-weight: 700; color: var(--brand); line-height: 1; }
.fhero__chip-lbl { font-size: .68rem; color: var(--body-color); opacity: .7; letter-spacing: .06em; margin-top: .2rem; }

/* ── PRODUCTS SECTION ───────────────────────── */
.fproducts { padding: 5rem 0; background: var(--white); }
.fproducts .inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.fsection-sup   { display: block; font-size: .7rem; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--brand); margin-bottom: .7rem; }
.fsection-title { font-family: var(--font-display); font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; line-height: 1.2; color: var(--dark); margin-bottom: .8rem; }
.fsection-title em { font-style: italic; color: var(--brand); }
.fsection-sub   { font-size: .9rem; font-weight: 300; line-height: 1.75; color: var(--body-color); max-width: 520px; }

.fproducts__header { margin-bottom: 3rem; }
.fproducts__grid   { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1.5rem; }

/* Product card */
.pcard {
  background: var(--off-white); border-radius: var(--radius-lg);
  border: 1.5px solid var(--light);
  overflow: hidden; display: flex; flex-direction: column;
  transition: box-shadow .3s, transform .3s, border-color .3s;
}
.pcard:hover { box-shadow: var(--shadow-lift); transform: translateY(-5px); border-color: var(--mid); }
.pcard__top {
  padding: 2rem 2rem 0;
  display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem;
}
.pcard__img-wrap { width: 90px; height: 110px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; }
.pcard__img { width: 100%; height: 100%; object-fit: contain; }
.pcard__meta { flex-grow: 1; }
.pcard__name { font-family: var(--font-display); font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: .4rem; line-height: 1.2; }

.pcard__body { padding: 1.4rem 2rem; flex-grow: 1; }
.pcard__features { list-style: none; display: flex; flex-direction: column; gap: .55rem; }
.pcard__feature { display: flex; align-items: flex-start; gap: .55rem; font-size: .82rem; color: var(--dark); }
.pcard__feature svg { width: 16px; height: 16px; flex-shrink: 0; margin-top: 2px; stroke: var(--green-lt); fill: none; }
.pcard__foot { padding: 1.4rem 2rem; border-top: 1px solid var(--light); }
.pcard__price-row { display: flex; align-items: flex-end; gap: .4rem; margin-bottom: 1rem; }
.pcard__price-from { font-size: .7rem; color: var(--body-color); opacity: .7; margin-bottom: .3rem; }
.pcard__price {
  font-family: var(--font-display); font-size: 2.2rem; font-weight: 700;
  color: var(--dark); line-height: 1;
}
.pcard__price sup { font-size: 1rem; vertical-align: super; }
.pcard__price sub { font-size: .9rem; vertical-align: baseline; }
.pcard__price-period { font-size: .75rem; color: var(--body-color); opacity: .6; margin-bottom: .25rem; }
.pcard__btn {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  width: 100%; background: var(--brand); color: var(--white);
  font-size: .85rem; font-weight: 600; letter-spacing: .04em;
  padding: .9rem; border: none; border-radius: var(--radius-sm);
  cursor: pointer; transition: background .25s, transform .2s;
  text-decoration: none;
}
.pcard__btn:hover { background: var(--dark); transform: translateY(-1px); color: var(--white); }
.pcard__btn svg { width: 15px; height: 15px; stroke: currentColor; fill: none; }
/* Popular badge */
.pcard--popular { border-color: var(--brand); }
.pcard__popular-badge {
  background: var(--brand); color: var(--white);
  font-size: .62rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase;
  text-align: center; padding: .4rem;
}

/* ── HOW IT WORKS ───────────────────────────── */
.fhow { padding: 5rem 0; background: var(--off-white); }
.fhow .inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.fhow__header { text-align: center; margin-bottom: 3.5rem; }
.fhow__grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.fhow__step { position: relative; }
.fhow__step-line {
  position: absolute; top: 22px; left: calc(50% + 22px); right: calc(-50% + 22px);
  height: 1px; background: var(--mid);
}
.fhow__step:last-child .fhow__step-line { display: none; }
.fhow__step-num {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--brand); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1rem; font-weight: 700;
  margin: 0 auto 1.2rem; position: relative; z-index: 1;
}
.fhow__step-title { font-family: var(--font-display); font-size: 1rem; font-weight: 700; text-align: center; margin-bottom: .5rem; }
.fhow__step-desc  { font-size: .8rem; font-weight: 300; line-height: 1.7; color: var(--body-color); text-align: center; }

/* ── TRUST STRIP ────────────────────────────── */
.ftrust { background: var(--dark); padding: 3.5rem 0; }
.ftrust .inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.ftrust__item { text-align: center; border-right: 1px solid rgba(255,255,255,.08); padding: 0 1rem; }
.ftrust__item:last-child { border-right: none; }
.ftrust__num   { font-family: var(--font-display); font-size: 2.4rem; font-weight: 700; color: var(--accent-lt); line-height: 1; margin-bottom: .3rem; }
.ftrust__label { font-size: .72rem; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.4); }

/* ── FAQ ────────────────────────────────────── */
.ffaq { padding: 5rem 0; background: var(--white); }
.ffaq .inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.ffaq__header { text-align: center; margin-bottom: 3rem; }
.accordion { display: flex; flex-direction: column; gap: .8rem; }
.acc-item { background: var(--off-white); border: 1.5px solid var(--light); border-radius: var(--radius-md); overflow: hidden; transition: border-color .2s; }
.acc-item.open { border-color: var(--brand); }
.acc-btn { width: 100%; background: none; border: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 1.4rem; gap: 1rem; text-align: left; }
.acc-q    { font-size: .88rem; font-weight: 600; color: var(--dark); }
.acc-icon { width: 26px; height: 26px; flex-shrink: 0; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: .9rem; color: var(--brand); font-weight: 700; transition: background .2s; }
.acc-item.open .acc-icon { background: var(--brand); color: var(--white); }
.acc-a { max-height: 0; overflow: hidden; font-size: .84rem; font-weight: 300; line-height: 1.75; color: var(--body-color); transition: max-height .35s ease, padding .35s ease; }
.acc-item.open .acc-a { max-height: 300px; padding: 0 1.4rem 1.3rem; }

/* ── FINAL CTA ──────────────────────────────── */
.ffinal {
  padding: 5rem 0;
  background: linear-gradient(145deg, var(--brand) 0%, var(--brand-dark) 100%);
  position: relative; overflow: hidden;
}
.ffinal::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,110,.12) 0%, transparent 65%);
  pointer-events: none;
}
.ffinal .inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; text-align: center; position: relative; z-index: 2; }
.ffinal__title { font-family: var(--font-display); font-size: clamp(1.8rem, 3.5vw, 2.8rem); font-weight: 700; color: var(--white); margin-bottom: 1rem; line-height: 1.2; }
.ffinal__title em { font-style: italic; color: var(--accent-lt); }
.ffinal__sub { font-size: .95rem; font-weight: 300; color: rgba(255,255,255,.65); margin-bottom: 2.5rem; }
.ffinal__btn {
  display: inline-flex; align-items: center; gap: .6rem;
  background: var(--accent); color: var(--dark);
  font-size: .9rem; font-weight: 700; padding: 1rem 2.5rem;
  border-radius: var(--radius-sm); border: none; cursor: pointer;
  transition: background .25s, transform .2s; text-decoration: none;
}
.ffinal__btn:hover { background: var(--accent-lt); transform: translateY(-2px); color: var(--dark); }
.ffinal__disclaimer { font-size: .7rem; color: rgba(255,255,255,.3); margin-top: 2rem; line-height: 1.7; }

/* ── FOOTER ─────────────────────────────────── */
.ffoot { background: #111713; padding: 2rem 0; border-top: 1px solid rgba(255,255,255,.06); }
.ffoot .inner { max-width: 1100px; margin: 0 auto; padding: 0 2rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.ffoot__logo  { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; color: var(--white); }
.ffoot__logo sup { color: var(--accent); }
.ffoot__links { display: flex; gap: 1.8rem; }
.ffoot__links a { font-size: .72rem; color: rgba(255,255,255,.35); transition: color .2s; }
.ffoot__links a:hover { color: var(--white); }
.ffoot__legal { font-size: .68rem; color: rgba(255,255,255,.2); }

/* ── ANIMATIONS ─────────────────────────────── */
@keyframes fadeUp { from{opacity:0;transform:translateY(20px)} to{opacity:1;transform:translateY(0)} }

/* ── RESPONSIVE ─────────────────────────────── */
@media (max-width: 992px) {
  .fhero__inner  { grid-template-columns: 1fr; padding-bottom: 3rem; }
  .fhero__right  { display: none; }
  .fhero::after  { display: none; }
  .fhero         { padding-bottom: 4rem; }
  .fhow__grid    { grid-template-columns: repeat(2,1fr); }
  .fhow__step-line { display: none; }
  .ftrust .inner { grid-template-columns: repeat(2,1fr); }
  .ftrust__item:nth-child(2) { border-right: none; }
  .fnav          { padding: .9rem 1.5rem; }
}
@media (max-width: 640px) {
  .fproducts__grid { grid-template-columns: 1fr; }
  .fhow__grid      { grid-template-columns: 1fr; }
  .ftrust .inner   { grid-template-columns: 1fr; }
  .ftrust__item    { border-right: none; border-bottom: 1px solid rgba(255,255,255,.08); padding: 1rem 0; }
  .ftrust__item:last-child { border-bottom: none; }
  .ffoot .inner    { flex-direction: column; text-align: center; }
}
.no-products {
  grid-column: 1 / -1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 1rem;
}

.no-products__card {
  background: var(--off-white);
  border: 1.5px solid var(--light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  text-align: center;
  max-width: 420px;
  box-shadow: var(--shadow-card);
}

.no-products__icon {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.no-products h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.6rem;
}

.no-products p {
  font-size: 0.85rem;
  color: var(--body-color);
  line-height: 1.6;
  margin-bottom: 1.5rem;
}