/* ==========================================================================
   Life Bloom Tutorials — stylesheet
   --------------------------------------------------------------------------
   1.  Design tokens
   2.  Base / reset
   3.  Layout primitives
   4.  Typography helpers
   5.  Buttons
   6.  Header & navigation
   7.  Hero
   8.  Offer cards
   9.  Journey (how it works)
   10. Why-us grid
   11. Proof band
   12. Testimonials
   13. FAQ
   14. Final CTA
   15. Footer
   16. Demo dialog
   17. Reveal animations
   18. Responsive
   19. Reduced motion
   ========================================================================== */

/* ==========================================================================
   1. Design tokens
   ========================================================================== */

:root {
  /* Brand palette */
  --deepwood: #0a3124;
  --deepwood-2: #082a1f;
  --fern: #0f4230;
  --honey: #e0a83f;
  --honey-deep: #c78f2a;
  --paper: #f8f5ee;
  --stone: #efe8d9;
  --sage: #c9d5c8;
  --ink: #0c1f18;
  --ink-soft: #41544b;

  /* Derived surfaces */
  --paper-dim: rgba(248, 245, 238, 0.72);
  --line-dark: rgba(248, 245, 238, 0.16);
  --line-light: rgba(12, 31, 24, 0.12);

  /* Type */
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", system-ui, -apple-system, sans-serif;

  /* Geometry & motion */
  --radius: 18px;
  --maxw: 1140px;
  --header-h: 70px;
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ==========================================================================
   2. Base / reset
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

p {
  margin: 0;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* Keep anchored sections clear of the sticky header. */
[id] {
  scroll-margin-top: calc(var(--header-h) + 12px);
}

:focus-visible {
  outline: 3px solid var(--honey);
  outline-offset: 3px;
  border-radius: 6px;
}

/* Icon sprite host — holds <symbol> defs, never rendered. */
.sprite {
  display: none;
}

/* ==========================================================================
   3. Layout primitives
   ========================================================================== */

.wrap {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 28px;
}

/* Vertical rhythm — kept separate from colour so nothing cancels out. */
.section {
  padding: 96px 0;
}

.bg-deep {
  background: var(--deepwood);
  color: var(--paper);
}

.bg-paper {
  background: var(--paper);
  color: var(--ink);
}

.bg-stone {
  background: var(--stone);
  color: var(--ink);
}

/* ==========================================================================
   4. Typography helpers
   ========================================================================== */

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--honey-deep);
}

.eyebrow::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

.bg-deep .eyebrow {
  color: var(--honey);
}

/* Section heading block */
.head {
  max-width: 640px;
  margin: 0 0 56px;
}

.head h2 {
  font-size: clamp(2rem, 4.4vw, 3rem);
}

.head p {
  margin-top: 18px;
  color: var(--ink-soft);
  font-size: 1.12rem;
}

.bg-deep .head p {
  color: var(--paper-dim);
}

.head--center {
  margin: 0 auto 44px;
  text-align: center;
}

.head--center .eyebrow {
  justify-content: center;
}

/* ==========================================================================
   5. Buttons
   ========================================================================== */

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 26px;
  border: 1.5px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    transform 0.25s var(--ease),
    background 0.25s var(--ease),
    box-shadow 0.25s var(--ease),
    color 0.25s var(--ease);
}

.btn .icon {
  width: 19px;
  height: 19px;
  flex: none;
}

.btn-primary {
  background: var(--honey);
  color: var(--deepwood);
  box-shadow: 0 10px 24px -12px rgba(224, 168, 63, 0.9);
}

.btn-primary:hover {
  transform: translateY(-2px);
  background: #e9b452;
  box-shadow: 0 16px 30px -12px rgba(224, 168, 63, 0.95);
}

.btn-ghost {
  background: transparent;
  color: var(--paper);
  border-color: var(--line-dark);
}

.btn-ghost:hover {
  transform: translateY(-2px);
  border-color: var(--paper);
  background: rgba(248, 245, 238, 0.06);
}

/* ==========================================================================
   6. Header & navigation
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(10, 49, 36, 0.82);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line-dark);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
}

.nav .btn {
  padding: 11px 20px;
  font-size: 0.92rem;
}

.brand {
  display: flex;
  align-items: center;
  color: var(--paper);
  text-decoration: none;
}

/*
 * The wordmark is a white-on-transparent PNG, so it only reads on the dark
 * surfaces (deepwood / deepwood-2) it is used on. Sized by height, with width
 * left auto so the 2.11:1 aspect is never distorted.
 */
.brand .logo {
  width: auto;
  height: 42px;
}

.brand--footer .logo {
  height: 48px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}

.nav-links a {
  color: var(--paper-dim);
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--paper);
}

/* ==========================================================================
   7. Hero
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  background: var(--deepwood);
  color: var(--paper);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(120% 80% at 82% -10%, rgba(224, 168, 63, 0.16), transparent 60%),
    radial-gradient(90% 70% at -5% 110%, rgba(15, 66, 48, 0.9), transparent 55%);
}

.hero-sprig {
  position: absolute;
  right: -40px;
  top: 40px;
  width: 340px;
  max-width: 42vw;
  opacity: 0.5;
  color: var(--honey);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  max-width: 760px;
  /* Vertical only — horizontal padding comes from .wrap so it isn't zeroed. */
  padding-top: 118px;
  padding-bottom: 96px;
}

.hero h1 {
  margin: 0 0 26px;
  font-size: clamp(3rem, 8.2vw, 5.6rem);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -0.03em;
}

.hero h1 .grow {
  color: var(--sage);
}

.hero h1 .bloom {
  color: var(--honey);
  font-style: italic;
  font-weight: 500;
}

.hero-sub {
  max-width: 560px;
  margin: 0 0 38px;
  color: var(--paper-dim);
  font-size: clamp(1.1rem, 2.3vw, 1.4rem);
  line-height: 1.5;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* Trust strip */
.trust {
  position: relative;
  border-top: 1px solid var(--line-dark);
}

.trust-inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px 26px;
  /* Vertical only — horizontal padding comes from .wrap so it isn't zeroed. */
  padding-top: 22px;
  padding-bottom: 22px;
  color: var(--paper-dim);
  font-size: 0.96rem;
}

.trust-inner .lead {
  color: var(--paper);
  font-weight: 600;
}

.trust-countries {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px 22px;
}

.trust-countries span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot {
  width: 6px;
  height: 6px;
  flex: none;
  border-radius: 50%;
  background: var(--honey);
}

/* ==========================================================================
   8. Offer cards
   ========================================================================== */

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

.card {
  padding: 34px 30px;
  background: #fff;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.card:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 168, 63, 0.5);
  box-shadow: 0 24px 44px -28px rgba(12, 31, 24, 0.4);
}

.card-ico {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  margin-bottom: 22px;
  border-radius: 13px;
  background: var(--deepwood);
  color: var(--honey);
}

.card-ico .icon {
  width: 26px;
  height: 26px;
}

.card h3 {
  margin-bottom: 8px;
  font-size: 1.42rem;
}

.card .kicker {
  margin-bottom: 18px;
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.taglist {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.taglist li {
  padding: 6px 13px;
  border-radius: 999px;
  background: var(--stone);
  color: var(--deepwood);
  font-size: 0.9rem;
  font-weight: 500;
}

/* ==========================================================================
   9. Journey — the growing stem
   ========================================================================== */

.journey {
  position: relative;
  margin-top: 20px;
}

.stem {
  position: absolute;
  top: 8px;
  bottom: 34px;
  left: 31px;
  width: 3px;
  border-radius: 3px;
  background: linear-gradient(var(--fern), var(--honey));
  transform: scaleY(0);
  transform-origin: top center;
  transition: transform 1.5s var(--ease);
}

.journey.is-active .stem {
  transform: scaleY(1);
}

.step {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 26px;
  padding-bottom: 44px;
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 0.7s var(--ease),
    transform 0.7s var(--ease);
}

.step:last-child {
  padding-bottom: 0;
}

.step.is-visible {
  opacity: 1;
  transform: none;
}

.node {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 2px solid var(--honey);
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 0 0 6px var(--stone);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.5rem;
  color: var(--deepwood);
}

.bg-paper .node {
  box-shadow: 0 0 0 6px var(--paper);
}

.node .leaf {
  position: absolute;
  top: -9px;
  right: -11px;
  width: 22px;
  height: 22px;
  color: var(--fern);
  transform: rotate(18deg);
}

.step-body {
  padding-top: 9px;
}

.step-body h3 {
  margin-bottom: 7px;
  font-size: 1.4rem;
}

.step-body p {
  max-width: 460px;
  color: var(--ink-soft);
}

/* ==========================================================================
   10. Why parents choose us
   ========================================================================== */

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.why {
  position: relative;
  padding: 32px 28px;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
}

.why .num {
  display: block;
  margin-bottom: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-style: italic;
  font-size: 1.1rem;
  color: var(--honey-deep);
}

.why h3 {
  margin-bottom: 8px;
  font-size: 1.28rem;
}

.why p {
  color: var(--ink-soft);
  font-size: 1rem;
}

/* ==========================================================================
   11. Proof band
   ========================================================================== */

.proof-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 44px;
}

.stat .fig {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(3rem, 7vw, 4.6rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--honey);
}

.stat .lab {
  max-width: 180px;
  margin-top: 10px;
  color: var(--paper-dim);
  font-size: 1rem;
}

.quote {
  padding-left: 30px;
  border-left: 2px solid var(--honey);
}

.quote blockquote {
  margin: 0;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  line-height: 1.34;
  color: var(--paper);
}

.quote cite {
  display: block;
  margin-top: 20px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 1rem;
  color: var(--honey);
}

/* ==========================================================================
   12. Testimonials
   ========================================================================== */

/* Masonry wall (CSS columns) so text and image cards of differing heights
   pack tidily without ragged rows. */
.testimonials-grid {
  columns: 3;
  column-gap: 24px;
}

.testimonial {
  display: flex;
  flex-direction: column;
  break-inside: avoid;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #fff;
  transition:
    transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease),
    border-color 0.3s var(--ease);
}

.testimonial:hover {
  transform: translateY(-4px);
  border-color: rgba(224, 168, 63, 0.5);
  box-shadow: 0 24px 44px -28px rgba(12, 31, 24, 0.4);
}

/* Text cards carry the padding; image cards are full-bleed. */
.testimonial--text {
  padding: 30px 28px;
}

.testimonial .stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
  color: var(--honey);
}

.testimonial .stars svg {
  width: 17px;
  height: 17px;
}

.testimonial blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  line-height: 1.55;
}

.testimonial .context {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.92rem;
  font-style: italic;
}

.testimonial .attr {
  display: flex;
  align-items: center;
  gap: 13px;
  padding-top: 24px;
}

.testimonial .avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: none;
  border-radius: 50%;
  background: var(--deepwood);
  color: var(--honey);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.05rem;
}

.testimonial .who {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.testimonial .who .name {
  font-weight: 600;
  color: var(--ink);
}

.testimonial .who .loc {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

/* WhatsApp source mark — the quotes were all shared over WhatsApp. */
.testimonial .via {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: none;
  margin-left: auto;
  align-self: flex-start;
  border-radius: 50%;
  background: var(--stone);
  color: var(--fern);
}

.testimonial .via svg {
  width: 17px;
  height: 17px;
}

/* --- Image testimonial (an actual screenshot, click to enlarge) --- */
.testimonial--image {
  position: relative;
}

.testimonial--image .shot {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  line-height: 0;
  cursor: zoom-in;
}

.testimonial--image img {
  display: block;
  width: 100%;
  height: auto;
}

/* Hover/focus affordance that the image expands. */
.testimonial--image .zoom {
  position: absolute;
  top: 12px;
  right: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(10, 49, 36, 0.72);
  color: var(--paper);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
}

.testimonial--image:hover .zoom,
.testimonial--image .shot:focus-visible + .zoom {
  opacity: 1;
}

.testimonial--image .zoom svg {
  width: 16px;
  height: 16px;
}

/* --- Lightbox (native <dialog>) --- */
.lightbox {
  max-width: min(92vw, 560px);
  max-height: 92vh;
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  overflow: visible;
}

.lightbox::backdrop {
  background: rgba(8, 42, 31, 0.82);
  backdrop-filter: blur(3px);
}

.lightbox img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 14px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
}

.lightbox-close {
  position: absolute;
  top: -16px;
  right: -16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--honey);
  color: var(--deepwood);
  cursor: pointer;
  box-shadow: 0 6px 16px -6px rgba(0, 0, 0, 0.5);
}

.lightbox-close svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 480px) {
  .lightbox-close {
    top: 8px;
    right: 8px;
  }
}

/* ==========================================================================
   13. FAQ
   ========================================================================== */

.faq-list {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line-light);
}

.faq {
  border-bottom: 1px solid var(--line-light);
}

.faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 26px 4px;
  border: 0;
  background: none;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.12rem, 2.4vw, 1.32rem);
  text-align: left;
  color: var(--ink);
  cursor: pointer;
}

.faq-trigger:hover {
  color: var(--fern);
}

.faq-trigger .marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  flex: none;
  border: 1.5px solid var(--honey-deep);
  border-radius: 50%;
  color: var(--honey-deep);
  transition:
    transform 0.3s var(--ease),
    background 0.3s;
}

.faq-trigger[aria-expanded="true"] .marker {
  transform: rotate(45deg);
  background: var(--honey);
  border-color: var(--honey);
  color: var(--deepwood);
}

.faq-panel {
  height: 0;
  overflow: hidden;
  transition: height 0.35s var(--ease);
}

.faq-panel-inner {
  max-width: 680px;
  padding: 0 4px 28px;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

/* ==========================================================================
   14. Final CTA
   ========================================================================== */

.cta {
  position: relative;
  overflow: hidden;
  background: var(--deepwood);
  color: var(--paper);
  text-align: center;
}

.cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 120% at 50% 0%, rgba(224, 168, 63, 0.18), transparent 60%);
}

.cta-inner {
  position: relative;
  max-width: 680px;
  margin: 0 auto;
}

.cta h2 {
  margin-bottom: 20px;
  font-size: clamp(2.2rem, 5vw, 3.4rem);
}

.cta h2 em {
  font-style: italic;
  color: var(--honey);
}

.cta p {
  margin-bottom: 36px;
  color: var(--paper-dim);
  font-size: 1.15rem;
}

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

/* ==========================================================================
   15. Footer
   ========================================================================== */

.site-footer {
  padding: 64px 0 40px;
  background: var(--deepwood-2);
  color: var(--paper-dim);
}

.foot-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line-dark);
}

.foot-brand .brand {
  margin-bottom: 16px;
}

.foot-brand p {
  max-width: 300px;
  font-size: 0.98rem;
}

.foot-col h4 {
  margin-bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--honey);
}

.foot-col a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 6px 0;
  color: var(--paper-dim);
  font-size: 0.98rem;
  text-decoration: none;
  transition: color 0.2s;
}

.foot-col a:hover {
  color: var(--paper);
}

.foot-col a .icon {
  width: 17px;
  height: 17px;
  flex: none;
  color: var(--honey);
}

.foot-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 26px;
  font-size: 0.88rem;
  color: rgba(248, 245, 238, 0.5);
}

/* ==========================================================================
   16. Demo dialog
   ========================================================================== */

.demo-dialog {
  width: min(92vw, 460px);
  margin: auto;
  padding: 0;
  border: 0;
  border-radius: 22px;
  background: var(--paper);
  color: var(--ink);
  overflow: visible;
}

.demo-dialog::backdrop {
  background: rgba(8, 42, 31, 0.72);
  backdrop-filter: blur(3px);
}

.demo-close {
  position: absolute;
  top: 16px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--stone);
  color: var(--ink-soft);
  cursor: pointer;
  transition: background 0.2s var(--ease);
}

.demo-close:hover {
  background: var(--sage);
}

.demo-close svg {
  width: 16px;
  height: 16px;
}

.demo-inner {
  padding: 40px 34px 32px;
}

.demo-dialog h2 {
  margin-bottom: 10px;
  font-size: clamp(1.5rem, 4vw, 1.8rem);
}

.demo-lead {
  margin-bottom: 26px;
  color: var(--ink-soft);
  font-size: 1rem;
}

.demo-field {
  display: block;
  margin-bottom: 16px;
}

.demo-field span {
  display: block;
  margin-bottom: 7px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--ink);
}

.demo-field span em {
  font-style: normal;
  font-weight: 500;
  color: var(--ink-soft);
}

.demo-field input,
.demo-field select {
  width: 100%;
  padding: 12px 14px;
  border: 1.5px solid var(--line-light);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-family: inherit;
  font-size: 1rem;
  transition:
    border-color 0.2s var(--ease),
    box-shadow 0.2s var(--ease);
}

.demo-field input::placeholder {
  color: rgba(65, 84, 75, 0.55);
}

.demo-field input:focus,
.demo-field select:focus {
  outline: none;
  border-color: var(--honey);
  box-shadow: 0 0 0 3px rgba(224, 168, 63, 0.22);
}

/* Native select arrows differ across browsers — draw our own chevron. */
.demo-select {
  position: relative;
}

.demo-select select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 42px;
  cursor: pointer;
}

.demo-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 17px;
  width: 9px;
  height: 9px;
  margin-top: -6px;
  border-right: 2px solid var(--ink-soft);
  border-bottom: 2px solid var(--ink-soft);
  transform: rotate(45deg);
  pointer-events: none;
}

/* Muted colour while the placeholder option is still selected. */
.demo-select select:has(option[value=""]:checked) {
  color: rgba(65, 84, 75, 0.7);
}

.demo-dialog .btn {
  width: 100%;
  justify-content: center;
  margin-top: 8px;
}

.demo-fineprint {
  margin-top: 14px;
  color: var(--ink-soft);
  font-size: 0.82rem;
  text-align: center;
}

/* ==========================================================================
   17. Reveal animations
   ========================================================================== */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 0.8s var(--ease),
    transform 0.8s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ==========================================================================
   18. Responsive
   ========================================================================== */

@media (max-width: 900px) {
  .offer-grid,
  .why-grid {
    grid-template-columns: 1fr;
  }

  .testimonials-grid {
    columns: 2;
  }

  .proof-grid {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .foot-grid {
    grid-template-columns: 1fr 1fr;
  }

  .foot-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .section {
    padding: 70px 0;
  }

  .wrap {
    padding: 0 20px;
  }

  .nav-links {
    display: none;
  }

  .hero-inner {
    padding-top: 84px;
    padding-bottom: 72px;
  }

  .hero-ctas .btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .stats {
    gap: 30px;
  }

  .testimonials-grid {
    columns: 1;
  }

  .foot-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================================================
   19. Reduced motion
   ========================================================================== */

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
    scroll-behavior: auto !important;
  }

  .reveal,
  .step {
    opacity: 1;
    transform: none;
  }

  .stem {
    transform: scaleY(1);
  }
}
