/* =============================================
   ASANTE — GRATITUDE, SIMPLIFIED
   Design System v2.0 — Professional Edition
   ============================================= */

/* Premium font pairing:
   Cormorant — editorial serif for display headlines
   DM Sans   — geometric humanist sans for UI & body */
@import url('https://fonts.googleapis.com/css2?family=Cormorant:ital,wght@0,400;0,500;0,600;0,700;1,400;1,600&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&display=swap');

/* ── Design Tokens ── */
:root {
  --amber:         #E8751A;
  --amber-deep:    #C25A0E;
  --amber-tint:    #FDF3EA;
  --amber-light:   #F4A04A;
  --ember:         #B83318;
  --forest:        #255C41;
  --forest-mid:    #357A58;
  --forest-tint:   #EBF4EF;
  --ink:           #16130F;
  --ink-90:        #201D19;
  --ink-70:        #3D3830;
  --ink-50:        #7A7267;
  --ink-30:        #BCB6AE;
  --ink-10:        #EAE7E2;
  --surface:       #F7F5F2;
  --white:         #FFFFFF;

  --grad-brand:    linear-gradient(135deg, var(--amber-light) 0%, var(--amber) 45%, var(--ember) 100%);
  --grad-forest:   linear-gradient(135deg, var(--forest) 0%, var(--forest-mid) 100%);
  --grad-hero:     linear-gradient(168deg, #FDFCFB 0%, #FBF6F0 55%, #F9F1E8 100%);

  --shadow-xs:  0 1px 2px rgba(22,19,15,.06);
  --shadow-sm:  0 2px 8px rgba(22,19,15,.08), 0 1px 3px rgba(22,19,15,.05);
  --shadow-md:  0 4px 20px rgba(22,19,15,.10), 0 2px 8px rgba(22,19,15,.06);
  --shadow-lg:  0 12px 40px rgba(22,19,15,.12), 0 4px 16px rgba(22,19,15,.07);
  --shadow-xl:  0 24px 64px rgba(22,19,15,.16), 0 8px 24px rgba(22,19,15,.08);
  --glow-amber: 0 6px 28px rgba(232,117,26,.22);
  --glow-forest:0 6px 28px rgba(37,92,65,.20);

  --radius-sm:   4px;
  --radius-md:   8px;
  --radius-lg:   16px;
  --radius-xl:   24px;
  --radius-2xl:  40px;
  --radius-pill: 999px;

  --font-display: 'Cormorant', Georgia, serif;
  --font-ui:      'DM Sans', 'Helvetica Neue', Arial, sans-serif;

  --nav-h:      76px;
  --max-w:      1240px;
  --section-y:  clamp(72px, 9vw, 128px);
  --col-gap:    clamp(20px, 3vw, 40px);
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-ui);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--ink-70);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ── Container ── */
.container { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: clamp(24px, 5vw, 56px); }
.container-narrow { max-width: 800px; margin-inline: auto; padding-inline: clamp(24px, 5vw, 56px); }

/* ── Typography ── */
h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.1; color: var(--ink); font-weight: 600; letter-spacing: -.01em; }
h1 { font-size: clamp(2.5rem, 5vw, 4.4rem); font-weight: 700; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 3.2vw, 2.9rem); font-weight: 600; letter-spacing: -.015em; }
h3 { font-size: clamp(1.25rem, 2vw, 1.6rem); font-weight: 600; letter-spacing: -.01em; }
h4 { font-size: 1.05rem; font-family: var(--font-ui); font-weight: 600; letter-spacing: 0; }
p  { color: var(--ink-50); font-size: .9375rem; line-height: 1.72; }
.t-lead { font-size: clamp(1.05rem, 1.4vw, 1.175rem); line-height: 1.72; color: var(--ink-50); }

.text-gradient {
  background: var(--grad-brand);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-forest {
  background: var(--grad-forest);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.text-amber { color: var(--amber); }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  z-index: 200;
  transition: background .3s, box-shadow .3s;
}
.nav.scrolled {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(22,19,15,.08);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: var(--nav-h); gap: 32px; }
.nav-logo img { height: 100px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links a { padding: 8px 14px; font-size: .8375rem; font-weight: 500; color: var(--ink-50); letter-spacing: .01em; border-radius: var(--radius-sm); transition: color .2s, background .2s; }
.nav-links a:hover { color: var(--ink); background: var(--ink-10); }
.nav-links a.active { color: var(--amber); background: var(--amber-tint); }
.nav-cta { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; border-radius: var(--radius-md); transition: background .2s; }
.nav-toggle:hover { background: var(--ink-10); }
.nav-toggle span { display: block; width: 20px; height: 1.5px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.nav-drawer { display: none; position: fixed; top: var(--nav-h); left: 0; right: 0; background: var(--white); padding: 8px 24px 28px; box-shadow: var(--shadow-lg); border-top: 1px solid var(--ink-10); z-index: 199; }
.nav-drawer.open { display: block; }
.nav-drawer a { display: block; padding: 14px 0; font-size: .9375rem; font-weight: 500; color: var(--ink-70); border-bottom: 1px solid var(--ink-10); transition: color .2s; }
.nav-drawer a:hover { color: var(--amber); }
.nav-drawer a:last-of-type { border-bottom: none; }
.nav-drawer .btn { width: 100%; justify-content: center; margin-top: 16px; }

/* ── Announcement Bar ── */
.announcement-bar { background: var(--ink); color: rgba(255,255,255,.75); text-align: center; padding: 11px 48px; font-size: .8125rem; position: relative; z-index: 201; }
.announcement-bar strong { color: var(--white); }
.announcement-bar a { color: var(--amber-light); font-weight: 600; }
.announcement-close { position: absolute; right: 20px; top: 50%; transform: translateY(-50%); color: rgba(255,255,255,.4); font-size: 1.1rem; padding: 4px 8px; transition: color .2s; background: none; border: none; cursor: pointer; }
.announcement-close:hover { color: var(--white); }

/* ── Buttons ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  border-radius: var(--radius-pill);
  font-family: var(--font-ui); font-size: .875rem; font-weight: 600; letter-spacing: .015em;
  padding: 13px 28px; line-height: 1;
  transition: all .22s ease; cursor: pointer; white-space: nowrap; text-decoration: none;
}
.btn svg { flex-shrink: 0; }
.btn-primary { background: var(--amber); color: var(--white); border: 1.5px solid var(--amber); }
.btn-primary:hover { background: var(--amber-deep); border-color: var(--amber-deep); transform: translateY(-1px); box-shadow: var(--glow-amber); }
.btn-secondary { background: transparent; color: var(--ink); border: 1.5px solid var(--ink-30); }
.btn-secondary:hover { border-color: var(--amber); color: var(--amber); transform: translateY(-1px); }
.btn-forest { background: var(--forest); color: var(--white); border: 1.5px solid var(--forest); }
.btn-forest:hover { background: var(--forest-mid); border-color: var(--forest-mid); transform: translateY(-1px); box-shadow: var(--glow-forest); }
.btn-ghost { background: transparent; color: var(--amber); border: 1.5px solid transparent; padding-inline: 4px; gap: 5px; }
.btn-ghost:hover { color: var(--amber-deep); gap: 9px; }
.btn-white { background: var(--white); color: var(--ink); border: 1.5px solid var(--white); }
.btn-white:hover { background: var(--surface); transform: translateY(-1px); }
.btn-outline-white { background: transparent; color: rgba(255,255,255,.8); border: 1.5px solid rgba(255,255,255,.25); }
.btn-outline-white:hover { border-color: rgba(255,255,255,.6); color: var(--white); transform: translateY(-1px); }
.btn-lg  { padding: 16px 36px; font-size: .9375rem; }
.btn-sm  { padding: 9px 20px; font-size: .8125rem; }
.btn-wide { width: 100%; }

/* ── Labels / Badges ── */
.label {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 5px 13px; border-radius: var(--radius-pill);
  font-size: .7rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; font-family: var(--font-ui);
}
.label-amber  { background: var(--amber-tint); color: var(--amber-deep); border: 1px solid rgba(232,117,26,.15); }
.label-forest { background: var(--forest-tint); color: var(--forest); border: 1px solid rgba(37,92,65,.15); }
.label-ink    { background: var(--ink); color: var(--white); }
.label-dot::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; display: block; }

/* ── Sections ── */
.section    { padding-block: var(--section-y); }
.section-sm { padding-block: clamp(40px, 5vw, 72px); }
.section-alt { background: var(--surface); }
.section-ink { background: var(--ink); }
.section-ink h1,.section-ink h2,.section-ink h3 { color: var(--white); }
.section-ink p { color: rgba(255,255,255,.5); }

.section-header { max-width: 640px; margin-bottom: clamp(48px, 6vw, 80px); }
.section-header.centered { margin-inline: auto; text-align: center; }
.section-header .label { margin-bottom: 20px; }
.section-header h2 { margin-bottom: 16px; }

/* ── Page Header ── */
.page-header {
  background: var(--grad-hero);
  padding-top: calc(var(--nav-h) + 72px);
  padding-bottom: 72px;
  border-bottom: 1px solid var(--ink-10);
}
.page-header .label { margin-bottom: 20px; }
.page-header h1 { margin-bottom: 20px; }

/* ── Grids ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--col-gap); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--col-gap); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--col-gap); }

/* ── Cards ── */
.card {
  background: var(--white); border: 1px solid var(--ink-10); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-xs);
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); border-color: var(--ink-30); }
.card-icon { width: 48px; height: 48px; border-radius: var(--radius-md); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-size: 1.2rem; }
.icon-amber  { background: var(--amber-tint); }
.icon-forest { background: var(--forest-tint); }
.card h3 { margin-bottom: 10px; }
.card p  { font-size: .875rem; }

/* ── Hero ── */
.hero {
  background: var(--grad-hero);
  padding-top: calc(var(--nav-h) + 80px);
  padding-bottom: clamp(72px, 10vw, 120px);
  border-bottom: 1px solid var(--ink-10);
  position: relative; overflow: hidden;
  min-height: 90vh; display: flex; align-items: center;
}
.hero-bg {
  position: absolute; inset: 0; pointer-events: none;
}
.hero-bg::before {
  content: ''; position: absolute; top: -15%; right: -5%;
  width: 640px; height: 640px; border-radius: 50%;
  background: radial-gradient(circle, rgba(232,117,26,.06) 0%, transparent 65%);
}
.hero-bg::after {
  content: ''; position: absolute; bottom: -10%; left: 15%;
  width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(37,92,65,.05) 0%, transparent 65%);
}
.hero-inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 440px; gap: 64px; align-items: center;
}
.hero-eyebrow { display: flex; align-items: center; gap: 10px; margin-bottom: 28px; flex-wrap: wrap; }
.hero h1 { margin-bottom: 24px; }
.hero .t-lead { margin-bottom: 40px; max-width: 500px; }
.hero-actions { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 56px; }
.hero-metrics { display: flex; gap: 40px; padding-top: 36px; border-top: 1px solid var(--ink-10); }
.metric-val { font-family: var(--font-display); font-size: 2.2rem; font-weight: 700; color: var(--ink); line-height: 1; display: block; }
.metric-lbl { font-size: .8rem; color: var(--ink-50); margin-top: 5px; display: block; line-height: 1.4; }

/* Hero visual card */
.hero-visual { position: relative; }
.hero-card {
  background: var(--white); border-radius: var(--radius-xl);
  padding: 32px; box-shadow: var(--shadow-xl); border: 1px solid var(--ink-10);
}
.hero-card-header { display: flex; align-items: center; gap: 12px; margin-bottom: 24px; padding-bottom: 20px; border-bottom: 1px solid var(--ink-10); }
.hero-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: .9rem; flex-shrink: 0; }
.hero-name { font-weight: 600; font-size: .9375rem; color: var(--ink); display: block; }
.hero-role { font-size: .75rem; color: var(--ink-50); }
.hero-verified { margin-left: auto; display: flex; align-items: center; gap: 5px; background: var(--forest-tint); color: var(--forest); padding: 4px 10px; border-radius: var(--radius-pill); font-size: .7rem; font-weight: 700; white-space: nowrap; }

.tip-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; margin-bottom: 16px; }
.tip-btn {
  padding: 12px 8px; background: var(--surface); border: 1.5px solid var(--ink-10);
  border-radius: var(--radius-md); text-align: center;
  font-family: var(--font-display); font-weight: 600; font-size: 1rem;
  color: var(--ink-70); cursor: pointer; transition: all .2s; line-height: 1;
}
.tip-btn small { display: block; font-family: var(--font-ui); font-size: .6rem; color: var(--ink-50); margin-top: 3px; font-weight: 400; }
.tip-btn:hover { border-color: var(--amber); color: var(--amber-deep); background: var(--amber-tint); }
.tip-btn.sel { background: var(--amber-tint); border-color: var(--amber); color: var(--amber-deep); }

.tip-confirm {
  width: 100%; padding: 15px; background: var(--forest); color: var(--white);
  border: none; border-radius: var(--radius-md); font-family: var(--font-ui);
  font-size: .9rem; font-weight: 600; cursor: pointer; transition: background .2s;
  margin-bottom: 12px;
}
.tip-confirm:hover { background: var(--forest-mid); }
.tip-footer { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: .72rem; color: var(--ink-50); }

.hero-float-badge {
  position: absolute; top: -14px; right: -14px;
  background: var(--forest); color: var(--white); padding: 8px 16px;
  border-radius: var(--radius-pill); font-size: .72rem; font-weight: 700;
  letter-spacing: .05em; text-transform: uppercase; box-shadow: var(--shadow-md); white-space: nowrap;
}

/* ── Logo Strip ── */
.logo-strip { padding-block: 32px; border-block: 1px solid var(--ink-10); overflow: hidden; background: var(--surface); }
.logo-strip-lbl { text-align: center; font-size: .68rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--ink-30); margin-bottom: 20px; }
.marquee-track { display: flex; gap: 56px; width: max-content; animation: marquee 28s linear infinite; }
.marquee-track:hover { animation-play-state: paused; }
.marquee-item { font-family: var(--font-ui); font-size: .8125rem; font-weight: 500; color: var(--ink-30); white-space: nowrap; letter-spacing: .01em; display: flex; align-items: center; gap: 7px; }
.marquee-sep { width: 4px; height: 4px; background: var(--ink-30); border-radius: 50%; display: inline-block; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ── Steps ── */
.steps-flow { display: grid; grid-template-columns: repeat(4, 1fr); position: relative; }
.steps-flow::before {
  content: ''; position: absolute; top: 26px;
  left: calc(12.5% + 6px); right: calc(12.5% + 6px);
  height: 1px; background: linear-gradient(90deg, var(--amber-light), var(--amber), var(--forest));
}
.step-flow { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 0 16px; gap: 16px; }
.step-num {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  position: relative; z-index: 1; border: 2px solid var(--white); box-shadow: var(--shadow-md);
}
.sn-amber  { background: var(--amber-tint); color: var(--amber-deep); border-color: var(--amber); }
.sn-forest { background: var(--forest-tint); color: var(--forest); border-color: var(--forest); }
.step-flow h4 { font-size: .9rem; font-weight: 600; margin-bottom: 4px; }
.step-flow p  { font-size: .8rem; color: var(--ink-50); }

.step-list { display: flex; flex-direction: column; }
.step-item { display: grid; grid-template-columns: 48px 1fr; gap: 20px; padding-block: 32px; border-bottom: 1px solid var(--ink-10); }
.step-item:last-child { border-bottom: none; }
.step-circle {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1.5px solid var(--ink-10); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display); font-size: .9375rem; font-weight: 600;
  color: var(--ink-50); flex-shrink: 0; margin-top: 3px; transition: all .2s;
}
.step-item:hover .step-circle { background: var(--amber-tint); border-color: var(--amber); color: var(--amber-deep); }
.step-body h3 { margin-bottom: 8px; font-size: 1.2rem; }

/* ── Feature Rows ── */
.feature-row { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 96px); align-items: center; padding-block: 64px; }
.feature-row + .feature-row { border-top: 1px solid var(--ink-10); }
.feature-row.flip .feature-body { order: 2; }
.feature-row.flip .feature-panel { order: 1; }
.feature-body .label { margin-bottom: 16px; }
.feature-body h2 { margin-bottom: 16px; }
.feature-body > p { margin-bottom: 28px; }
.feature-panel { background: var(--surface); border-radius: var(--radius-xl); aspect-ratio: 4/3; display: flex; align-items: center; justify-content: center; border: 1px solid var(--ink-10); font-size: 3.5rem; }

.benefits { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.benefit  { display: flex; align-items: flex-start; gap: 12px; font-size: .9rem; color: var(--ink-70); }
.benefit-check { width: 20px; height: 20px; border-radius: 50%; background: var(--forest-tint); display: flex; align-items: center; justify-content: center; color: var(--forest); font-size: .65rem; flex-shrink: 0; margin-top: 1px; }

/* ── Testimonials ── */
.testimonial { background: var(--white); border: 1px solid var(--ink-10); border-radius: var(--radius-lg); padding: 32px; display: flex; flex-direction: column; transition: border-color .2s, box-shadow .2s; }
.testimonial:hover { border-color: var(--ink-30); box-shadow: var(--shadow-md); }
.t-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.t-star { width: 13px; height: 13px; background: #F59E0B; clip-path: polygon(50% 0%,61% 35%,98% 35%,68% 57%,79% 91%,50% 70%,21% 91%,32% 57%,2% 35%,39% 35%); }
.t-quote { font-family: var(--font-display); font-size: 1.05rem; font-style: italic; line-height: 1.65; color: var(--ink-70); flex: 1; margin-bottom: 24px; }
.t-author { display: flex; align-items: center; gap: 12px; padding-top: 20px; border-top: 1px solid var(--ink-10); }
.t-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--grad-brand); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; color: var(--white); font-size: .8rem; flex-shrink: 0; }
.t-name { font-size: .875rem; font-weight: 600; color: var(--ink); display: block; }
.t-role { font-size: .75rem; color: var(--ink-50); }

/* ── Stats Band ── */
.stats-band { display: grid; grid-template-columns: repeat(3, 1fr); border: 1px solid var(--ink-10); border-radius: var(--radius-lg); overflow: hidden; }
.stat-cell { padding: 40px 32px; border-right: 1px solid var(--ink-10); text-align: center; }
.stat-cell:last-child { border-right: none; }
.stat-num { font-family: var(--font-display); font-size: clamp(2.4rem, 4vw, 3.5rem); font-weight: 700; color: var(--ink); line-height: 1; display: block; margin-bottom: 8px; }
.stat-lbl { font-size: .8rem; color: var(--ink-50); line-height: 1.5; max-width: 160px; margin-inline: auto; }

/* ── CTA Section ── */
.cta-section { background: var(--ink); border-radius: var(--radius-2xl); padding: clamp(48px, 7vw, 88px) clamp(32px, 5vw, 80px); text-align: center; position: relative; overflow: hidden; }
.cta-section::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 30% 0%, rgba(232,117,26,.14) 0%, transparent 55%), radial-gradient(ellipse at 70% 100%, rgba(37,92,65,.12) 0%, transparent 55%); pointer-events: none; }
.cta-section > * { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p  { color: rgba(255,255,255,.5); max-width: 460px; margin-inline: auto; margin-bottom: 36px; }
.cta-btn-group  { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ── Pricing ── */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }
.pricing-card { background: var(--white); border: 1px solid var(--ink-10); border-radius: var(--radius-xl); padding: 36px 32px; position: relative; transition: transform .25s, box-shadow .25s; }
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.pricing-card.featured { background: var(--ink); border-color: var(--amber); transform: scale(1.03); box-shadow: var(--shadow-xl); }
.pricing-card.featured:hover { transform: scale(1.03) translateY(-4px); }
.pricing-card.featured h2, .pricing-card.featured h3 { color: var(--white); }
.pricing-card.featured p { color: rgba(255,255,255,.5); }
.pricing-tag { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--grad-brand); color: var(--white); padding: 4px 18px; border-radius: var(--radius-pill); font-size: .68rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.pricing-tier { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--amber); margin-bottom: 12px; font-family: var(--font-ui); }
.pricing-price { font-family: var(--font-display); font-size: 2.9rem; font-weight: 700; color: var(--ink); line-height: 1; }
.pricing-price sup { font-size: 1.1rem; vertical-align: super; font-weight: 600; }
.pricing-card.featured .pricing-price { color: var(--white); }
.pricing-period { font-size: .8125rem; color: var(--ink-50); margin-bottom: 28px; margin-top: 6px; }
.pricing-card.featured .pricing-period { color: rgba(255,255,255,.4); }
.pricing-hr { border: none; border-top: 1px solid var(--ink-10); margin-block: 24px; }
.pricing-card.featured .pricing-hr { border-color: rgba(255,255,255,.1); }
.pricing-feature { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 12px; font-size: .875rem; color: var(--ink-70); }
.pricing-card.featured .pricing-feature { color: rgba(255,255,255,.65); }
.pf-y { color: var(--forest); flex-shrink: 0; font-size: .85rem; }
.pf-n { color: var(--ink-30); flex-shrink: 0; font-size: .85rem; }
.pricing-card.featured .pf-y { color: var(--amber-light); }
.pricing-cta { width: 100%; margin-top: 28px; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin-inline: auto; }
.faq-item { border-bottom: 1px solid var(--ink-10); }
.faq-question { display: flex; justify-content: space-between; align-items: center; gap: 16px; padding: 22px 0; font-family: var(--font-ui); font-size: .9375rem; font-weight: 600; color: var(--ink); cursor: pointer; text-align: left; width: 100%; transition: color .2s; }
.faq-question:hover { color: var(--amber); }
.faq-icon { width: 24px; height: 24px; border-radius: 50%; background: var(--surface); border: 1px solid var(--ink-10); display: flex; align-items: center; justify-content: center; font-size: .75rem; color: var(--ink-50); flex-shrink: 0; transition: all .25s; }
.faq-item.open .faq-icon { background: var(--amber-tint); border-color: var(--amber); color: var(--amber); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .35s ease; }
.faq-answer-inner { padding-bottom: 22px; font-size: .9rem; color: var(--ink-50); line-height: 1.72; }
.faq-item.open .faq-answer { max-height: 320px; }

/* ── Forms ── */
.form-card { background: var(--white); border: 1px solid var(--ink-10); border-radius: var(--radius-xl); padding: clamp(32px, 5vw, 52px); box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: .8125rem; font-weight: 600; color: var(--ink); margin-bottom: 7px; }
.form-input, .form-textarea, .form-select { width: 100%; padding: 12px 16px; border: 1.5px solid var(--ink-10); border-radius: var(--radius-md); font-size: .9rem; color: var(--ink); background: var(--white); transition: border-color .2s, box-shadow .2s; outline: none; appearance: none; }
.form-input:hover, .form-textarea:hover { border-color: var(--ink-30); }
.form-input:focus, .form-textarea:focus, .form-select:focus { border-color: var(--amber); box-shadow: 0 0 0 3px rgba(232,117,26,.1); }
.form-textarea { resize: vertical; min-height: 130px; line-height: 1.6; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-hint { font-size: .75rem; color: var(--ink-50); margin-top: 5px; }
.form-tabs { display: flex; background: var(--surface); border-radius: var(--radius-md); padding: 4px; gap: 2px; margin-bottom: 28px; border: 1px solid var(--ink-10); }
.form-tab { flex: 1; padding: 10px 12px; border-radius: calc(var(--radius-md) - 2px); font-size: .8rem; font-weight: 600; color: var(--ink-50); cursor: pointer; text-align: center; transition: all .2s; white-space: nowrap; background: none; border: none; }
.form-tab.active { background: var(--white); color: var(--ink); box-shadow: var(--shadow-sm); }
.form-panel { display: none; }
.form-panel.active { display: block; }

/* ── Contact ── */
.contact-method { display: flex; align-items: flex-start; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--ink-10); }
.contact-method:last-child { border-bottom: none; }
.contact-icon { width: 40px; height: 40px; border-radius: var(--radius-md); background: var(--surface); border: 1px solid var(--ink-10); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: .95rem; }
.contact-method h4 { font-size: .875rem; margin-bottom: 2px; }
.contact-method p { font-size: .8125rem; color: var(--ink-50); margin: 0; }
.contact-method a { font-size: .875rem; color: var(--amber); font-weight: 600; transition: color .2s; }
.contact-method a:hover { color: var(--amber-deep); }

/* ── Notice ── */
.notice { display: flex; align-items: flex-start; gap: 12px; padding: 16px 20px; background: var(--forest-tint); border: 1px solid rgba(37,92,65,.15); border-radius: var(--radius-md); font-size: .875rem; color: var(--forest); line-height: 1.6; }

/* ── Footer ── */
.footer { background: var(--ink-90); padding-top: 80px; padding-bottom: 40px; }
.footer-grid { display: grid; grid-template-columns: 2.2fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 56px; border-bottom: 1px solid rgba(255,255,255,.07); }
.footer-brand img { height: 100px; margin-bottom: 18px; filter: brightness(0) invert(1); opacity: .85; }
.footer-brand p { font-size: .875rem; color: rgba(255,255,255,.4); line-height: 1.72; max-width: 280px; margin-bottom: 24px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; background: rgba(255,255,255,.07); border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center; font-size: .85rem; color: rgba(255,255,255,.45); transition: background .2s, color .2s; text-decoration: none; }
.footer-social a:hover { background: var(--amber); color: var(--white); }
.footer-col h5 { font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: rgba(255,255,255,.3); margin-bottom: 18px; font-family: var(--font-ui); }
.footer-col a { display: block; font-size: .875rem; padding: 5px 0; color: rgba(255,255,255,.45); transition: color .2s; text-decoration: none; }
.footer-col a:hover { color: rgba(255,255,255,.85); }
.footer-bottom { padding-top: 28px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-copy { font-size: .8125rem; color: rgba(255,255,255,.3); }
.footer-legal { display: flex; gap: 24px; }
.footer-legal a { font-size: .8125rem; color: rgba(255,255,255,.35); text-decoration: none; transition: color .2s; }
.footer-legal a:hover { color: rgba(255,255,255,.7); }
.mpesa-chip { display: inline-flex; align-items: center; gap: 7px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-pill); padding: 5px 14px; font-size: .75rem; font-weight: 600; color: rgba(255,255,255,.45); }
.mpesa-dot { width: 6px; height: 6px; border-radius: 50%; background: #4CAF50; display: block; }

/* ── Float ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 52px; height: 52px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,.35); z-index: 50; transition: transform .2s, box-shadow .2s; text-decoration: none; font-size: 1.4rem; }
.whatsapp-float:hover { transform: scale(1.08); box-shadow: 0 6px 28px rgba(37,211,102,.45); }
.scroll-top { position: fixed; bottom: 96px; right: 28px; width: 40px; height: 40px; background: var(--white); border: 1px solid var(--ink-10); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: .85rem; color: var(--ink-50); box-shadow: var(--shadow-sm); opacity: 0; pointer-events: none; transition: opacity .3s; cursor: pointer; z-index: 49; }
.scroll-top.show { opacity: 1; pointer-events: auto; }
.scroll-top:hover { background: var(--amber-tint); color: var(--amber); border-color: var(--amber); }
.toast { position: fixed; bottom: 96px; right: 28px; background: var(--ink); color: var(--white); padding: 14px 20px; border-radius: var(--radius-md); font-size: .875rem; z-index: 300; opacity: 0; transform: translateY(8px); transition: opacity .3s, transform .3s; pointer-events: none; max-width: 300px; box-shadow: var(--shadow-lg); }
.toast.show { opacity: 1; transform: translateY(0); }

/* ── Billing Toggle ── */
.billing-toggle { display: flex; align-items: center; gap: 14px; justify-content: center; margin-bottom: 48px; }
.toggle-lbl { font-size: .875rem; font-weight: 500; color: var(--ink-50); }
.toggle-switch { width: 44px; height: 24px; background: var(--ink-10); border-radius: var(--radius-pill); cursor: pointer; position: relative; transition: background .25s; border: 1px solid var(--ink-10); }
.toggle-switch.on { background: var(--amber); border-color: var(--amber); }
.toggle-switch::after { content: ''; position: absolute; top: 2px; left: 2px; width: 18px; height: 18px; background: var(--white); border-radius: 50%; transition: left .25s; box-shadow: var(--shadow-xs); }
.toggle-switch.on::after { left: 22px; }
.save-chip { background: var(--forest-tint); color: var(--forest); padding: 3px 10px; border-radius: var(--radius-pill); font-size: .68rem; font-weight: 700; letter-spacing: .04em; }

/* ── Compare Table ── */
.compare-table { width: 100%; border-collapse: collapse; font-size: .875rem; }
.compare-table th { font-size: .68rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--ink-50); background: var(--surface); padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--ink-10); }
.compare-table td { padding: 14px 20px; border-bottom: 1px solid var(--ink-10); color: var(--ink-70); }
.compare-table td:first-child { color: var(--ink); font-weight: 500; }
.compare-table td:not(:first-child) { text-align: center; }
.compare-table tr:hover td { background: var(--surface); }
.compare-table .col-featured { background: rgba(232,117,26,.03); }
.c-y { color: var(--forest); font-weight: 700; }
.c-n { color: var(--ink-30); }

/* ── Utilities ── */
.text-center { text-align: center; }
.flex-center  { display: flex; align-items: center; }
.gap-2 { gap: 8px; }
.gap-3 { gap: 12px; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; }
.mb-6 { margin-bottom: 24px; }
.w-full { width: 100%; }

/* ── Reveal Animations ── */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .6s ease, transform .6s ease; }
.reveal.visible { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }
.fade-up-1 { animation: fadeUp .65s .05s ease both; }
.fade-up-2 { animation: fadeUp .65s .15s ease both; }
.fade-up-3 { animation: fadeUp .65s .25s ease both; }
.fade-up-4 { animation: fadeUp .65s .35s ease both; }
.fade-in-1 { animation: fadeIn .8s .4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .hero-visual { max-width: 420px; }
  .pricing-grid { gap: 16px; }
  .pricing-card.featured { transform: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 900px) {
  .steps-flow { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .steps-flow::before { display: none; }
  .feature-row { grid-template-columns: 1fr; }
  .feature-row.flip .feature-body, .feature-row.flip .feature-panel { order: unset; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; }
  .pricing-card.featured { transform: none; }
  .stats-band { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 64px; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-metrics { flex-wrap: wrap; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .steps-flow { grid-template-columns: 1fr; }
  .stats-band { grid-template-columns: 1fr; }
  .stat-cell { border-right: none; border-bottom: 1px solid var(--ink-10); }
}
@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .btn { width: 100%; }
  .cta-btn-group { flex-direction: column; }
  .cta-btn-group .btn { width: 100%; }
  .form-card { padding: 24px 20px; }
  .tip-grid { grid-template-columns: repeat(2, 1fr); }
}

/* ══════════════════════════════════════
   FEATURE PANELS — Real UI Mockups
   (replaces emoji placeholder panels)
══════════════════════════════════════ */

/* Base panel shell */
.panel {
  background: var(--surface);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
}

/* Panel top bar */
.panel-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--ink-10);
  padding: 14px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.panel-dots { display: flex; gap: 5px; }
.panel-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--ink-10); }
.panel-dot:first-child { background: #FF5F57; }
.panel-dot:nth-child(2) { background: #FEBC2E; }
.panel-dot:nth-child(3) { background: #28C840; }
.panel-title-bar {
  flex: 1;
  background: var(--surface);
  border-radius: var(--radius-pill);
  height: 22px;
  margin-inline: 8px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  font-size: .65rem;
  color: var(--ink-50);
  font-family: var(--font-ui);
}
.panel-body { padding: 20px; }

/* ── Notification card (used in panels) ── */
.notif-card {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  box-shadow: var(--shadow-xs);
}
.notif-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: .95rem;
}
.notif-icon.amber  { background: var(--amber-tint); }
.notif-icon.forest { background: var(--forest-tint); }
.notif-icon.ink    { background: var(--ink-10); }
.notif-title  { font-size: .8rem; font-weight: 600; color: var(--ink); margin-bottom: 2px; }
.notif-sub    { font-size: .72rem; color: var(--ink-50); }
.notif-value  { margin-left: auto; font-family: var(--font-display); font-size: 1.05rem; font-weight: 700; color: var(--ink); white-space: nowrap; }
.notif-value.amber  { color: var(--amber-deep); }
.notif-value.forest { color: var(--forest); }

/* ── Mini bar chart ── */
.bar-chart {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  height: 80px;
  padding: 0 4px;
}
.bar {
  flex: 1;
  border-radius: 3px 3px 0 0;
  background: var(--ink-10);
  transition: background .2s;
  min-width: 0;
}
.bar.hi   { background: var(--amber); }
.bar.med  { background: var(--amber-light); opacity: .7; }
.bar.low  { background: var(--ink-10); }
.bar-labels {
  display: flex;
  gap: 6px;
  padding: 0 4px;
  margin-top: 6px;
}
.bar-lbl { flex: 1; font-size: .6rem; color: var(--ink-50); text-align: center; white-space: nowrap; overflow: hidden; }

/* ── Mini stat row in panels ── */
.panel-stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 12px;
}
.panel-stat {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-md);
  padding: 12px;
  text-align: center;
}
.ps-val { font-family: var(--font-display); font-size: 1.3rem; font-weight: 700; color: var(--ink); display: block; }
.ps-val.amber  { color: var(--amber-deep); }
.ps-val.forest { color: var(--forest); }
.ps-lbl { font-size: .62rem; color: var(--ink-50); display: block; margin-top: 2px; }

/* ── QR panel ── */
.qr-frame {
  background: var(--white);
  border: 1px solid var(--ink-10);
  border-radius: var(--radius-lg);
  padding: 20px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-sm);
}
.qr-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 3px;
  width: 84px;
  height: 84px;
}
.qr-cell {
  border-radius: 1px;
  background: var(--ink);
}
.qr-cell.w { background: transparent; }
.qr-lbl {
  font-size: .65rem;
  font-weight: 600;
  color: var(--ink-50);
  text-align: center;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.qr-name {
  font-family: var(--font-display);
  font-size: .875rem;
  font-weight: 600;
  color: var(--ink);
}

/* ── Earnings timeline ── */
.earnings-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid var(--ink-10);
  font-size: .78rem;
}
.earnings-row:last-child { border-bottom: none; }
.er-time { color: var(--ink-50); }
.er-from { color: var(--ink-70); font-weight: 500; }
.er-amt  { font-family: var(--font-display); font-size: .95rem; font-weight: 700; color: var(--forest); }
.er-msg  { font-style: italic; color: var(--ink-50); font-size: .72rem; max-width: 100px; text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }

/* ── Progress bar ── */
.progress-bar {
  height: 6px;
  background: var(--ink-10);
  border-radius: var(--radius-pill);
  overflow: hidden;
  margin-top: 6px;
}
.progress-fill {
  height: 100%;
  border-radius: var(--radius-pill);
  background: var(--grad-brand);
}

/* ── Team roster in panel ── */
.team-row {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px solid var(--ink-10);
}
.team-row:last-child { border-bottom: none; }
.team-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--grad-brand);
  display: flex; align-items: center; justify-content: center;
  font-size: .6rem; font-weight: 700; color: var(--white);
  font-family: var(--font-display);
  flex-shrink: 0;
}
.team-name  { font-size: .78rem; font-weight: 600; color: var(--ink); flex: 1; }
.team-role  { font-size: .68rem; color: var(--ink-50); }
.team-tips  { font-family: var(--font-display); font-size: .875rem; font-weight: 700; color: var(--amber-deep); }
.team-bar   { width: 48px; }

/* ── Inline tip amount selects ── */
.amount-pills { display: flex; gap: 6px; flex-wrap: wrap; }
.amount-pill {
  padding: 6px 12px;
  background: var(--surface);
  border: 1.5px solid var(--ink-10);
  border-radius: var(--radius-pill);
  font-family: var(--font-display);
  font-size: .85rem;
  font-weight: 600;
  color: var(--ink-70);
}
.amount-pill.sel { background: var(--amber-tint); border-color: var(--amber); color: var(--amber-deep); }

/* ── Phone mockup ── */
.phone-shell {
  background: var(--ink);
  border-radius: 24px;
  padding: 8px;
  box-shadow: var(--shadow-xl);
  display: inline-block;
}
.phone-screen {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  width: 160px;
}
.phone-screen-inner { padding: 16px; }

/* Panel layout fix — consistent with feature-panel CSS class */
.feature-panel {
  background: var(--surface);
  border-radius: var(--radius-xl);
  border: 1px solid var(--ink-10);
  overflow: hidden;
  aspect-ratio: unset;
  min-height: 320px;
  padding: 0;
  display: flex;
  flex-direction: column;
}
