/* =========================================================
   GetDigitals.in — style.css
   Shared across ALL pages. Mobile-first. BEM naming.
   ========================================================= */

:root {
  --saffron: #E8650A;
  --saffron-dark: #B84E08;
  --saffron-light: #FFF3EA;
  --saffron-mid: #F28C3F;
  --green: #1A5C3A;
  --green-light: #EAF5EF;
  --green-mid: #2E7D52;
  --gold: #C9920C;
  --gold-light: #FFF8E1;
  --cream: #FFFBF5;
  --cream-dark: #F5EEE4;
  --ink: #1C1008;
  --ink-soft: #3D2B1A;
  --muted: #7A6555;
  --border: #E5D9CF;
  --white: #FFFFFF;

  --shadow-card: 0 2px 12px rgba(28,16,8,0.07);
  --shadow-hover: 0 8px 32px rgba(232,101,10,0.13);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 100px;

  --font-display: 'Sora', sans-serif;
  --font-body: 'Nunito', sans-serif;

  --max: 1200px;
}

/* -------- RESET -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; color: inherit; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--ink); margin: 0; line-height: 1.15; letter-spacing: -0.01em; }
p { margin: 0; }
ul { list-style: none; padding: 0; margin: 0; }
::selection { background: var(--saffron); color: #fff; }

/* -------- UTILS -------- */
.has-dot-pattern {
  background-image: radial-gradient(var(--border) 1px, transparent 1px);
  background-size: 20px 20px;
  background-color: var(--cream);
}
.wave-divider { display: block; line-height: 0; margin: -1px 0; }
.wave-divider svg { display: block; width: 100%; height: 60px; }

/* =========================================================
   ANNOUNCE BAR
   ========================================================= */
.announce {
  background: var(--green);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
}
.announce__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 10px 20px;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.announce__link {
  color: #FFE9D2;
  border-bottom: 1px dashed rgba(255,255,255,.5);
  font-weight: 700;
  transition: color .2s;
}
.announce__link:hover { color: #fff; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255, 251, 245, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: padding .25s ease;
}
.nav__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 24px;
  height: 72px;
  transition: height .25s ease;
}
.nav--shrink .nav__inner { height: 56px; padding: 8px 20px; }

.nav__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.nav__logo-get { color: var(--ink); }
.nav__logo-digitals { color: var(--saffron); }
.nav__logo-in { color: var(--muted); font-weight: 600; }

.nav__links {
  display: none;
  gap: 24px;
  align-items: center;
  margin-left: auto;
}
.nav__link {
  font-weight: 600;
  font-size: 14px;
  color: var(--ink-soft);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color .15s;
  position: relative;
}
.nav__link:hover { color: var(--saffron); }

.nav__item--has-menu { position: relative; }
.nav__dropdown {
  position: absolute;
  top: calc(100% + 18px);
  left: -16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  box-shadow: 0 20px 40px rgba(28,16,8,.1);
  padding: 10px;
  min-width: 240px;
  display: flex;
  flex-direction: column;
  gap: 2px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: all .2s ease;
}
.nav__dropdown a {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink-soft);
  transition: all .15s;
}
.nav__dropdown a:hover { background: var(--saffron-light); color: var(--saffron-dark); }
.nav__item--has-menu:hover .nav__dropdown,
.nav__item--has-menu:focus-within .nav__dropdown {
  opacity: 1; visibility: visible; transform: translateY(0);
}

.nav__cta {
  display: none;
  background: var(--green);
  color: #fff;
  padding: 10px 18px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 14px;
  font-family: var(--font-display);
  align-items: center;
  gap: 8px;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(26,92,58,.25);
}
.nav__cta:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(26,92,58,.35); }

.nav__hamburger {
  margin-left: auto;
  padding: 8px;
  color: var(--ink);
}

@media (min-width: 1024px) {
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; margin-left: 8px; }
  .nav__hamburger { display: none; }
}

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0;
  background: var(--cream);
  z-index: 100;
  transform: translateX(100%);
  transition: transform .3s ease;
  padding: 80px 32px 40px;
  overflow-y: auto;
}
.mobile-menu.is-open { transform: translateX(0); }
.mobile-menu__close {
  position: absolute; top: 20px; right: 20px;
  padding: 8px;
  color: var(--ink);
}
.mobile-menu__nav { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu__nav a {
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  border-bottom: 1px solid var(--border);
}
.mobile-menu__nav a:hover { background: var(--saffron-light); color: var(--saffron-dark); }
.mobile-menu__cta {
  margin-top: 24px;
  background: var(--green);
  color: #fff !important;
  text-align: center;
  border: none !important;
  border-radius: var(--radius-pill) !important;
}

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease;
  white-space: nowrap;
  cursor: pointer;
  text-align: center;
}
.btn--primary {
  background: var(--green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(26,92,58,.3);
  animation: pulse-cta 2.6s ease-in-out infinite;
}
.btn--primary:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: 0 10px 28px rgba(26,92,58,.35); }
@keyframes pulse-cta {
  0%, 100% { box-shadow: 0 4px 14px rgba(26,92,58,.3); }
  50% { box-shadow: 0 4px 14px rgba(26,92,58,.3), 0 0 0 8px rgba(26,92,58,.0); }
  70% { box-shadow: 0 4px 14px rgba(26,92,58,.3), 0 0 0 14px rgba(26,92,58,0); }
}
.btn--ghost {
  background: #fff;
  color: var(--ink);
  border: 1.5px solid var(--border);
}
.btn--ghost:hover { border-color: var(--saffron); color: var(--saffron-dark); transform: translateY(-2px); }
.btn--link {
  background: transparent;
  color: var(--ink-soft);
  padding: 14px 8px;
  border-bottom: 2px solid transparent;
  border-radius: 0;
}
.btn--link:hover { color: var(--saffron-dark); border-bottom-color: var(--saffron); }

.btn--white { background: #fff; color: var(--saffron-dark); }
.btn--white:hover { transform: translateY(-2px); box-shadow: 0 10px 28px rgba(0,0,0,.15); }
.btn--ghost-light { background: transparent; color: #fff; border: 1.5px solid rgba(255,255,255,.5); }
.btn--ghost-light:hover { background: rgba(255,255,255,.1); border-color: #fff; }
.btn--link-light { color: #fff; border-bottom: 2px solid transparent; padding: 14px 8px; border-radius: 0; }
.btn--link-light:hover { border-bottom-color: #fff; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding: 48px 20px 72px;
  overflow: hidden;
}
.hero__blob {
  position: absolute; top: -80px; right: -140px;
  width: 500px; height: 500px;
  pointer-events: none;
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
  position: relative;
}

.hero__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: var(--gold-light);
  color: var(--gold);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(38px, 6vw, 64px);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
}
.hero__title-accent {
  color: var(--saffron);
  position: relative;
  display: inline-block;
}
.hero__underline {
  position: absolute;
  bottom: -6px; left: 0;
  width: 100%; height: 12px;
}
.hero__sub {
  font-size: 18px;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 32px;
  line-height: 1.55;
}
.hero__ctas {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}
.hero__trust {
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}

/* Hero visual – bento */
.hero__visual {
  position: relative;
  min-height: 340px;
}
.bento {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  background: #fff;
  padding: 18px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  transform: rotate(-1deg);
}
.bento__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: var(--radius-md);
  background: var(--cream);
  border: 1px solid var(--border);
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.bento__card:hover {
  transform: translateY(-4px) rotate(1deg);
  border-color: var(--saffron);
  box-shadow: var(--shadow-hover);
}
.bento__card--a { background: #FFF3EA; }
.bento__card--b { background: #EAF5EF; }
.bento__card--c { background: #FFF8E1; }
.bento__card--d { background: #F5EEE4; }
.bento__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: #fff;
  color: var(--saffron-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
}
.bento__name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  color: var(--ink);
}
.bento__count {
  font-size: 13px;
  color: var(--ink-soft);
  font-weight: 600;
}
.hero__badge {
  position: absolute;
  background: #fff;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border);
  z-index: 2;
}
.hero__badge--top { top: -10px; right: -8px; color: var(--saffron-dark); transform: rotate(3deg); }
.hero__badge--bottom { bottom: -14px; left: -12px; color: var(--green); transform: rotate(-2deg); }

@media (min-width: 900px) {
  .hero { padding: 72px 20px 96px; }
  .hero__inner { grid-template-columns: 1.1fr 1fr; gap: 64px; }
}

/* =========================================================
   STATS
   ========================================================= */
.stats {
  background: var(--green);
  color: #fff;
  padding: 40px 20px;
}
.stats__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  text-align: center;
}
.stats__item { display: flex; flex-direction: column; gap: 4px; }
.stats__num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 40px);
  color: #fff;
}
.stats__cap { font-size: 13px; color: rgba(255,255,255,.75); font-weight: 600; }
@media (min-width: 768px) {
  .stats__inner { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================
   SECTION HEADERS
   ========================================================= */
.section {
  max-width: var(--max);
  margin: 0 auto;
  padding: 72px 20px;
}
.section--cream { background: var(--cream-dark); max-width: none; padding: 72px 20px; }
.section--cream > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.section__head { text-align: center; max-width: 720px; margin: 0 auto 48px; }
.section__title { font-size: clamp(28px, 4vw, 40px); font-weight: 800; margin-bottom: 12px; }
.section__sub { color: var(--ink-soft); font-size: 17px; }
.section__foot { text-align: center; margin-top: 40px; }

/* =========================================================
   PRODUCTS GRID
   ========================================================= */
.products {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .products { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .products { grid-template-columns: repeat(3, 1fr); } }

.product {
  position: relative;
  background: #fff;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform .2s, box-shadow .2s, border-color .2s;
  overflow: hidden;
}
.product::before {
  content: '';
  position: absolute; left: 0; top: 20%;
  width: 4px; height: 0;
  background: var(--saffron);
  border-radius: 0 4px 4px 0;
  transition: height .25s ease;
}
.product:hover {
  transform: translateY(-6px);
  border-color: var(--saffron);
  box-shadow: var(--shadow-hover);
}
.product:hover::before { height: 60%; }

.product__icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--saffron-light);
  color: var(--saffron-dark);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.product__name { font-size: 20px; font-weight: 700; }
.product__desc { color: var(--ink-soft); font-size: 14.5px; flex-grow: 1; }
.product__price { margin-top: 8px; font-family: var(--font-display); }
.product__old { text-decoration: line-through; color: var(--muted); font-weight: 600; font-size: 14px; margin-right: 6px; }
.product__new { color: var(--saffron-dark); font-weight: 800; font-size: 22px; }
.product__link { color: var(--green); font-weight: 700; font-size: 14px; margin-top: 4px; }

/* =========================================================
   HOW (steps)
   ========================================================= */
.how {
  background: var(--saffron-light);
  padding: 72px 20px;
}
.how > * { max-width: var(--max); margin-left: auto; margin-right: auto; }
.steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  counter-reset: step;
}
@media (min-width: 768px) {
  .steps { grid-template-columns: repeat(4, 1fr); position: relative; }
  .steps::before {
    content: '';
    position: absolute;
    top: 32px; left: 10%; right: 10%;
    border-top: 2px dashed var(--saffron);
    z-index: 0;
    opacity: .4;
  }
}
.step {
  text-align: center;
  position: relative;
  z-index: 1;
}
.step__num {
  display: inline-flex;
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--saffron);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 26px;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  box-shadow: 0 6px 20px rgba(232,101,10,.3);
}
.step__title { font-size: 17px; margin-bottom: 6px; }
.step__desc { color: var(--ink-soft); font-size: 14px; }

/* =========================================================
   WHY US
   ========================================================= */
.why {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 640px) { .why { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .why { grid-template-columns: repeat(3, 1fr); } }

.why__tile {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  border-radius: var(--radius-md);
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
}
.why__tile:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.why__icon {
  width: 44px; height: 44px;
  border-radius: var(--radius-sm);
  background: var(--green-light);
  color: var(--green);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.why__tile h3 { font-size: 16px; font-weight: 700; }
.why__tile p { color: var(--ink-soft); font-size: 14px; }

/* =========================================================
   FEATURED
   ========================================================= */
.featured {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .featured { grid-template-columns: repeat(3, 1fr); } }

.feat {
  position: relative;
  padding: 32px 28px 36px;
  border-radius: var(--radius-lg);
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-height: 320px;
  transition: transform .25s, box-shadow .25s;
}
.feat:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(28,16,8,.2); }
.feat--reels { background: linear-gradient(135deg, #1A1A2E 0%, #2B1B3D 100%); }
.feat--ebooks { background: linear-gradient(135deg, #0F3324 0%, #1A5C3A 100%); }
.feat--video { background: linear-gradient(135deg, #3B0D16 0%, #6E1A28 100%); }

.feat__badge {
  position: absolute;
  top: 20px; right: 20px;
  padding: 6px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.feat__badge--hot { background: var(--saffron); color: #fff; }
.feat__badge--new { background: var(--gold); color: #fff; }
.feat__badge--save { background: var(--green-mid); color: #fff; }
.feat__icon { font-size: 40px; margin-bottom: 8px; }
.feat__title { color: #fff; font-size: 22px; font-weight: 800; }
.feat__desc { color: rgba(255,255,255,.78); font-size: 14.5px; flex-grow: 1; }
.feat__price { font-family: var(--font-display); font-weight: 800; font-size: 28px; color: #fff; }
.feat__old { text-decoration: line-through; font-size: 15px; opacity: .6; font-weight: 600; margin-left: 6px; }
.feat__cta {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 14px;
  color: #FFCC9C;
  border-bottom: 1px solid rgba(255,204,156,.4);
  display: inline-block;
  width: fit-content;
}

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tm {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) { .tm { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .tm { grid-template-columns: repeat(3, 1fr); } }

.tm__card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .2s;
}
.tm__card:hover { transform: translateY(-4px); }
.tm__card--tilt { transform: rotate(-0.8deg); }
.tm__card--tilt:hover { transform: rotate(-0.8deg) translateY(-4px); }
.tm__head { display: flex; gap: 12px; align-items: center; }
.tm__avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.tm__name { font-weight: 700; font-size: 15px; }
.tm__city { font-size: 12.5px; color: var(--muted); font-weight: 600; }
.tm__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }
.tm__body { color: var(--ink-soft); font-size: 14.5px; font-style: italic; line-height: 1.55; }
.tm__tag {
  background: var(--saffron-light);
  color: var(--saffron-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  align-self: flex-start;
}

/* =========================================================
   FOUNDER
   ========================================================= */
.founder {
  background: var(--green);
  color: #fff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.founder__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 960px) { .founder__inner { grid-template-columns: 1.2fr 1fr; } }
.founder__eyebrow {
  display: inline-block;
  padding: 6px 14px;
  background: rgba(255,255,255,.1);
  color: #FFE9D2;
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: .05em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.founder__title { color: #fff; font-size: clamp(28px, 3.8vw, 40px); margin-bottom: 20px; }
.founder__text p { margin-bottom: 16px; color: rgba(255,255,255,.88); font-size: 16px; line-height: 1.7; }
.founder__link {
  display: inline-block;
  margin-top: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  color: #FFCC9C;
  border-bottom: 1px solid rgba(255,204,156,.4);
  padding-bottom: 2px;
  transition: color .2s;
}
.founder__link:hover { color: #fff; }

.founder__photo {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.06);
  border: 2px dashed rgba(255,255,255,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: rotate(1.5deg);
}
.founder__photo-inner { text-align: center; padding: 32px; }
.founder__photo-inner span { font-size: 48px; display: block; margin-bottom: 12px; }
.founder__photo-inner p { font-family: var(--font-display); font-weight: 700; color: rgba(255,255,255,.85); margin-bottom: 6px; }
.founder__photo-inner small { color: rgba(255,255,255,.5); font-size: 12px; }

/* =========================================================
   FAQ
   ========================================================= */
.faq {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
}
@media (min-width: 768px) { .faq { grid-template-columns: repeat(2, 1fr); } }
.faq__item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 4px 22px;
  transition: border-color .2s, box-shadow .2s;
}
.faq__item[open] { border-color: var(--saffron); box-shadow: var(--shadow-card); }
.faq__item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 0;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__toggle {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--saffron-light);
  position: relative;
  flex-shrink: 0;
  transition: background .2s, transform .3s;
}
.faq__toggle::before, .faq__toggle::after {
  content: '';
  position: absolute;
  background: var(--saffron-dark);
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
}
.faq__toggle::before { width: 10px; height: 2px; }
.faq__toggle::after { width: 2px; height: 10px; transition: transform .25s; }
.faq__item[open] .faq__toggle { background: var(--saffron); }
.faq__item[open] .faq__toggle::before { background: #fff; }
.faq__item[open] .faq__toggle::after { transform: translate(-50%, -50%) rotate(90deg); background: #fff; }
.faq__item p {
  color: var(--ink-soft);
  padding-bottom: 18px;
  font-size: 15px;
  line-height: 1.65;
}

/* =========================================================
   BLOG PREVIEW
   ========================================================= */
.blog-preview {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .blog-preview { grid-template-columns: repeat(3, 1fr); } }
.bp {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: transform .2s, box-shadow .2s;
  position: relative;
  overflow: hidden;
}
.bp:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }
.bp__bar {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 4px;
}
.bp__bar--saffron { background: var(--saffron); }
.bp__bar--green { background: var(--green); }
.bp__bar--gold { background: var(--gold); }
.bp__cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-top: 8px;
}
.bp h3 { font-size: 18px; line-height: 1.3; }
.bp__meta { color: var(--muted); font-size: 13px; font-weight: 600; margin-top: auto; }

/* =========================================================
   FINAL CTA
   ========================================================= */
.final {
  background: var(--saffron);
  color: #fff;
  text-align: center;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}
.final__blob { position: absolute; width: 500px; height: 500px; pointer-events: none; }
.final__blob--l { top: -140px; left: -180px; }
.final__blob--r { bottom: -160px; right: -180px; }
.final__title {
  color: #fff;
  font-size: clamp(28px, 4vw, 40px);
  max-width: 760px;
  margin: 0 auto 16px;
  position: relative;
}
.final__sub { color: rgba(255,255,255,.9); font-size: 17px; margin-bottom: 32px; position: relative; }
.final__ctas {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
}

/* =========================================================
   FOOTER
   ========================================================= */
.ft {
  background: var(--ink);
  color: rgba(255,255,255,.7);
  padding: 64px 20px 28px;
}
.ft__inner {
  max-width: var(--max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
@media (min-width: 640px) { .ft__inner { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .ft__inner { grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 48px; } }
.ft__logo {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: #fff;
  display: inline-block;
  margin-bottom: 14px;
}
.ft__tagline { color: rgba(255,255,255,.65); font-size: 14.5px; margin-bottom: 20px; line-height: 1.6; }
.ft__social { display: flex; gap: 10px; margin-bottom: 18px; }
.ft__social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.75);
  transition: background .2s, color .2s;
}
.ft__social a:hover { background: var(--saffron); color: #fff; }
.ft__made { font-size: 13px; color: rgba(255,255,255,.45); }
.ft__col h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: .04em;
  text-transform: uppercase;
  font-family: var(--font-display);
}
.ft__col ul { display: flex; flex-direction: column; gap: 10px; }
.ft__col a {
  color: rgba(255,255,255,.68);
  font-size: 14.5px;
  transition: color .2s;
}
.ft__col a:hover { color: var(--saffron-mid); }
.ft__contact li { font-size: 14.5px; line-height: 1.6; }

.ft__bottom {
  max-width: var(--max);
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.08);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 13px;
  color: rgba(255,255,255,.45);
}

/* =========================================================
   MOBILE STICKY CTA
   ========================================================= */
.mobile-sticky {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--green);
  color: #fff;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 15px;
  z-index: 40;
  box-shadow: 0 -6px 24px rgba(0,0,0,.18);
  transition: transform .3s ease;
}
.mobile-sticky.is-hidden { transform: translateY(100%); }
@media (min-width: 768px) { .mobile-sticky { display: none; } }

/* Add bottom padding on mobile so sticky doesn't cover content */
@media (max-width: 767px) {
  body { padding-bottom: 56px; }
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* hero headline entrance */
.hero__eyebrow, .hero__title, .hero__sub, .hero__ctas, .hero__trust {
  animation: rise .7s ease both;
}
.hero__title { animation-delay: .08s; }
.hero__sub { animation-delay: .16s; }
.hero__ctas { animation-delay: .24s; }
.hero__trust { animation-delay: .32s; }
.hero__visual { animation: rise .9s ease .2s both; }
@keyframes rise {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* =========================================================
   PRODUCT PAGE EXTRAS (shared — used in reels/ebooks/etc.)
   ========================================================= */
.breadcrumb {
  max-width: var(--max);
  margin: 0 auto;
  padding: 24px 20px 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 600;
}
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: var(--saffron-dark); }
.breadcrumb span { margin: 0 8px; color: var(--border); }

.pdp-hero {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px 20px 64px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}
@media (min-width: 900px) { .pdp-hero { grid-template-columns: 1.2fr 1fr; gap: 56px; } }
.pdp-hero h1 { font-size: clamp(30px, 4.5vw, 46px); font-weight: 800; margin-bottom: 16px; letter-spacing: -0.02em; }
.pdp-hero__lede { font-size: 17px; color: var(--ink-soft); margin-bottom: 24px; max-width: 560px; }
.pdp-hero__preview {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.pdp-hero__preview h3 { font-size: 18px; margin-bottom: 14px; }
.pdp-hero__preview ul { display: flex; flex-direction: column; gap: 8px; }
.pdp-hero__preview li { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px dashed var(--border); font-size: 14.5px; }
.pdp-hero__preview li:last-child { border-bottom: 0; }
.pdp-hero__preview strong { color: var(--saffron-dark); font-family: var(--font-display); }

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.cat-grid__tile {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 20px;
}
.cat-grid__tile h4 { font-size: 15px; margin-bottom: 4px; }
.cat-grid__tile .count { color: var(--saffron-dark); font-family: var(--font-display); font-weight: 800; font-size: 20px; }
.cat-grid__tile p { color: var(--ink-soft); font-size: 13.5px; margin-top: 6px; }

.bundle-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.bundle-table th, .bundle-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border);
  font-size: 14.5px;
}
.bundle-table th { background: var(--cream-dark); font-family: var(--font-display); font-weight: 700; width: 40%; }
.bundle-table tr:last-child td, .bundle-table tr:last-child th { border-bottom: 0; }

.pill-row { display: flex; flex-wrap: wrap; gap: 10px; }
.pill {
  padding: 8px 16px;
  border-radius: var(--radius-pill);
  background: var(--cream-dark);
  border: 1px solid var(--border);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--ink-soft);
}

.related {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) { .related { grid-template-columns: repeat(3, 1fr); } }

/* Contact cards (for contact page) */
.contact-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 32px;
}
@media (min-width: 768px) { .contact-cards { grid-template-columns: repeat(3, 1fr); } }
.contact-card {
  padding: 32px 28px;
  border-radius: var(--radius-lg);
  color: #fff;
  text-align: center;
  transition: transform .2s, box-shadow .2s;
}
.contact-card:hover { transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,.15); }
.contact-card--whatsapp { background: var(--green); }
.contact-card--call { background: var(--saffron); }
.contact-card--email { background: var(--ink); }
.contact-card__icon {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(255,255,255,.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.contact-card h3 { color: #fff; font-size: 20px; margin-bottom: 8px; }
.contact-card .number { font-size: 18px; font-weight: 700; font-family: var(--font-display); margin-bottom: 16px; display: block; }

/* Print fallback */
@media print {
  .nav, .mobile-sticky, .announce, .final, .ft { display: none; }
}
