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

:root {
  --bg:       #FAF7F2;
  --bg2:      #FFFFFF;
  --bg3:      #F4EFE7;
  --border:   #E7E0D5;
  --text:     #2B2A27;
  --muted:    #726D64; /* WCAG AA: 4.8:1 on --bg (was #8A857D = 3.4:1, failed) */
  --accent:   #1D1D1F;
  --accent-h: #38383B;
  --cream:    #2B2A27;
  --warm:     #1D1D1F;
  --r:        12px;
  --shadow:   0 1px 2px rgba(43,42,39,0.04), 0 8px 28px rgba(43,42,39,0.05);
}

html { scroll-behavior: smooth; }
body {
  background: var(--bg);
  color: var(--text);
  font-family: 'Geist', 'Inter Tight', system-ui, sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ── Accessibility: visible keyboard focus ── */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ── Accessibility: skip-to-content link (visible on focus) ── */
.skip-link {
  position: absolute;
  left: 12px;
  top: -60px;
  z-index: 1000;
  background: var(--accent);
  color: #fff;
  padding: 10px 18px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  transition: top .15s ease;
}
.skip-link:focus {
  top: 12px;
}

/* ── ANNOUNCEMENT BAR ── */
.announce {
  background: var(--accent);
  padding: 9px 16px;
  display: flex; align-items: center; justify-content: center;
  gap: 24px; flex-wrap: wrap;
  font-size: 13px; font-weight: 500; color: #fff;
}
.announce-divider { opacity: 0.4; }

/* ── NAV ── */
/* floating pill header — the #site-header wrapper is sticky (set in components.js);
   flow-root keeps the pill's top gap from collapsing so it appears detached */
#site-header { display: flow-root; }
nav {
  position: relative;
  max-width: 900px; margin: 14px auto 0;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(18px);
  border: 1px solid var(--border);
  border-radius: 9999px;
  box-shadow: 0 4px 24px rgba(43,42,39,0.07);
}
.nav-inner {
  margin: 0; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav-logo {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Geist', sans-serif;
  font-weight: 700; font-size: 17px;
  color: var(--text); letter-spacing: -0.3px;
}
.nav-logo-icon {
  width: auto; height: 26px;
  object-fit: contain;
}
.nav-links {
  display: flex; align-items: center; gap: 32px;
  position: absolute; left: 50%; transform: translateX(-50%);
}
.nav-right {
  display: flex; align-items: center; gap: 18px;
}
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--text);
  transition: opacity .18s;
}
.nav-links a:hover { opacity: 0.65; }
.nav-cta {
  background: var(--accent); color: #fff;
  padding: 9px 20px; border-radius: 100px;
  font-size: 14px; font-weight: 600;
  transition: background .18s;
  white-space: nowrap;
}
.nav-cta:hover { background: var(--accent-h); }

/* ── HERO ── */
.hero {
  padding: 80px 28px 64px;
  text-align: center;
  max-width: 1160px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(43,42,39,0.15);
  border: 1px solid rgba(43,42,39,0.3);
  padding: 6px 18px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--warm);
  margin-bottom: 32px;
}
.hero-badge::before {
  content: '•'; color: var(--accent); font-size: 16px; line-height: 0;
}
.hero h1 {
  position: relative;
  font-family: 'Geist', sans-serif;
  font-weight: 800;
  font-size: clamp(40px, 5.6vw, 74px);
  line-height: 1.08; letter-spacing: -2px;
  color: var(--text);
  max-width: 1000px; margin: 0 auto 24px;
}
.hero h1 .script {
  font-family: 'Fraunces', Georgia, serif;
  font-style: italic; font-weight: 400;
  color: var(--warm);
  letter-spacing: -2px;
}
.hero h1 .text-gradient {
  background: linear-gradient(135deg, #3A3A3C 0%, #8E8C88 100%);
  -webkit-background-clip: text; background-clip: text;
  -webkit-text-fill-color: transparent; color: transparent;
}
.hero-sub {
  font-size: 18px; color: var(--muted);
  max-width: 560px; margin: 0 auto 36px;
  line-height: 1.65; font-weight: 400;
}
.hero-actions {
  display: flex; align-items: center;
  justify-content: center; gap: 16px; flex-wrap: wrap;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--accent); color: #fff;
  padding: 14px 30px; border-radius: 100px;
  font-size: 16px; font-weight: 600;
  transition: background .18s;
}
.btn-primary:hover { background: var(--accent-h); }
.hero-price {
  font-size: 15px; color: var(--muted);
}

/* ── TEMPLATE GALLERY ── */
.gallery-wrap {
  overflow: hidden;
  padding: 48px 0 0;
  position: relative;
}
.gallery-wrap::before,
.gallery-wrap::after {
  content: ''; position: absolute; top: 48px; bottom: 0; width: 120px; z-index: 2;
  pointer-events: none;
}
.gallery-wrap::before { left: 0; background: linear-gradient(to right, var(--bg), transparent); }
.gallery-wrap::after  { right: 0; background: linear-gradient(to left,  var(--bg), transparent); }
.gallery {
  display: flex;
  overflow: hidden;
  padding: 0 0 32px;
}
.gallery-track {
  display: flex; gap: 14px;
  animation: gallery-scroll 30s linear infinite;
  will-change: transform;
}
@keyframes gallery-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(calc(-50% - 7px)); }
}
.gallery-card {
  flex-shrink: 0; width: 200px; height: 260px;
  border-radius: 12px;
  position: relative; overflow: hidden;
}
.gallery-card-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; border-radius: 12px;
}

/* ── SHARED LAYOUT ── */
.section { padding: 96px 28px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 11px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 14px;
}
.section-title {
  font-family: 'Geist', sans-serif;
  font-weight: 800; font-size: clamp(28px, 4vw, 46px);
  line-height: 1.1; letter-spacing: -1.5px;
  margin-bottom: 14px;
}
.section-sub {
  font-size: 16px; color: var(--muted);
  max-width: 500px; line-height: 1.65;
}

/* ── STATS BAR ── */
.stats-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg2);
}
.stats-inner {
  max-width: 1100px; margin: 0 auto; padding: 28px 28px;
  display: flex; justify-content: center;
  gap: 64px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-value {
  font-family: 'Geist', sans-serif;
  font-weight: 800; font-size: 34px;
  color: var(--text); letter-spacing: -1px; line-height: 1;
}
.stat-value span { color: var(--accent); }
.stat-label { font-size: 13px; color: var(--muted); margin-top: 4px; }

/* ── HOW IT WORKS ── */
.how { background: var(--bg2); }
.how .section-label,
.how .section-title,
.how .section-sub { text-align: center; }
.how .section-sub { margin-left: auto; margin-right: auto; }
#features { padding-top: 140px; }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px; margin-top: 52px;
}
.step {
  background: var(--bg2); border: 1px solid rgba(0,0,0,0.04);
  border-radius: var(--r); padding: 36px 30px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.step:hover { transform: translateY(-2px); }
.step-num {
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 40px; font-weight: 600; color: var(--accent);
  line-height: 1; margin-bottom: 12px;
}
.step h3 { font-size: 16px; font-weight: 700; margin-bottom: 8px; color: var(--text); }
.step p { font-size: 14.5px; color: #3a3a3a; line-height: 1.65; }

/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 16px; margin-top: 52px;
}
.feature-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 26px;
  transition: border-color .2s;
}
.feature-card:hover { border-color: rgba(43,42,39,0.4); }
.feature-icon {
  margin-bottom: 16px;
  width: 42px; height: 42px; border-radius: 9px;
  background: rgba(43,42,39,0.12);
  border: 1px solid rgba(43,42,39,0.2);
  display: flex; align-items: center; justify-content: center;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-card h3 { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.feature-card p  { font-size: 13px; color: var(--muted); line-height: 1.6; }

/* ── REVIEWS ── */
.reviews { background: var(--bg); }
.reviews-top {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 8px; margin-bottom: 44px;
}
.rating-pill {
  display: flex; align-items: center; gap: 10px;
  background: var(--bg3); border: 1px solid var(--border);
  padding: 10px 18px; border-radius: var(--r);
}
.stars { color: #f5c230; font-size: 16px; letter-spacing: 1px; }
.rating-text { font-size: 13px; color: var(--muted); }
.rating-text strong { color: var(--text); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 16px;
}
.review-card {
  background: var(--bg2); border: 1px solid transparent;
  border-radius: 16px; padding: 24px;
}
.review-stars { color: #D4AF37; font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 14px; line-height: 1.65; margin-bottom: 14px; flex-grow: 1; }
.review-author { display: flex; align-items: center; gap: 10px; }
.review-avatar {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--bg2); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; color: var(--warm); flex-shrink: 0;
  overflow: hidden;
}
img.review-avatar { object-fit: cover; }
.review-photo {
  width: 100%; max-height: 300px; object-fit: cover;
  border-radius: 10px; border: 1px solid rgba(0,0,0,0.04);
  margin: 2px 0 16px; display: block;
}
/* author (avatar + name) sits above the review text */
.review-card { display: flex; flex-direction: column; }
.review-card .review-author { order: -2; margin-bottom: 14px; }
.review-card .review-meta { order: -1; }

/* collapsed reviews: clip height and fade/blur the bottom peek */
.reviews-collapsible { position: relative; max-height: 560px; overflow: hidden; }
.reviews-collapsible.reviews-show-all { max-height: none; }
.reviews-collapsible::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0; height: 150px;
  background: linear-gradient(to bottom, rgba(250,247,242,0), rgba(250,247,242,0.96));
  backdrop-filter: blur(3px);
  -webkit-mask-image: linear-gradient(to bottom, transparent, #000 45%);
  mask-image: linear-gradient(to bottom, transparent, #000 45%);
  pointer-events: none; transition: opacity .3s;
}
.reviews-collapsible.reviews-show-all::after { opacity: 0; }

.reviews-more { display: flex; justify-content: center; margin-top: 40px; }
.reviews-more-btn {
  display: inline-flex; align-items: center; gap: 12px;
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: 100px; padding: 7px 8px 7px 16px;
  box-shadow: var(--shadow); cursor: pointer;
  font-size: 14px; color: var(--muted);
  font-family: inherit; transition: box-shadow .2s;
}
.reviews-more-btn:hover { box-shadow: 0 10px 30px rgba(43,42,39,0.12); }
.reviews-more-btn strong { color: var(--text); }
.reviews-more-avatars { display: flex; }
.reviews-more-avatars img {
  width: 28px; height: 28px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--bg2); margin-left: -8px;
}
.reviews-more-avatars img:first-child { margin-left: 0; }
.reviews-more-plus {
  background: var(--accent); color: #fff;
  border-radius: 100px; padding: 6px 16px;
  font-weight: 600; font-size: 13px; white-space: nowrap;
}
.review-name { font-size: 13px; font-weight: 600; }
.review-role { font-size: 12px; color: var(--muted); }
.review-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 10px; }
.review-date { font-size: 11px; color: var(--muted); }
.review-verified { font-size: 11px; color: #3f9b6e; display: flex; align-items: center; gap: 4px; }
.review-verified::before { content: '✓'; font-weight: 700; }
.review-avatar-a { background: #E3EDF7; color: #3B6EA5; }
.review-avatar-b { background: #F7E6EF; color: #B5487F; }
.review-avatar-c { background: #E4F2E8; color: #3F8B5A; }
.review-avatar-d { background: #F7EFDE; color: #B5862E; }
.review-avatar-e { background: #ECE7F7; color: #6F5BB0; }
.review-avatar-f { background: #F7E4E2; color: #B5544A; }

/* ── PRICING ── */
.pricing-section .section-label,
.pricing-section .section-title,
.pricing-section .section-sub { text-align: center; }
.pricing-section .section-sub { margin-left: auto; margin-right: auto; }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px; margin-top: 52px; max-width: 900px;
}
.pricing-card {
  background: var(--bg2); border: 1px solid var(--border);
  border-radius: var(--r); padding: 28px; position: relative;
  display: flex; flex-direction: column;
}
.pricing-card.featured {
  border: 1px solid rgba(0,0,0,0.15);
  background: var(--bg2);
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.pricing-badge {
  position: absolute; top: -11px; left: 50%; transform: translateX(-50%);
  background: var(--accent); color: #fff;
  font-size: 10px; font-weight: 800; letter-spacing: 1.5px;
  padding: 3px 12px; border-radius: 100px; text-transform: uppercase;
  white-space: nowrap;
}
.pricing-name { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.pricing-price-row { margin-bottom: 4px; }
.pricing-price-original {
  font-size: 13px; font-weight: 500; color: var(--muted);
  text-decoration: line-through; margin-bottom: 4px;
}
.pricing-price {
  font-family: 'Geist', sans-serif; font-weight: 800;
  font-size: 46px; line-height: 1; letter-spacing: -2px;
}
.pricing-discount {
  font-size: 12px; color: #3f9b6e; font-weight: 600;
  margin-top: 5px;
}
.pricing-note { font-size: 13px; color: var(--muted); margin-bottom: 22px; }
.pricing-features { list-style: none; margin-bottom: 24px; flex-grow: 1; }
.pricing-features li {
  font-size: 13px; padding: 8px 0;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; gap: 10px;
}
.pricing-features li:last-child { border-bottom: none; }
.pricing-features li::before {
  content: ""; flex-shrink: 0;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--accent) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffffff' stroke-width='3.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6L9 17l-5-5'/%3E%3C/svg%3E") center/11px no-repeat;
}
.pricing-btn {
  display: block; width: 100%; text-align: center;
  padding: 13px; border-radius: 10px;
  font-size: 14px; font-weight: 700; margin-top: auto;
  transition: background .2s, border-color .2s, color .2s, transform .15s;
  cursor: pointer; border: none;
}
.pricing-card.featured .pricing-btn {
  background: var(--accent); color: #fff;
}
.pricing-card.featured .pricing-btn:hover {
  background: var(--accent-h); transform: translateY(-1px);
}
.pricing-card:not(.featured) .pricing-btn {
  background: transparent; border: 1px solid var(--muted); color: var(--text);
}
.pricing-card:not(.featured) .pricing-btn:hover {
  background: var(--text); color: var(--bg); border-color: var(--text); transform: translateY(-1px);
}
.pricing-urgency {
  font-size: 12px; font-weight: 500; color: var(--accent);
  margin-bottom: 10px; letter-spacing: 0;
}
.trust-badges {
  display: flex; align-items: center; justify-content: center;
  gap: 6px; margin-top: 12px;
  font-size: 11px; color: var(--muted);
}
.trust-badges span + span::before { content: '·'; margin-right: 6px; }
.guarantee-block {
  display: flex; align-items: center; justify-content: center;
  gap: 12px; margin: 36px auto 0;
  max-width: 500px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}
.guarantee-text { font-size: 13px; color: var(--muted); line-height: 1.5; text-align: center; }
.guarantee-text strong { color: var(--text); }

/* ── BEFORE / AFTER ── */
.before-after { background: var(--bg2); }
.before-after-inner {
  display: flex;
  gap: 3px;
  border-radius: 14px;
  overflow: hidden;
  max-width: 960px;
  margin: 52px auto 0;
  position: relative;
}
.ba-side { position: relative; }
.ba-side.ba-before { flex: 0 0 38%; }
.ba-side.ba-after { flex: 1; }
.ba-side img {
  width: 100%; height: 100%;
  display: block; object-fit: cover;
  min-height: 460px;
}
.ba-label {
  position: absolute; bottom: 14px; left: 14px;
  background: rgba(0,0,0,0.65); backdrop-filter: blur(6px);
  color: #fff; font-size: 11px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 6px;
}
.ba-label.after { background: var(--accent); }
.ba-divider {
  position: absolute; top: 0; bottom: 0; left: 50%;
  width: 2px; background: var(--bg);
  transform: translateX(-50%);
  z-index: 2;
}
@media (max-width: 600px) {
  .before-after-inner { grid-template-columns: 1fr; }
  .ba-divider { display: none; }
}

/* ── FAQ ── */
.faq { background: var(--bg2); }
.faq-inner { max-width: 700px; margin: 52px auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-btn {
  width: 100%; background: none; border: none;
  text-align: left; cursor: pointer; color: var(--text);
  font-family: inherit; font-size: 15px; font-weight: 600;
  display: flex; justify-content: space-between; align-items: center;
  padding: 20px 0; gap: 12px;
}
.faq-icon {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 17px; color: var(--accent);
  transition: transform .22s; line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  font-size: 14px; color: var(--muted); line-height: 1.7;
  max-height: 0; overflow: hidden;
  transition: max-height .28s ease, padding-bottom .28s ease;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }

/* ── FINAL CTA ── */
.cta-section {
  padding: 100px 28px;
  text-align: center;
  background: radial-gradient(ellipse 70% 60% at 50% 110%, rgba(43,42,39,0.14), transparent);
}
.cta-section h2 {
  font-family: 'Geist', sans-serif;
  font-weight: 900; font-size: clamp(32px, 5vw, 58px);
  line-height: 1.05; letter-spacing: -2px; margin-bottom: 18px;
}
.cta-section p { font-size: 16px; color: var(--muted); margin-bottom: 32px; }
.cta-note { margin-top: 14px; font-size: 13px; color: var(--muted); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--border);
  padding: 48px 28px;
}
.footer-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 40px;
}
.footer-brand .nav-logo { margin-bottom: 10px; }
.footer-brand p { font-size: 13px; color: var(--muted); max-width: 220px; margin-top: 8px; }
.footer-col h4 {
  font-size: 11px; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--muted); margin-bottom: 14px;
}
.footer-col a {
  display: block; font-size: 13px; color: var(--muted);
  margin-bottom: 8px; transition: color .18s;
}
.footer-col a:hover { color: var(--text); }
.footer-bottom {
  max-width: 1100px; margin: 28px auto 0; padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px;
  font-size: 12px; color: var(--muted);
}

@media (max-width: 680px) {
  .nav-links { display: none; }
  .stats-inner { gap: 32px; }
  .footer-inner { flex-direction: column; }
}

/* ── Mobile tuning (keeps desktop untouched) ── */
@media (max-width: 680px) {
  /* Tighter vertical rhythm so sections don't feel stretched on phones */
  .section { padding: 64px 20px; }
  #features { padding-top: 80px; }
  .cta-section { padding: 72px 20px; }
  .hero { padding: 56px 20px 48px; }

  /* Stats: 2x2 grid instead of a cramped single row */
  .stats-inner { gap: 28px 0; padding: 32px 20px; }
  .stat { flex: 0 0 50%; padding: 0 12px; }
  .stat:not(:last-child)::after { display: none; }

  /* Cards: a touch less inner padding on small screens */
  .step { padding: 28px 22px; }
  .features-panel .feature-card { padding: 22px 20px; }
  .pricing-card { padding: 26px 22px; }

  /* Nav: keep side breathing room + smaller CTA so it never overflows */
  nav { margin: 12px 16px 0; }
  .nav-inner { padding: 0 8px 0 16px; }
  .nav-cta { padding: 9px 16px; }
  .nav-right { gap: 12px; }

  /* Hero: smaller headline so each line fits instead of wrapping word-by-word */
  .hero h1 { font-size: 30px; line-height: 1.15; letter-spacing: -1px; }
}

@media (max-width: 380px) {
  .hero h1 { font-size: 26px; }
}

/* ── Apple-style soft elevation (light theme) ── */
.feature-card,
.pricing-card,
.review-card,
.rating-pill { box-shadow: var(--shadow); }
.step { box-shadow: 0 1px 2px rgba(43,42,39,0.03), 0 6px 20px rgba(43,42,39,0.04); }
.step:hover { box-shadow: 0 2px 8px rgba(43,42,39,0.05), 0 16px 40px rgba(43,42,39,0.07); }
.pricing-card.featured {
  box-shadow: 0 20px 40px rgba(0,0,0,0.06);
}
.gallery-card { box-shadow: 0 6px 20px rgba(43,42,39,0.08); }
.feature-card:hover { box-shadow: 0 2px 8px rgba(43,42,39,0.05), 0 16px 44px rgba(43,42,39,0.08); }

/* ── Hero details (soft aurora, pills, social proof, marker sticker) ── */
.hero { position: relative; }
.hero > * { position: relative; z-index: 1; }
.hero::before {
  content: ''; position: absolute; z-index: 0; pointer-events: none;
  top: -90px; left: 50%; transform: translateX(-50%);
  width: min(1100px, 96vw); height: 560px;
  background:
    radial-gradient(38% 48% at 24% 42%, rgba(244,222,140,0.40), transparent 70%),
    radial-gradient(42% 52% at 72% 34%, rgba(202,186,240,0.38), transparent 72%),
    radial-gradient(40% 50% at 52% 64%, rgba(244,194,208,0.32), transparent 72%);
  filter: blur(46px);
}

.hero-pills {
  display: flex; flex-wrap: wrap; gap: 10px;
  justify-content: center; margin-top: 26px;
}
.hero-pill {
  font-size: 13.5px; font-weight: 500; color: var(--text);
  background: rgba(255,255,255,0.65);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(43,42,39,0.08);
  padding: 9px 18px; border-radius: 100px;
  box-shadow: 0 2px 10px rgba(43,42,39,0.05);
}
.hero-pill:nth-child(1) { background: rgba(246,222,131,0.30); }
.hero-pill:nth-child(2) { background: rgba(193,224,200,0.42); }
.hero-pill:nth-child(3) { background: rgba(198,216,242,0.45); }

.social-proof {
  display: inline-flex; align-items: center; gap: 12px;
  margin-top: 24px;
  background: rgba(255,255,255,0.9);
  border: 1px solid rgba(43,42,39,0.08);
  padding: 8px 20px 8px 14px; border-radius: 100px;
  box-shadow: 0 6px 22px rgba(43,42,39,0.08);
}
.avatars { display: flex; }
.avatar {
  width: 36px; height: 36px; border-radius: 50%;
  object-fit: cover; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  font-size: 12.5px; font-weight: 700;
  border: 2.5px solid #fff; margin-left: -11px;
  box-shadow: 0 1px 3px rgba(43,42,39,0.12);
}
.avatar:first-child { margin-left: 0; }
.social-text { font-size: 13.5px; color: var(--muted); }
.social-text .stars { color: #F5B544; letter-spacing: 1px; font-size: 13px; }
.social-text strong { color: var(--text); font-weight: 700; margin: 0 2px 0 4px; }

.hero-sticker {
  position: absolute; right: -6px; bottom: -30px;
  font-family: 'Caveat', cursive;
  font-size: 22px; font-weight: 700; color: #2B2A27;
  background: #F6DE83;
  padding: 6px 18px; border-radius: 10px;
  transform: rotate(-3deg); line-height: 1.35;
  box-shadow: 0 8px 22px rgba(43,42,39,0.12);
  border: 1px solid rgba(43,42,39,0.06);
  white-space: nowrap; letter-spacing: 0.3px;
}
@media (max-width: 860px) {
  .hero-sticker {
    position: static; display: inline-block;
    margin-top: 18px; white-space: normal;
    font-size: 20px;
  }
}

/* ── Features: cards sit directly on the page, unified icons ── */
#features .section-label,
#features .section-title,
#features .section-sub { text-align: center; }
#features .section-sub { max-width: 800px; margin-left: auto; margin-right: auto; }
.features-panel {
  margin-top: 72px;
  background: none;
  border: none;
  padding: 0;
}
.features-panel .features-grid { margin-top: 0; gap: 16px; }
.features-panel .feature-card {
  background: var(--bg2);
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 1px 2px rgba(43,42,39,0.04), 0 8px 24px rgba(43,42,39,0.04);
  border-radius: 16px;
  padding: 28px 26px;
  display: flex; flex-wrap: wrap; align-items: center; gap: 16px;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.features-panel .feature-card:hover {
  border-color: rgba(43,42,39,0.12);
  transform: translateY(-2px);
  box-shadow: 0 2px 8px rgba(43,42,39,0.05), 0 16px 44px rgba(43,42,39,0.08);
}
.features-panel .feature-card h3 { margin-bottom: 0; }
.features-panel .feature-card p { flex-basis: 100%; margin: 4px 0 0; }
.features-panel .feature-card p strong { color: var(--text); font-weight: 600; }
/* Unified icon style: dark mark on a soft neutral chip */
.features-panel .feature-icon {
  margin-bottom: 0; flex-shrink: 0;
  width: 38px; height: 38px; border-radius: 9px;
  background: rgba(43,42,39,0.06);
  border: none;
  color: var(--text);
}
