/* ============================================================
   Wierzbivento — Mobile CSS
   Font: Figtree | Palette: Indigo + Warm Cream
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Figtree:wght@400;500;600;700;800&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --i50:  #EEF2FF;
  --i100: #E0E7FF;
  --i200: #C7D2FE;
  --i400: #818CF8;
  --i500: #6366F1;
  --i600: #4F46E5;
  --i700: #4338CA;
  --i900: #1E1B4B;

  --cream:  #FFFDF7;
  --cream2: #FFF8ED;

  --text:   #18181B;
  --muted:  #71717A;
  --white:  #FFFFFF;

  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-full: 999px;

  --shadow-sm: 0 1px 3px rgba(99,102,241,.08), 0 1px 2px rgba(0,0,0,.04);
  --shadow-md: 0 4px 16px rgba(99,102,241,.12), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg: 0 8px 32px rgba(99,102,241,.16), 0 4px 12px rgba(0,0,0,.08);

  --header-h: 58px;
}

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

html {
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Figtree', sans-serif;
  font-weight: 400;
  color: var(--text);
  background: var(--cream);
  line-height: 1.6;
  max-width: 430px;
  margin: 0 auto;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; height: auto; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
button, input, textarea, select { font-family: inherit; font-size: inherit; }

/* ---------- Typography ---------- */
h1 { font-size: 2rem;    font-weight: 800; line-height: 1.15; letter-spacing: -.03em; }
h2 { font-size: 1.5rem;  font-weight: 700; line-height: 1.2;  letter-spacing: -.02em; }
h3 { font-size: 1.125rem;font-weight: 700; line-height: 1.3; }
h4 { font-size: 1rem;    font-weight: 600; line-height: 1.4; }
p  { font-size: .9375rem; line-height: 1.65; }

.overline {
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--i500);
}

/* ---------- Layout helpers ---------- */
.container { padding: 0 20px; }
.section    { padding: 56px 20px; }
.section--sm{ padding: 40px 20px; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 430px;
  height: var(--header-h);
  background: var(--cream);
  border-bottom: 2px solid var(--i500);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  box-shadow: 0 2px 12px rgba(99,102,241,.10);
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo__mark {
  width: 34px; height: 34px;
  background: var(--i600);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.1rem;
  letter-spacing: -.03em;
  flex-shrink: 0;
}
.logo__text {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -.01em;
}

.hamburger {
  width: 44px; height: 44px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  border-radius: var(--r-sm);
  -webkit-tap-highlight-color: transparent;
  padding: 0;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.hamburger:active { opacity: .7; }

/* ---------- Nav Overlay ---------- */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s;
}
.nav-overlay.open { opacity: 1; pointer-events: all; }

.nav-overlay a {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text);
  padding: 10px 24px;
  border-radius: var(--r-md);
  transition: color .15s, background .15s;
  letter-spacing: -.02em;
  min-height: 60px;
  display: flex; align-items: center;
}
.nav-overlay a:active,
.nav-overlay a.active { color: var(--i600); background: var(--i50); }

.nav-overlay__close {
  position: absolute;
  top: 0; right: 0;
  width: 44px; height: 58px;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--text);
  display: flex; align-items: center; justify-content: center;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  background: linear-gradient(145deg, #1E1B4B 0%, #4338CA 50%, #6366F1 100%);
  padding: 106px 24px 52px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -60px; left: -60px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  pointer-events: none;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.14);
  border: 1px solid rgba(255,255,255,.22);
  border-radius: var(--r-full);
  padding: 6px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  margin-bottom: 20px;
  letter-spacing: .04em;
  backdrop-filter: blur(8px);
}

.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}

.hero__sub {
  color: rgba(255,255,255,.85);
  font-size: .9375rem;
  line-height: 1.65;
  margin-bottom: 32px;
}

.hero__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  border-radius: var(--r-full);
  font-size: .9375rem;
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: opacity .15s, transform .1s;
  -webkit-tap-highlight-color: transparent;
  padding: 0 28px;
  letter-spacing: -.01em;
  text-align: center;
}
.btn:active { opacity: .82; transform: scale(.98); }

.btn--primary { background: var(--white); color: var(--i600); }
.btn--outline  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn--indigo   { background: var(--i600); color: var(--white); }
.btn--indigo-outline { background: transparent; color: var(--i600); border-color: var(--i600); }
.btn--white-cta { background: var(--white); color: var(--i700); font-weight: 800; }

.hero__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.hero__feat {
  background: rgba(255,255,255,.13);
  border: 1px solid rgba(255,255,255,.2);
  border-radius: var(--r-md);
  padding: 12px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  backdrop-filter: blur(8px);
}
.hero__feat-icon {
  width: 32px; height: 32px;
  background: rgba(255,255,255,.18);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.hero__feat-label {
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.92);
  line-height: 1.3;
}

/* ============================================================
   SECTION: PROBLEM
   ============================================================ */
.section--problem { background: var(--cream); }

.problem__cards { margin-top: 28px; display: flex; flex-direction: column; gap: 14px; }

.problem-card {
  background: var(--cream2);
  border-radius: var(--r-md);
  border-left: 3px solid var(--i500);
  padding: 20px 18px;
  box-shadow: var(--shadow-sm);
}
.problem-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 6px;
}
.problem-card p {
  font-size: .875rem;
  color: var(--muted);
  line-height: 1.6;
}

/* ============================================================
   SECTION: FEATURES
   ============================================================ */
.section--features { background: var(--white); }

.features__header { text-align: center; margin-bottom: 28px; }
.features__cards  { display: flex; flex-direction: column; gap: 16px; }

.feat-card {
  background: var(--white);
  border-radius: var(--r-md);
  border-top: 3px solid var(--i500);
  padding: 22px 18px;
  box-shadow: var(--shadow-md);
}
.feat-card__icon {
  width: 44px; height: 44px;
  background: var(--i50);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.feat-card h3 {
  color: var(--text);
  margin-bottom: 8px;
}
.feat-card p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.6;
}

/* ============================================================
   SECTION: ABOUT
   ============================================================ */
.section--about { background: var(--cream2); }

.about__img {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  object-fit: cover;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
  background: var(--i100);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
.about__img-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: var(--r-lg);
  background: linear-gradient(135deg, var(--i100) 0%, var(--i200) 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem;
  margin-bottom: 28px;
  box-shadow: var(--shadow-lg);
}

.about__overline { margin-bottom: 8px; }
.about h2 { margin-bottom: 16px; }
.about p   { color: var(--muted); margin-bottom: 12px; }

.about__checks { margin-top: 20px; display: flex; flex-direction: column; gap: 10px; }
.about__check  {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--text);
}
.about__check-icon {
  width: 22px; height: 22px;
  background: var(--i600);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  font-size: .75rem;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   SECTION: HOW IT WORKS
   ============================================================ */
.section--how { background: var(--i900); }

.how__header { text-align: center; margin-bottom: 36px; }
.how__header h2 { color: var(--white); }

.how__steps { display: flex; flex-direction: column; gap: 28px; }

.how-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.how-step__num {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--i400);
  line-height: 1;
  min-width: 48px;
  letter-spacing: -.04em;
}
.how-step__body {}
.how-step h3 { color: var(--white); margin-bottom: 6px; }
.how-step p  { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.6; }

/* ============================================================
   SECTION: TESTIMONIALS
   ============================================================ */
.section--testimonials { background: var(--cream); }

.testimonials__header { text-align: center; margin-bottom: 24px; }

.testimonials__scroll {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 12px;
  margin: 0 -20px;
  padding-left: 20px;
  padding-right: 20px;
  scrollbar-width: none;
}
.testimonials__scroll::-webkit-scrollbar { display: none; }

.testi-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background: var(--cream2);
  border-radius: var(--r-lg);
  padding: 20px;
  box-shadow: var(--shadow-md);
}
.testi-card__stars {
  color: var(--i500);
  font-size: .875rem;
  margin-bottom: 12px;
  letter-spacing: 2px;
}
.testi-card__quote {
  font-size: .9rem;
  color: var(--text);
  line-height: 1.6;
  margin-bottom: 16px;
  font-style: italic;
}
.testi-card__author {
  display: flex;
  align-items: center;
  gap: 10px;
}
.testi-card__avatar {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--i100);
  object-fit: cover;
  flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  overflow: hidden;
}
.testi-card__name  { font-size: .875rem; font-weight: 700; color: var(--text); }
.testi-card__role  { font-size: .75rem;  color: var(--muted); }

/* ============================================================
   SECTION: FAQ
   ============================================================ */
.section--faq { background: var(--white); }

.faq__header { text-align: center; margin-bottom: 28px; }

.faq__list { display: flex; flex-direction: column; gap: 2px; }

.faq-item {
  border-bottom: 1px solid var(--i100);
}
.faq-item:first-child { border-top: 1px solid var(--i100); }

.faq-item__q {
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 18px 0;
  text-align: left;
  font-size: .9375rem;
  font-weight: 600;
  color: var(--text);
  -webkit-tap-highlight-color: transparent;
  min-height: 60px;
}
.faq-item__q:active { color: var(--i600); }

.faq-chevron {
  width: 20px; height: 20px;
  color: var(--i500);
  flex-shrink: 0;
  transition: transform .25s;
}
.faq-item.open .faq-chevron { transform: rotate(180deg); }

.faq-item__a {
  display: none;
  padding: 0 0 18px;
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7;
}
.faq-item.open .faq-item__a { display: block; }

/* ============================================================
   SECTION: CTA
   ============================================================ */
.section--cta {
  background: var(--i600);
  text-align: center;
  padding: 56px 24px;
}
.section--cta h2 { color: var(--white); margin-bottom: 14px; }
.section--cta p  { color: rgba(255,255,255,.88); margin-bottom: 28px; }

.cta__benefits {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 24px;
  text-align: left;
}
.cta__benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.9);
}
.cta__benefit-check {
  width: 22px; height: 22px;
  background: rgba(255,255,255,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .75rem;
  flex-shrink: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--i900);
  padding: 40px 20px calc(32px + env(safe-area-inset-bottom));
}

.footer__logo .logo__text { color: var(--i200); }
.footer__logo .logo__mark { background: var(--i600); }

.footer__tagline {
  font-size: .8125rem;
  color: rgba(255,255,255,.45);
  margin-top: 8px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-bottom: 28px;
}

.footer__col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 12px;
}

.footer__col a {
  display: block;
  font-size: .875rem;
  color: rgba(255,255,255,.7);
  padding: 5px 0;
  min-height: 36px;
  display: flex; align-items: center;
  transition: color .15s;
}
.footer__col a:active { color: var(--i400); }

.footer__contact {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 20px;
  margin-bottom: 20px;
}
.footer__contact p {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  line-height: 1.7;
}
.footer__contact a { color: var(--i400); }

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding-top: 16px;
  font-size: .75rem;
  color: rgba(255,255,255,.3);
  text-align: center;
}

/* ============================================================
   COOKIE BANNER
   ============================================================ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 430px;
  background: var(--cream);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -8px 32px rgba(99,102,241,.18);
  padding: 24px 20px calc(20px + env(safe-area-inset-bottom));
  z-index: 2000;
  transition: transform .35s cubic-bezier(.32,.72,0,1);
}
.cookie-banner.visible { transform: translateX(-50%) translateY(0); }

.cookie-banner__title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.cookie-banner__text {
  font-size: .8125rem;
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 18px;
}
.cookie-banner__text a { color: var(--i600); text-decoration: underline; }
.cookie-banner__btns {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cookie-btn {
  height: 48px;
  border-radius: var(--r-full);
  font-size: .9rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  -webkit-tap-highlight-color: transparent;
}
.cookie-btn:active { opacity: .8; }
.cookie-btn--accept { background: var(--i600); color: #fff; }
.cookie-btn--reject { background: var(--i50);  color: var(--i700); }

/* ============================================================
   PAGE HERO (subpages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--i900) 0%, var(--i700) 100%);
  padding: calc(var(--header-h) + 36px) 24px 36px;
  text-align: center;
}
.page-hero .overline { color: var(--i400); margin-bottom: 8px; display: block; }
.page-hero h1 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 10px;
}
.page-hero p {
  color: rgba(255,255,255,.75);
  font-size: .9375rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-page__img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: var(--r-lg);
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  background: var(--i100);
  margin-bottom: 28px;
  overflow: hidden;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 28px;
}
.team-card {
  background: var(--cream2);
  border-radius: var(--r-md);
  padding: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.team-card__avatar {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--i100);
  margin: 0 auto 10px;
  overflow: hidden;
  object-fit: cover;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
}
.team-card__name { font-size: .9rem; font-weight: 700; color: var(--text); margin-bottom: 4px; }
.team-card__role { font-size: .75rem; color: var(--muted); }

.value-cards { display: flex; flex-direction: column; gap: 14px; margin-top: 20px; }
.value-card {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 18px;
  border-left: 3px solid var(--i500);
  box-shadow: var(--shadow-sm);
}
.value-card h4 { color: var(--text); margin-bottom: 6px; }
.value-card p  { color: var(--muted); font-size: .875rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-cards { display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.contact-card {
  background: var(--cream2);
  border-radius: var(--r-md);
  padding: 18px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  box-shadow: var(--shadow-sm);
}
.contact-card__icon {
  width: 42px; height: 42px;
  background: var(--i50);
  border-radius: var(--r-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}
.contact-card__label { font-size: .75rem; color: var(--muted); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; margin-bottom: 3px; }
.contact-card__value { font-size: .9375rem; font-weight: 600; color: var(--text); }
.contact-card__value a { color: var(--i600); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label { font-size: .875rem; font-weight: 600; color: var(--text); }

.form-input,
.form-select,
.form-textarea {
  height: 52px;
  border: 1.5px solid var(--i200);
  border-radius: var(--r-md);
  padding: 0 16px;
  font-size: .9375rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
  appearance: none;
}
.form-textarea {
  height: auto;
  min-height: 120px;
  padding: 14px 16px;
  resize: vertical;
  line-height: 1.5;
}
.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--i500);
  box-shadow: 0 0 0 3px rgba(99,102,241,.15);
}
.form-select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236366F1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 44px; }

.form-note { font-size: .8125rem; color: var(--muted); line-height: 1.5; }
.form-success {
  display: none;
  background: var(--i50);
  border: 1px solid var(--i200);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  color: var(--i700);
  font-weight: 600;
}
.form-success.visible { display: block; }

/* ============================================================
   FEATURES PAGE
   ============================================================ */
.feat-page-card {
  background: var(--white);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin-bottom: 20px;
}
.feat-page-card__head {
  background: linear-gradient(135deg, var(--i700) 0%, var(--i500) 100%);
  padding: 24px 20px;
  display: flex;
  gap: 14px;
  align-items: center;
}
.feat-page-card__icon {
  width: 48px; height: 48px;
  background: rgba(255,255,255,.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  flex-shrink: 0;
}
.feat-page-card__head h3 { color: var(--white); font-size: 1.125rem; }
.feat-page-card__head p  { color: rgba(255,255,255,.75); font-size: .8125rem; margin-top: 4px; }
.feat-page-card__body { padding: 20px; }
.feat-page-card__body ul { display: flex; flex-direction: column; gap: 10px; }
.feat-page-card__body li {
  display: flex; align-items: flex-start; gap: 10px;
  font-size: .875rem; color: var(--muted); line-height: 1.5;
}
.feat-page-card__body li::before {
  content: '→';
  color: var(--i500);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-note {
  background: var(--i50);
  border-radius: var(--r-md);
  padding: 20px;
  text-align: center;
  border: 1px solid var(--i200);
}
.pricing-note h3 { color: var(--i700); margin-bottom: 8px; }
.pricing-note p  { color: var(--i600); font-size: .875rem; }

/* ============================================================
   LEGAL PAGES
   ============================================================ */
.legal-content { max-width: 100%; }
.legal-content h2 {
  font-size: 1.2rem;
  color: var(--text);
  margin: 28px 0 10px;
  padding-top: 4px;
}
.legal-content h2:first-child { margin-top: 0; }
.legal-content p {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.75;
  margin-bottom: 10px;
}
.legal-content ul {
  list-style: disc;
  padding-left: 20px;
  margin-bottom: 12px;
}
.legal-content li {
  color: var(--muted);
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 4px;
}
.legal-content a { color: var(--i600); text-decoration: underline; }

.legal-meta {
  font-size: .8125rem;
  color: var(--muted);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--i100);
}

/* ============================================================
   UTILITIES
   ============================================================ */
.mt-4  { margin-top: 4px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mb-4  { margin-bottom: 4px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.text-center { text-align: center; }
.text-muted  { color: var(--muted); }

.scroll-indicator {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
}
.scroll-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--i200);
}
.scroll-dot:first-child { background: var(--i500); }

/* safe-area padding for full-bleed sections */
.body-padded { padding-top: var(--header-h); }
