/* ================================================
   FinPeace Landing Page 3.0 – Complete Design Revamp
   ================================================ */

/* ===== CSS VARIABLES ===== */
:root {
  /* Brand Colors */
  --fp-green: #00c853;
  --fp-green-dark: #009624;
  --fp-green-light: #e8f5e9;
  --fp-emerald: #064e3b;
  --fp-mint: #d1fae5;
  --fp-navy: #0f172a;
  --fp-white: #fefefe;
  --fp-gray-50: #f8fafc;
  --fp-gray-100: #f1f5f9;
  --fp-gray-200: #e2e8f0;
  --fp-gray-300: #cbd5e1;
  --fp-gray-500: #64748b;
  --fp-gray-700: #334155;
  --fp-gold: #d4a537;
  --fp-gold-light: #fef3c7;
  --fp-red-soft: #fee2e2;
  --fp-red: #ef4444;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0,0,0,.06), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 14px rgba(0,0,0,.08);
  --shadow-lg: 0 10px 40px rgba(0,0,0,.1);
  --shadow-glow: 0 0 30px rgba(0,200,83,.15);

  /* Spacing */
  --section-py: clamp(4rem, 8vw, 7rem);
  --container-px: clamp(1rem, 4vw, 2rem);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;

  /* Transitions */
  --ease-out: cubic-bezier(.16,1,.3,1);
  --ease-bounce: cubic-bezier(.34,1.56,.64,1);
}

/* ===== RESET & BASE ===== */
*,*::before,*::after { box-sizing:border-box; margin:0; padding:0; }

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: 'Be Vietnam Pro', -apple-system, sans-serif;
  color: var(--fp-navy);
  background: var(--fp-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1,h2,h3,h4 {
  font-family: 'Be Vietnam Pro', sans-serif;
  line-height: 1.2;
  font-weight: 800;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }

.hide-mobile { }

/* ===== CONTAINER ===== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--container-px);
}

/* ===== SECTION COMMON ===== */
.section-eyebrow {
  display: inline-block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fp-green);
  margin-bottom: .75rem;
}

.section-headline {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--fp-emerald);
  margin-bottom: 1rem;
}
.section-headline--white { color: #fff; }

.section-sub {
  font-size: 1rem;
  color: var(--fp-gray-500);
  max-width: 560px;
  margin: 0 auto 2.5rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: .85rem 2rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .9rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: all .35s var(--ease-out);
  gap: .4rem;
}
.btn--lg { padding: 1rem 2.5rem; font-size: .95rem; }

.btn--primary {
  background: var(--fp-green);
  color: #fff;
  box-shadow: 0 4px 14px rgba(0,200,83,.3);
}
.btn--primary:hover {
  background: var(--fp-green-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0,200,83,.4);
}

.btn--outline {
  border: 2px solid var(--fp-green);
  color: var(--fp-green);
  background: transparent;
}
.btn--outline:hover {
  background: var(--fp-green);
  color: #fff;
  transform: translateY(-2px);
}

.btn--ghost {
  color: var(--fp-emerald);
  border: 1.5px solid var(--fp-gray-300);
  background: transparent;
}
.btn--ghost:hover {
  border-color: var(--fp-green);
  color: var(--fp-green);
  transform: translateY(-2px);
}

.btn--gold { border-color: var(--fp-gold); color: var(--fp-gold); }
.btn--gold:hover { background: var(--fp-gold); color: #fff; }

.btn--full { width: 100%; text-align: center; }

.btn--pulse {
  animation: pulse-glow 2.5s infinite;
}
@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 4px 14px rgba(0,200,83,.3); }
  50% { box-shadow: 0 4px 30px rgba(0,200,83,.55); }
}

/* ===== CARD GLOW ===== */
.card--glow {
  position: relative;
}
.card--glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  border-radius: inherit;
  background: radial-gradient(circle at var(--mouse-x, 50%) var(--mouse-y, 50%), rgba(0,200,83,.25), transparent 60%);
  opacity: 0;
  transition: opacity .4s var(--ease-out);
  z-index: -1;
  pointer-events: none;
}
.card--glow:hover::before { opacity: 1; }

/* ===== SCROLL REVEAL ===== */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s var(--ease-out), transform .7s var(--ease-out);
  transition-delay: var(--delay, 0s);
}
.reveal-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ===================================================
   NAVBAR
   =================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: background .3s, box-shadow .3s, backdrop-filter .3s;
  padding: .75rem 0;
}
.navbar.is-scrolled {
  background: rgba(254,254,254,.85);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  box-shadow: 0 1px 8px rgba(0,0,0,.06);
}
.navbar__inner {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.navbar__logo img { height: 36px; }
.navbar__menu {
  display: flex;
  gap: 1.5rem;
  margin-left: auto;
}
.navbar__menu a {
  font-size: .88rem;
  font-weight: 500;
  color: var(--fp-gray-700);
  transition: color .25s;
  position: relative;
}
.navbar__menu a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--fp-green);
  transition: width .3s var(--ease-out);
}
.navbar__menu a:hover { color: var(--fp-green); }
.navbar__menu a:hover::after { width: 100%; }

.navbar__cta {
  padding: .6rem 1.5rem;
  font-size: .82rem;
}
.navbar__toggle { display: none; }
.navbar__toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--fp-navy);
  margin: 5px 0;
  transition: all .3s;
}


/* ===================================================
   S1: HERO — Clean hierarchy
   =================================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 5rem;
  overflow: hidden;
  background: linear-gradient(160deg, #fff 50%, var(--fp-green-light) 100%);
}
.hero__particles {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}
.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 3rem;
  align-items: center;
}

/* Tag */
.hero__tag {
  display: inline-block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--fp-green);
  background: var(--fp-mint);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
}

/* Headline */
.hero__headline {
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  color: var(--fp-navy);
  margin-bottom: 1.25rem;
  line-height: 1.18;
}
.hero__headline em {
  font-style: normal;
  color: var(--fp-green-dark);
  position: relative;
}
.hero__headline em::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 6px;
  background: rgba(0,200,83,.18);
  border-radius: 3px;
  z-index: -1;
}

/* Sub */
.hero__sub {
  font-size: .95rem;
  color: var(--fp-gray-500);
  margin-bottom: 2rem;
  line-height: 1.75;
  max-width: 480px;
}

/* CTAs */
.hero__ctas {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Visual */
.hero__visual {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero__img {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-xl);
  box-shadow: 0 20px 60px rgba(0,0,0,.12);
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-14px); }
}


/* ===================================================
   VALUE PROPOSITION BAR
   =================================================== */
.value-prop {
  padding: 2.5rem 0;
  background: var(--fp-emerald);
}
.value-prop__quote {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,.92);
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.75;
  font-weight: 500;
  font-style: italic;
  border: none;
  padding: 0;
}
.value-prop__quote::before,
.value-prop__quote::after { display: none; }


/* ===================================================
   FULL-WIDTH VISUAL BREAK
   =================================================== */
.visual-break {
  position: relative;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}
.visual-break__img {
  width: 100%;
  height: clamp(180px, 25vw, 360px);
  object-fit: cover;
  object-position: center;
  display: block;
}
.visual-break--dark {
  position: relative;
}
.visual-break__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(6,78,59,.75), rgba(0,150,36,.55));
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.visual-break__text {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.4rem);
  color: #fff;
  text-align: center;
  line-height: 1.8;
  max-width: 650px;
  font-weight: 500;
}


/* ===================================================
   S2: PHILOSOPHY — Steps design
   =================================================== */
.philosophy {
  padding: var(--section-py) 0;
  background: var(--fp-gray-50);
  text-align: center;
}
.philosophy__steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 3rem;
}

.step {
  text-align: left;
  padding: 2rem 1.8rem;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid var(--fp-gray-200);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
}
.step:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.step__number {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--fp-green);
  opacity: .15;
  line-height: 1;
  margin-bottom: .5rem;
}
.step__title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--fp-navy);
  margin-bottom: .5rem;
}
.step__desc {
  font-size: .9rem;
  color: var(--fp-gray-500);
  line-height: 1.65;
}


/* ===================================================
   S3: PAIN POINTS — Numbered cards
   =================================================== */
.pain-points {
  padding: var(--section-py) 0;
  text-align: center;
}
.pain-points__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.pain-card {
  text-align: left;
  padding: 2rem 1.8rem 1.8rem;
  background: var(--fp-gray-50);
  border-radius: var(--radius-lg);
  border: none;
  transition: all .45s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.pain-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff6b6b, #ee5a24, #f0932b);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  z-index: -1;
  border-radius: inherit;
}
.pain-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(238,90,36,.25);
}
.pain-card:hover::before {
  opacity: 1;
}
.pain-card__num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: #ee5a24;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(238,90,36,.1);
  margin-bottom: .75rem;
  transition: all .45s var(--ease-out);
}
.pain-card:hover .pain-card__num {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.pain-card__title {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-navy);
  margin-bottom: .4rem;
  transition: color .45s var(--ease-out);
}
.pain-card:hover .pain-card__title { color: #fff; }
.pain-card__desc {
  font-size: .88rem;
  color: var(--fp-gray-500);
  line-height: 1.6;
  transition: color .45s var(--ease-out);
}
.pain-card:hover .pain-card__desc { color: rgba(255,255,255,.88); }


/* ===================================================
   S4: SOLUTION — Pyramid with hover detail
   =================================================== */
.solution {
  padding: var(--section-py) 0;
  background: var(--fp-gray-50);
  text-align: center;
}

.pyramid {
  max-width: 650px;
  margin: 3rem auto;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.pyramid__tier {
  border-radius: var(--radius-md);
  color: #fff;
  text-align: center;
  cursor: pointer;
  transition: all .5s var(--ease-out);
  overflow: hidden;
  position: relative;
}

/* Tier colors: light to dark (top to bottom) */
.pyramid__tier--3 {
  background: linear-gradient(135deg, #a7f3d0, #6ee7b7);
  color: var(--fp-emerald);
  margin: 0 8%;
}
.pyramid__tier--2 {
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #fff;
  margin: 0 4%;
}
.pyramid__tier--1 {
  background: linear-gradient(135deg, #059669, #047857);
  color: #fff;
}

.pyramid__front {
  padding: 1.5rem 2rem;
  transition: all .4s var(--ease-out);
}
.pyramid__tier h4 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: .3rem;
}
.pyramid__tier p {
  font-size: .85rem;
  opacity: .85;
}

.pyramid__detail {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease-out), padding .5s var(--ease-out);
  padding: 0 2rem;
}
.pyramid__detail p {
  font-size: .88rem;
  line-height: 1.65;
  opacity: .9;
}

.pyramid__tier:hover,
.pyramid__tier.is-expanded {
  transform: scale(1.03);
  box-shadow: 0 8px 30px rgba(0,0,0,.15);
}
.pyramid__tier:hover .pyramid__detail,
.pyramid__tier.is-expanded .pyramid__detail {
  max-height: 150px;
  padding: 0 2rem 1.2rem;
}

/* Tier 3 specific hover text color */
.pyramid__tier--3:hover { color: var(--fp-emerald); }


/* ===================================================
   3 ZONES — Storytelling Grid with book images
   =================================================== */
.zones {
  padding: var(--section-py) 0;
  text-align: center;
}
.zones__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.zone-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--fp-gray-200);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
}
.zone-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.zone-card__img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.zone-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s var(--ease-out);
}
.zone-card:hover .zone-card__img {
  transform: scale(1.05);
}

.zone-card__label {
  position: absolute;
  bottom: .75rem;
  left: .75rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .3rem .8rem;
  border-radius: var(--radius-full);
  backdrop-filter: blur(8px);
}
.zone-card__label--warm {
  background: rgba(239,68,68,.85);
  color: #fff;
}
.zone-card__label--amber {
  background: rgba(245,158,11,.85);
  color: #fff;
}
.zone-card__label--green {
  background: rgba(0,200,83,.85);
  color: #fff;
}

.zone-card__body {
  padding: 1.25rem 1.5rem 1.5rem;
  text-align: left;
}
.zone-card__body h3 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--fp-navy);
  margin-bottom: .3rem;
}
.zone-card__body p {
  font-size: .88rem;
  color: var(--fp-gray-500);
  line-height: 1.6;
}


/* ===================================================
   S5: CALCULATOR
   =================================================== */
.calculator {
  padding: var(--section-py) 0;
  text-align: center;
}
.calculator__layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 3rem;
  text-align: left;
  margin-top: 2.5rem;
}

.calc-field { margin-bottom: 1.5rem; }
.calc-field label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--fp-gray-700);
  margin-bottom: .3rem;
  display: block;
}
.calc-field__value {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--fp-emerald);
  margin-bottom: .5rem;
  font-family: 'Be Vietnam Pro', sans-serif;
}
.calc-field__range {
  display: flex;
  justify-content: space-between;
  font-size: .75rem;
  color: var(--fp-gray-500);
  margin-top: .25rem;
}

/* Custom range slider */
.calc-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 6px;
  background: var(--fp-gray-200);
  border-radius: 3px;
  outline: none;
  transition: background .2s;
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  background: var(--fp-green);
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0,200,83,.3);
  transition: transform .2s var(--ease-bounce);
}
.calc-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }
.calc-slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--fp-green);
  border-radius: 50%;
  cursor: pointer;
  border: none;
}

.calc-disclaimer {
  font-size: .75rem;
  color: var(--fp-gray-500);
  font-style: italic;
  margin-top: 1rem;
}

/* Result cards */
.calc-result-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}
.calc-result-card {
  background: var(--fp-gray-50);
  border-radius: var(--radius-md);
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--fp-gray-200);
}
.calc-result-card__label {
  display: block;
  font-size: .8rem;
  color: var(--fp-gray-500);
  margin-bottom: .25rem;
}
.calc-result-card__value {
  display: block;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--fp-emerald);
  font-family: 'Be Vietnam Pro', sans-serif;
}
.calc-result-card--highlight {
  background: var(--fp-mint);
  border-color: var(--fp-green);
}
.calc-result-card--highlight .calc-result-card__value {
  color: var(--fp-green-dark);
  font-size: 1.6rem;
}
.calc-result-card--profit .calc-result-card__value {
  color: var(--fp-green);
}

.calc-chart-wrapper {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  border: 1px solid var(--fp-gray-200);
  box-shadow: var(--shadow-sm);
}
#calcChart { width: 100% !important; height: auto !important; }


/* ===================================================
   S6: PRICING
   =================================================== */
.pricing {
  padding: var(--section-py) 0;
  background: var(--fp-gray-50);
  text-align: center;
}
.pricing__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  align-items: start;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  border: 1px solid var(--fp-gray-200);
  position: relative;
  overflow: hidden;
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  transform-style: preserve-3d;
  perspective: 600px;
}
.pricing-card:hover { box-shadow: var(--shadow-lg); }

.pricing-card--featured {
  border-color: var(--fp-green);
  box-shadow: var(--shadow-glow);
  transform: scale(1.04);
}
.pricing-card--featured:hover { transform: scale(1.06); }

.pricing-card__ribbon {
  position: absolute;
  top: 16px; right: -32px;
  background: var(--fp-green);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .05em;
  padding: .3rem 2.5rem;
  transform: rotate(45deg);
}

.pricing-card__tier {
  display: inline-block;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .8rem;
  border-radius: var(--radius-full);
  background: var(--fp-gray-100);
  color: var(--fp-gray-700);
  margin-bottom: .75rem;
}
.pricing-card__tier--green { background: var(--fp-mint); color: var(--fp-green-dark); }
.pricing-card__tier--gold { background: var(--fp-gold-light); color: #92400e; }

.pricing-card__name {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.8rem;
  color: var(--fp-emerald);
  margin-bottom: .3rem;
}
.pricing-card__tagline {
  font-size: .85rem;
  color: var(--fp-gray-500);
  margin-bottom: 1.2rem;
}
.pricing-card__price { margin-bottom: 1.5rem; }
.pricing-card__amount {
  font-size: 2rem;
  font-weight: 800;
  color: var(--fp-navy);
  font-family: 'Be Vietnam Pro', sans-serif;
}
.pricing-card__currency {
  font-size: .9rem;
  color: var(--fp-gray-500);
  font-weight: 400;
}
.pricing-card__note {
  display: block;
  font-size: .75rem;
  color: var(--fp-gray-500);
  margin-top: .25rem;
}

.pricing-card__features {
  text-align: left;
  margin-bottom: 1.5rem;
}
.pricing-card__features li {
  padding: .45rem 0 .45rem 1.5rem;
  font-size: .88rem;
  color: var(--fp-gray-700);
  border-bottom: 1px solid var(--fp-gray-100);
  position: relative;
}
.pricing-card__features li:last-child { border-bottom: none; }
.pricing-card__features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .7rem;
  width: 14px;
  height: 8px;
  border-left: 2px solid var(--fp-green);
  border-bottom: 2px solid var(--fp-green);
  transform: rotate(-45deg);
}


/* ===================================================
   S7: BENEFITS — Numbered grid
   =================================================== */
.benefits {
  padding: var(--section-py) 0;
  text-align: center;
}
.benefits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
}

.benefit-item {
  text-align: left;
  padding: 2rem 1.8rem 1.8rem;
  background: var(--fp-gray-50);
  border-radius: var(--radius-lg);
  border: none;
  transition: all .45s var(--ease-out);
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.benefit-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #059669, #10b981, #34d399);
  opacity: 0;
  transition: opacity .45s var(--ease-out);
  z-index: -1;
  border-radius: inherit;
}
.benefit-item:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(5,150,105,.3);
}
.benefit-item:hover::before {
  opacity: 1;
}
.benefit-item__num {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  color: var(--fp-green-dark);
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(0,200,83,.1);
  margin-bottom: .75rem;
  transition: all .45s var(--ease-out);
}
.benefit-item:hover .benefit-item__num {
  background: rgba(255,255,255,.2);
  color: #fff;
}
.benefit-item h3 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--fp-navy);
  margin-bottom: .4rem;
  transition: color .45s var(--ease-out);
}
.benefit-item:hover h3 { color: #fff; }
.benefit-item p {
  font-size: .88rem;
  color: var(--fp-gray-500);
  line-height: 1.6;
  transition: color .45s var(--ease-out);
}
.benefit-item:hover p { color: rgba(255,255,255,.88); }


/* ===================================================
   S8: ABOUT + FOUNDERS
   =================================================== */
.about {
  padding: var(--section-py) 0;
  background: var(--fp-gray-50);
}
.about__top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 3rem;
  align-items: center;
  margin-bottom: 4rem;
}
.about__body {
  font-size: 1.05rem;
  color: var(--fp-gray-500);
  line-height: 1.8;
  margin-top: 1rem;
}
.about__accent-img {
  width: 100%;
  max-width: 380px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}

.about__founders-title {
  text-align: center;
  font-size: 1.6rem;
  color: var(--fp-emerald);
  margin-bottom: 2rem;
}

.founders {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.founder-card {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--fp-gray-200);
  transition: transform .4s var(--ease-out), box-shadow .4s var(--ease-out);
  position: relative;
  text-align: left;
}
.founder-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.founder-card__avatar {
  flex-shrink: 0;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid var(--fp-green-light);
  box-shadow: 0 0 20px rgba(0,200,83,.1);
}
.founder-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.founder-card__name {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--fp-navy);
}
.founder-card__title {
  display: inline-block;
  font-size: .8rem;
  font-weight: 600;
  color: var(--fp-green);
  margin-bottom: .5rem;
}
.founder-card__bio {
  font-size: .88rem;
  color: var(--fp-gray-500);
  line-height: 1.6;
}


/* ===================================================
   S9: GALLERY
   =================================================== */
.gallery {
  padding: var(--section-py) 0;
  text-align: center;
  overflow: hidden;
}
.gallery__slider {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  margin-top: 2rem;
}
.gallery__track {
  display: flex;
  transition: transform .5s var(--ease-out);
}
.gallery__slide {
  flex: 0 0 50%;
  padding: 0 .5rem;
  position: relative;
}
.gallery__slide img {
  width: 100%;
  border-radius: var(--radius-md);
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: transform .4s var(--ease-out);
}
.gallery__slide:hover img { transform: scale(1.03); }
.gallery__caption {
  position: absolute;
  bottom: 1rem;
  left: 1rem;
  right: 1rem;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  padding: .5rem 1rem;
  border-radius: var(--radius-sm);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s;
}
.gallery__slide:hover .gallery__caption {
  opacity: 1;
  transform: translateY(0);
}

.gallery__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(4px);
  color: var(--fp-navy);
  font-size: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: background .2s, transform .2s;
  z-index: 2;
}
.gallery__btn:hover {
  background: var(--fp-green);
  color: #fff;
  transform: translateY(-50%) scale(1.08);
}
.gallery__btn--prev { left: 12px; }
.gallery__btn--next { right: 12px; }

.gallery__dots {
  display: flex;
  justify-content: center;
  gap: .5rem;
  margin-top: 1.5rem;
}
.gallery__dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  background: var(--fp-gray-300);
  cursor: pointer;
  transition: background .3s, transform .3s;
}
.gallery__dot.is-active {
  background: var(--fp-green);
  transform: scale(1.3);
}


/* ===================================================
   S10: CONTACT
   =================================================== */
.contact {
  padding: var(--section-py) 0;
  background: linear-gradient(135deg, var(--fp-emerald), #0a3d2e);
  color: #fff;
}
.contact__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.contact__sub {
  font-size: 1.05rem;
  opacity: .85;
  margin-top: 1rem;
  line-height: 1.7;
}

.contact__form {
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.form-group { margin-bottom: 1rem; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: .9rem 1.2rem;
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,.06);
  color: #fff;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .9rem;
  transition: border-color .3s, background .3s;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255,255,255,.5);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--fp-green);
  background: rgba(255,255,255,.1);
}
.form-group select { cursor: pointer; }
.form-group select option { background: var(--fp-navy); color: #fff; }


/* ===================================================
   S11: FAQ
   =================================================== */
.faq {
  padding: var(--section-py) 0;
  text-align: center;
}
.faq__list {
  max-width: 720px;
  margin: 2rem auto 0;
  text-align: left;
}
.faq__item {
  border: 1px solid var(--fp-gray-200);
  border-radius: var(--radius-md);
  margin-bottom: .75rem;
  overflow: hidden;
  transition: box-shadow .3s;
}
.faq__item[open] {
  box-shadow: var(--shadow-md);
  border-color: var(--fp-green-light);
}
.faq__question {
  padding: 1.2rem 1.5rem;
  font-family: 'Be Vietnam Pro', sans-serif;
  font-weight: 600;
  font-size: .95rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color .2s;
}
.faq__question::-webkit-details-marker { display: none; }
.faq__question::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 300;
  color: var(--fp-green);
  transition: transform .3s var(--ease-out);
  flex-shrink: 0;
  margin-left: 1rem;
}
.faq__item[open] .faq__question::after {
  content: '−';
  transform: rotate(180deg);
}
.faq__item[open] .faq__question { color: var(--fp-green-dark); }

.faq__answer {
  padding: 0 1.5rem 1.2rem;
  font-size: .9rem;
  color: var(--fp-gray-500);
  line-height: 1.7;
}


/* ===================================================
   FOOTER — Forest green gradient, bright & premium
   =================================================== */
.footer {
  padding: 3.5rem 0 1.5rem;
  background: linear-gradient(135deg, #059669 0%, #10b981 40%, #34d399 80%, #6ee7b7 100%);
  color: #fff;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 2rem;
}
.footer__logo {
  opacity: .95;
  margin-bottom: .75rem;
  filter: brightness(10);
}
.footer__tagline {
  font-size: .85rem;
  opacity: .85;
}
.footer h4 {
  font-family: 'Be Vietnam Pro', sans-serif;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: .75rem;
}
.footer a {
  font-size: .85rem;
  transition: opacity .2s;
  opacity: .9;
}
.footer a:hover { opacity: 1; text-decoration: underline; }
.footer li { margin-bottom: .4rem; }

.footer__copy {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.3);
  font-size: .8rem;
  opacity: .8;
}


/* ===================================================
   RESPONSIVE
   =================================================== */
@media (max-width: 1024px) {
  .hero__inner { grid-template-columns: 1fr; text-align: center; }
  .hero__visual { order: -1; }
  .hero__img { max-width: 360px; }
  .hero__ctas { justify-content: center; }
  .hero__sub { margin-left: auto; margin-right: auto; }
  .hero__tag { margin-bottom: 1rem; }

  .philosophy__steps { grid-template-columns: 1fr; max-width: 480px; margin-left: auto; margin-right: auto; }
  .pain-points__grid { grid-template-columns: 1fr; max-width: 500px; margin-left: auto; margin-right: auto; }
  .calculator__layout { grid-template-columns: 1fr; }
  .pricing__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .pricing-card--featured { transform: scale(1); }
  .zones__grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
  .benefits__grid { grid-template-columns: repeat(2, 1fr); }
  .about__top { grid-template-columns: 1fr; text-align: center; }
  .about__accent-img { margin: 0 auto; }
  .founders { grid-template-columns: 1fr; }
  .contact__inner { grid-template-columns: 1fr; text-align: center; }
  .footer__inner { grid-template-columns: 1fr; text-align: center; }
}

@media (max-width: 768px) {
  .navbar__menu { display: none; }
  .navbar__cta { display: none; }
  .navbar__toggle { display: block; }
  
  .navbar__menu.is-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(254,254,254,.97);
    backdrop-filter: blur(16px);
    padding: 1.5rem;
    gap: 1rem;
    box-shadow: var(--shadow-lg);
  }
  
  .hero { min-height: 90vh; padding-top: 4rem; }
  .hero__headline { font-size: clamp(1.6rem, 7vw, 2.2rem); }
  .hide-mobile { display: none; }
  
  .benefits__grid { grid-template-columns: 1fr; }
  
  .founder-card { flex-direction: column; text-align: center; }
  .founder-card__avatar { width: 100px; height: 100px; }
  
  .gallery__slide { flex: 0 0 100%; }
  
  .visual-break__img { height: 160px; }
}

@media (max-width: 480px) {
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; }
  .pricing-card { padding: 1.5rem 1rem; }
  .calc-field__value { font-size: 1.2rem; }
  .calc-result-card__value { font-size: 1.1rem; }
  .pyramid__tier { margin: 0 !important; }
}
