/* =================================================================
   TokoKilat — Landing Page
   Palet: pastel + aksen ungu / ungu tua
   Mobile-first, premium, banyak whitespace
   ================================================================= */

:root {
  /* Ungu */
  --purple-900: #2d1b4e;
  --purple-800: #44337a;
  --purple-700: #553c9a;
  --purple-600: #6b46c1;
  --purple-500: #805ad5;
  --purple-400: #9f7aea;
  --purple-300: #b794f6;

  /* Pastel */
  --lav-50:  #f7f4fd;
  --lav-100: #efe9fb;
  --lav-200: #e3d9f7;
  --pink-50: #fdf2f8;
  --pink-100:#fce7f3;
  --mint-50: #f0fdf9;

  --ink:      #1f1633;
  --ink-soft: #5b5170;
  --white:    #ffffff;

  --grad: linear-gradient(135deg, #7c3aed 0%, #9f7aea 50%, #b794f6 100%);
  --grad-soft: linear-gradient(160deg, #f7f4fd 0%, #efe9fb 45%, #fdf2f8 100%);

  --shadow-sm: 0 2px 10px rgba(76, 41, 122, .06);
  --shadow:    0 14px 40px rgba(76, 41, 122, .12);
  --shadow-lg: 0 30px 70px rgba(76, 41, 122, .20);

  --radius: 22px;
  --radius-sm: 14px;

  --maxw: 1140px;

  --ff-body: 'Plus Jakarta Sans', system-ui, sans-serif;
  --ff-head: 'Sora', 'Plus Jakarta Sans', sans-serif;
}

/* ---------- Reset ---------- */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 20px;
}
.container--narrow { max-width: 780px; }

.hl { color: var(--purple-600); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--ff-body);
  font-weight: 700;
  font-size: 1rem;
  border: none;
  border-radius: 999px;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease;
  white-space: nowrap;
}
.btn--sm { padding: 10px 20px; font-size: .9rem; }
.btn--lg { padding: 16px 32px; font-size: 1.05rem; }
.btn--block { width: 100%; }
.btn--primary {
  background: var(--grad);
  color: #fff;
  box-shadow: 0 10px 26px rgba(124, 58, 237, .35);
}
.btn--primary:hover { transform: translateY(-3px); box-shadow: 0 16px 34px rgba(124, 58, 237, .45); }
.btn--ghost {
  background: var(--white);
  color: var(--purple-700);
  border: 2px solid var(--lav-200);
}
.btn--ghost:hover { transform: translateY(-3px); border-color: var(--purple-300); box-shadow: var(--shadow-sm); }
.btn--light {
  background: #fff;
  color: var(--purple-700);
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
}
.btn--light:hover { transform: translateY(-3px); }

/* ---------- Topbar / urgency ---------- */
.topbar {
  background: var(--purple-900);
  color: #f3ecff;
  text-align: center;
  font-size: .85rem;
  padding: 9px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.topbar i { color: #fbbf24; }
.topbar strong { color: #fff; font-variant-numeric: tabular-nums; letter-spacing: .5px; }

/* ---------- Navbar ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--lav-100);
  transition: box-shadow .3s ease;
}
.nav.scrolled { box-shadow: var(--shadow-sm); }
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 66px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--purple-800);
}
.brand__logo {
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--grad);
  color: #fff;
  border-radius: 10px;
  font-size: .95rem;
}
.brand--light { color: #fff; }
.nav__links { display: none; gap: 30px; }
.nav__links a { font-weight: 600; color: var(--ink-soft); transition: color .2s; }
.nav__links a:hover { color: var(--purple-600); }
.nav__cta { display: none; }

/* ---------- Hero ---------- */
.hero {
  background: var(--grad-soft);
  padding: 50px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(159,122,234,.28), transparent 70%);
  top: -160px; right: -140px;
  border-radius: 50%;
}
.hero__inner {
  position: relative;
  display: grid;
  gap: 44px;
}
.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--purple-700);
  font-weight: 700;
  font-size: .8rem;
  padding: 8px 16px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.pill i { color: #fbbf24; }
.hero__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(2.1rem, 8.5vw, 3.4rem);
  line-height: 1.08;
  letter-spacing: -.02em;
  margin: 18px 0 16px;
}
.hero__sub {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 540px;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 28px 0 22px;
}
.trust {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink-soft);
}
.trust i { color: var(--purple-500); margin-right: 6px; }

/* ---------- Hero mockup ---------- */
.hero__media { position: relative; display: flex; justify-content: center; }
.mockup {
  width: 100%;
  max-width: 380px;
  background: #fff;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--lav-100);
  transform: rotate(-1.5deg);
  transition: transform .4s ease;
}
.mockup:hover { transform: rotate(0deg) translateY(-6px); }
.mockup__bar {
  background: var(--lav-100);
  padding: 12px 16px;
  display: flex; gap: 7px;
}
.mockup__bar span { width: 10px; height: 10px; border-radius: 50%; background: var(--purple-300); }
.mockup__bar span:nth-child(2){ background:#f9a8d4 } .mockup__bar span:nth-child(3){ background:#a7f3d0 }
.mockup__screen { padding: 16px; }
.mk-head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 14px; }
.mk-logo { font-family: var(--ff-head); font-weight: 800; color: var(--purple-700); }
.mk-cart { width: 34px; height: 34px; border-radius: 10px; background: var(--lav-100); display: grid; place-items: center; color: var(--purple-600); }
.mk-banner {
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  padding: 22px 16px;
  border-radius: 14px;
  margin-bottom: 14px;
  font-size: .95rem;
}
.mk-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mk-card { background: var(--lav-50); border-radius: 12px; padding: 10px; }
.mk-img { height: 56px; border-radius: 8px; margin-bottom: 8px; }
.mk-img.a { background: linear-gradient(135deg,#c4b5fd,#a78bfa); }
.mk-img.b { background: linear-gradient(135deg,#fbcfe8,#f9a8d4); }
.mk-img.c { background: linear-gradient(135deg,#a7f3d0,#6ee7b7); }
.mk-img.d { background: linear-gradient(135deg,#ddd6fe,#c4b5fd); }
.mk-line { height: 7px; width: 70%; background: var(--lav-200); border-radius: 4px; margin-bottom: 7px; }
.mk-price { font-weight: 800; color: var(--purple-700); font-size: .85rem; }

.float-badge {
  position: absolute;
  background: #fff;
  border-radius: 14px;
  padding: 10px 14px;
  font-weight: 700;
  font-size: .8rem;
  box-shadow: var(--shadow);
  color: var(--purple-700);
  display: flex; align-items: center; gap: 8px;
}
.float-badge i { color: var(--purple-500); }
.float-badge--1 { top: 20px; left: -4px; animation: floaty 4s ease-in-out infinite; }
.float-badge--2 { bottom: 24px; right: -4px; animation: floaty 4s ease-in-out infinite .8s; }
@keyframes floaty { 0%,100%{ transform: translateY(0) } 50%{ transform: translateY(-10px) } }

/* ---------- Proof strip ---------- */
.proofstrip { background: var(--purple-900); }
.proofstrip__inner {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px 12px;
  padding: 28px 20px;
  text-align: center;
}
.proofstrip__inner div { color: #d6c9f5; }
.proofstrip__inner strong { display: block; font-family: var(--ff-head); font-size: 1.6rem; color: #fff; font-weight: 800; }
.proofstrip__inner span { font-size: .85rem; }

/* ---------- Section base ---------- */
.section { padding: 64px 0; }
.section__head { text-align: center; max-width: 640px; margin: 0 auto 40px; }
.kicker {
  display: inline-block;
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--purple-600);
  background: var(--lav-100);
  padding: 6px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
}
.section__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: clamp(1.7rem, 6vw, 2.5rem);
  line-height: 1.15;
  letter-spacing: -.02em;
}
.section__lead { color: var(--ink-soft); margin-top: 14px; font-size: 1.05rem; }

.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: 1fr; }
.grid-3 { grid-template-columns: 1fr; }

/* ---------- Pain cards ---------- */
.pains { background: var(--lav-50); }
.pain-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--lav-100);
}
.pain-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--pink-100);
  color: #db2777;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.pain-card h3 { font-family: var(--ff-head); font-size: 1.18rem; margin-bottom: 8px; }
.pain-card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Benefit cards ---------- */
.benefit-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 30px 26px;
  border: 1px solid var(--lav-100);
  box-shadow: var(--shadow-sm);
  transition: transform .25s ease, box-shadow .25s ease;
}
.benefit-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.benefit-card__icon {
  width: 56px; height: 56px;
  border-radius: 16px;
  background: var(--grad);
  color: #fff;
  display: grid; place-items: center;
  font-size: 1.4rem;
  margin-bottom: 16px;
}
.benefit-card h3 { font-family: var(--ff-head); font-size: 1.18rem; margin-bottom: 8px; }
.benefit-card p { color: var(--ink-soft); font-size: .96rem; }

/* ---------- Preview carousel ---------- */
.preview { background: var(--grad-soft); }
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.carousel__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  padding: 8px 4px 20px;
  scrollbar-width: none;
}
.carousel__track::-webkit-scrollbar { display: none; }
.slide {
  flex: 0 0 82%;
  scroll-snap-align: center;
  background: #fff;
  border-radius: var(--radius);
  padding: 14px 14px 18px;
  box-shadow: var(--shadow);
  border: 1px solid var(--lav-100);
}
.shot {
  height: 230px;
  border-radius: var(--radius-sm);
  margin-bottom: 14px;
  position: relative;
  overflow: hidden;
}
.shot::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.25), transparent 40%);
}
.shot--home    { background: linear-gradient(135deg,#a78bfa,#7c3aed); }
.shot--catalog { background: linear-gradient(135deg,#f9a8d4,#c026d3); }
.shot--detail  { background: linear-gradient(135deg,#6ee7b7,#10b981); }
.shot--cart    { background: linear-gradient(135deg,#c4b5fd,#8b5cf6); }
.slide figcaption { text-align: center; font-weight: 700; color: var(--purple-700); font-family: var(--ff-head); }
.carousel__btn {
  position: absolute;
  top: 42%;
  width: 44px; height: 44px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: var(--purple-700);
  box-shadow: var(--shadow);
  cursor: pointer;
  display: grid; place-items: center;
  font-size: 1rem;
  transition: transform .2s, background .2s;
  z-index: 2;
}
.carousel__btn:hover { transform: scale(1.08); background: var(--purple-600); color: #fff; }
.carousel__btn--prev { left: -6px; }
.carousel__btn--next { right: -6px; }
.carousel__dots { display: flex; justify-content: center; gap: 8px; margin-top: 6px; }
.carousel__dots button {
  width: 9px; height: 9px; border-radius: 50%;
  border: none; background: var(--lav-200); cursor: pointer; padding: 0;
  transition: width .25s, background .25s;
}
.carousel__dots button.active { width: 26px; border-radius: 6px; background: var(--purple-500); }

/* ---------- Testimoni ---------- */
.testi-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 26px;
  border: 1px solid var(--lav-100);
  box-shadow: var(--shadow-sm);
}
.stars { color: #fbbf24; margin-bottom: 12px; font-size: .95rem; }
.testi-card p { color: var(--ink); font-size: 1rem; margin-bottom: 20px; }
.testi-card__by { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c, var(--purple-400));
  color: #fff;
  display: grid; place-items: center;
  font-weight: 800;
  font-size: .9rem;
}
.testi-card__by strong { display: block; font-size: .95rem; }
.testi-card__by small { color: var(--ink-soft); }

/* ---------- Pricing ---------- */
.pricing { background: var(--lav-50); }
.price-card {
  background: #fff;
  border-radius: 26px;
  padding: 34px 28px;
  border: 1px solid var(--lav-100);
  box-shadow: var(--shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
}
.price-card--featured {
  border: 2px solid var(--purple-400);
  box-shadow: var(--shadow);
  background: linear-gradient(180deg, #fff, #faf7ff);
}
.ribbon {
  position: absolute;
  top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--grad);
  color: #fff;
  font-weight: 700;
  font-size: .8rem;
  padding: 7px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(124,58,237,.35);
  white-space: nowrap;
}
.price-card__name { font-family: var(--ff-head); font-size: 1.4rem; font-weight: 800; }
.price-card__desc { color: var(--ink-soft); font-size: .95rem; margin: 6px 0 18px; }
.price-card__price { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.price-card__price .old { color: #b0a7c4; text-decoration: line-through; font-size: 1.05rem; }
.price-card__price .now { font-family: var(--ff-head); font-size: 2.3rem; font-weight: 800; color: var(--purple-700); }
.save {
  display: inline-block;
  background: #dcfce7;
  color: #15803d;
  font-weight: 700;
  font-size: .78rem;
  padding: 4px 12px;
  border-radius: 999px;
  margin: 10px 0 18px;
  width: fit-content;
}
.features { margin-bottom: 18px; }
.features li { display: flex; align-items: flex-start; gap: 10px; padding: 7px 0; font-size: .96rem; }
.features li i { color: #16a34a; margin-top: 4px; }
.features li.muted { color: #b0a7c4; }
.features li.muted i { color: #d6cfe6; }
.bonus {
  background: var(--lav-100);
  border-radius: 14px;
  padding: 14px 16px;
  font-size: .9rem;
  margin-bottom: 22px;
  color: var(--purple-800);
}
.bonus strong { color: var(--purple-700); }
.bonus i { color: #db2777; }
.price-card .btn { margin-top: auto; }
.pricing__note { text-align: center; margin-top: 30px; color: var(--ink-soft); font-size: .95rem; }
.pricing__note i { color: var(--purple-500); margin: 0 4px 0 12px; }

/* ---------- FAQ ---------- */
.faq__list { display: flex; flex-direction: column; gap: 14px; }
.faq-item {
  background: #fff;
  border: 1px solid var(--lav-100);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 20px 22px;
  font-weight: 700;
  font-family: var(--ff-head);
  font-size: 1.02rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i { color: var(--purple-500); transition: transform .3s ease; flex-shrink: 0; }
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item__body { padding: 0 22px 20px; }
.faq-item__body p { color: var(--ink-soft); }

/* ---------- Final CTA ---------- */
.finalcta {
  background: var(--purple-900);
  background-image: var(--grad);
  padding: 70px 0;
  text-align: center;
}
.finalcta__inner { color: #fff; max-width: 680px; margin: 0 auto; }
.finalcta h2 { font-family: var(--ff-head); font-size: clamp(1.8rem,6vw,2.6rem); font-weight: 800; line-height: 1.15; }
.finalcta p { margin: 14px 0 28px; color: #ede4ff; font-size: 1.05rem; }
.finalcta__trust { display: flex; gap: 22px; justify-content: center; margin-top: 22px; flex-wrap: wrap; font-weight: 600; font-size: .9rem; color: #ede4ff; }

/* ---------- Footer ---------- */
.footer { background: #1a1130; color: #cabfe0; padding: 50px 0 0; }
.footer__inner { display: grid; gap: 30px; padding-bottom: 36px; }
.footer__brand p { margin: 14px 0 18px; max-width: 320px; font-size: .95rem; }
.socials { display: flex; gap: 12px; }
.socials a {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  display: grid; place-items: center;
  color: #fff;
  transition: background .25s, transform .25s;
}
.socials a:hover { background: var(--purple-500); transform: translateY(-3px); }
.footer__links { display: flex; flex-wrap: wrap; gap: 18px 26px; align-content: start; }
.footer__links a { font-weight: 600; transition: color .2s; }
.footer__links a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.08); padding: 18px 0; font-size: .85rem; }
.footer__bottom p { text-align: center; }

/* ---------- Modal Demo ---------- */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 100;
  background: rgba(0,0,0,.55);
  display: grid;
  place-items: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.modal {
  background: #fff;
  border-radius: 26px;
  padding: 40px 32px 32px;
  max-width: 440px;
  width: 100%;
  position: relative;
  text-align: center;
  box-shadow: 0 30px 70px rgba(0,0,0,.35);
  transform: scale(.92) translateY(20px);
  transition: transform .3s cubic-bezier(.2,.8,.2,1);
}
.modal-overlay.open .modal {
  transform: scale(1) translateY(0);
}
.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  background: var(--lav-100);
  color: var(--purple-700);
  cursor: pointer;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  transition: background .2s;
}
.modal__close:hover { background: var(--lav-200); }
.modal__title {
  font-family: var(--ff-head);
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.modal__desc {
  color: var(--ink-soft);
  font-size: .95rem;
  margin-bottom: 24px;
}
.modal__actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.modal__actions .btn { width: 100%; }

/* ---------- Modal Success ---------- */
.modal--success {
  max-width: 400px;
  text-align: center;
  padding: 48px 32px 36px;
}
.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #dcfce7;
  color: #16a34a;
  display: grid;
  place-items: center;
  font-size: 1.8rem;
  margin: 0 auto 18px;
}

/* ---------- Modal Order Form ---------- */
.modal--form {
  max-width: 500px;
  text-align: left;
  display: flex;
  flex-direction: column;
  max-height: 90vh;
  padding-bottom: 0;
}
.modal--form .modal__title,
.modal--form .modal__desc {
  padding-left: 32px;
  padding-right: 32px;
}
.modal--form .modal__title {
  padding-right: 52px;
}
.modal__body {
  overflow-y: auto;
  padding: 0 32px 32px;
  scrollbar-width: thin;
  scrollbar-color: var(--purple-300) var(--lav-100);
}
.modal__body::-webkit-scrollbar {
  width: 6px;
}
.modal__body::-webkit-scrollbar-track {
  background: var(--lav-100);
  border-radius: 3px;
}
.modal__body::-webkit-scrollbar-thumb {
  background: var(--purple-300);
  border-radius: 3px;
}
.modal__body::-webkit-scrollbar-thumb:hover {
  background: var(--purple-400);
}
.order-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-weight: 700;
  font-size: .9rem;
  color: var(--ink);
}
.form-group .req {
  color: #dc2626;
}
.form-group input,
.form-group textarea {
  font-family: var(--ff-body);
  font-size: .95rem;
  padding: 12px 16px;
  border: 2px solid var(--lav-200);
  border-radius: 12px;
  background: var(--lav-50);
  color: var(--ink);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
  width: 100%;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--purple-400);
  box-shadow: 0 0 0 4px rgba(159,122,234,.15);
  background: #fff;
}
.form-group input[readonly] {
  background: var(--lav-100);
  color: var(--purple-700);
  font-weight: 700;
  cursor: default;
}
.form-group textarea {
  min-height: 80px;
  resize: vertical;
}
.order-form .btn {
  margin-top: 8px;
}

/* ---------- Sticky mobile CTA ---------- */
.sticky-cta {
  position: fixed;
  left: 12px; right: 12px; bottom: 12px;
  z-index: 60;
  background: #fff;
  border-radius: 18px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--lav-100);
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  transform: translateY(160%);
  transition: transform .4s cubic-bezier(.2,.8,.2,1);
}
.sticky-cta.show { transform: translateY(0); }
.sticky-cta__info { display: flex; flex-direction: column; line-height: 1.1; }
.sticky-cta__old { color: #b0a7c4; text-decoration: line-through; font-size: .8rem; }
.sticky-cta__now { font-family: var(--ff-head); font-weight: 800; color: var(--purple-700); font-size: 1.2rem; }
.sticky-cta .btn { padding: 12px 18px; font-size: .95rem; }

/* ---------- Scroll reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .7s ease, transform .7s ease;
  will-change: opacity, transform;
}
.reveal.in { opacity: 1; transform: none; }

/* =================================================================
   RESPONSIVE — tablet & desktop
   ================================================================= */
@media (min-width: 600px) {
  .grid-2 { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .proofstrip__inner { grid-template-columns: repeat(4, 1fr); }
  .slide { flex-basis: 60%; }
}

@media (min-width: 900px) {
  .section { padding: 90px 0; }
  .nav__links { display: flex; }
  .nav__cta { display: inline-flex; }
  .grid-3 { grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .hero { padding: 80px 0 90px; }
  .hero__inner { grid-template-columns: 1.05fr .95fr; align-items: center; gap: 50px; }
  .mockup { max-width: 420px; }
  .slide { flex-basis: 46%; }
  .footer__inner { grid-template-columns: 1.4fr 1fr; }
  /* sticky CTA only on mobile */
  .sticky-cta { display: none !important; }
}

@media (min-width: 1100px) {
  .slide { flex-basis: 40%; }
}

/* reduced motion */
@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
