/* ============================================
   MODOYI FUHOWU — DESIGN SYSTEM
   Asymmetric Balance · Organic · Contemporary
============================================ */


:root {
  --clr-bg:        #f7f5f0;
  --clr-bg-alt:    #eeeae2;
  --clr-surface:   #ffffff;
  --clr-dark:      #1a1814;
  --clr-dark-alt:  #2c2820;
  --clr-text:      #3a3530;
  --clr-text-muted:#7a7268;
  --clr-primary:   #2d6a4f;
  --clr-primary-lt:#40916c;
  --clr-accent:    #d4a843;
  --clr-accent-lt: #f0c96b;
  --clr-accent-dk: #b8872a;
  --clr-warm:      #e8d5b0;
  --clr-warm-dk:   #c9b88a;
  --clr-err:       #c0392b;

  --ff-head: 'Manrope', sans-serif;
  --ff-body: 'Inter', sans-serif;

  --fs-xs:   clamp(0.75rem,  1.5vw, 0.8125rem);
  --fs-sm:   clamp(0.875rem, 1.8vw, 0.9375rem);
  --fs-base: clamp(1rem,     2vw,   1.0625rem);
  --fs-md:   clamp(1.125rem, 2.2vw, 1.25rem);
  --fs-lg:   clamp(1.25rem,  2.5vw, 1.5rem);
  --fs-xl:   clamp(1.5rem,   3vw,   2rem);
  --fs-2xl:  clamp(2rem,     4vw,   2.75rem);
  --fs-3xl:  clamp(2.5rem,   5.5vw, 3.75rem);
  --fs-hero: clamp(2.75rem,  6.5vw, 4.5rem);

  --sp-1:  0.25rem;
  --sp-2:  0.5rem;
  --sp-3:  0.75rem;
  --sp-4:  1rem;
  --sp-5:  1.25rem;
  --sp-6:  1.5rem;
  --sp-8:  2rem;
  --sp-10: 2.5rem;
  --sp-12: 3rem;
  --sp-16: 4rem;
  --sp-20: 5rem;
  --sp-24: 6rem;
  --sp-32: 8rem;

  --rad-sm:  4px;
  --rad-md:  10px;
  --rad-lg:  18px;
  --rad-xl:  28px;
  --rad-pill:9999px;

  --shd-xs:  0 1px 3px rgba(42,36,24,.08);
  --shd-sm:  0 2px 8px rgba(42,36,24,.10), 0 1px 2px rgba(42,36,24,.06);
  --shd-md:  0 4px 20px rgba(42,36,24,.10), 0 2px 6px rgba(42,36,24,.07);
  --shd-lg:  0 8px 40px rgba(42,36,24,.12), 0 3px 10px rgba(42,36,24,.08);
  --shd-xl:  0 16px 60px rgba(42,36,24,.14), 0 6px 16px rgba(42,36,24,.10);
  --shd-glow:0 0 0 3px rgba(212,168,67,.25);
  --shd-grn: 0 4px 24px rgba(45,106,79,.18), 0 2px 6px rgba(45,106,79,.10);

  --trans-fast: 0.15s ease;
  --trans-med:  0.28s ease;
  --trans-slow: 0.45s ease;

  --hdr-h: 72px;
}


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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-text);
  background: var(--clr-bg);
  line-height: 1.72;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

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

a {
  color: var(--clr-primary);
  text-decoration: none;
  transition: color var(--trans-fast);
}

a:hover { color: var(--clr-primary-lt); }

ul { list-style: none; }


#progress-bar {
  position: fixed;
  top: 0; left: 0;
  height: 3px;
  width: 0%;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  z-index: 9999;
  transition: width 0.1s linear;
}


.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--hdr-h);
  background: rgba(247,245,240,.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(201,184,138,.25);
  transition: transform var(--trans-med), background var(--trans-med);
  will-change: transform;
}

.hdr.hdr-hidden {
  transform: translateY(-100%);
}

.hdr-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-8);
}

.hdr-logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  flex-shrink: 0;
}

.hdr-logo-img {
  width: 36px;
  height: 36px;
}

.hdr-logo-txt {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  letter-spacing: -0.02em;
}

.hdr-links {
  display: none;
  align-items: center;
  gap: var(--sp-1);
}

.hdr-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-text);
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--rad-pill);
  transition: all var(--trans-fast);
  white-space: nowrap;
}

.hdr-link:hover,
.hdr-link.active {
  color: var(--clr-primary);
  background: rgba(45,106,79,.08);
}

.hdr-burger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-2);
  width: 44px;
  height: 44px;
  border-radius: var(--rad-md);
  transition: background var(--trans-fast);
}

.hdr-burger:hover { background: rgba(45,106,79,.08); }

.hdr-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--clr-dark);
  border-radius: 2px;
  transition: transform var(--trans-med), opacity var(--trans-fast);
}


.mob-menu {
  position: fixed;
  inset: 0;
  background: linear-gradient(135deg, var(--clr-primary) 0%, var(--clr-dark) 100%);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--trans-slow);
}

.mob-menu.open {
  opacity: 1;
  pointer-events: all;
}

.mob-close {
  position: absolute;
  top: var(--sp-6);
  right: var(--sp-6);
  background: rgba(255,255,255,.12);
  border: none;
  color: #fff;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: var(--fs-lg);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--trans-fast);
}

.mob-close:hover { background: rgba(255,255,255,.22); }

.mob-nav {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-6);
}

.mob-link {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: rgba(255,255,255,.85);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: color var(--trans-fast), transform var(--trans-fast);
}

.mob-link:hover {
  color: var(--clr-accent-lt);
  transform: translateX(8px);
}


.sec {
  padding: var(--sp-20) 0;
}

.sec-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-dk);
  margin-bottom: var(--sp-3);
}

.sec-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--clr-dark);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-6);
}

.sec-body {
  color: var(--clr-text);
  line-height: 1.78;
  margin-bottom: var(--sp-5);
  max-width: 62ch;
}

.sec-body.lg {
  font-size: var(--fs-md);
  max-width: 72ch;
}


.asym-left,
.asym-right {
  display: grid;
  gap: var(--sp-16);
  align-items: center;
}

.asym-left  { grid-template-columns: 1fr; }
.asym-right { grid-template-columns: 1fr; }


.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 0.75rem 1.75rem;
  border-radius: var(--rad-pill);
  border: 2px solid transparent;
  cursor: pointer;
  text-decoration: none;
  transition: all var(--trans-med);
  white-space: nowrap;
}

.btn-primary {
  background: var(--clr-primary);
  color: #fff;
  border-color: var(--clr-primary);
  box-shadow: var(--shd-grn);
}

.btn-primary:hover {
  background: var(--clr-primary-lt);
  border-color: var(--clr-primary-lt);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(45,106,79,.28), 0 3px 8px rgba(45,106,79,.15);
}

.btn-ghost {
  background: transparent;
  color: var(--clr-primary);
  border-color: var(--clr-primary);
}

.btn-ghost:hover {
  background: var(--clr-primary);
  color: #fff;
  transform: translateY(-2px);
}


.lnk-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-weight: 500;
  font-size: var(--fs-sm);
  color: var(--clr-primary);
  transition: gap var(--trans-fast), color var(--trans-fast);
}

.lnk-arrow:hover {
  gap: var(--sp-3);
  color: var(--clr-primary-lt);
}

.lnk-arrow.sm { font-size: var(--fs-xs); }


.strip-deco {
  background: var(--clr-dark);
  overflow: hidden;
  padding: var(--sp-4) 0;
}

.strip-deco-alt {
  background: var(--clr-primary);
}

.strip-inner {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
  white-space: nowrap;
  animation: ticker 28s linear infinite;
  width: max-content;
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.6);
}

.strip-dot {
  color: var(--clr-accent);
  font-size: 1.2em;
}

@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.strip-accent {
  height: 4px;
  background: linear-gradient(90deg, var(--clr-accent) 0%, var(--clr-primary) 50%, var(--clr-accent) 100%);
  background-size: 200% 100%;
  animation: shimmer 4s linear infinite;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* ============================================
   HERO SECTION
============================================ */
.hero {
  padding-top: calc(var(--hdr-h) + var(--sp-16));
  padding-bottom: var(--sp-20);
  position: relative;
  overflow: hidden;
}

.hero-bg-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(45,106,79,.07) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.hero-eyebrow {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--clr-accent-dk);
  margin-bottom: var(--sp-4);
}

.hero-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-hero);
  line-height: 1.1;
  letter-spacing: -0.04em;
  color: var(--clr-dark);
  margin-bottom: var(--sp-6);
}

.hero-typed-wrap {
  display: inline-block;
  color: var(--clr-primary);
  position: relative;
}

.hero-typed-wrap::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-primary), var(--clr-accent));
  border-radius: 2px;
}

.hero-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.72;
  max-width: 54ch;
  margin-bottom: var(--sp-8);
}

.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
}

.hero-visual {
  position: relative;
}

.hero-img-wrap {
  position: relative;
  border-radius: var(--rad-xl);
  overflow: visible;
}

.hero-img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-xl);
}

.hero-accent-blob {
  position: absolute;
  top: -24px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--clr-accent), var(--clr-accent-lt));
  border-radius: 40% 60% 70% 30% / 30% 50% 60% 70%;
  opacity: 0.35;
  z-index: -1;
  animation: blobmorph 8s ease-in-out infinite;
}

@keyframes blobmorph {
  0%, 100% { border-radius: 40% 60% 70% 30% / 30% 50% 60% 70%; }
  50%       { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--clr-surface);
  border-radius: var(--rad-lg);
  padding: var(--sp-4) var(--sp-5);
  box-shadow: var(--shd-lg);
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-dark);
  max-width: 260px;
  border-left: 4px solid var(--clr-primary);
}

.hero-float-ico {
  color: var(--clr-primary);
  font-size: var(--fs-lg);
  flex-shrink: 0;
}

/* ============================================
   WHY BUDGETS FAIL
============================================ */
.why-sec .asym-left {
  grid-template-columns: 1fr;
}

.why-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-lg);
}

.why-img-col {
  position: relative;
}

.why-tag {
  position: absolute;
  bottom: -16px;
  right: -12px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  padding: var(--sp-3) var(--sp-5);
  border-radius: var(--rad-pill);
  box-shadow: var(--shd-md);
}

/* ============================================
   FEATURES / FOUR PILLARS
============================================ */
.feat-hdr {
  margin-bottom: var(--sp-12);
}

.feat-title { max-width: 28ch; }

.feat-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

.feat-item {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-5);
  padding: var(--sp-8) 0;
}

.feat-sep {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201,184,138,.4), transparent);
}

.feat-ico-wrap {
  width: 52px;
  height: 52px;
  border-radius: var(--rad-lg);
  background: linear-gradient(135deg, rgba(45,106,79,.12), rgba(45,106,79,.06));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(45,106,79,.10);
  transition: all var(--trans-med);
}

.feat-item:hover .feat-ico-wrap {
  background: linear-gradient(135deg, rgba(45,106,79,.2), rgba(45,106,79,.10));
  transform: scale(1.05);
  box-shadow: var(--shd-grn);
}

.feat-ico {
  font-size: var(--fs-lg);
  color: var(--clr-primary);
}

.feat-item-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
  letter-spacing: -0.02em;
}

.feat-desc {
  color: var(--clr-text-muted);
  line-height: 1.7;
  font-size: var(--fs-sm);
}

/* ============================================
   JAR METHOD SECTION
============================================ */
.jar-sec {
  background: var(--clr-bg-alt);
}

.jar-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-lg);
}

.jar-img-col {
  position: relative;
}

.jar-accent-num {
  position: absolute;
  top: -24px;
  left: -12px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(4rem, 10vw, 7rem);
  color: rgba(45,106,79,.08);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

/* ============================================
   FIVE MINUTE SECTION
============================================ */
.five-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: center;
}

.five-visual {
  position: relative;
}

.five-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-lg);
}

.five-badge {
  position: absolute;
  top: -20px;
  right: -12px;
  background: var(--clr-primary);
  color: #fff;
  border-radius: 50%;
  width: 90px;
  height: 90px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shd-grn);
  text-align: center;
}

.five-badge-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 2rem;
  line-height: 1;
}

.five-badge-txt {
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.3;
}

.five-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin-top: var(--sp-6);
}

.five-list li {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: var(--clr-text);
}

.five-list .fa-circle-check {
  color: var(--clr-primary);
  font-size: var(--fs-md);
  flex-shrink: 0;
}

/* ============================================
   CONVERSATION SECTION
============================================ */
.conv-sec {
  background: var(--clr-bg-alt);
}

.conv-img {
  width: 100%;
  height: 360px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-lg);
}

/* ============================================
   WHO THIS IS FOR CARDS
============================================ */
.who-hdr {
  margin-bottom: var(--sp-12);
}

.who-title { max-width: 30ch; }

.who-intro {
  color: var(--clr-text-muted);
  max-width: 62ch;
  line-height: 1.72;
}

.who-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-6);
}

.who-crd {
  background: var(--clr-surface);
  border-radius: var(--rad-xl);
  overflow: hidden;
  box-shadow: var(--shd-md);
  transition: all var(--trans-med);
}

.who-crd:hover {
  transform: translateY(-4px);
  box-shadow: var(--shd-xl);
}

.who-crd-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.who-crd-body {
  padding: var(--sp-6);
}

.who-crd-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}

.who-crd-txt {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

/* ============================================
   DEBT SECTION
============================================ */
.debt-sec {
  background: var(--clr-dark);
}

.debt-sec .sec-eyebrow { color: var(--clr-accent); }
.debt-sec .sec-title   { color: var(--clr-warm); }
.debt-sec .sec-body    { color: rgba(232,213,176,.75); }

.debt-img {
  width: 100%;
  height: 340px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-xl);
}

.debt-img-col {
  position: relative;
}

.debt-quote-card {
  position: absolute;
  bottom: -20px;
  left: -12px;
  background: var(--clr-dark-alt);
  border: 1px solid rgba(201,184,138,.2);
  border-left: 4px solid var(--clr-accent);
  border-radius: var(--rad-lg);
  padding: var(--sp-5) var(--sp-6);
  max-width: 280px;
  box-shadow: var(--shd-lg);
}

.debt-quote-card p {
  font-size: var(--fs-sm);
  color: var(--clr-warm);
  font-style: italic;
  line-height: 1.6;
}

/* ============================================
   CTA SECTION
============================================ */
.cta-sec {
  background: linear-gradient(135deg, rgba(45,106,79,.06) 0%, rgba(212,168,67,.06) 100%);
  border-top: 1px solid rgba(201,184,138,.25);
}

.cta-inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.cta-inner .sec-title { margin-bottom: var(--sp-4); }
.cta-inner .sec-body { margin: 0 auto var(--sp-8); }

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
}

/* ============================================
   PAGE HERO
============================================ */
.pg-hero {
  padding-top: calc(var(--hdr-h) + var(--sp-16));
  padding-bottom: var(--sp-16);
  position: relative;
  overflow: hidden;
}

.pg-hero-bg {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(45,106,79,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.pg-hero-inner {
  position: relative;
}

.pg-hero-txt {
  max-width: 700px;
}

.pg-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-3xl);
  line-height: 1.12;
  letter-spacing: -0.04em;
  color: var(--clr-dark);
  margin-bottom: var(--sp-5);
}

.pg-hero-sub {
  font-size: var(--fs-md);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ============================================
   WHO THIS IS FOR PAGE
============================================ */
.wif-intro {
  max-width: 800px;
  margin-bottom: var(--sp-4);
}

.wif-grid {
  display: flex;
  flex-direction: column;
  gap: var(--sp-20);
}

.wif-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  align-items: center;
}

.wif-item-img-wrap {
  overflow: hidden;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-lg);
}

.wif-img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  transition: transform var(--trans-slow);
}

.wif-item:hover .wif-img {
  transform: scale(1.03);
}

.wif-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(3rem, 8vw, 5rem);
  color: rgba(45,106,79,.10);
  line-height: 1;
  margin-bottom: var(--sp-2);
  letter-spacing: -0.04em;
}

.wif-title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-xl);
  color: var(--clr-dark);
  margin-bottom: var(--sp-5);
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.wif-not {
  max-width: 720px;
  background: var(--clr-surface);
  border-radius: var(--rad-xl);
  padding: var(--sp-10);
  box-shadow: var(--shd-md);
  border-left: 5px solid var(--clr-accent);
}

/* ============================================
   HABIT GUIDES PAGE
============================================ */
.guide-sec { }

.guide-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.guide-img {
  width: 100%;
  height: 380px;
  object-fit: cover;
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-lg);
}

.guide-img-col {
  position: relative;
}

.guide-label {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--clr-accent);
  color: var(--clr-dark);
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: var(--sp-2) var(--sp-4);
  border-radius: var(--rad-pill);
  box-shadow: var(--shd-sm);
}

.guide-sub-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--clr-dark);
  margin: var(--sp-8) 0 var(--sp-4);
  letter-spacing: -0.02em;
}

.guide-callout {
  background: linear-gradient(135deg, rgba(45,106,79,.05), rgba(212,168,67,.05));
  border: 1px solid rgba(45,106,79,.15);
  border-radius: var(--rad-lg);
  padding: var(--sp-6);
  margin: var(--sp-8) 0;
}

.guide-callout-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  margin-bottom: var(--sp-5);
}

.guide-callout-items {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.guide-callout-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
}

.guide-callout-item .fa-triangle-exclamation {
  color: var(--clr-accent-dk);
  font-size: var(--fs-md);
  flex-shrink: 0;
  margin-top: 2px;
}

.guide-callout-item strong {
  display: block;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

.guide-callout-item p {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.6;
}

.guide-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: var(--sp-6) 0;
  position: relative;
}

.guide-steps::before {
  content: '';
  position: absolute;
  left: 20px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--clr-primary), rgba(45,106,79,.1));
}

.guide-step {
  display: flex;
  gap: var(--sp-5);
  align-items: flex-start;
  padding: var(--sp-5) 0;
  position: relative;
}

.guide-step-num {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shd-grn);
  z-index: 1;
}

.guide-step-txt {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: 1.7;
  padding-top: var(--sp-2);
}

.guide-step-txt strong {
  display: block;
  font-weight: 600;
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

.guide-note-example {
  background: var(--clr-dark);
  border-radius: var(--rad-lg);
  overflow: hidden;
  margin: var(--sp-6) 0;
  box-shadow: var(--shd-md);
}

.guide-note-header {
  background: var(--clr-dark-alt);
  color: rgba(255,255,255,.6);
  font-size: var(--fs-xs);
  font-weight: 500;
  padding: var(--sp-3) var(--sp-5);
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  letter-spacing: 0.04em;
}

.guide-note-body {
  padding: var(--sp-5) var(--sp-6);
  font-family: 'Courier New', monospace;
  font-size: var(--fs-sm);
  color: var(--clr-warm);
  line-height: 2;
}

/* ============================================
   DEBT PAGE
============================================ */
.debt-pg-hero {
  background: var(--clr-bg);
}

.debt-intro {
  max-width: 800px;
  margin-bottom: var(--sp-8);
}

.debt-section-wrap {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.debt-block {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-8);
  padding: var(--sp-10) 0;
  border-bottom: 1px solid rgba(201,184,138,.25);
  align-items: start;
}

.debt-block:last-child {
  border-bottom: none;
}

.debt-block-alt {
  background: linear-gradient(90deg, rgba(45,106,79,.03) 0%, transparent 100%);
  padding-left: var(--sp-6);
  border-radius: var(--rad-lg);
}

.debt-block-num {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.5rem, 6vw, 3.5rem);
  color: rgba(45,106,79,.12);
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: var(--sp-2);
}

.debt-block-body .sec-title {
  font-size: var(--fs-xl);
  margin-bottom: var(--sp-4);
}

/* ============================================
   CONTACT PAGE
============================================ */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-12);
}

.contact-form-col .sec-title {
  margin-bottom: var(--sp-3);
}

.contact-info-card {
  background: var(--clr-surface);
  border-radius: var(--rad-xl);
  padding: var(--sp-8);
  box-shadow: var(--shd-md);
  margin-bottom: var(--sp-6);
}

.contact-info-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  margin-bottom: var(--sp-6);
}

.contact-info-item {
  display: flex;
  gap: var(--sp-4);
  align-items: flex-start;
  margin-bottom: var(--sp-5);
}

.contact-info-item:last-child { margin-bottom: 0; }

.contact-info-item .fa {
  color: var(--clr-primary);
  font-size: var(--fs-md);
  flex-shrink: 0;
  margin-top: 3px;
}

.contact-info-item strong {
  display: block;
  font-weight: 600;
  color: var(--clr-dark);
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-1);
}

.contact-info-item p,
.contact-info-item a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
}

.contact-map {
  border-radius: var(--rad-xl);
  overflow: hidden;
  box-shadow: var(--shd-md);
}

.contact-map iframe {
  display: block;
  border-radius: var(--rad-xl);
}


.frm {
  display: flex;
  flex-direction: column;
  gap: var(--sp-5);
  margin-top: var(--sp-6);
}

.frm-group {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.frm-label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-dark);
}

.frm-input {
  font-family: var(--ff-body);
  font-size: var(--fs-base);
  color: var(--clr-dark);
  background: var(--clr-surface);
  border: 1.5px solid rgba(201,184,138,.45);
  border-radius: var(--rad-md);
  padding: 0.75rem 1rem;
  width: 100%;
  transition: all var(--trans-fast);
  outline: none;
}

.frm-input:focus {
  border-color: var(--clr-primary);
  box-shadow: 0 0 0 3px rgba(45,106,79,.12);
}

.frm-input::placeholder { color: var(--clr-text-muted); }

.frm-textarea { resize: vertical; min-height: 140px; }

.frm-check-group {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
}

.frm-check {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-top: 2px;
  accent-color: var(--clr-primary);
  cursor: pointer;
}

.frm-check-label {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.5;
  cursor: pointer;
}

.frm-link {
  color: var(--clr-primary);
  text-decoration: underline;
}

.frm-err {
  color: var(--clr-err);
  font-size: var(--fs-sm);
  min-height: 20px;
}

.frm-submit { align-self: flex-start; }

/* ============================================
   TIMELINE
============================================ */
.timeline-sec { background: var(--clr-bg-alt); }

.timeline-hdr {
  margin-bottom: var(--sp-12);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
}

.tl-item {
  display: flex;
  gap: var(--sp-6);
  align-items: flex-start;
  padding: var(--sp-6) 0;
}

.tl-connector {
  width: 2px;
  height: 40px;
  background: linear-gradient(to bottom, var(--clr-primary), rgba(45,106,79,.2));
  margin-left: 27px;
}

.tl-ico-wrap {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--clr-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-lg);
  flex-shrink: 0;
  box-shadow: var(--shd-grn);
}

.tl-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  margin-bottom: var(--sp-2);
}

.tl-txt {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  line-height: 1.7;
  max-width: 58ch;
}

/* ============================================
   THANKS PAGE
============================================ */
.thanks-main {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(100vh - var(--hdr-h) - 300px);
  padding: var(--sp-24) var(--sp-6);
}

.thanks-inner {
  text-align: center;
  max-width: 520px;
}

.thanks-ico {
  font-size: 4rem;
  color: var(--clr-primary);
  margin-bottom: var(--sp-8);
  display: block;
}

.thanks-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-3xl);
  color: var(--clr-dark);
  letter-spacing: -0.04em;
  line-height: 1.1;
  margin-bottom: var(--sp-5);
}

.thanks-sub {
  color: var(--clr-text-muted);
  font-size: var(--fs-md);
  margin-bottom: var(--sp-10);
}

/* ============================================
   LEGAL PAGES
============================================ */
.legal-pg { }

.legal-main {
  padding-top: calc(var(--hdr-h) + var(--sp-12));
  padding-bottom: var(--sp-24);
}

.legal-layout {
  display: grid;
  grid-template-columns: 1fr;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  gap: var(--sp-10);
}

.legal-toc-mobile {
  display: block;
  background: var(--clr-surface);
  border-radius: var(--rad-lg);
  overflow: hidden;
  box-shadow: var(--shd-sm);
  border: 1px solid rgba(201,184,138,.3);
}

.legal-toc-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-4) var(--sp-5);
  background: none;
  border: none;
  cursor: pointer;
  font-family: var(--ff-body);
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--clr-dark);
}

.legal-toc-toggle i {
  transition: transform var(--trans-fast);
}

.mobile-toc-list {
  display: none;
  flex-direction: column;
  padding: 0 var(--sp-5) var(--sp-4);
  gap: var(--sp-2);
}

.mobile-toc-list.open {
  display: flex;
}

.mobile-toc-list a {
  font-size: var(--fs-sm);
  color: var(--clr-text-muted);
  padding: var(--sp-1) 0;
}

.legal-sidebar {
  display: none;
  position: sticky;
  top: calc(var(--hdr-h) + var(--sp-6));
  align-self: start;
}

.legal-sidebar-inner {
  background: var(--clr-surface);
  border-radius: var(--rad-lg);
  padding: var(--sp-6);
  box-shadow: var(--shd-sm);
  border: 1px solid rgba(201,184,138,.25);
}

.legal-sidebar-label {
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-4);
}

.legal-toc-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
}

.legal-toc-list a {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  padding: var(--sp-1) var(--sp-3);
  border-radius: var(--rad-sm);
  transition: all var(--trans-fast);
  border-left: 2px solid transparent;
}

.legal-toc-list a:hover {
  color: var(--clr-primary);
  background: rgba(45,106,79,.06);
}

.toc-lnk.active {
  color: var(--clr-primary);
  background: rgba(45,106,79,.08);
  border-left-color: var(--clr-primary);
}

.legal-content { }

.legal-header {
  margin-bottom: var(--sp-10);
  padding-bottom: var(--sp-8);
  border-bottom: 2px solid rgba(201,184,138,.3);
}

.legal-h1 {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-2xl);
  color: var(--clr-dark);
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}

.legal-meta {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  margin-bottom: var(--sp-5);
  letter-spacing: 0.04em;
}

.legal-intro {
  color: var(--clr-text);
  line-height: 1.78;
  font-size: var(--fs-sm);
  max-width: 70ch;
}

.legal-section {
  padding: var(--sp-8) 0;
  border-bottom: 1px solid rgba(201,184,138,.2);
  scroll-margin-top: calc(var(--hdr-h) + var(--sp-6));
}

.legal-section:last-child { border-bottom: none; }

.legal-h2 {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-lg);
  color: var(--clr-dark);
  letter-spacing: -0.02em;
  margin-bottom: var(--sp-5);
}

.legal-section p {
  color: var(--clr-text);
  line-height: 1.78;
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
  max-width: 72ch;
}

.legal-section p:last-child { margin-bottom: 0; }

.legal-section strong {
  font-weight: 600;
  color: var(--clr-dark);
}

/* ============================================
   FOOTER
============================================ */
.ftr {
  background: var(--clr-dark);
  color: rgba(232,213,176,.7);
}

.ftr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
}

.ftr-top {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-10);
  padding: var(--sp-16) 0 var(--sp-10);
}

.ftr-logo-link {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  text-decoration: none;
  margin-bottom: var(--sp-4);
}

.ftr-logo {
  width: 32px;
  height: 32px;
  filter: brightness(0) invert(1);
  opacity: 0.8;
}

.ftr-brand-name {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: var(--fs-md);
  color: rgba(232,213,176,.9);
  letter-spacing: -0.02em;
}

.ftr-tagline {
  font-size: var(--fs-sm);
  color: rgba(232,213,176,.5);
  line-height: 1.6;
  max-width: 28ch;
}

.ftr-cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-8);
}

.ftr-col-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(232,213,176,.5);
  margin-bottom: var(--sp-4);
}

.ftr-col-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.ftr-col-list li { }

.ftr-col-list a {
  font-size: var(--fs-sm);
  color: rgba(232,213,176,.65);
  text-decoration: none;
  transition: color var(--trans-fast);
}

.ftr-col-list a:hover { color: var(--clr-warm); }

.ftr-contact li {
  display: flex;
  align-items: flex-start;
  gap: var(--sp-3);
  font-size: var(--fs-sm);
  color: rgba(232,213,176,.65);
}

.ftr-contact .fa {
  color: var(--clr-accent);
  flex-shrink: 0;
  margin-top: 3px;
  font-size: var(--fs-sm);
}

.ftr-sep {
  height: 1px;
  background: rgba(201,184,138,.12);
}

.ftr-btm {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  padding: var(--sp-6) 0;
}

.ftr-copy {
  font-size: var(--fs-xs);
  color: rgba(232,213,176,.4);
}

.ftr-legal-links {
  display: flex;
  gap: var(--sp-5);
}

.ftr-legal-links a {
  font-size: var(--fs-xs);
  color: rgba(232,213,176,.4);
  transition: color var(--trans-fast);
}

.ftr-legal-links a:hover { color: var(--clr-warm); }

/* ============================================
   COOKIE CONSENT
============================================ */
.cookie-card {
  position: fixed;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  z-index: 5000;
  background: var(--clr-surface);
  border-radius: var(--rad-xl);
  box-shadow: var(--shd-xl), 0 0 0 1px rgba(45,106,79,.10);
  padding: var(--sp-5) var(--sp-6);
  max-width: 480px;
  width: calc(100% - var(--sp-8));
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  border-top: 3px solid var(--clr-primary);
}

.cookie-card.expanded {
  max-width: 560px;
}

.cookie-compact {
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
}

.cookie-compact-msg {
  font-size: var(--fs-sm);
  color: var(--clr-text);
  line-height: 1.6;
}

.cookie-compact-msg strong { color: var(--clr-dark); }

.cookie-btns {
  display: flex;
  gap: var(--sp-3);
  flex-wrap: wrap;
}

.cookie-btn-accept {
  background: var(--clr-primary);
  color: #fff;
  border: none;
  border-radius: var(--rad-pill);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: all var(--trans-fast);
}

.cookie-btn-accept:hover {
  background: var(--clr-primary-lt);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--clr-text-muted);
  border: 1.5px solid rgba(201,184,138,.5);
  border-radius: var(--rad-pill);
  padding: var(--sp-2) var(--sp-5);
  font-size: var(--fs-sm);
  font-weight: 500;
  cursor: pointer;
  font-family: var(--ff-body);
  transition: all var(--trans-fast);
}

.cookie-btn-settings:hover {
  border-color: var(--clr-primary);
  color: var(--clr-primary);
}

.cookie-expanded {
  display: none;
}

.cookie-card.expanded .cookie-compact {
  display: none;
}

.cookie-card.expanded .cookie-expanded {
  display: block;
}

.cookie-exp-title {
  font-family: var(--ff-head);
  font-weight: 700;
  font-size: var(--fs-md);
  color: var(--clr-dark);
  margin-bottom: var(--sp-5);
}

.cookie-cat {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: var(--sp-4) 0;
  border-bottom: 1px solid rgba(201,184,138,.2);
  gap: var(--sp-4);
}

.cookie-cat:last-of-type { border-bottom: none; }

.cookie-cat-info strong {
  display: block;
  font-weight: 600;
  font-size: var(--fs-sm);
  color: var(--clr-dark);
  margin-bottom: var(--sp-1);
}

.cookie-cat-info p {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  line-height: 1.5;
}

.cookie-toggle {
  position: relative;
  width: 44px;
  height: 24px;
  flex-shrink: 0;
}

.cookie-toggle input {
  opacity: 0;
  width: 0; height: 0;
  position: absolute;
}

.cookie-toggle-slider {
  position: absolute;
  inset: 0;
  background: rgba(201,184,138,.4);
  border-radius: var(--rad-pill);
  cursor: pointer;
  transition: background var(--trans-fast);
}

.cookie-toggle-slider::before {
  content: '';
  position: absolute;
  left: 3px; top: 3px;
  width: 18px; height: 18px;
  border-radius: 50%;
  background: #fff;
  transition: transform var(--trans-fast);
  box-shadow: var(--shd-xs);
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background: var(--clr-primary);
}

.cookie-toggle input:checked + .cookie-toggle-slider::before {
  transform: translateX(20px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.6;
  cursor: not-allowed;
}

.cookie-exp-btns {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none !important;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (min-width: 640px) {
  .who-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .ftr-cols {
    grid-template-columns: repeat(4, 1fr);
  }

  .ftr-top {
    grid-template-columns: 1fr 2fr;
  }

  .feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .feat-sep {
    display: none;
  }

  .feat-item {
    padding: var(--sp-6);
    background: var(--clr-surface);
    border-radius: var(--rad-lg);
    box-shadow: var(--shd-sm);
    transition: all var(--trans-med);
  }

  .feat-item:hover {
    box-shadow: var(--shd-md);
    transform: translateY(-3px);
  }

  .debt-block {
    grid-template-columns: 100px 1fr;
  }
}

@media (min-width: 768px) {
  .hdr-links { display: flex; }
  .hdr-burger { display: none; }

  .hero-inner {
    grid-template-columns: 60% 40%;
    gap: var(--sp-12);
  }

  .hero-img { height: 500px; }

  .asym-left  { grid-template-columns: 45% 55%; }
  .asym-right { grid-template-columns: 55% 45%; }

  .why-sec .asym-left { grid-template-columns: 45% 55%; }

  .five-inner {
    grid-template-columns: 40% 60%;
  }

  .wif-item {
    grid-template-columns: 1fr 1fr;
  }

  .wif-item-alt .wif-item-img-wrap {
    order: 2;
  }

  .wif-item-alt .wif-item-body {
    order: 1;
  }

  .who-cards {
    grid-template-columns: repeat(3, 1fr);
  }

  .guide-inner {
    grid-template-columns: 1fr 1fr;
  }

  .guide-inner.asym-right .guide-txt-col {
    order: 1;
  }

  .guide-inner.asym-right .guide-img-col {
    order: 2;
  }

  .contact-layout {
    grid-template-columns: 60% 40%;
  }

  .ftr-btm {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .legal-toc-mobile { display: none; }
  .legal-sidebar { display: block; }

  .legal-layout {
    grid-template-columns: 220px 1fr;
    align-items: start;
  }
}

@media (min-width: 1024px) {
  .hero-inner {
    grid-template-columns: 58% 42%;
  }

  .asym-left  { grid-template-columns: 42% 58%; }
  .asym-right { grid-template-columns: 58% 42%; }

  .debt-block {
    grid-template-columns: 120px 1fr;
  }

  .legal-layout {
    grid-template-columns: 240px 1fr;
    gap: var(--sp-12);
  }
}

@media (min-width: 1200px) {
  .hero-inner {
    grid-template-columns: 55% 45%;
  }
}