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

:root {
  --pink:   #E7D3BE;   /* warm tan — gradients */
  --blush:  #EFE6D8;   /* soft cream — chips / pills */
  --rose:   #B05E33;   /* terracotta — accents & labels */
  --plum:   #5A4031;   /* deep warm brown */
  --plum-d: #3A2A20;
  --sage:   #5E8B6A;   /* skin-score green */
  --sage-d: #4F7D5C;
  --dark:   #261C15;   /* warm near-black headings */
  --mid:    #6F635A;
  --muted:  #9C9085;
  --cream:  #F4EFE8;   /* page background */
  --light:  #ECE3D6;   /* alt section background */
  --white:  #FFFFFF;
  --border: rgba(74,53,38,.12);
  --radius: 20px;
  --shadow: 0 4px 24px rgba(74,53,38,.10);
}

html { scroll-behavior: smooth; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { max-width: 1100px; margin: 0 auto; padding: 0 32px; }

/* ── Nav ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 60px;
}
.nav__logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-size: 1.15rem; font-weight: 800; letter-spacing: -.4px; color: var(--plum);
}
.nav__logo span { color: var(--rose); }
.nav__logo-img {
  width: 30px; height: 30px; border-radius: 9px; object-fit: cover;
  background: var(--blush); flex-shrink: 0;
}
.nav__links { display: flex; align-items: center; gap: 28px; }
.nav__links a { font-size: .875rem; font-weight: 500; color: var(--mid); transition: color .2s; }
.nav__links a:hover { color: var(--plum); }
.btn-dl {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--dark); color: var(--white) !important;
  padding: 9px 18px; border-radius: 50px;
  font-size: .82rem !important; font-weight: 600 !important;
  transition: background .2s !important;
}
.btn-dl:hover { background: var(--plum) !important; }
@media (max-width: 600px) {
  .nav__links { gap: 16px; }
  .nav__links a { font-size: .82rem; }
  .btn-dl { padding: 8px 14px; }
  .btn-dl svg { display: none; }
}
@media (max-width: 380px) {
  .nav__links { gap: 12px; }
  .nav__links .hide-mobile { font-size: .8rem; }
}

/* ── Hero ── */
.hero { padding: 88px 0 80px; text-align: center; overflow: hidden; }
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blush); border-radius: 50px;
  padding: 5px 14px; font-size: .78rem; font-weight: 700;
  letter-spacing: .4px; text-transform: uppercase; color: var(--plum);
  margin-bottom: 24px;
}
.hero__eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); display: inline-block; }
.hero h1 {
  font-size: clamp(2.8rem, 7vw, 5rem);
  font-weight: 900; letter-spacing: -2.5px; line-height: 1.04;
  color: var(--dark); margin-bottom: 22px;
}
.hero h1 em { font-style: normal; color: var(--plum); }
.hero__sub { font-size: 1.1rem; color: var(--mid); line-height: 1.7; max-width: 480px; margin: 0 auto 36px; }

/* Stars */
.stars { color: #F5A623; letter-spacing: 1px; font-size: .9rem; }
.hero__rating {
  display: flex; align-items: center; justify-content: center;
  gap: 10px; margin-bottom: 32px; flex-wrap: wrap;
}
.hero__rating .stars { font-size: 1rem; }
.hero__rating-text { font-size: .85rem; color: var(--mid); }
.hero__rating-text strong { color: var(--dark); }

.hero__actions {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; flex-wrap: wrap; margin-bottom: 16px;
}
.btn-app {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--dark); color: var(--white);
  padding: 14px 26px; border-radius: 14px;
  font-size: .9rem; font-weight: 600;
  transition: background .2s, transform .2s;
}
.btn-app:hover { background: var(--plum); transform: translateY(-1px); }
.btn-app svg { flex-shrink: 0; }
.hero__risk { font-size: .8rem; color: var(--muted); margin-bottom: 64px; }

/* Hero phones */
.hero__phones { display: flex; justify-content: center; align-items: flex-end; gap: 20px; }
.phone {
  background: linear-gradient(160deg, var(--blush) 0%, var(--pink) 100%);
  border-radius: 44px;
  box-shadow: 0 40px 100px rgba(74,53,38,.22), 0 0 0 1px rgba(74,53,38,.08);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; overflow: hidden; position: relative;
}
.phone--main { width: 240px; height: 500px; }
.phone__inner {
  position: absolute; inset: 12px;
  background: rgba(255,255,255,.35); border-radius: 34px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 16px;
}
.phone__bar { width: 60%; height: 6px; border-radius: 3px; background: rgba(74,53,38,.2); }
.phone__bar--short { width: 40%; }
.hero__hero-art { width: 92%; height: auto; object-fit: contain; filter: drop-shadow(0 12px 28px rgba(74,53,38,.18)); }

/* ── Social proof bar ── */
.proof-bar {
  background: var(--light); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
  padding: 20px 0;
}
.proof-bar__inner {
  display: flex; align-items: center; justify-content: center;
  gap: 40px; flex-wrap: wrap;
}
.proof-item { display: flex; align-items: center; gap: 10px; }
.proof-item__icon {
  width: 36px; height: 36px; border-radius: 10px; background: var(--blush);
  display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.proof-item__text strong { display: block; font-size: .875rem; font-weight: 700; color: var(--dark); }
.proof-item__text span  { font-size: .78rem; color: var(--mid); }
.proof-divider { width: 1px; height: 28px; background: var(--border); }
@media (max-width: 540px) { .proof-divider { display: none; } }

/* ── Feature sections ── */
.feature { padding: 96px 0; border-top: 1px solid var(--border); }
.feature--alt { background: var(--light); }
.feature__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.feature--alt .feature__inner { direction: rtl; }
.feature--alt .feature__text, .feature--alt .feature__visual { direction: ltr; }
.feature__label { font-size: .72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); margin-bottom: 14px; display: block; }
.feature__title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; margin-bottom: 18px; }
.feature__body { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 28px; }
.feature__pills { display: flex; flex-wrap: wrap; gap: 8px; }
.pill { background: var(--blush); color: var(--plum); border-radius: 50px; padding: 6px 14px; font-size: .8rem; font-weight: 600; }
.feature__visual { display: flex; justify-content: center; align-items: center; }
.feature__phone {
  width: 260px; height: 540px;
  background: linear-gradient(145deg, var(--blush), var(--pink));
  border-radius: 48px;
  box-shadow: 0 32px 80px rgba(74,53,38,.2), 0 0 0 1px rgba(74,53,38,.07);
  position: relative; overflow: hidden; flex-shrink: 0;
}
.feature__phone-bg {
  position: absolute; inset: 0;
  display: flex; flex-direction: column;
  padding: 48px 20px 24px; gap: 10px;
}
.fphone-bar { border-radius: 8px; height: 12px; background: rgba(74,53,38,.18); }
.fphone-bar--tall { height: 52px; border-radius: 14px; }
.fphone-bar--med  { height: 32px; border-radius: 11px; }
.feature__icon-card {
  position: absolute; bottom: 28px; right: -20px;
  background: var(--white); border-radius: 16px;
  padding: 14px 18px; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 8px 32px rgba(74,53,38,.18); white-space: nowrap;
}
.feature__icon-card .icon { font-size: 1.4rem; }
.feature__icon-card strong { font-size: .8rem; display: block; }
.feature__icon-card span   { font-size: .72rem; color: var(--mid); }
@media (max-width: 820px) {
  .feature__inner { grid-template-columns: 1fr; gap: 48px; }
  .feature--alt .feature__inner { direction: ltr; }
  .feature__visual { order: -1; }
  .feature__phone { width: 220px; height: 460px; }
}

/* ── How it works ── */
.how { padding: 96px 0; border-top: 1px solid var(--border); }
.how__steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; margin-top: 56px; }
@media (max-width: 720px) { .how__steps { grid-template-columns: 1fr; gap: 36px; } }
.how__step { display: flex; gap: 20px; }
.how__step-num {
  font-size: 1.3rem; font-weight: 900; color: var(--plum);
  width: 44px; height: 44px; border-radius: 14px; background: var(--blush);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.how__step h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 6px; }
.how__step p  { font-size: .9rem; color: var(--mid); line-height: 1.7; }

/* ── Testimonials ── */
.testimonials { padding: 96px 0; border-top: 1px solid var(--border); background: var(--light); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 56px; }
@media (max-width: 820px) { .testimonials__grid { grid-template-columns: 1fr; } }
.testimonial {
  background: var(--white); border-radius: var(--radius); padding: 28px;
  border: 1px solid var(--border);
  display: flex; flex-direction: column; gap: 16px;
}
.testimonial__top { display: flex; align-items: center; gap: 12px; }
.testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blush), var(--pink));
  display: flex; align-items: center; justify-content: center;
  font-size: .9rem; font-weight: 700; color: var(--plum); flex-shrink: 0;
}
.testimonial__meta strong { display: block; font-size: .875rem; font-weight: 700; }
.testimonial__meta span   { font-size: .78rem; color: var(--mid); }
.testimonial__text { font-size: .9rem; color: var(--mid); line-height: 1.7; font-style: italic; flex: 1; }
.testimonial__stars { font-size: .85rem; color: #F5A623; }

/* ── FAQ ── */
.faq { padding: 96px 0; border-top: 1px solid var(--border); }
.faq__grid { max-width: 760px; margin: 56px auto 0; display: flex; flex-direction: column; gap: 2px; }
.faq-item {
  border-radius: 14px; border: 1px solid var(--border); overflow: hidden;
  background: var(--white);
}
.faq-item + .faq-item { margin-top: 8px; }
.faq-item__q {
  width: 100%; text-align: left; padding: 20px 24px;
  background: none; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-size: .95rem; font-weight: 700; color: var(--dark);
  font-family: inherit; transition: background .15s;
}
.faq-item__q:hover { background: var(--light); }
.faq-item__q svg { flex-shrink: 0; transition: transform .25s; color: var(--mid); }
.faq-item[open] .faq-item__q svg { transform: rotate(45deg); }
.faq-item__a { padding: 0 24px 20px; font-size: .9rem; color: var(--mid); line-height: 1.75; }

/* ── CTA ── */
.cta { padding: 96px 0; border-top: 1px solid var(--border); text-align: center; }
.cta h2 { font-size: clamp(2rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -1.5px; line-height: 1.1; margin-bottom: 14px; }
.cta__sub { font-size: 1rem; color: var(--mid); margin-bottom: 40px; }
.cta__row { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
.qr-box {
  width: 88px; height: 88px; border-radius: 16px;
  border: 1.5px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: .62rem; color: var(--mid); text-align: center; padding: 8px; line-height: 1.4;
}
.cta__divider { font-size: .8rem; color: var(--muted); }
.cta__risk { margin-top: 16px; font-size: .8rem; color: var(--muted); }
.cta__risk span { margin: 0 6px; }

/* ── Blog section ── */
.blog { padding: 96px 0; border-top: 1px solid var(--border); }
.blog__header { margin-bottom: 48px; }
.blog__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.article-card {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid var(--border); transition: transform .25s, box-shadow .25s;
  background: var(--white);
}
.article-card:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(74,53,38,.12); }
.article-card__img {
  width: 100%; height: 180px;
  background: linear-gradient(135deg, var(--blush), var(--pink));
  display: flex; align-items: center; justify-content: center; font-size: 3rem;
}
.article-card__body { padding: 22px; }
.article-card__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.tag { background: var(--blush); color: var(--plum); border-radius: 50px; padding: 4px 10px; font-size: .72rem; font-weight: 700; }
.article-card__meta span { font-size: .75rem; color: var(--mid); }
.article-card h3 { font-size: 1rem; font-weight: 700; line-height: 1.4; margin-bottom: 8px; }
.article-card p  { font-size: .875rem; color: var(--mid); line-height: 1.65; margin-bottom: 16px; }
.read-more { font-size: .82rem; font-weight: 700; color: var(--plum); display: inline-flex; align-items: center; gap: 4px; transition: gap .2s; }
.article-card:hover .read-more { gap: 8px; }

/* ── Before / After Slider ── */
.ba { padding: 96px 0; border-top: 1px solid var(--border); background: var(--light); }
.ba__head { text-align: center; max-width: 560px; margin: 0 auto; }
.ba__stage {
  position: relative;
  width: 300px; max-width: 86vw;
  margin: 56px auto 0;
  padding: 14px;
  border-radius: 52px;
  background: linear-gradient(160deg, var(--blush) 0%, var(--pink) 100%);
  box-shadow: 0 40px 100px rgba(74,53,38,.24), 0 0 0 1px rgba(74,53,38,.08);
}
.ba__notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 92px; height: 22px; border-radius: 50px;
  background: rgba(18,13,16,.82); z-index: 6;
}
.ba-slider {
  position: relative; aspect-ratio: 9 / 17;
  border-radius: 40px; overflow: hidden;
  cursor: ew-resize; touch-action: none;
  user-select: none; -webkit-user-select: none; -moz-user-select: none;
  --pos: 50%;
}
.ba-slider__label, .ba-slider__handle {
  user-select: none; -webkit-user-select: none; -moz-user-select: none;
}
.ba-slider__pane { position: absolute; inset: 0; }
.ba-slider__pane img { width: 100%; height: 100%; object-fit: cover; display: block; }
/* Fallback gradients show through until real photos are added */
.ba-slider__pane--after  { background: linear-gradient(150deg, #FFE9C2 0%, #FFC9A3 45%, #F2A7C3 100%); }
.ba-slider__pane--before { background: linear-gradient(150deg, #C9C4CE 0%, #A79FAE 100%); }
.ba-slider__pane--before {
  clip-path: inset(0 calc(100% - var(--pos)) 0 0);
  -webkit-clip-path: inset(0 calc(100% - var(--pos)) 0 0);
}
.ba-slider__label {
  position: absolute; top: 18px; z-index: 4;
  font-size: .68rem; font-weight: 800; letter-spacing: .8px; text-transform: uppercase;
  padding: 6px 12px; border-radius: 50px; backdrop-filter: blur(6px);
}
.ba-slider__label--before { left: 16px; background: rgba(18,13,16,.55); color: #fff; }
.ba-slider__label--after  { right: 16px; background: rgba(255,255,255,.7); color: var(--plum); }
.ba-slider__divider {
  position: absolute; top: 0; bottom: 0; left: var(--pos);
  width: 3px; margin-left: -1.5px; background: rgba(255,255,255,.9);
  box-shadow: 0 0 12px rgba(74,53,38,.35); z-index: 5;
}
.ba-slider__handle {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--white); box-shadow: 0 6px 20px rgba(74,53,38,.35);
  display: flex; align-items: center; justify-content: center; gap: 2px;
  color: var(--plum);
}
.ba-slider__handle svg { width: 16px; height: 16px; }
.ba__hint { text-align: center; font-size: .8rem; color: var(--mid); margin-top: 22px; }
/* Invisible native range keeps it keyboard / screen-reader accessible;
   pointer-events:none lets the custom drag handler drive smooth dragging,
   while the range stays Tab-focusable with working arrow keys. */
.ba-slider__range {
  position: absolute; inset: 0; width: 100%; height: 100%;
  margin: 0; opacity: 0; pointer-events: none; z-index: 7;
}

/* ── Footer ── */
.footer { padding: 48px 0 32px; border-top: 1px solid var(--border); }
.footer__top { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 40px; margin-bottom: 48px; }
.footer__brand p { font-size: .875rem; color: var(--mid); max-width: 220px; line-height: 1.65; margin-top: 8px; }
.footer__col h4 { font-size: .72rem; font-weight: 800; letter-spacing: 1.5px; text-transform: uppercase; color: var(--mid); margin-bottom: 14px; }
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer__col a { font-size: .875rem; color: var(--mid); transition: color .2s; }
.footer__col a:hover { color: var(--plum); }
.footer__bottom {
  padding-top: 24px; border-top: 1px solid var(--border);
  display: flex; flex-wrap: wrap; gap: 12px;
  justify-content: space-between; align-items: center;
}
.footer__bottom p { font-size: .8rem; color: var(--mid); }

/* ── Section helpers ── */
.section-label { font-size: .72rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--rose); display: block; margin-bottom: 12px; }
.section-title { font-size: clamp(1.8rem, 3.5vw, 2.6rem); font-weight: 800; letter-spacing: -1px; line-height: 1.15; }
.section-sub { margin-top: 10px; font-size: 1rem; color: var(--mid); }

/* ── Blog post ── */
.post-hero { padding: 64px 0 0; border-bottom: 1px solid var(--border); }
.post-hero__inner { max-width: 760px; margin: 0 auto; padding: 0 32px 56px; }
.post-hero__meta { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; flex-wrap: wrap; }
.post-hero__meta span { font-size: .8rem; color: var(--mid); }
.post-hero h1 { font-size: clamp(1.9rem, 4.5vw, 3rem); font-weight: 900; letter-spacing: -1.2px; line-height: 1.15; margin-bottom: 20px; }
.post-hero__lead { font-size: 1.1rem; color: var(--mid); line-height: 1.75; }
.post-hero__cover {
  max-width: 760px; margin: 0 auto;
  height: 320px; background: linear-gradient(135deg, var(--blush), var(--pink));
  display: flex; align-items: center; justify-content: center; font-size: 5rem;
}
.post-body { max-width: 680px; margin: 0 auto; padding: 56px 32px 96px; }
.post-body h2 { font-size: 1.4rem; font-weight: 800; letter-spacing: -.4px; margin: 48px 0 14px; color: var(--dark); }
.post-body h3 { font-size: 1.05rem; font-weight: 700; margin: 32px 0 10px; }
.post-body p  { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 18px; }
.post-body ul, .post-body ol { padding-left: 22px; margin-bottom: 18px; }
.post-body li { font-size: 1rem; color: var(--mid); line-height: 1.8; margin-bottom: 6px; }
.post-body strong { color: var(--dark); font-weight: 700; }
.post-body a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }
.callout {
  background: var(--blush); border-left: 3px solid var(--rose);
  border-radius: 0 12px 12px 0; padding: 18px 22px; margin: 24px 0;
}
.callout p { margin-bottom: 0; color: var(--plum); }
.post-footer {
  max-width: 680px; margin: 0 auto; padding: 0 32px 80px;
  border-top: 1px solid var(--border); padding-top: 40px;
}
.post-footer h3 { font-size: 1.1rem; font-weight: 800; margin-bottom: 6px; }
.post-footer p  { font-size: .9rem; color: var(--mid); margin-bottom: 20px; }

/* ── Inner pages ── */
.page-hero { padding: 72px 0 56px; border-bottom: 1px solid var(--border); }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.2rem); font-weight: 900; letter-spacing: -1.5px; margin-bottom: 10px; }
.page-hero p { font-size: 1rem; color: var(--mid); }
.prose { max-width: 720px; margin: 0 auto; padding: 64px 32px 96px; }
.prose h2 { font-size: 1.3rem; font-weight: 800; margin: 44px 0 12px; color: var(--plum); letter-spacing: -.3px; }
.prose h3 { font-size: 1rem; font-weight: 700; margin: 28px 0 8px; }
.prose p, .prose li { font-size: .95rem; color: var(--mid); line-height: 1.8; }
.prose ul, .prose ol { padding-left: 22px; margin: 10px 0; }
.prose li { margin-bottom: 6px; }
.prose .meta { font-size: .8rem; color: var(--rose); font-weight: 700; margin-bottom: 32px; }
.prose a { color: var(--plum); text-decoration: underline; text-underline-offset: 3px; }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 80px; padding: 72px 0 96px; align-items: start; }
@media (max-width: 768px) { .contact-grid { grid-template-columns: 1fr; gap: 48px; } }
.contact-info h2 { font-size: 1.5rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.contact-info p  { font-size: .9rem; color: var(--mid); line-height: 1.75; margin-bottom: 32px; }
.contact-item { display: flex; gap: 14px; align-items: flex-start; margin-bottom: 20px; }
.contact-item__icon { width: 40px; height: 40px; border-radius: 12px; background: var(--blush); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.contact-item__text strong { display: block; font-size: .85rem; font-weight: 700; }
.contact-item__text span  { font-size: .85rem; color: var(--mid); }
.form { display: flex; flex-direction: column; gap: 16px; }
.form-group label { display: block; font-size: .78rem; font-weight: 700; margin-bottom: 6px; color: var(--dark); letter-spacing: .2px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: 12px;
  font-size: .9rem; color: var(--dark); background: var(--white);
  outline: none; transition: border-color .2s; font-family: inherit; appearance: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--rose); }
.form-group textarea { resize: vertical; min-height: 140px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }
.btn-submit { background: var(--dark); color: var(--white); padding: 14px; border-radius: 12px; font-size: .9rem; font-weight: 700; border: none; cursor: pointer; transition: background .2s; }
.btn-submit:hover { background: var(--plum); }

/* ── Blog empty ── */
.blog-empty { text-align: center; padding: 112px 24px; }
.blog-empty__icon { font-size: 4rem; margin-bottom: 24px; }
.blog-empty h2 { font-size: 1.8rem; font-weight: 800; margin-bottom: 12px; letter-spacing: -.3px; }
.blog-empty p  { color: var(--mid); max-width: 380px; margin: 0 auto 32px; }
.btn-outline { display: inline-flex; align-items: center; gap: 8px; border: 1.5px solid var(--border); border-radius: 50px; padding: 12px 24px; font-size: .875rem; font-weight: 600; color: var(--dark); transition: border-color .2s, color .2s; }
.btn-outline:hover { border-color: var(--plum); color: var(--plum); }

/* ════════════════════════════════════════════════
   AI Skin Coach — theme additions
   ════════════════════════════════════════════════ */

/* Elegant editorial serif for display headings (matches app marketing).
   Playfair loads on index; other pages fall back to Georgia gracefully. */
:root { --font-serif: "Playfair Display", "Iowan Old Style", Georgia, "Times New Roman", serif; }
.hero h1,
.section-title,
.feature__title,
.cta h2,
.page-hero h1,
.post-hero h1,
.blog-empty h2 {
  font-family: var(--font-serif);
  font-weight: 800;
  letter-spacing: -.5px;
}
.hero h1 { letter-spacing: -1px; }

/* Eyebrow with sparkle */
.hero__eyebrow svg { width: 13px; height: 13px; }

/* ── Real app screenshots (full App-Store previews on cream) ── */
.shot {
  display: block; height: auto; width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 70px rgba(74,53,38,.18), 0 0 0 1px rgba(74,53,38,.05);
}
.hero__shot-wrap { max-width: 260px; margin: 8px auto 0; }

/* ── Feature pillars grid ── */
.pillars { padding: 88px 0 8px; }
.pillars__grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 48px;
}
@media (max-width: 860px) { .pillars__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 460px) { .pillars__grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 26px 24px;
  transition: transform .25s, box-shadow .25s;
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 44px rgba(74,53,38,.12); }
.pillar__icon {
  width: 46px; height: 46px; border-radius: 14px;
  background: var(--blush); color: var(--rose);
  display: flex; align-items: center; justify-content: center; margin-bottom: 18px;
}
.pillar__icon svg { width: 24px; height: 24px; }
.pillar h3 { font-size: 1.02rem; font-weight: 700; margin-bottom: 8px; letter-spacing: -.2px; }
.pillar p { font-size: .88rem; color: var(--mid); line-height: 1.65; }

/* ── Screenshot showcase gallery ── */
.showcase { padding: 96px 0; border-top: 1px solid var(--border); background: var(--light); overflow: hidden; }
.showcase__head { text-align: center; max-width: 560px; margin: 0 auto; }
.showcase__scroll {
  display: flex; gap: 26px; margin-top: 56px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  padding: 8px 32px 28px; scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
}
.showcase__scroll::-webkit-scrollbar { display: none; }
.showcase__item {
  flex: 0 0 auto; width: 270px; scroll-snap-align: center;
}
.showcase__item .shot { border-radius: 28px; }
.showcase__cap {
  text-align: center; margin-top: 14px;
  font-size: .8rem; font-weight: 700; color: var(--plum); letter-spacing: .2px;
}
@media (max-width: 600px) { .showcase__item { width: 230px; } }

/* Sage / score accent helper */
.is-sage { color: var(--sage-d); }

/* Cap screenshot size inside feature rows */
.feature__visual .shot { width: auto; max-width: 240px; }
@media (max-width: 820px) { .feature__visual .shot { max-width: 220px; } }
.hero__shot-wrap .shot { width: 100%; }
