/* ═══════════════════════════════════════
   DESIGN TOKENS - RV / FOREST GREEN
═══════════════════════════════════════ */
:root {
  /* Forest green palette */
  --forest:       #0D1F13;
  --forest-2:     #162C1E;
  --forest-3:     #1F3D2A;
  --forest-4:     #2B5238;
  --sage-mid:     #4A7A58;
  --sage-light:   #EDF4EE;
  --sage-pale:    #F5F9F5;

  /* Brand gold - retained across all verticals */
  --gold:         #c4a052;
  --gold-hover:   #D4A840;
  --gold-glow:    rgba(196,146,42,0.2);

  /* Earth tones */
  --earth-warm:   #FAF7F2;
  --earth-mid:    #EDE6D6;
  --amber:        #D47B12;

  /* Text */
  --text-dark:    #0D1F13;
  --text-mid:     #3A5A42;
  --text-muted:   #6B8A72;
  --white:        #FFFFFF;

  /* Glass */
  --glass-f:      rgba(237,244,238,0.07);
  --glass-b:      rgba(75,122,88,0.22);

  /* Shared */
  --radius:       16px;
  --radius-lg:    24px;
  --radius-pill:  100px;
  --nav-h:        76px;
  --max-w:        1220px;
  --ease:         cubic-bezier(0.4,0,0.2,1);
  
  --paper:#eef1ec;--paper-2:#e4e9e1;--card:#fffffe;--paper-blur:rgba(238,241,236,0.92);--ink:#1f2620;--ink-soft:#515a4f;--line:#d8ded2;--radius:16px;--accent:#3c7a52;--accent-deep:#2c5d3d;--accent-soft:#d6e6da;--accent-shadow:rgba(44,93,61,0.5);--deep:#1f2d24;--deep-2:#2e4034;--sun:#dfa747;--why-text:#a7b0a4;--final-soft:rgba(255,255,255,0.82);--sky1:#eef3ed;--sky2:#e3ecdf;--sky3:#ecdcb2;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--sage-pale);
  color: var(--text-dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { text-decoration: none; }
ul { list-style: none; }

/* ═══ NAV ═══════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 64px;
  z-index: 900;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}
.nav.solid {
  background: rgba(13,31,19,0.95);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  box-shadow: 0 1px 0 rgba(75,122,88,0.25);
}
.nav-logo { display: flex; flex-direction: column; line-height: 1; }
.logo-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 25px; font-weight: 700;
  color: var(--white); letter-spacing: 0.1em;
}
.logo-tag {
  font-size: 8.5px; font-weight: 600;
  letter-spacing: 0.24em; color: var(--gold);
  text-transform: uppercase; margin-top: 2px;
}
.nav-links { display: flex; gap: 36px; }
.nav-links a {
  font-size: 14.5px; font-weight: 400;
  color: rgba(255,255,255,0.78);
  transition: color 0.25s;
}
.nav-links a:hover { color: var(--gold); }
.nav-ctas { display: flex; gap: 10px; align-items: center; }
.btn-nav-ghost {
  padding: 9px 22px; border-radius: var(--radius-pill);
  border: 1px solid rgba(196,146,42,0.45); color: var(--gold);
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
  background: transparent; cursor: pointer;
  transition: all 0.25s;
}
.btn-nav-ghost:hover { background: rgba(196,146,42,0.1); border-color: var(--gold); }
.btn-nav-gold {
  padding: 9px 22px; border-radius: var(--radius-pill);
  background: var(--gold); color: var(--white);
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 600;
  border: none; cursor: pointer; transition: all 0.25s;
}
.btn-nav-gold:hover {
  background: var(--gold-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 22px rgba(196,146,42,0.36);
}

/* ═══ HERO (CENTERED LAYOUT) ═══════════ */
.hero {
  position: relative; height: 100vh; min-height: 700px;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; text-align: center;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('../img/bg-rv.jpg');
  background-size: cover; background-position: center;
  animation: heroScale 24s ease-in-out infinite alternate;
  will-change: transform;
}
@keyframes heroScale {
  from { transform: scale(1.03); }
  to   { transform: scale(1.09) translateY(-6px); }
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(13, 31, 19, 0.55) 0%, rgb(13 31 19 / 57%) 50%, rgb(13 31 19 / 35%) 100%)
}
/* top fade */
.hero-overlay::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(13,31,19,0.6), transparent);
}
.hero-body {
  position: relative; z-index: 2;
  padding: 0 48px;
  padding-top: var(--nav-h);
  max-width: 900px;
  animation: fadeRise 1.1s cubic-bezier(0.22,1,0.36,1) both;
}
@keyframes fadeRise {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-chip {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(196,146,42,0.1);
  border: 1px solid rgba(196,146,42,0.32);
  padding: 5px 16px 5px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 28px;
}
.chip-dot {
  width: 7px; height: 7px; background: var(--gold);
  border-radius: 50%;
  animation: dotPulse 2.4s ease-in-out infinite;
}
@keyframes dotPulse { 0%,100%{opacity:1;} 50%{opacity:0.32;} }
.hero-chip span {
  font-size: 11px; font-weight: 600;
  letter-spacing: 0.2em; color: var(--gold); text-transform: uppercase;
}
.hero h1 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700; color: var(--white);
  line-height: 1.06; margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.hero-italic {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 3.2vw, 46px);
  font-weight: 400; font-style: italic;
  color: var(--gold); line-height: 1.25;
  display: block; margin-bottom: 28px;
}
.hero p {
  font-size: 18px; font-weight: 400;
  color: rgb(255 255 255 / 99%);
  line-height: 1.72; max-width: 600px;
  margin: 0 auto 44px;
}
.hero p.hro-1 {
    font-size: 15px;
    margin-top: 15px;
}
.hero-btns {
  display: flex; gap: 14px;
  justify-content: center; flex-wrap: wrap;
}
.btn-gold-lg {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--gold); color: var(--white);
  padding: 16px 38px; border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 600;
  transition: all 0.25s; border: none; cursor: pointer; white-space: nowrap;
}
.btn-gold-lg:hover {
  background: var(--gold-hover); transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(196,146,42,0.42);
}
.btn-outline-lg {
  display: inline-flex; align-items: center;
  background: transparent; color: rgba(255,255,255,0.82);
  padding: 16px 38px; border-radius: var(--radius-pill);
  border: 1px solid rgba(255,255,255,0.28);
  font-family: 'DM Sans', sans-serif; font-size: 16px; font-weight: 400;
  transition: all 0.25s; cursor: pointer; white-space: nowrap;
}
.btn-outline-lg:hover {
  border-color: rgba(255,255,255,0.58);
  background: rgba(255,255,255,0.07); color: var(--white);
}
/* scroll badge bottom-center */
.hero-scroll {
  position: absolute; bottom: 38px;
  left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  z-index: 2;
  display:none;
}
.scroll-arrow {
  width: 34px; height: 34px;
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.45);
  animation: bounce 2s ease-in-out infinite;
}
@keyframes bounce {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(6px); }
}
.scroll-label {
  font-size: 10px; font-weight: 500; letter-spacing: 0.14em;
  color: rgba(255,255,255,0.32); text-transform: uppercase;
}

/* ═══ TICKER ══════════════════════════════ */
.ticker { background: var(--gold); padding: 14px 0; overflow: hidden; }
.ticker-inner {
  display: flex;
  animation: tickerRun 32s linear infinite;
  will-change: transform;
}
.ti { display: flex; align-items: center; flex-shrink: 0; }
.ti span {
  font-size: 11.5px; font-weight: 700; letter-spacing: 0.2em;
  color: var(--forest); text-transform: uppercase;
  padding: 0 30px; white-space: nowrap;
}
.ti .dot { color: rgba(13,31,19,0.3); font-size: 16px; }
@keyframes tickerRun {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ═══ "SOUND FAMILIAR?" SECTION ══════════ */
.familiar {
  background: var(--white);
  padding: 96px 64px;
}
.familiar-inner {
  max-width: 860px; margin: 0 auto; text-align: center;
}
.fam-eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.26em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 18px; display: block;
}
.fam-title {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 4vw, 54px);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.1; margin-bottom: 16px;
}
.fam-title em { font-style: italic; color: var(--forest-4); }
.fam-sub {
  font-size: 17px; font-weight: 300; color: var(--text-muted);
  line-height: 1.7; margin-bottom: 52px;
}
.fam-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 14px 40px; text-align: left; margin-bottom: 48px;
}
.fam-item {
  display: flex; align-items: flex-start; gap: 14px;
  padding: 16px 18px;
  border: 1px solid rgba(75,122,88,0.15);
  border-radius: var(--radius);
  background: var(--sage-pale);
  transition: all 0.25s;
}
.fam-item:hover {
  border-color: rgba(75,122,88,0.35);
  background: var(--sage-light);
  transform: translateX(3px);
}
.fam-check {
  width: 20px; height: 20px; flex-shrink: 0;
  border: 2px solid rgba(75,122,88,0.4);
  border-radius: 5px; margin-top: 2px;
  background: var(--white);
  display: flex; align-items: center; justify-content: center;
}
.fam-item p {
  font-size: 16px; color: var(--text-mid);
  line-height: 1.5; font-weight: 400;
}
.fam-item p strong { color: var(--text-dark); font-weight: 600; }
.fam-cta-wrap { text-align: center; }
.fam-cta-note {
  font-size: 13.5px; color: var(--text-muted); margin-bottom: 22px;
  font-style: italic;
}

/* ═══ STATS ════════════════════════════════ */
.stats {
  background: #fff;
  padding: 72px 64px;
}
.stats-grid {
  max-width: var(--max-w); margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr); gap: 0;
}

.stat-cell {
  text-align: center;
  padding: 0 40px;
  border-left: 1px solid rgba(75,122,88,0.22);
}
.stats-grid .noborder{border-left:none;}
.stat-n {
  font-family: 'DM Sans', sans-serif;
  font-size: 52px; font-weight: 700;
  color: #0d1f13f2; line-height: 1; margin-bottom: 10px;
}
.stat-d {
  font-size: 12.5px;
  letter-spacing: 0.06em; line-height: 1.55; text-transform: uppercase;
}

/* ═══ SECTION COMMONS ══════════════════════ */
.section { padding: 108px 64px; }
.inner { max-width: var(--max-w); margin: 0 auto; }
.eyebrow {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.26em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 18px; display: block;
}
.h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(36px, 3.8vw, 56px);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.1; margin-bottom: 22px;
  letter-spacing: -0.01em;
}
.h2 em { font-style: italic; color: var(--forest-4); }
.h2-white { color: var(--white) !important; }
.h2-white em { color: var(--gold) !important; }
.body-txt {
  font-size: 17px; font-weight: 300;
  color: var(--text-muted); line-height: 1.74; max-width: 580px;
}
.body-dim { color: rgba(255,255,255,0.5) !important; }

/* ═══ PAIN POINTS (photo RIGHT, text LEFT) ═══ */
.pain-section { background: var(--sage-pale); }
.pain-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center; margin-top: 72px;
}
.pain-content { order: 1; }
.pain-photo-wrap { order: 2; }
.pain-photo-wrap {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; aspect-ratio: 3/3.2;
  box-shadow: 0 40px 80px rgba(13,31,19,0.15);
}
.pain-photo-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.7s ease;
}
.pain-photo-wrap:hover img { transform: scale(1.04); }
.pain-photo-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(13,31,19,0.88);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(75,122,88,0.3);
  border-radius: 14px; padding: 16px 20px;
  display: flex; align-items: center; gap: 14px;
}
.badge-ico {
  width: 36px; height: 36px; background: rgba(196,146,42,0.15);
  border-radius: 10px; display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--gold);
}
.badge-copy strong {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px; font-weight: 700; color: var(--gold);
  display: block; line-height: 1; margin-bottom: 3px;
}
.badge-copy span { font-size: 12px; color: rgba(255,255,255,0.48); }
.pain-pts { display: flex; flex-direction: column; gap: 30px; }
.pp {
  display: flex; gap: 18px; align-items: flex-start;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(75,122,88,0.12);
}
.pp:last-child { border-bottom: none; padding-bottom: 0; }
.pp-ico {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(43,82,56,0.08);
  border: 1px solid rgba(43,82,56,0.2);
  border-radius: 12px; display: flex;
  align-items: center; justify-content: center;
  color: var(--forest-4);
  transition: all 0.25s;
}
.pp:hover .pp-ico {
  background: rgba(43,82,56,0.16);
  border-color: rgba(43,82,56,0.38);
}
.pp-body h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 21px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 6px;
}
.pp-body p { font-size: 16px; color: var(--text-muted); line-height: 1.68; }

/* ═══ FEATURES (3-COL, SAGE BG, LEFT-BORDER) ═ */
.feat-section { background: var(--sage-light); }
.feat-head { margin-bottom: 56px; }
.feat-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 22px;
}
.fc {
  background: var(--white);
  border: 1px solid rgba(75,122,88,0.14);
  border-left: 4px solid var(--forest-4);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 34px 28px;
  transition: all 0.28s;
  position: relative; overflow: hidden;
}
.fc::after {
  content: '';
  position: absolute; top: 0; right: 0;
  width: 80px; height: 80px;
  background: radial-gradient(circle at top right,
    rgba(43,82,56,0.05) 0%, transparent 70%);
}
.fc:hover {
  border-left-color: var(--gold);
  box-shadow: 0 12px 40px rgba(13,31,19,0.1);
  transform: translateY(-4px);
}
.fc-num {
      font-family: 'DM Sans', sans-serif;
    font-size: 17px;
    font-weight: 700;
    color: rgb(43 82 56 / 14%);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
    display: block;
    position: absolute;
    right: 26px;
    top: 47px;
}
.fc-ico {
  width: 44px; height: 44px;
  background: rgba(43,82,56,0.1);
  border-radius: 11px; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 18px; color: var(--forest-4);
}
.fc:hover .fc-ico { background: rgba(196,146,42,0.1); color: var(--gold); }
.fc h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 20px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 10px; line-height: 1.2;
}
.fc p { font-size: 16px; color: var(--text-muted); line-height: 1.68; }

/* ═══ HOW IT WORKS (2×2 GRID, DARK GREEN) ═══ */
.how-section { background: var(--forest); }
.how-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2px; margin-top: 64px;
  border-radius: var(--radius-lg); overflow: hidden;
}
.hw {
  background: rgba(237,244,238,0.04);
  border: 1px solid rgba(75,122,88,0.15);
  padding: 52px 44px;
  display: flex; flex-direction: column; gap: 0;
  transition: background 0.28s;
}
.hw:hover { background: rgba(43,82,56,0.18); }
.hw-step-n {
    font-family: 'DM Sans', sans-serif;
    font-size: 46px;
    font-weight: 800;
    color: rgba(75, 122, 88, 0.18);
    line-height: 1;
    margin-bottom: 20px;
    display: block;
    position: absolute;
    right: 22px;
    top: 53px;
}
.hw-ico {
  width: 52px; height: 52px;
  background: rgba(196,146,42,0.12);
  border: 1px solid rgba(196,146,42,0.25);
  border-radius: 14px; display: flex;
  align-items: center; justify-content: center;
  margin-bottom: 24px; color: var(--gold);
}
.hw h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 24px; font-weight: 700;
  color: var(--white); margin-bottom: 12px; line-height: 1.2;
}
.hw p { font-size: 16px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* ═══ PRICING ══════════════════════════════ */
.pricing-section { background: var(--forest-3); }
.ptoggle-row {
  display: flex; align-items: center; gap: 16px; margin: 44px 0 48px;
}
.ptoggle-pill {
  display: inline-flex;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-pill); padding: 4px;
}
.pt-btn {
  padding: 9px 26px; border-radius: var(--radius-pill); border: none;
  font-family: 'DM Sans', sans-serif; font-size: 13.5px; font-weight: 500;
  cursor: pointer; transition: all 0.25s;
  background: transparent; color: rgba(255,255,255,0.5);
}
.pt-btn.on { background: var(--gold); color: var(--forest); font-weight: 600; }
.save-pill {
  display: inline-flex; align-items: center; gap: 5px;
  background: rgba(196,146,42,0.12);
  border: 1px solid rgba(196,146,42,0.28);
  padding: 5px 14px; border-radius: var(--radius-pill);
  font-size: 12px; color: var(--gold); font-weight: 500;
}
.p-grid {
  display: grid; grid-template-columns: repeat(4,1fr); gap: 18px;
}
.p-card {
  background: rgba(237,244,238,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 22px; padding: 36px 26px;
  position: relative; display: flex; flex-direction: column;
  transition: all 0.3s;
}
.p-card:hover { transform: translateY(-4px); box-shadow: 0 24px 60px rgba(0,0,0,0.25); }
.p-card.best {
  background: rgba(196,146,42,0.08);
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(196,146,42,0.28), 0 20px 60px rgba(196,146,42,0.1);
}
.best-lbl {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--forest);
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 4px 18px;
  border-radius: var(--radius-pill); white-space: nowrap;
}
.tier-n {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 18px;
}
.p-amt-row { margin-bottom: 6px; }
.p-amt {
  font-family: 'DM Sans', sans-serif;
  font-size: 50px; font-weight: 700; color: var(--white); line-height: 1;
}
.p-per { font-size: 13px; color: rgba(255,255,255,0.35); margin-left: 3px; }
.p-billing { font-size: 12px; color: rgba(255,255,255,0.32); margin-bottom: 26px; }
.p-divider { height: 1px; background: rgba(255,255,255,0.07); margin-bottom: 24px; }
.p-feats {
  flex: 1; display: flex; flex-direction: column; gap: 11px; margin-bottom: 28px;
}
.p-feats li {
  display: flex; gap: 9px; font-size: 13.5px;
  color: rgba(255,255,255,0.6); align-items: flex-start; line-height: 1.4;
}
.pf-chk { color: var(--gold); flex-shrink: 0; margin-top: 1px; }
.p-cta-btn {
  display: block; text-align: center; padding: 13px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', sans-serif; font-size: 14.5px; font-weight: 600;
  transition: all 0.25s; cursor: pointer; border: none;
}
.cta-solid { background: var(--gold); color: var(--forest); }
.cta-solid:hover { background: var(--gold-hover); box-shadow: 0 6px 24px rgba(196,146,42,0.4); }
.cta-ring {
  background: transparent; color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.16);
}
.cta-ring:hover { border-color: rgba(255,255,255,0.38); color: var(--white); }

/* ═══ TESTIMONIALS ══════════════════════════ */
.testi-sec { background:#fff;  }
.testi-note {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43,82,56,0.08);
  border: 1px solid rgba(43,82,56,0.18);
  padding: 6px 16px; border-radius: var(--radius-pill);
  font-size: 12px; color: var(--text-muted);
  font-style: italic; margin-top: 10px;
}
.t-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 24px; margin-top: 56px;
}
.t-card {
  background: var(--white);
  border: 1px solid rgba(43,82,56,0.1);
  border-radius: var(--radius-lg); padding: 36px 30px;
  transition: all 0.28s;
}
.t-card:hover {
  border-color: rgba(43,82,56,0.24);
  box-shadow: 0 16px 48px rgba(13,31,19,0.08);
  transform: translateY(-4px);
}
.t-stars { display: flex; gap: 3px; margin-bottom: 22px; }
.star { color: var(--gold); font-size: 15px; }
.t-quote {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px; font-weight: 500; font-style: italic;
  color: var(--text-dark); line-height: 1.55; margin-bottom: 24px;
}
.t-person { display: flex; align-items: center; gap: 12px; }
.t-ava {
  width: 46px; height: 46px; border-radius: 50%;
  object-fit: cover; object-position: top;
}
.t-name { font-size: 14.5px; font-weight: 600; color: var(--text-dark); }
.t-detail { font-size: 12.5px; color: var(--text-muted); margin-top: 2px; }

/* ═══ FINAL CTA ══════════════════════════════ */
.cta-sec {
  position: relative; overflow: hidden; text-align: center;
  padding: 120px 64px; background: var(--forest);
}
.cta-bg {
  position: absolute; inset: 0;
  background-image: url('../img/sm-banner.jpg');
  background-size: cover; background-position: center; opacity: 0.12;
}
.cta-inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-fine { font-size: 12.5px; color: rgba(255,255,255,0.28); margin-top: 18px; }

/* ═══ FOOTER ════════════════════════════════ */
.footer {
  background: var(--forest);
  border-top: 1px solid rgba(75,122,88,0.15);
  padding: 72px 64px 44px;
}
.f-top {
  display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 64px; padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 36px;
}
.f-logo-name {
  font-family: 'DM Sans', sans-serif;
  font-size: 28px; font-weight: 700; color: var(--white);
  letter-spacing: 0.1em; display: block;
}
.f-logo-tag { display: block; margin-bottom: 20px; }
.f-brand-p { font-size: 15px; color: rgba(255,255,255,0.36); line-height: 1.75; max-width: 290px; }
.f-col h5 {
  font-size: 10px; font-weight: 700; letter-spacing: 0.24em;
  color: var(--gold); text-transform: uppercase; margin-bottom: 20px;
}
.f-col li { margin-bottom: 12px; }
.f-col a { font-size: 15px; color: rgba(255,255,255,0.38); transition: color 0.25s; }
.f-col a:hover { color: var(--gold); }
.f-bottom { display: flex; justify-content: space-between; align-items: center; }
.f-copy { font-size: 12.5px; color: rgba(255,255,255,0.22); }
.f-legal { display: flex; gap: 24px; }
.f-legal a { font-size: 12.5px; color: rgba(255,255,255,0.22); transition: color 0.25s; }
.f-legal a:hover { color: rgba(255,255,255,0.5); }

.footer .f-brand img {
    margin-bottom: 18px;
}

/* ═══ SCROLL REVEAL ═════════════════════════ */
.sr { opacity: 0; transform: translateY(26px); transition: opacity 0.7s cubic-bezier(0.22,1,0.36,1), transform 0.7s cubic-bezier(0.22,1,0.36,1); }
.sr.in { opacity: 1; transform: translateY(0); }
.d1{transition-delay:0.08s;} .d2{transition-delay:0.16s;}
.d3{transition-delay:0.24s;} .d4{transition-delay:0.32s;}

/* ═══ PROBLEM / FRICTION SECTION ═══════════ */
.problem-sec {
   background:var(--forest-4);
  padding: 96px 64px;
}
.problem-inner { max-width: var(--max-w); margin: 0 auto; }
.problem-head { max-width: 640px; margin-bottom: 52px; }
.problem-head .eyebrow { margin-bottom: 18px; }
.problem-head h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 700; color: #fff;
  line-height: 1.1; margin-bottom: 16px;
  letter-spacing: -0.01em;
}
.problem-head h2 em { font-style: italic; color: var(--gold); }
.problem-head p {
  font-size: 17px; font-weight: 300;
  color:#fff; line-height: 1.7;
}
.friction-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 0px;
}
.friction-card {
  
  
  
  padding: 30px 30px 32px;
  position: relative;
  
}
.friction-card:hover {
 
  box-shadow: 0 18px 40px rgba(13,31,19,0.08);
 
}

.friction-card.sr.in{border-right: 1px solid rgba(255,255,255,0.50); border-bottom: 1px solid rgba(255,255,255,0.50); padding-left:0px;}
.friction-card.sr.in.d1{border-right: 0px solid rgba(75,122,88,0.15); border-bottom: 1px solid rgba(255,255,255,0.50); padding-left:30px;}
.friction-card.sr.in.d2{border-right: 1px solid rgba(255,255,255,0.50); border-bottom: 0px solid rgba(75,122,88,0.15); padding-left:0px;}
.friction-card.sr.in.d3{border-right: 0px solid rgba(75,122,88,0.15); border-bottom: 0px solid rgba(75,122,88,0.15); padding-left:30px;}

.friction-q {
  font-family: 'DM Sans', sans-serif;
  font-size: 19px; font-weight: 600;
  color: var(--gold); margin-bottom: 10px; line-height: 1.3;
}
.friction-q::before {
  content: "\201C";
  color: var(--gold); font-size: 22px; margin-right: 3px;
  font-family: 'DM Sans', sans-serif;
}
.friction-card p {
  font-size: 15.5px; color: var(--white); line-height: 1.65;
}

/* ═══ SPOTLIGHT / HOW-IT-WORKS LIGHT ═══════ */
.spotlight-sec {
  background: var(--sage-pale);
  padding: 96px 64px;
}
.spotlight-inner { max-width: var(--max-w); margin: 0 auto; }
.spotlight-head { max-width: 640px; margin: 0 auto 72px; text-align: center; }
.spotlight-head .eyebrow { margin-bottom: 18px; }
.spotlight-head h2 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(34px, 3.8vw, 52px);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.1; margin-bottom: 16px;
}
.spotlight-head h2 em { font-style: italic; color: var(--forest-4); }
.spotlight-head p {
  font-size: 17px; font-weight: 300;
  color: var(--text-muted); line-height: 1.7;
}
.spotlight-row {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 72px; align-items: center; margin-bottom: 72px;
}
.spotlight-row:last-of-type { margin-bottom: 0; }
.spotlight-row.flip .spot-text { order: 2; }
.spotlight-row.flip .spot-visual { order: 1; }
.spot-label-pill {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.22em;
  color: var(--gold); text-transform: uppercase;
  margin-bottom: 14px; display: block;
}
.spot-text h3 {
  font-family: 'DM Sans', sans-serif;
  font-size: clamp(26px, 2.6vw, 36px);
  font-weight: 700; color: var(--text-dark);
  line-height: 1.15; margin-bottom: 14px;
}
.spot-text p {
  font-size: 16.5px; color: var(--text-muted); line-height: 1.72;
}
.spot-visual {
  background: var(--white);
  border: 1px solid rgba(75,122,88,0.14);
  border-radius: var(--radius-lg);
  padding: 10px;
  box-shadow: 0 24px 56px rgba(13,31,19,0.08);
}
.sv-header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px;
}
.sv-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 600; color: var(--text-dark);
}
.sv-tag {
  font-size: 10.5px; font-weight: 700; letter-spacing: 0.1em;
  color: var(--forest-4); background: var(--sage-light);
  padding: 4px 12px; border-radius: var(--radius-pill);
  text-transform: uppercase;
}
/* Calendar mini */
.mini-cal-grid {
  display: grid; grid-template-columns: repeat(7, 1fr); gap: 5px;
}
.mcd { text-align: center; font-size: 10px; font-weight: 700;
  color: var(--text-muted); letter-spacing: 0.04em; padding-bottom: 4px; }
.mce {
  aspect-ratio: 1; border-radius: 8px;
  background: var(--sage-pale);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-size: 11px; font-weight: 600; color: var(--text-muted);
}
.mce.muted { opacity: 0.35; }
.mce .dot { width: 4px; height: 4px; border-radius: 50%; margin-top: 2px; }
.mce.bk-a { background: var(--sage-light); color: var(--text-dark); }
.mce.bk-a .dot { background: var(--sage-mid); }
.mce.bk-b { background: rgba(196,146,42,0.12); color: var(--text-dark); }
.mce.bk-b .dot { background: var(--gold); }
.mce.req { background: var(--forest-4); color: var(--white); box-shadow: 0 4px 12px rgba(43,82,56,0.35); }
.cal-legend-rv {
  display: flex; gap: 14px; margin-top: 14px; flex-wrap: wrap;
  font-size: 11px; color: var(--text-muted);
}
.cal-legend-rv span { display: flex; align-items: center; gap: 6px; }
.cal-legend-rv i { width: 8px; height: 8px; border-radius: 3px; display: inline-block; }
/* Ledger mini */
.ledger-rv-row {
  display: grid; grid-template-columns: 1fr auto;
  gap: 4px 12px; padding: 13px 0;
  border-bottom: 1px solid rgba(75,122,88,0.12);
}
.ledger-rv-row:last-of-type { border-bottom: none; }
.lr-name { font-weight: 600; font-size: 14px; color: var(--text-dark); }
.lr-split { font-size: 11.5px; color: var(--text-muted); }
.lr-amt { font-family: 'DM Sans', sans-serif; font-weight: 700; font-size: 15px; text-align: right; color: var(--text-dark); }
.lr-each { font-size: 11.5px; font-weight: 600; text-align: right; color: var(--gold); }
.ledger-rv-foot {
  display: flex; justify-content: space-between; align-items: center;
  margin-top: 14px; padding-top: 14px;
  border-top: 2px solid var(--text-dark);
}
.lrf-label { font-weight: 600; font-size: 13px; color: var(--text-dark); }
.lrf-status {
  font-size: 11px; font-weight: 700;
  color: var(--forest-4); background: var(--sage-light);
  padding: 4px 12px; border-radius: var(--radius-pill);
}
/* Feat mini grid inside spotlight section */
.spot-feat-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 18px; margin-top: 0;
}
.spot-feat {
  background: var(--white);
  border: 1px solid rgba(75,122,88,0.14);
  border-radius: var(--radius);
  padding: 26px 24px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}
.spot-feat:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(13,31,19,0.08);
  border-color: rgba(196,146,42,0.35);
}
.sf-num {
  font-size: 10.5px; font-weight: 700; color: var(--gold);
  letter-spacing: 0.1em; margin-bottom: 14px; display: block;
}
.sf-ico {
  width: 42px; height: 42px; margin-bottom: 14px;
  background: rgba(43,82,56,0.08);
  border-radius: 10px; display: flex;
  align-items: center; justify-content: center;
  color: var(--forest-4);
}
.spot-feat:hover .sf-ico { background: rgba(196,146,42,0.1); color: var(--gold); }
.spot-feat h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 17px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 8px; line-height: 1.25;
}
.spot-feat p { font-size: 14.5px; color: var(--text-muted); line-height: 1.65; }


  .pricing { background: var(--paper-2); }
  .price-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; margin-top: 52px; max-width: 880px; margin-left: auto; margin-right: auto; }
  .plan { background: var(--card); border: 1px solid var(--line); border-radius: 20px; padding: 38px 34px; position: relative; }
  .plan.featured { border: 2px solid var(--accent); box-shadow: 0 30px 56px -34px var(--accent-shadow); }
  .plan-tag { position: absolute; top: -13px; left: 34px; background: var(--accent); color: #fff; font-size: 0.72rem;
    font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; padding: 6px 14px; border-radius: 999px; }
  .plan-name { font-size: 1.5rem; font-weight: 500; }
  .plan-desc { color: var(--ink-soft); font-size: 0.92rem; margin: 4px 0 20px; min-height: 42px; }
  .plan-price { display: flex; align-items: baseline; gap: 4px; }
  .plan-price .amt {font-size: 3.2rem; font-weight: 500; }
  .plan-price .per { color: var(--ink-soft); font-size: 0.95rem; font-weight: 500; }
  .plan-year { font-size: 0.82rem; color: var(--ink-soft); margin-top: 4px; }
  .plan ul { list-style: none; margin: 24px 0 28px; }
  .plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.95rem; padding: 7px 0; color: var(--ink-soft); }
  .plan li svg { flex-shrink: 0; margin-top: 3px; }
  .plan li b { color: var(--ink); font-weight: 600; }
  .plan .btn { width: 100%; justify-content: center; }
  .per-owner { max-width: 880px; margin: 28px auto 0; background: var(--deep); color: var(--paper); border-radius: 16px;
    padding: 24px 30px; display: flex; align-items: center; gap: 22px; }
  .per-owner .po-big { font-size: 2.5rem; font-weight: 500; color: var(--sun); line-height: 1; flex-shrink: 0; white-space: nowrap; }
  .per-owner .po-text { font-size: 0.97rem; }
  .per-owner .po-text b { color: #fff; }
  .price-trial { text-align: center; margin-top: 22px; font-size: 0.88rem; color: var(--ink-soft); }


  .why { background: var(--deep); color: var(--paper); }
  .why .eyebrow { color: var(--sun); }
  .why h2 { color: var(--paper); }
  .why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
  .why-item .wi-ico { width: 40px; height: 40px; margin-bottom: 16px; }
  .why-item h3 { font-size: 1.3rem; color: var(--paper); margin-bottom: 8px; }
  .why-item p { color: var(--why-text); font-size: 0.98rem; }
  .why-foot { margin-top: 56px; padding-top: 28px; border-top: 1px solid var(--deep-2); font-size: 0.92rem;
    color: var(--why-text); display: flex; align-items: center; gap: 10px; }
  .why-foot .bk-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--sun); }

  .faq-list { margin-top: 44px; max-width: 100%; }
  .faq-item { border-bottom: 1px solid var(--line); }
  .faq-q { width: 100%; text-align: left; background: none; border: none; cursor: pointer; padding: 24px 20px;
    display: flex; justify-content: space-between; align-items: center; gap: 20px;
     font-size: 1.22rem; font-weight: 500; color: var(--ink); }
  .faq-q .faq-ico { flex-shrink: 0; width: 26px; height: 26px; border-radius: 50%; border: 1.5px solid var(--accent); position: relative; transition: background 0.2s ease; }
  .faq-q .faq-ico::before, .faq-q .faq-ico::after { content: ""; position: absolute; background: var(--accent);
    top: 50%; left: 50%; transform: translate(-50%,-50%); transition: 0.25s ease; }
  .faq-q .faq-ico::before { width: 11px; height: 1.6px; }
  .faq-q .faq-ico::after { width: 1.6px; height: 11px; }
  .open .faq-q{background:#0d1f13f2; color:#fff;}
  .faq-item.open .faq-ico { background: var(--accent); }
  .faq-item.open .faq-ico::before, .faq-item.open .faq-ico::after { background: #fff; }
  .faq-item.open .faq-ico::after { transform: translate(-50%,-50%) scaleY(0); }
  .faq-a { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; background:#fff; }
  .faq-a p { color: var(--ink-soft); font-size: 1rem; padding: 20px; margin:0px; max-width: 100%; }


/* ═══ RESPONSIVE ════════════════════════════ */

@media (max-width:1366px){
	
	.hero-italic {
		font-size: clamp(26px, 2.8vw, 46px);
	}	
	
}

@media(max-width:1140px){
  .feat-grid{grid-template-columns:repeat(2,1fr);}
  .p-grid{grid-template-columns:repeat(2,1fr);}
  .f-top{grid-template-columns:1fr 1fr 1fr 1fr;gap:40px;}
  .how-grid{grid-template-columns:1fr 1fr;}
  .spotlight-row{gap:44px;}
  .hero-btns {
	margin-bottom: 10px;
	}

}
@media(max-width:860px){
	.friction-card {
    padding: 14px 30px 14px;
    position: relative;
}
	.friction-card.sr.in.d1 {
        padding-left: 0;
        border: none;
    }
	.friction-card.sr.in.d3 {
		padding-left: 0;
	}
	.friction-card.sr.in.d2 {
		border-right: none;
		border-bottom: none;
		padding-left: 0px;
	}
	.friction-card.sr.in {
    border-right: none;
    border-bottom: none;
    padding-left: 0px;
}

section#how-it-works {
    padding: 108px 34px !important;
}
  .nav{padding:0 24px;} .nav-links{display:none;}
  .section{padding:72px 24px;}
  .familiar{padding:72px 24px;}
  .stats{padding:48px 24px;}
  .stats-grid{grid-template-columns:repeat(2,1fr);gap:40px 0;}
  .stat-cell{border-left:none;border-bottom:1px solid rgba(75,122,88,0.22);padding:0 20px 32px;}
  .stat-cell:nth-child(3),.stat-cell:nth-child(4){border-bottom:none;}
  .pain-layout{grid-template-columns:1fr;gap:44px;}
  .pain-content{order:2;} .pain-photo-wrap{order:1;}
  .feat-grid{grid-template-columns:1fr 1fr;}
  .how-grid{grid-template-columns:1fr 1fr;}
  .p-grid{grid-template-columns:1fr;}
  .fam-list{grid-template-columns:1fr;}
  .t-grid{grid-template-columns:1fr 1fr;}
  .friction-grid{grid-template-columns:1fr;}
  .spotlight-row{grid-template-columns:1fr;gap:36px;}
  .spotlight-row.flip .spot-text{order:0;}
  .spotlight-row.flip .spot-visual{order:1;}
  .spot-feat-grid{grid-template-columns:1fr;}
  .problem-sec{padding:72px 24px;}
  .spotlight-sec{padding:72px 24px;}
  .footer{padding:48px 24px 32px;}
  .f-top{grid-template-columns:1fr 1fr 1fr 1fr;gap:36px;}
  .f-bottom{flex-direction:column;gap:16px;text-align:center;}
  .cta-sec{padding:80px 24px;}
  .hero {
    height: auto;
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-align: center;
    padding: 80px 0;
}
}
@media(max-width:680px){
  .hero h1{font-size:44px;}
  .hero-italic{font-size:28px;}
  .nav-ctas a.btn-nav-ghost {display: none;}
  .fam-title br { display: none;}
  .stat-cell {padding: 0 5px 32px;}
  .stat-n {font-size: 44px;}
  section#how-it-works { padding: 72px 24px !important; }
  .hw {padding: 30px 24px;}
  .h2 br {display: none;}
  .f-top {grid-template-columns: 1fr;}
  .hero-body {padding: 0 30px;}
      .hero {
        height: auto;
        min-height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        text-align: center;
        padding: 120px 0 80px 0;
    }
	.feat-grid {
        grid-template-columns: 1fr ;
    }
	.how-grid {
        grid-template-columns: 1fr;
    }
	.t-grid {
        grid-template-columns: 1fr;
    }
}
.footer-social-links{display:flex; padding-top:10px;}
.footer-social-links a{width:20px; height:20px; margin-right:10px; }
.footer-social-links a svg{fill:#888888;}
.footer-social-links a:hover svg{fill:#fff;}
    #topBtn {
      position: fixed;
      bottom: 30px;
      right: 70px;
      display: none;
      background-color: #333;
      color: #fff;
      border: none;
     width:50px; height:50px;
      border-radius: 50%;
      font-size: 18px;
      cursor: pointer;
      box-shadow: 0 4px 8px rgba(0,0,0,0.3);
      transition: background 0.3s, transform 0.2s;
    }

    #topBtn:hover {
      background-color: #555;
      transform: scale(1.1);
    }
	
	
@media (max-width:767px){
	
.why-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 28px;
    margin-top: 52px;
}
.plan.reveal {
    flex-direction: column;
    padding: 38px 20px;
}

.flexplan {
    width: 100% !important;
    border: none  !important;
}	
	
}	

	
@media (max-width:667px){
	
	.nav {
        padding: 0 16px;
    }
	.hero-body {
        padding: 0 15px;
    }
	.hero-italic {
        font-size: 24px;
    }
	.hero {
         padding: 120px 0 56px 0;
    }
	.btn-nav-gold {
		padding: 9px 19px;
		font-size: 13.5px;
		font-weight: 600;
		max-width: 160px;
		text-align: center;
	}
	.hero p.hro-1 {
    font-size: 15px;
    margin-top: 15px;
    margin-bottom: 0;
}
	
}