/* ==========================================================================
   Marlow — textmarlow.com
   Design system: warm cream + purple, Fraunces serif display, DM Sans body
   ========================================================================== */

:root {
  /* palette */
  --cream: #faf4ec;
  --cream-2: #f6eee2;
  --sand: #f3e9da;
  --lavender: #e9e0f8;
  --lavender-2: #dccdf2;
  --ink: #2d2358;
  --ink-soft: #57517a;
  --purple: #6d4ae8;
  --purple-deep: #5636d3;
  --purple-dark: #241a4f;
  --purple-dark-2: #2f2363;
  --gold: #f5b23c;
  --peach-note: #fbd9b4;
  --peach-note-edge: #f6c893;
  --cream-note: #fdeec3;
  --white: #fffdf9;

  /* type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "DM Sans", -apple-system, "Segoe UI", sans-serif;

  /* misc */
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 12px;
  --shadow-card: 0 18px 40px -18px rgba(45, 35, 88, .28);
  --shadow-float: 0 24px 48px -20px rgba(45, 35, 88, .35);
  --container: 1120px;
}

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

html { scroll-behavior: smooth; overflow-x: clip; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.55;
  overflow-x: clip;
  font-size: 16px;
}

img, video { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul[role="list"], ol[role="list"] { list-style: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: 28px; position: relative; }

.visually-hidden {
  position: absolute !important; width: 1px; height: 1px;
  clip-path: inset(50%); overflow: hidden; white-space: nowrap;
}

/* ---------- Type scale ---------- */
h1, h2, h3 { font-family: var(--font-display); font-weight: 600; line-height: 1.06; letter-spacing: -.01em; }

h1 { font-size: clamp(2.5rem, 4.6vw, 3.7rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.6rem); }

h1 em { font-style: italic; color: var(--purple); font-weight: 600; }

.sec-sub { color: var(--ink-soft); font-size: 1.06rem; margin-top: .8rem; }

.kicker {
  font-size: .78rem; font-weight: 700; letter-spacing: .09em; text-transform: uppercase;
  color: var(--purple-deep);
}
.kicker.pill {
  display: inline-block; background: var(--lavender); border-radius: 999px;
  padding: .42em 1.1em; margin-bottom: 1rem;
}
.kicker.caps { color: var(--ink-soft); letter-spacing: .14em; }
.kicker.pill.pill-dark { background: rgba(255,255,255,.16); color: #e4dcfd; }
.kicker.pill.pill-outline { background: rgba(255,255,255,.22); color: #ffffff; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: .55em;
  font-family: var(--font-body); font-weight: 600; font-size: 1rem;
  border-radius: 999px; padding: .95em 1.7em; cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  border: 2px solid transparent;
}
.btn .arrow { transition: transform .18s ease; }
.btn:hover .arrow { transform: translateX(4px); }

.btn-primary {
  background: var(--purple); color: #fff;
  box-shadow: 0 12px 26px -10px rgba(109, 74, 232, .65);
}
.btn-primary:hover { background: var(--purple-deep); transform: translateY(-2px); }

.btn-ghost {
  background: var(--white); color: var(--ink);
  border-color: #e5d9c9; box-shadow: 0 8px 18px -12px rgba(45,35,88,.25);
}
.btn-ghost:hover { border-color: var(--purple); color: var(--purple-deep); transform: translateY(-2px); }

.btn-light { background: #fff; color: var(--purple-deep); box-shadow: 0 12px 26px -12px rgba(0,0,0,.4); }
.btn-light:hover { transform: translateY(-2px); }
.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,.55); }
.btn-outline-light:hover { border-color: #fff; transform: translateY(-2px); }

.btn-sm { padding: .68em 1.35em; font-size: .93rem; }

.play-ico { width: .8em; height: .9em; fill: currentColor; }

.btn-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 1.9rem; }
.btn-row.centered { justify-content: center; }

.text-link { font-weight: 700; color: var(--purple-deep); display: inline-flex; align-items: center; gap: .4em; }
.text-link:hover .arrow { transform: translateX(4px); }
.text-link .arrow { transition: transform .18s ease; }
.text-link.sm { font-size: .9rem; }

/* ---------- Ticks ---------- */
.ticks { display: flex; gap: 26px; flex-wrap: wrap; margin-top: 1.6rem; color: var(--ink-soft); font-size: .92rem; font-weight: 500; }
.ticks li { display: inline-flex; align-items: center; gap: .5em; }
.ticks svg { width: 1.05em; height: 1.05em; color: var(--purple); fill: currentColor; }
.ticks svg [fill="none"] { fill: none; }
.ticks-row { justify-content: center; margin-top: 1.7rem; padding-bottom: .6rem; }
.ticks-light { justify-content: center; color: #e6ddff; }
.ticks-light svg { color: #cbbaf8; }

/* ---------- Tappable SMS number ---------- */
.sms-number {
  display: inline-flex; align-items: center; gap: .65em;
  margin-top: 1.5rem; padding: .8em 1.4em;
  background: var(--white); border: 1.5px solid #e6d9c6; border-radius: 999px;
  font-size: .95rem; color: var(--ink-soft); font-weight: 500;
  box-shadow: 0 10px 22px -14px rgba(45,35,88,.35);
  transition: transform .18s ease, border-color .18s ease;
}
.sms-number:hover { transform: translateY(-2px); border-color: var(--purple); }
.sms-number strong { color: var(--purple-deep); font-weight: 700; white-space: nowrap; }
.sms-ico { width: 19px; height: 19px; color: var(--purple); flex-shrink: 0; }

.sms-number-light {
  background: rgba(255,255,255,.14); border-color: rgba(255,255,255,.35);
  color: #e9e2ff; box-shadow: none; margin-top: 1.2rem;
}
.sms-number-light:hover { border-color: #fff; }
.sms-number-light strong { color: #fff; }

.sms-number-footer {
  background: none; border: none; box-shadow: none; padding: 0;
  margin-top: .9rem; font-size: .92rem;
}
.sms-number-footer:hover { transform: none; }

/* ---------- Reveal on scroll ---------- */
[data-reveal] { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.3,1); }
[data-reveal].revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* ==========================================================================
   NAV
   ========================================================================== */
.nav-wrap {
  position: sticky; top: 0; z-index: 60;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(45, 35, 88, .06);
}
.nav { display: flex; align-items: center; gap: 30px; padding-block: 16px; }

.logo {
  font-family: var(--font-display); font-weight: 700; font-size: 1.9rem; letter-spacing: -.02em;
  color: var(--ink); position: relative; line-height: 1;
}
.logo-spark { width: 20px; height: 13px; color: var(--purple); position: absolute; top: -6px; right: -14px; }

.nav-links { display: flex; gap: 30px; margin-left: auto; font-weight: 600; font-size: .96rem; }
.nav-links a { display: inline-flex; align-items: center; gap: .35em; color: var(--ink); opacity: .85; transition: color .15s, opacity .15s; }
.nav-links a:hover { color: var(--purple-deep); opacity: 1; }
.chev { width: 9px; height: 6px; opacity: .6; }

.nav-cta { display: flex; align-items: center; gap: 20px; margin-left: 10px; }
.nav-login { font-weight: 600; font-size: .96rem; opacity: .85; }
.nav-login:hover { color: var(--purple-deep); opacity: 1; }

.nav-toggle { display: none; background: none; border: 0; width: 40px; height: 36px; flex-direction: column; justify-content: center; gap: 6px; cursor: pointer; margin-left: auto; }
.nav-toggle span { display: block; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .2s, opacity .2s; }

@media (max-width: 900px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--cream); flex-direction: column; gap: 0; padding: 10px 28px 20px;
    border-bottom: 1px solid rgba(45,35,88,.08);
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 12px 0; }
  .nav-cta { margin-left: auto; }
  .nav-login { display: none; }
}

/* ==========================================================================
   HERO
   ========================================================================== */
.hero { position: relative; padding-top: 40px; overflow: hidden; }

.hero-bg { position: absolute; inset: 0; pointer-events: none; }
.blob { position: absolute; border-radius: 50%; filter: blur(2px); }
.blob-1 {
  width: 900px; height: 700px; right: -240px; top: -80px;
  background: radial-gradient(closest-side, var(--lavender) 0%, rgba(233,224,248,.55) 55%, transparent 100%);
  border-radius: 42% 58% 55% 45% / 45% 42% 58% 55%;
}
.blob-2 {
  width: 620px; height: 460px; left: -260px; bottom: -40px;
  background: radial-gradient(closest-side, rgba(220,205,242,.8), transparent);
  border-radius: 58% 42% 46% 54% / 52% 55% 45% 48%;
}
.blob-3 {
  width: 380px; height: 300px; left: 30%; top: -120px;
  background: radial-gradient(closest-side, rgba(246,238,226,.9), transparent);
}
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: 120px; height: 300px; width: 100%;
  color: #e6dbf6; opacity: .75;
}

.sparkle { position: absolute; width: 16px; height: 16px; fill: var(--purple); opacity: .55; }
.sp-1 { top: 120px; left: 46%; width: 12px; }
.sp-2 { top: 320px; right: 6%; }
.sp-3 { bottom: 140px; left: 40%; width: 10px; }

.hero-grid {
  display: grid; grid-template-columns: minmax(380px, 450px) 1fr;
  gap: 34px; align-items: center; padding-block: 40px 30px;
}

.hero-badge {
  display: inline-flex; align-items: center; gap: .55em;
  background: var(--white); border: 1px solid #eadfce; border-radius: 999px;
  padding: .5em 1.2em; font-size: .88rem; font-weight: 600; color: var(--ink);
  box-shadow: 0 6px 16px -10px rgba(45,35,88,.3);
  margin-bottom: 1.6rem;
}
.hero-badge svg { width: 1em; height: .9em; fill: var(--purple); }

.hero-sub { color: var(--ink-soft); font-size: 1.13rem; max-width: 25rem; margin-top: 1.5rem; }

/* --- hero visual --- */
.hero-visual { position: relative; min-height: 660px; }

.phone {
  background: #1b1b21; border-radius: 44px; padding: 12px;
  box-shadow: 0 40px 70px -30px rgba(45,35,88,.55), inset 0 0 0 2.5px #3a3a44;
  width: 300px; position: relative; z-index: 3;
}
.phone-notch {
  position: absolute; top: 22px; left: 50%; transform: translateX(-50%);
  width: 96px; height: 24px; background: #1b1b21; border-radius: 14px; z-index: 5;
}
.phone-screen {
  background: #f6f2ee; border-radius: 34px; overflow: hidden;
  display: flex; flex-direction: column; min-height: 540px; max-height: 560px;
}

.phone-hero { position: absolute; left: 23%; top: 12px; transform: rotate(4deg); }

.chat-header {
  display: flex; align-items: center; gap: 8px;
  background: #fff; padding: 30px 16px 10px; border-bottom: 1px solid #eee5da;
  font-size: .92rem;
}
.chat-avatar { border-radius: 50%; background: var(--lavender); }
.back-chev { width: 8px; height: 13px; color: var(--purple); }
.chat-time { margin-left: auto; font-size: .72rem; color: #9b93b4; font-weight: 600; }

.chat-body { padding: 14px 12px 16px; display: flex; flex-direction: column; gap: 9px; flex: 1; }

.bubble {
  border-radius: 18px; padding: 9px 13px; font-size: .82rem; line-height: 1.4;
  max-width: 86%; position: relative;
}
.bubble .stamp { display: block; font-size: .6rem; opacity: .65; margin-top: 3px; }
.bubble.user { background: var(--purple); color: #fff; align-self: flex-end; border-bottom-right-radius: 6px; }
.bubble.bot { background: #e9e2f5; color: var(--ink); align-self: flex-start; border-bottom-left-radius: 6px; }
.bubble.small { padding-block: 7px; }

.card-bubble { background: #fff; padding: 8px; box-shadow: 0 8px 18px -12px rgba(45,35,88,.3); max-width: 92%; }
.card-bubble .idea-label { font-size: .68rem; font-weight: 600; color: var(--ink-soft); display: inline-block; margin-top: 6px; }
.card-bubble .stamp { display: inline; float: right; margin-top: 7px; }

.post-thumb { position: relative; border-radius: 12px; overflow: hidden; }
.post-thumb img { width: 100%; height: 130px; object-fit: cover; }
.post-thumb .thumb-title,
.ig-img .ig-title {
  position: absolute; top: 12px; left: 12px;
  font-family: var(--font-display); font-weight: 800; font-size: 1.05rem; line-height: 1.02;
  color: #fff; text-shadow: 0 2px 10px rgba(0,0,0,.45); letter-spacing: .01em;
}
.post-thumb .thumb-sub {
  position: absolute; bottom: 8px; left: 12px; font-size: .58rem; color: #fff;
  text-shadow: 0 1px 6px rgba(0,0,0,.5); font-weight: 600;
}
.post-thumb.tall img { height: 118px; }

/* floating social cards */
.float-card {
  position: absolute; background: #fff; border-radius: 16px; padding: 13px 15px;
  box-shadow: var(--shadow-float); z-index: 4; font-size: .8rem;
  width: 215px;
}
.float-card header { display: flex; align-items: center; gap: 7px; font-size: .82rem; margin-bottom: 7px; }
.float-card p { color: var(--ink-soft); line-height: 1.45; font-size: .78rem; }
.float-card footer { display: flex; align-items: center; gap: 8px; margin-top: 9px; color: var(--ink-soft); font-size: .72rem; font-weight: 600; }
.float-card .cmt { margin-left: auto; font-weight: 500; }

.net-badge {
  width: 20px; height: 20px; border-radius: 5px; color: #fff; font-weight: 800;
  display: inline-flex; align-items: center; justify-content: center; font-size: .72rem;
  font-family: var(--font-body); flex-shrink: 0;
}
.net-badge.fb { background: #1877f2; border-radius: 50%; }
.net-badge.in { background: #0a66c2; font-size: .62rem; }
.net-ico { width: 18px; height: 18px; }
.net-ico.ig { color: #d6249f; }

.reactions { display: inline-flex; }
.rx { width: 15px; height: 15px; border-radius: 50%; display: inline-block; border: 2px solid #fff; }
.rx-like { background: #1877f2; z-index: 1; }
.rx-love { background: #f0284a; margin-left: -5px; }

.card-instagram { right: -38px; top: 30px; width: 212px; padding: 12px; transform: rotate(2deg); }
.ig-img { position: relative; border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.ig-img img { height: 150px; width: 100%; object-fit: cover; }
.ig-img .ig-title { font-size: 1.15rem; }
.likes { display: inline-flex; align-items: center; gap: 5px; }
.likes svg { width: 13px; height: 12px; fill: #f0284a; }
.likes .share { fill: none; color: var(--ink-soft); }
.save svg { width: 10px; height: 13px; color: var(--ink-soft); }
.card-instagram footer { flex-wrap: wrap; }
.card-instagram footer p { width: 100%; margin-top: 5px; }
.card-instagram .save { margin-left: auto; }

.card-facebook { right: 6px; top: 352px; transform: rotate(-1.5deg); }
.card-linkedin { right: -18px; top: 496px; transform: rotate(2deg); }

/* sticky notes */
.sticky-note {
  position: absolute; z-index: 5;
  background: linear-gradient(160deg, var(--peach-note), var(--peach-note-edge));
  font-family: "Caveat", "Bradley Hand", "Segoe Print", cursive;
  font-size: 1.35rem; font-weight: 700; color: #6b4b2b; line-height: 1.05;
  padding: 16px 20px 20px; border-radius: 4px;
  box-shadow: 0 14px 26px -14px rgba(90, 60, 20, .5);
  transform: rotate(-5deg);
}
.sticky-note::before {
  content: ""; position: absolute; top: -7px; left: 50%; transform: translateX(-50%) rotate(2deg);
  width: 44px; height: 14px; background: rgba(255,255,255,.5); border: 1px solid rgba(0,0,0,.04);
}
.note-rough { left: -2%; top: 52px; }
.note-polished { left: 7%; top: 296px; background: linear-gradient(160deg, #fdf0cb, #f8e0a4); color: #7a5a1e; transform: rotate(3deg); }
.note-heart {
  position: absolute; top: -12px; right: -10px; width: 26px; height: 26px;
  background: #f0526d; color: #fff; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: .8rem;
  transform: rotate(8deg);
}
.note-arrow { position: absolute; width: 52px; height: 38px; right: -58px; top: 55%; color: var(--purple); }
.note-arrow-up { right: auto; left: 50%; top: -62px; width: 34px; height: 52px; }

.hero-mascot { position: absolute; left: -2%; bottom: 6px; width: 200px; height: auto; z-index: 6; filter: drop-shadow(0 18px 22px rgba(45,35,88,.3)); }

.dot-path {
  position: absolute; right: 6%; top: 285px; width: 150px; height: 150px;
  border: 2.5px dashed #cbb9ec; border-radius: 50%;
  border-top-color: transparent; border-left-color: transparent;
  transform: rotate(25deg); z-index: 1;
}

/* trust bar */
.trust { padding-block: 34px 56px; text-align: center; }
.trust-pill {
  display: inline-block; background: var(--white); border: 1px solid #ece2d2;
  border-radius: 999px; padding: .6em 1.7em; font-weight: 600; font-size: .95rem;
  box-shadow: 0 8px 20px -14px rgba(45,35,88,.35);
  position: relative; top: -14px;
}
.trust-logos {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-md);
  box-shadow: 0 16px 34px -24px rgba(45,35,88,.3);
  display: flex; justify-content: space-around; align-items: center; flex-wrap: wrap;
  gap: 20px; padding: 26px 36px;
}
.tlogo { display: inline-flex; align-items: center; gap: 10px; color: #8d8798; text-align: left; }
.tlogo svg { width: 26px; height: 26px; }
.tl-name { display: block; font-weight: 700; letter-spacing: .14em; font-size: .86rem; }
.tl-sub { display: block; font-size: .6rem; letter-spacing: .22em; font-weight: 600; margin-top: 1px; }

/* ==========================================================================
   HOW IT WORKS
   ========================================================================== */
.how { background: linear-gradient(var(--cream) 0%, var(--cream-2) 30%, var(--cream-2) 100%); padding-block: 70px 80px; position: relative; }

.sec-head { text-align: center; max-width: 560px; margin: 0 auto 46px; position: relative; }

.script-note {
  position: absolute; right: 13%; top: 88px;
  font-family: "Caveat", "Bradley Hand", "Segoe Print", cursive; font-weight: 700;
  color: #b98a2e; font-size: 1.35rem; white-space: nowrap; z-index: 2;
}
.script-note .squiggle {
  position: absolute; left: -54px; top: 8px; width: 46px; height: 54px;
  color: #b98a2e; transform: scaleX(-1) rotate(-14deg);
}
@media (max-width: 1080px) { .script-note { display: none; } }

.steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
  position: relative;
}
.step-card:not(:last-child)::after {
  content: ""; position: absolute; right: -32px; top: 44px; width: 42px; height: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 52 20'%3E%3Cpath d='M2 14 C 16 10, 28 8, 40 8' stroke='%236d4ae8' stroke-width='2.6' stroke-dasharray='5 6' stroke-linecap='round' fill='none'/%3E%3Cpath d='M41 2l9 6-10 6' stroke='%236d4ae8' stroke-width='2.6' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-size: contain; z-index: 2;
}
@media (max-width: 1080px) { .step-card:not(:last-child)::after { display: none; } }

.step-card {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-lg);
  padding: 30px 26px 24px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; position: relative;
}
.step-num {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--purple); color: #fff; font-weight: 700; font-size: 1.05rem;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; box-shadow: 0 8px 18px -8px rgba(109,74,232,.6);
  font-family: var(--font-body);
}
.step-card h3 { font-family: var(--font-body); font-weight: 700; font-size: 1.22rem; margin-bottom: .5rem; }
.step-card > p { color: var(--ink-soft); font-size: .95rem; min-height: 66px; }

.step-visual {
  background: var(--sand); border-radius: var(--radius-md); margin-top: 16px;
  min-height: 250px; display: flex; align-items: flex-end; justify-content: center;
  overflow: hidden; position: relative;
}

.mini-phone {
  width: 180px; background: #16161c; border-radius: 26px 26px 0 0; padding: 8px 8px 0;
  box-shadow: 0 -14px 34px -20px rgba(45,35,88,.6);
}
.mini-screen { background: #fff; border-radius: 20px 20px 0 0; padding: 16px 10px 0; min-height: 210px; }

.sms-bubble {
  background: #35c759; color: #fff; font-size: .74rem; padding: 8px 11px;
  border-radius: 14px; border-bottom-right-radius: 4px; margin-left: 18px;
  animation: bubblePop 5s ease infinite;
}
@keyframes bubblePop {
  0%, 8% { opacity: 0; transform: translateY(8px) scale(.9); }
  16%, 92% { opacity: 1; transform: none; }
  100% { opacity: 0; }
}
.mini-input { height: 22px; border: 1.5px solid #e3ddd2; border-radius: 12px; margin-top: 12px; }
.keyboard {
  display: grid; grid-template-columns: repeat(10, 1fr); gap: 3px; margin-top: 10px;
  background: #eceff4; padding: 8px 5px 14px; border-radius: 8px 8px 0 0;
}
.keyboard span {
  background: #fff; border-radius: 3.5px; font-size: .5rem; text-align: center;
  padding: 4px 0; color: #444; box-shadow: 0 1px 0 rgba(0,0,0,.18);
}
.keyboard span:nth-child(11) { grid-column-start: 1; }
.keyboard span:nth-child(20) { grid-column: 10; }
.keyboard span:nth-child(21) { grid-column-start: 2; }

.card-stack { position: relative; width: 210px; margin-bottom: 18px; }
.stack-card { border-radius: 14px; background: #fff; box-shadow: 0 12px 26px -14px rgba(45,35,88,.4); }
.sc-back-1, .sc-back-2 { position: absolute; inset: 0; overflow: hidden; }
.sc-back-1 {
  transform: rotate(-6deg) translate(-16px, 4px);
  background: #f2ecfb url("/assets/img/coffee-drinks.jpg") center/cover;
}
.sc-back-2 {
  transform: rotate(7deg) translate(18px, 6px);
  background: #efe6f9 url("/assets/img/boutique.jpg") center/cover;
}
.sc-back-1::after, .sc-back-2::after { content: ""; position: absolute; inset: 0; background: rgba(246, 242, 252, .55); }
.sc-front { position: relative; padding: 8px; animation: cardCycle 7s ease infinite; }
@keyframes cardCycle {
  0% { transform: translateX(14px) rotate(2deg); opacity: .35; }
  8%, 94% { transform: none; opacity: 1; }
  100% { transform: translateX(-12px) rotate(-2deg); opacity: .35; }
}
.sc-img { position: relative; border-radius: 10px; overflow: hidden; }
.sc-img img { height: 110px; width: 100%; object-fit: cover; }
.sc-img .thumb-title { position: absolute; top: 10px; left: 10px; font-family: var(--font-display); font-weight: 800; color: #fff; font-size: .92rem; line-height: 1; text-shadow: 0 2px 8px rgba(0,0,0,.45); }
.sc-img .thumb-sub { position: absolute; bottom: 6px; left: 10px; color: #fff; font-size: .5rem; font-weight: 600; text-shadow: 0 1px 5px rgba(0,0,0,.5); }
.sc-play {
  position: absolute; inset: 0; margin: auto; width: 40px; height: 40px;
  background: rgba(255,255,255,.92); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 20px -8px rgba(0,0,0,.5);
}
.sc-play svg { width: 13px; height: 15px; fill: var(--purple); margin-left: 2px; }
.sc-play.big { width: 56px; height: 56px; }
.sc-play.big svg { width: 17px; height: 19px; }
.sc-play.mid { position: static; width: 42px; height: 42px; margin: 14px auto 0; background: var(--purple); }
.sc-play.mid svg { fill: #fff; }
.sc-lines { padding: 9px 4px 4px; display: flex; flex-direction: column; gap: 5px; }
.sc-lines i { height: 6px; border-radius: 3px; background: #e8e2f2; display: block; }
.sc-lines i:last-child { width: 65%; }
.sc-dots { display: flex; gap: 4px; justify-content: center; padding: 6px 0 8px; }
.sc-dots i { width: 5px; height: 5px; border-radius: 50%; background: #d9d2e8; }
.sc-dots i.on { background: var(--purple); }

.approve-screen { padding: 14px 12px 0; }
.ap-title { font-weight: 700; font-size: .8rem; margin-bottom: 10px; }
.ap-row { display: flex; align-items: center; gap: 7px; font-size: .72rem; font-weight: 600; padding: 7px 0; border-bottom: 1px solid #f2eee8; }
.ap-row .net-ico, .ap-row .net-badge { width: 17px; height: 17px; font-size: .58rem; }
.toggle { margin-left: auto; width: 30px; height: 17px; background: #d5cfe2; border-radius: 999px; position: relative; }
.toggle.on { background: #35c759; }
.toggle.on::after { content: ""; position: absolute; right: 2px; top: 2px; width: 13px; height: 13px; background: #fff; border-radius: 50%; }
.ap-btn {
  width: 100%; margin-top: 12px; background: var(--purple); color: #fff; border: 0;
  border-radius: 10px; padding: 9px 0; font-weight: 700; font-size: .78rem; font-family: var(--font-body);
}
.sv-approve .sc-play.big { position: absolute; inset: 0; margin: auto; width: 46px; height: 46px; }

.loop-label { display: flex; align-items: center; justify-content: center; gap: 4px; color: var(--ink-soft); font-size: .78rem; font-weight: 600; padding-top: 12px; }
.loop-label svg { width: 12px; height: 12px; }

.benefit-pills {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 12px;
  background: var(--white); border: 1px solid #f0e7d8; border-radius: 999px;
  padding: 15px 26px; margin-top: 40px;
  box-shadow: 0 14px 30px -22px rgba(45,35,88,.35);
}
.benefit-pills li { display: inline-flex; align-items: center; gap: .55em; font-weight: 600; font-size: .92rem; padding-inline: 10px; }
.benefit-pills svg { width: 17px; height: 17px; color: var(--purple); }

/* rough band */
.rough-band {
  margin-top: 56px;
  background: linear-gradient(115deg, var(--purple-dark), var(--purple-dark-2) 70%);
  border-radius: var(--radius-lg); color: #fff;
  display: grid; grid-template-columns: 175px 1fr 1.2fr 172px; gap: 26px;
  padding: 44px 38px 40px 26px; align-items: center; position: relative;
  box-shadow: 0 30px 60px -30px rgba(36,26,79,.6);
}
.rb-mascot-wrap { position: relative; align-self: end; }
.rb-mascot { width: 180px; height: auto; margin-bottom: -40px; filter: drop-shadow(0 16px 20px rgba(0,0,0,.35)); }
.note-rough-2 { left: 150px; top: -16px; transform: rotate(-6deg) scale(.88); }
.note-rough-2 .note-arrow { right: -44px; top: 82%; color: #cbbaf8; transform: rotate(30deg); }
.rb-copy h2 { color: #fff; font-size: clamp(1.5rem, 2.3vw, 1.95rem); }
.rb-copy p { color: #cfc4ef; margin-top: .8rem; font-size: .95rem; }
.rb-video { position: relative; border-radius: var(--radius-md); overflow: hidden; box-shadow: 0 24px 48px -22px rgba(0,0,0,.55); }
.rb-video video { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.rb-video .sc-play.big { position: absolute; inset: 0; margin: auto; pointer-events: none; }
.rb-controls {
  position: absolute; left: 0; right: 0; bottom: 0;
  background: linear-gradient(transparent, rgba(0,0,0,.72));
  color: #fff; font-size: .68rem; padding: 18px 12px 8px;
  display: flex; align-items: center; gap: 8px;
}
.rc-track { flex: 1; height: 3px; background: rgba(255,255,255,.35); border-radius: 2px; position: relative; }
.rc-track i { position: absolute; left: 0; top: 0; bottom: 0; width: 14%; background: #fff; border-radius: 2px; }
.rb-list { display: grid; grid-template-columns: 1fr; align-content: center; gap: 16px; }
.rb-list li { display: flex; align-items: center; gap: .6em; font-weight: 600; font-size: .9rem; color: #e9e2ff; }
.rb-list li svg { width: 18px; height: 18px; color: #8b6ef6; flex-shrink: 0; }

/* ==========================================================================
   RESULTS ZONE
   ========================================================================== */
.results-zone { padding-block: 90px 40px; position: relative; }
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 30px; align-items: stretch; }

.more-time { position: relative; padding: 30px 20px 30px 0; }
.more-time h2 { margin-top: .4rem; }
.check-list { margin-top: 1.6rem; display: flex; flex-direction: column; gap: 14px; font-weight: 600; font-size: 1.02rem; }
.check-list li { display: flex; align-items: center; gap: .7em; }
.ck {
  width: 26px; height: 26px; border-radius: 50%; background: var(--lavender);
  display: inline-flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ck svg { width: 15px; height: 15px; color: var(--purple-deep); }
.mt-mascot-wrap { position: relative; width: 240px; margin-top: 40px; }
.mt-mascot { width: 200px; margin-left: 10px; filter: drop-shadow(0 16px 20px rgba(45,35,88,.28)); }

.confetti { position: absolute; inset: -6% -10% -14%; display: block; pointer-events: none; }
.confetti i {
  position: absolute; width: 8px; height: 13px; border-radius: 2px;
  animation: confettiFloat 4.5s ease-in-out infinite;
}
.confetti i:nth-child(1) { background: #f5b23c; left: 4%; top: 12%; rotate: 20deg; }
.confetti i:nth-child(2) { background: #7c5cfa; left: 26%; top: 2%; rotate: -15deg; animation-delay: .5s; }
.confetti i:nth-child(3) { background: #f0526d; left: 55%; top: 6%; rotate: 40deg; animation-delay: 1s; }
.confetti i:nth-child(4) { background: #43c0b2; left: 82%; top: 14%; rotate: -30deg; animation-delay: 1.4s; }
.confetti i:nth-child(5) { background: #f5b23c; left: 94%; top: 38%; width: 7px; height: 7px; border-radius: 50%; animation-delay: .8s; }
.confetti i:nth-child(6) { background: #7c5cfa; left: 0%; top: 42%; width: 7px; height: 7px; border-radius: 50%; animation-delay: 1.8s; }
.confetti i:nth-child(7) { background: #f0526d; left: 70%; top: 0%; animation-delay: 2.1s; }
.confetti i:nth-child(8) { background: #43c0b2; left: 40%; top: -4%; width: 6px; height: 10px; animation-delay: 2.6s; }
@keyframes confettiFloat {
  0%, 100% { margin-top: 0; opacity: .95; }
  50% { margin-top: -12px; opacity: 1; }
}

.dark-panel {
  background:
    radial-gradient(120% 90% at 85% 10%, rgba(124,92,250,.35), transparent 60%),
    linear-gradient(150deg, var(--purple-dark) 10%, var(--purple-dark-2) 90%);
  color: #fff; border-radius: var(--radius-lg); padding: 44px 46px 0;
  position: relative; overflow: hidden;
  box-shadow: 0 34px 64px -30px rgba(36,26,79,.65);
}
.dark-panel h2 { color: #fff; max-width: 300px; font-size: clamp(1.55rem, 2.2vw, 1.8rem); position: relative; z-index: 3; }

.note-quote {
  position: absolute; right: 30px; top: -50px; width: 178px;
  background: linear-gradient(165deg, #fdeec3, #f8dfa0);
  color: #6b5320; font-size: 1.05rem; line-height: 1.1; transform: rotate(4deg);
  padding: 13px 15px 9px; z-index: 7;
  box-shadow: 0 16px 30px -14px rgba(40, 25, 5, .45);
}
.note-author { display: block; font-size: .74rem; margin-top: 8px; font-weight: 600; }
.note-heart-sm { color: #f0526d; }

.stats { display: grid; grid-template-columns: repeat(4, auto); gap: 16px 34px; margin-top: 34px; }
.stat dd strong {
  display: block; font-family: var(--font-display); font-size: clamp(1.7rem, 2.6vw, 2.3rem);
  font-weight: 600; color: #fff; line-height: 1.1; white-space: nowrap;
}
.stat dd { font-size: .8rem; color: #b9aee0; max-width: 130px; }

.chart { position: relative; margin-top: 30px; margin-left: -46px; }
@media (min-width: 1180px) { .chart { margin-right: -300px; } }
.chart svg { width: 100%; height: 170px; display: block; }
.chart-badge {
  position: absolute; left: 40%; top: -8px; white-space: nowrap;
  background: rgba(20, 14, 46, .9); border: 1px solid rgba(245,178,60,.6);
  color: #f5c56a; font-size: .72rem; font-weight: 600; text-align: center;
  border-radius: 10px; padding: 7px 14px; line-height: 1.25;
}
.chart-badge strong { font-size: 1.02rem; color: #ffd98a; }
.chart-badge::after {
  content: ""; position: absolute; left: 50%; bottom: -6px; transform: translateX(-50%) rotate(45deg);
  width: 10px; height: 10px; background: rgba(20,14,46,.9); border-right: 1px solid rgba(245,178,60,.6); border-bottom: 1px solid rgba(245,178,60,.6);
}
.dp-mascot { position: absolute; left: -26px; bottom: 18px; width: 138px; filter: drop-shadow(0 14px 18px rgba(0,0,0,.4)); display: none; z-index: 3; }

.phone-results {
  position: absolute; right: 4px; top: -34px; transform: rotate(3deg); width: 264px; z-index: 6;
  display: none;
}

.perf-label { font-size: .68rem; font-weight: 700; color: var(--ink-soft); margin-top: 2px; }
.perf-grid { display: flex; gap: 7px; }
.perf {
  flex: 1; background: #fff; border-radius: 10px; padding: 7px 8px;
  box-shadow: 0 6px 14px -10px rgba(45,35,88,.35);
}
.perf em { display: block; font-style: normal; font-size: .58rem; color: var(--ink-soft); font-weight: 600; }
.perf strong { font-size: .88rem; }
.msg-input {
  margin-top: auto; background: #fff; border-radius: 999px; border: 1.5px solid #e8e0d4;
  font-size: .72rem; color: #a49bc0; padding: 8px 8px 8px 14px;
  display: flex; align-items: center;
}
.msg-input .send {
  margin-left: auto; width: 22px; height: 22px; background: var(--purple); color: #fff;
  border-radius: 50%; display: inline-flex; align-items: center; justify-content: center; font-size: .72rem;
}

/* ==========================================================================
   STORIES (testimonials + before/after)
   ========================================================================== */
.stories { padding-block: 60px 80px; background: linear-gradient(var(--cream) 0%, var(--cream-2) 100%); }
.stories-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: 44px; align-items: start; }

.heart-doodle { width: 34px; height: 29px; color: #f0526d; margin-left: 8px; }

.quote-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-top: 2rem; }
.quote-card {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-md);
  padding: 18px 16px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 10px;
}
.stars { color: var(--gold); letter-spacing: .12em; font-size: .9rem; }
.quote-card blockquote { font-size: .92rem; font-weight: 600; line-height: 1.45; flex: 1; }
.quote-card footer { display: grid; grid-template-columns: 34px 1fr; grid-template-rows: auto auto; column-gap: 9px; align-items: center; }
.avatar {
  grid-row: span 2; width: 34px; height: 34px; border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 700; color: #fff;
}
.av-1 { background: #7c5cfa; } .av-2 { background: #e08c4f; } .av-3 { background: #43a09a; }
.quote-card cite { font-style: normal; font-weight: 700; font-size: .8rem; }
.quote-card small { color: var(--ink-soft); font-size: .7rem; }
.stories .text-link { margin-top: 1.6rem; display: inline-flex; }

.ba-visual { position: relative; min-height: 640px; }
.ba-card {
  position: absolute; background: #fff; border-radius: 14px; padding: 10px 10px 14px;
  box-shadow: var(--shadow-float); width: 275px; z-index: 2;
}
.ba-card img, .ba-card video { border-radius: 9px; height: 205px; width: 100%; object-fit: cover; }
.ba-card figcaption { padding: 10px 4px 0; font-size: .78rem; color: var(--ink-soft); }
.ba-card figcaption strong { display: block; font-size: .82rem; letter-spacing: .06em; color: var(--ink); margin-bottom: 2px; }
.ba-before { left: 0; top: 0; transform: rotate(-4deg); }
.ba-before img { filter: saturate(.72) contrast(.96); }
.ba-after { left: 255px; top: 258px; transform: rotate(2.5deg); z-index: 3; }
.ba-after .sc-play { top: 70px; }
.ba-arrow { position: absolute; left: 300px; top: 120px; width: 74px; height: 56px; color: var(--purple); z-index: 1; }

.phone-ideas {
  position: absolute; right: -18px; top: 30px; width: 235px; z-index: 4;
  background: #1b1b21; border-radius: 36px; padding: 10px;
  box-shadow: var(--shadow-float);
  transform: rotate(3deg);
}
.phone-ideas .phone-screen { min-height: 430px; border-radius: 28px; }
.ideas-title { font-family: var(--font-body); font-weight: 700; font-size: 1rem; text-align: center; margin-top: 16px; }
.ideas-list { margin: 14px auto 0; font-size: .84rem; display: flex; flex-direction: column; gap: 9px; color: var(--ink-soft); font-weight: 600; }
.ideas-list li::before { content: "•"; color: var(--purple); margin-right: 8px; }
.ideas-btn {
  margin: 16px auto 0; display: block; background: var(--purple); color: #fff; border: 0;
  border-radius: 999px; padding: 10px 22px; font-weight: 700; font-size: .84rem; font-family: var(--font-body);
  box-shadow: 0 10px 20px -10px rgba(109,74,232,.7);
}
.ideas-mascot { margin: 18px auto 0; width: 84px; }

/* ==========================================================================
   INDUSTRIES
   ========================================================================== */
.industries { padding-block: 70px 30px; }
.ind-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 20px; margin-bottom: 36px; }
.ind-arrow { width: 110px; height: 38px; color: var(--purple); margin-top: 10px; }
.carousel-next {
  width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--white);
  box-shadow: 0 10px 24px -12px rgba(45,35,88,.4); cursor: pointer; flex-shrink: 0;
}
.carousel-next svg { width: 10px; height: 16px; color: var(--ink); }

.ind-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.ind-card {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-md);
  padding: 12px 14px 18px; box-shadow: var(--shadow-card);
  display: flex; flex-direction: column; gap: 7px;
  transition: transform .25s ease, box-shadow .25s ease;
}
.ind-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-float); }
.ind-media { position: relative; border-radius: 10px; overflow: hidden; margin-bottom: 8px; }
.ind-media img, .ind-media video { height: 150px; width: 100%; object-fit: cover; }
.ind-media::after {
  content: ""; position: absolute; inset: 55% 0 0 0;
  background: linear-gradient(transparent, rgba(20, 12, 40, .55));
  pointer-events: none;
}
.ind-overlay {
  position: absolute; left: 12px; bottom: 10px; color: #fff; z-index: 1;
  font-family: var(--font-display); font-weight: 800; font-size: .92rem; line-height: 1.08;
  text-shadow: 0 2px 12px rgba(0,0,0,.65); letter-spacing: .02em;
}
.ind-overlay-top { top: 12px; bottom: auto; color: #ffd98a; }
.ind-media .sc-play { width: 34px; height: 34px; z-index: 2; }
.ind-media .sc-play svg { width: 11px; height: 13px; }
.ind-card h3 { font-family: var(--font-body); font-size: 1.02rem; font-weight: 700; display: flex; align-items: center; gap: .5em; }
.ind-ico { font-size: 1rem; }
.ind-card p { color: var(--ink-soft); font-size: .84rem; flex: 1; }

/* ==========================================================================
   CTA BANDS
   ========================================================================== */
.cta-band {
  margin-top: 70px;
  background:
    radial-gradient(90% 130% at 12% 100%, rgba(139,110,246,.5), transparent 55%),
    linear-gradient(115deg, #5636d3, #6d4ae8 60%, #7b53f0);
  border-radius: var(--radius-lg); color: #fff;
  display: grid; grid-template-columns: 250px 1fr; align-items: center;
  padding: 40px 56px 40px 30px; gap: 20px; position: relative; overflow: visible;
  box-shadow: 0 34px 60px -28px rgba(86,54,211,.55);
}
.cta-mascot-wrap { position: relative; align-self: end; }
.cta-mascot { width: 215px; margin-bottom: -42px; filter: drop-shadow(0 18px 22px rgba(0,0,0,.35)); }
.cta-copy h2 { color: #fff; font-size: clamp(1.55rem, 2.6vw, 2.1rem); max-width: 660px; }
.cta-copy .btn-row { margin-top: 1.5rem; }
.c-light i { opacity: .95; }

.cta-grow { grid-template-columns: 210px 1fr 180px; padding-block: 52px 46px; margin-top: 66px; }
.cta-copy.centered { text-align: center; }
.cta-copy.centered h2 { margin-inline: auto; }
.cta-copy.centered > p { color: #ded4ff; margin-top: .9rem; }
.cta-mascot-sparkler { width: 200px; margin-bottom: -34px; align-self: end; filter: drop-shadow(0 18px 22px rgba(0,0,0,.35)); }
.note-polished-cta { position: relative; right: 0; top: -14px; transform: rotate(5deg); background: linear-gradient(160deg, #fdf0cb, #f8e0a4); color: #7a5a1e; justify-self: end; align-self: start; }
.note-polished-cta .note-arrow { left: -14px; right: auto; top: 96%; width: 40px; height: 48px; color: #fff; }

/* ==========================================================================
   FAQ + DEMO
   ========================================================================== */
.faq-zone { padding-block: 90px 30px; }
.faq-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: start; }

.accordion { margin-top: 1.8rem; background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-md); box-shadow: var(--shadow-card); overflow: hidden; }
.accordion details { border-bottom: 1px solid #f0e9dd; }
.accordion details:last-child { border-bottom: 0; }
.accordion summary {
  list-style: none; cursor: pointer; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  font-weight: 700; font-size: 1rem; padding: 20px 22px;
}
.accordion summary::-webkit-details-marker { display: none; }
.acc-chev {
  width: 11px; height: 11px; border-right: 2.2px solid var(--purple); border-bottom: 2.2px solid var(--purple);
  transform: rotate(45deg); transition: transform .2s ease; flex-shrink: 0; margin-right: 4px;
}
details[open] .acc-chev { transform: rotate(225deg); }
.accordion details p { padding: 0 22px 20px; color: var(--ink-soft); font-size: .95rem; max-width: 56ch; }
.accordion details[open] summary { padding-bottom: 12px; }

.demo-card {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card); padding: 30px 30px 26px; position: relative;
}
.demo-card h2 { font-size: 1.65rem; }
.demo-player { position: relative; border-radius: var(--radius-sm); overflow: hidden; margin-top: 18px; }
.demo-player video { aspect-ratio: 16/10; object-fit: cover; width: 100%; }
.demo-play {
  position: absolute; inset: 0; margin: auto; width: 62px; height: 62px; border: 0; cursor: pointer;
  background: rgba(255,255,255,.94); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 26px -8px rgba(0,0,0,.5);
  transition: transform .18s ease;
}
.demo-play:hover { transform: scale(1.08); }
.demo-play svg { width: 19px; height: 21px; fill: var(--purple); margin-left: 3px; }
.demo-play.hidden { display: none; }
.demo-progress { display: flex; align-items: center; gap: 12px; margin-top: 14px; }
.dp-track { flex: 1; height: 5px; border-radius: 3px; background: #e9e1d4; position: relative; }
.dp-track i { position: absolute; left: 0; top: 0; bottom: 0; width: 34%; border-radius: 3px; background: var(--purple); }
.dp-track i::after { content: ""; position: absolute; right: -6px; top: 50%; transform: translateY(-50%); width: 13px; height: 13px; border-radius: 50%; background: var(--purple); box-shadow: 0 2px 6px rgba(45,35,88,.4); }
.dp-time { font-size: .78rem; font-weight: 600; color: var(--ink-soft); }
.sp-demo-1 { position: absolute; right: -26px; top: 60px; fill: #f0526d; width: 15px; }
.sp-demo-2 { position: absolute; right: -40px; top: 100px; fill: var(--purple); width: 11px; }
@media (max-width: 1180px) { .sp-demo-1, .sp-demo-2 { display: none; } }

/* ==========================================================================
   PRICING
   ========================================================================== */
.pricing { padding-block: 80px 90px; }
.pricing-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 50px; align-items: center; }
.pricing-head h2 { margin-top: .9rem; }

.plans { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; align-items: stretch; }
.plan {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-md);
  padding: 26px 22px; box-shadow: var(--shadow-card); position: relative;
  display: flex; flex-direction: column;
}
.plan h3 { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; }
.plan-tag { color: var(--ink-soft); font-size: .8rem; margin-top: 2px; }
.price { margin-top: 14px; }
.price strong { font-family: var(--font-display); font-size: 2.1rem; font-weight: 600; }
.price span { color: var(--ink-soft); font-size: .85rem; }
.plan-bill { font-size: .74rem; color: var(--ink-soft); margin-top: 2px; }
.plan-feats { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; font-size: .86rem; font-weight: 500; }
.plan-feats li { display: flex; align-items: center; gap: .6em; }
.plan-feats li::before {
  content: ""; width: 16px; height: 16px; flex-shrink: 0;
  background: var(--lavender); border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M6 10.5l2.6 2.6L14 7.5' fill='none' stroke='%235636d3' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-position: center; background-repeat: no-repeat;
}
.plan-popular { border: 2px solid var(--purple); box-shadow: 0 26px 50px -24px rgba(109,74,232,.5); }
.pop-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--purple); color: #fff; font-size: .7rem; font-weight: 700;
  border-radius: 999px; padding: .45em 1.2em; white-space: nowrap;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer { background: var(--cream-2); border-top: 1px solid #eee2d0; padding-top: 56px; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr .7fr .7fr .7fr .7fr 1.3fr; gap: 30px;
  padding-bottom: 44px;
}
.footer-brand p { color: var(--ink-soft); font-size: .92rem; margin-top: 14px; }
.socials { display: flex; gap: 12px; margin-top: 18px; }
.socials a {
  width: 34px; height: 34px; border-radius: 50%; background: var(--white); border: 1px solid #ece0cd;
  display: inline-flex; align-items: center; justify-content: center; color: var(--ink-soft);
  transition: color .15s, border-color .15s, transform .15s;
}
.socials a:hover { color: var(--purple-deep); border-color: var(--purple); transform: translateY(-2px); }
.socials svg { width: 16px; height: 16px; }

.footer-col { display: flex; flex-direction: column; gap: 10px; font-size: .9rem; }
.footer-col h3 { font-family: var(--font-body); font-size: .95rem; font-weight: 700; margin-bottom: 6px; }
.footer-col a { color: var(--ink-soft); }
.footer-col a:hover { color: var(--purple-deep); }

.footer-news {
  background: var(--white); border: 1px solid #f0e7d8; border-radius: var(--radius-md);
  padding: 22px; box-shadow: 0 14px 30px -22px rgba(45,35,88,.3); height: fit-content;
}
.footer-news h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 700; }
.footer-news p { color: var(--ink-soft); font-size: .85rem; margin-top: 4px; }
.news-form { display: flex; margin-top: 14px; background: var(--cream); border: 1.5px solid #e8dcc8; border-radius: 999px; padding: 4px; }
.news-form input { flex: 1; border: 0; background: none; padding: 8px 14px; font-family: var(--font-body); font-size: .88rem; color: var(--ink); outline: none; min-width: 0; }
.news-form button {
  width: 36px; height: 36px; border-radius: 50%; border: 0; background: var(--purple); color: #fff;
  font-size: 1rem; cursor: pointer; flex-shrink: 0; transition: background .15s;
}
.news-form button:hover { background: var(--purple-deep); }

.footer-legal { text-align: center; color: var(--ink-soft); font-size: .8rem; padding: 18px 0 26px; border-top: 1px solid #eee2d0; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (min-width: 1180px) {
  .dp-mascot, .phone-results { display: block; }
  .dark-panel { padding-right: 300px; }
  .stats { grid-template-columns: repeat(2, auto); max-width: 420px; }
}

@media (max-width: 1080px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-visual { min-height: 620px; max-width: 620px; margin-inline: auto; }
  .script-note { display: none; }
  .steps { grid-template-columns: 1fr; max-width: 460px; margin-inline: auto; }
  .rough-band { grid-template-columns: 1fr; padding: 36px 30px; }
  .rb-mascot-wrap { display: none; }
  .note-rough-2 { display: none; }
  .rb-list { grid-template-columns: 1fr 1fr; }
  .split { grid-template-columns: 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .ba-visual { max-width: 560px; margin-inline: auto; width: 100%; }
  .ind-cards { grid-template-columns: 1fr 1fr; }
  .faq-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-grid { grid-template-columns: 1fr; gap: 36px; }
  .pricing-head { text-align: center; max-width: 520px; margin-inline: auto; }
  .plans { grid-template-columns: 1fr; max-width: 400px; margin-inline: auto; width: 100%; gap: 26px; }
  .cta-band { grid-template-columns: 1fr; text-align: center; padding: 40px 30px 46px; }
  .cta-mascot-wrap { align-self: center; justify-self: center; margin-bottom: 10px; }
  .cta-mascot { margin: 0 auto; width: 175px; }
  .cta-grow { grid-template-columns: 1fr; padding-bottom: 30px; }
  .cta-mascot-sparkler { width: 165px; margin: 0 auto 12px; align-self: center; justify-self: center; order: -1; }
  .note-polished-cta { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand, .footer-news { grid-column: span 2; }
}

@media (max-width: 620px) {
  .container { padding-inline: 20px; }
  .hero-visual { min-height: auto; padding-bottom: 10px; }
  .phone-hero { position: relative; left: auto; width: 262px; margin: 8px auto 0; transform: rotate(3deg); }
  .phone-screen { min-height: 480px; max-height: 500px; }
  .phone-hero .chat-body { padding-right: 30px; }
  .float-card { font-size: .74rem; }
  .card-instagram { right: -12px; top: -22px; width: 132px; padding: 8px; }
  .ig-img img { height: 88px; }
  .ig-img .ig-title { font-size: .8rem; }
  .card-instagram footer p { display: none; }
  .card-facebook { right: -10px; top: auto; bottom: 40px; width: 146px; }
  .card-linkedin { display: none; }
  .sticky-note { font-size: 1.1rem; padding: 12px 14px 15px; }
  .note-rough { left: -6px; top: 6px; }
  .note-rough .note-arrow { width: 36px; right: -40px; }
  .note-polished { left: -6px; top: 260px; }
  .note-polished .note-arrow-up { display: none; }
  .hero-mascot { left: -8px; bottom: -6px; width: 118px; }
  .dot-path { display: none; }
  .ind-cards { grid-template-columns: 1fr; }
  .quote-cards { grid-template-columns: 1fr; }
  .ba-visual { min-height: auto; display: flex; flex-direction: column; align-items: center; gap: 26px; padding-top: 10px; }
  .ba-card { position: relative; left: auto !important; top: auto !important; }
  .ba-arrow { display: none; }
  .phone-ideas { position: relative; right: auto; top: auto; margin-inline: auto; }
  .stats { grid-template-columns: 1fr 1fr; }
  .dark-panel { padding: 34px 26px 0; }
  .note-quote { position: relative; right: auto; top: auto; margin-top: 20px; transform: rotate(2deg); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand, .footer-news { grid-column: span 1; }
  .trust { padding-block: 26px 40px; }
  .trust-logos { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 10px; padding: 22px 18px; justify-items: start; }
  .tlogo { display: block; text-align: left; }
  .tlogo svg { display: none; }
  .tl-name { font-size: .74rem; letter-spacing: .1em; }
  .tl-sub { font-size: .54rem; }
  .cta-grow h2 br { display: none; }
  .rb-copy h2 br { display: none; }
  .heart-doodle { width: 26px; height: 22px; margin-left: 4px; }
}
