/* ===========================================================
   מי בא — Landing page styles
   RTL · festive pink/peach · warm rounded type
   =========================================================== */

:root {
  /* palette */
  --bg:        oklch(0.984 0.015 40);
  --bg-warm:   oklch(0.965 0.028 45);
  --surface:   oklch(0.998 0.004 60);
  --ink:       oklch(0.29 0.045 350);
  --ink-soft:  oklch(0.47 0.035 350);
  --ink-faint: oklch(0.62 0.03 350);
  --rose:      oklch(0.66 0.17 6);
  --rose-deep: oklch(0.55 0.165 10);
  --peach:     oklch(0.86 0.095 62);
  --peach-soft:oklch(0.94 0.05 62);
  --coral:     oklch(0.74 0.155 33);
  --line:      oklch(0.90 0.02 40);

  /* whatsapp-ish chat (fixed, for authenticity) */
  --wa-green:  #1eb858;
  --wa-sent:   #e3fbd4;
  --wa-recv:   #ffffff;
  --wa-bg:     #efe6da;
  --wa-tick:   #34b7f1;

  /* type */
  --font-head: 'Rubik', system-ui, sans-serif;
  --font-body: 'Assistant', system-ui, sans-serif;

  --radius: 22px;
  --radius-sm: 14px;
  --shadow-soft: 0 18px 50px -24px oklch(0.55 0.16 10 / 0.45);
  --shadow-card: 0 22px 60px -32px oklch(0.4 0.12 350 / 0.4);
  --maxw: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: var(--font-head);
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-weight: 800;
  text-wrap: balance;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 28px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.86rem;
  letter-spacing: 0.02em;
  color: var(--rose-deep);
  background: var(--peach-soft);
  border: 1px solid oklch(0.88 0.06 50);
  padding: 7px 15px;
  border-radius: 999px;
}

.section { padding: clamp(64px, 9vw, 120px) 0; }

.section-head { max-width: 640px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 3.1rem);
  margin: 18px 0 14px;
}
.section-head p {
  font-size: clamp(1.05rem, 1.6vw, 1.22rem);
  color: var(--ink-soft);
}

/* ---------- buttons ---------- */
.btn {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 1.02rem;
  border: none;
  cursor: pointer;
  padding: 15px 28px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: transform .18s cubic-bezier(.34,1.56,.64,1), box-shadow .18s, background .18s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 14px 30px -12px var(--rose);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); box-shadow: 0 20px 38px -12px var(--rose-deep); }
.btn-ghost {
  background: var(--surface);
  color: var(--ink);
  border: 1.5px solid var(--line);
}
.btn-ghost:hover { transform: translateY(-2px); border-color: var(--rose); color: var(--rose-deep); }
.btn-lg { padding: 18px 36px; font-size: 1.12rem; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: sticky; top: 0; z-index: 50;
  backdrop-filter: blur(12px);
  background: oklch(0.984 0.015 40 / 0.82);
  border-bottom: 1px solid oklch(0.9 0.02 40 / 0.6);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
}
.logo {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 1.45rem;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 10px;
  color: var(--ink);
  white-space: nowrap;
}
.logo .dot {
  width: 32px; height: 32px; border-radius: 11px;
  background: var(--rose);
  display: grid; place-items: center;
  color: #fff; font-size: 1.05rem;
  box-shadow: 0 8px 18px -8px var(--rose);
  transform: rotate(-6deg);
}
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-weight: 600; color: var(--ink-soft); font-size: 0.98rem;
  transition: color .15s;
}
.nav-links a:hover { color: var(--rose-deep); }
.nav-cta { display: flex; gap: 12px; align-items: center; }
@media (max-width: 860px) {
  .nav-links { display: none; }
}

/* =========================================================
   HERO  (3 variants via [data-hero])
   ========================================================= */
.hero { position: relative; padding-top: clamp(40px, 6vw, 80px); padding-bottom: clamp(60px, 8vw, 110px); overflow: hidden; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(30px, 5vw, 80px);
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero h1 {
  font-size: clamp(2.5rem, 5.6vw, 4.3rem);
  margin: 22px 0 20px;
}
.hero h1 .hl { color: var(--rose); position: relative; white-space: nowrap; }
.hero h1 .hl::after {
  content: ""; position: absolute; inset-inline: -2px; bottom: 6px; height: 14px;
  background: var(--peach); z-index: -1; border-radius: 8px; opacity: .8;
}
.hero-sub {
  font-size: clamp(1.1rem, 1.7vw, 1.32rem);
  color: var(--ink-soft);
  max-width: 30em;
  margin-bottom: 32px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-note {
  margin-top: 18px; font-size: 0.92rem; color: var(--ink-faint);
  display: flex; align-items: center; gap: 8px;
}
.hero-note .checks { color: var(--wa-green); font-weight: 800; }

.hero-art { position: relative; display: grid; place-items: center; }

/* floating confetti blobs */
.blob { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; z-index: 0; pointer-events: none; }
.blob.b1 { width: 230px; height: 230px; background: var(--peach); inset-block-start: -40px; inset-inline-end: -30px; }
.blob.b2 { width: 150px; height: 150px; background: oklch(0.82 0.12 12); inset-block-end: 10px; inset-inline-start: -50px; opacity:.4; }

.confetti { position: absolute; z-index: 1; pointer-events: none; }
.confetti i {
  position: absolute; display: block; border-radius: 2px;
  animation: floaty 6s ease-in-out infinite;
}
@keyframes floaty {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-14px) rotate(12deg); }
}

/* --- variant: BOLD --- */
.hero[data-hero="bold"] {
  background:
    radial-gradient(120% 90% at 85% 0%, var(--peach) 0%, transparent 55%),
    var(--rose);
  color: #fff;
}
.hero[data-hero="bold"] .eyebrow { background: oklch(1 0 0 / 0.18); color: #fff; border-color: oklch(1 0 0 / 0.3); }
.hero[data-hero="bold"] h1 { color: #fff; }
.hero[data-hero="bold"] h1 .hl { color: oklch(0.96 0.06 80); }
.hero[data-hero="bold"] h1 .hl::after { background: oklch(1 0 0 / 0.25); }
.hero[data-hero="bold"] .hero-sub { color: oklch(0.98 0.02 40 / 0.92); }
.hero[data-hero="bold"] .btn-primary { background: #fff; color: var(--rose-deep); box-shadow: 0 16px 34px -14px oklch(0.3 0.1 10 / .6); }
.hero[data-hero="bold"] .btn-ghost { background: oklch(1 0 0 / 0.12); color: #fff; border-color: oklch(1 0 0 / 0.4); }
.hero[data-hero="bold"] .hero-note { color: oklch(0.98 0.02 40 / 0.85); }
.hero[data-hero="bold"] .hero-note .checks { color: #fff; }
.hero[data-hero="bold"] .blob { display: none; }

/* --- variant: SOFT / elegant --- */
.hero[data-hero="soft"] { background: var(--bg); padding-top: clamp(30px,5vw,60px); }
.hero[data-hero="soft"] .hero-grid { grid-template-columns: 1fr; text-align: center; max-width: 880px; margin-inline: auto; gap: 50px; }
.hero[data-hero="soft"] .hero-copy { display: flex; flex-direction: column; align-items: center; }
.hero[data-hero="soft"] .eyebrow { background: transparent; border-color: var(--rose); color: var(--rose-deep); }
.hero[data-hero="soft"] h1 { font-size: clamp(2.6rem, 6vw, 4.6rem); letter-spacing: -0.02em; }
.hero[data-hero="soft"] .hero-sub { margin-inline: auto; }
.hero[data-hero="soft"] .hero-actions { justify-content: center; }
.hero[data-hero="soft"] .blob.b1 { inset-inline-end: auto; inset-inline-start: -120px; inset-block-start: 60px; }

@media (max-width: 900px) {
  .hero-grid { grid-template-columns: 1fr; gap: 44px; }
  .hero-art { order: 2; }
}

/* =========================================================
   PHONE + CHAT
   ========================================================= */
.phone {
  position: relative; z-index: 2;
  width: 332px; max-width: 86vw;
  background: #0c0b0e;
  border-radius: 46px;
  padding: 13px;
  box-shadow: var(--shadow-card), 0 4px 14px oklch(0 0 0 / 0.2);
  transform: rotate(-2.5deg);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.hero[data-hero="bold"] .phone { transform: rotate(3deg); box-shadow: 0 40px 80px -30px oklch(0.25 0.1 10 / .7); }
.hero[data-hero="soft"] .phone { transform: rotate(0deg); }
.phone:hover { transform: rotate(0deg) translateY(-4px); }

.phone-screen {
  position: relative;
  background: var(--wa-bg);
  border-radius: 34px;
  overflow: hidden;
  height: 656px;
  display: flex; flex-direction: column;
}
/* doodle pattern */
.phone-screen::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(oklch(0.3 0.02 60 / 0.05) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none; z-index: 0;
}
.notch {
  position: absolute; top: 0; left: 50%; transform: translateX(-50%);
  width: 132px; height: 26px; background: #0c0b0e;
  border-bottom-left-radius: 16px; border-bottom-right-radius: 16px;
  z-index: 6;
}

.wa-header {
  position: relative; z-index: 5;
  background: var(--wa-green);
  color: #fff;
  padding: 34px 16px 12px;
  display: flex; align-items: center; gap: 11px;
}
.wa-back { font-size: 1.3rem; opacity: .9; }
.wa-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--rose); color: #fff;
  display: grid; place-items: center; font-family: var(--font-head);
  font-weight: 800; font-size: 0.95rem; flex: none;
  box-shadow: inset 0 0 0 2px oklch(1 0 0 / 0.5);
}
.wa-id { flex: 1; min-width: 0; }
.wa-name { font-family: var(--font-head); font-weight: 700; font-size: 1rem; line-height: 1.15; }
.wa-status { font-size: 0.74rem; opacity: .9; display: flex; align-items: center; gap: 5px; }
.wa-status::before { content:""; width:7px; height:7px; border-radius:50%; background:#bff7c6; display:inline-block; }
.wa-actions { display: flex; gap: 16px; font-size: 1.1rem; opacity: .92; }

.wa-body {
  position: relative; z-index: 2;
  flex: 1; overflow: hidden;
  padding: 14px 12px 8px;
  display: flex; flex-direction: column;
  gap: 8px;
}
.wa-daytag {
  align-self: center;
  background: oklch(0.97 0.02 60 / 0.92);
  color: var(--ink-soft);
  font-size: 0.7rem; font-weight: 600;
  padding: 4px 12px; border-radius: 8px;
  box-shadow: 0 1px 2px oklch(0 0 0 /0.06);
  margin-bottom: 2px;
}

.bubble {
  max-width: 80%;
  padding: 8px 11px 7px;
  border-radius: 14px;
  font-size: 0.9rem;
  line-height: 1.42;
  position: relative;
  box-shadow: 0 1px 1.5px oklch(0 0 0 / 0.12);
  opacity: 0;
  transform: translateY(8px) scale(0.96);
  animation: pop .32s cubic-bezier(.34,1.56,.64,1) forwards;
  word-break: break-word;
}
@keyframes pop { to { opacity: 1; transform: translateY(0) scale(1); } }

/* incoming = bot (right side in RTL), white */
.bubble.in {
  align-self: flex-start;
  background: var(--wa-recv);
  border-top-right-radius: 4px;
  color: #1d2b21;
}
/* outgoing = guest (left side in RTL), green */
.bubble.out {
  align-self: flex-end;
  background: var(--wa-sent);
  border-top-left-radius: 4px;
  color: #14331f;
}
.bubble .meta {
  display: flex; align-items: center; gap: 4px; justify-content: flex-start;
  font-size: 0.62rem; color: oklch(0.5 0.02 150); margin-top: 2px;
}
.bubble.out .meta { justify-content: flex-end; }
.bubble .tick { color: var(--wa-tick); font-size: 0.7rem; letter-spacing: -2px; }
.bubble strong { font-weight: 700; }
.bubble .big { font-size: 1.05rem; }

/* typing indicator */
.typing {
  align-self: flex-start;
  background: var(--wa-recv);
  border-radius: 14px; border-top-right-radius: 4px;
  padding: 12px 14px; display: flex; gap: 4px;
  box-shadow: 0 1px 1.5px oklch(0 0 0 / 0.12);
}
.typing i { width: 7px; height: 7px; border-radius: 50%; background: oklch(0.7 0.02 150); animation: blink 1.2s infinite; }
.typing i:nth-child(2){ animation-delay:.2s; } .typing i:nth-child(3){ animation-delay:.4s; }
@keyframes blink { 0%,60%,100%{ opacity:.3; transform: translateY(0);} 30%{ opacity:1; transform: translateY(-3px);} }

/* quick reply buttons (the "no link" magic) */
.qreplies {
  display: flex; flex-direction: column; gap: 6px;
  align-self: flex-start; width: 80%;
  opacity: 0; animation: pop .32s ease forwards;
}
.qrow { display: flex; gap: 6px; }
.qbtn {
  flex: 1;
  background: var(--wa-recv);
  color: var(--wa-green);
  border: none;
  font-family: var(--font-body); font-weight: 700;
  font-size: 0.85rem;
  padding: 10px; border-radius: 10px;
  box-shadow: 0 1px 2px oklch(0 0 0 / 0.1);
  display: flex; align-items: center; justify-content: center; gap: 6px;
  transition: transform .15s, background .15s;
}
.qbtn.tap { animation: tapPulse .5s ease; background: #d2f3da; }
@keyframes tapPulse { 0%{transform:scale(1);} 40%{transform:scale(0.93); background:#bdeecb;} 100%{transform:scale(1);} }

.wa-input {
  position: relative; z-index: 4;
  background: transparent;
  padding: 8px 10px 12px;
  display: flex; align-items: center; gap: 8px;
}
.wa-input .field {
  flex: 1; background: #fff; border-radius: 999px;
  padding: 10px 16px; color: var(--ink-faint); font-size: 0.85rem;
  display: flex; align-items: center; gap: 8px;
  box-shadow: 0 1px 2px oklch(0 0 0 /0.08);
}
.wa-send {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--wa-green); color: #fff;
  display: grid; place-items: center; font-size: 1.1rem; flex: none;
}

/* small caption chip floating on phone */
.phone-tag {
  position: absolute; z-index: 7;
  background: var(--surface); color: var(--ink);
  font-family: var(--font-head); font-weight: 700; font-size: 0.82rem;
  padding: 9px 14px; border-radius: 14px;
  box-shadow: var(--shadow-soft);
  display: flex; align-items: center; gap: 8px;
}
.phone-tag .ic { font-size: 1rem; }
.phone-tag.t-top { inset-block-start: -16px; inset-inline-start: -30px; }
.phone-tag.t-bot { inset-block-end: 60px; inset-inline-end: -30px; color: var(--rose-deep); }
@media (max-width: 520px){ .phone-tag { display: none; } }

/* =========================================================
   TRUST STRIP
   ========================================================= */
.trust { padding: 26px 0 6px; }
.trust-inner { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; justify-content: center; color: var(--ink-faint); font-size: 0.92rem; }
.trust .stars { color: var(--coral); letter-spacing: 2px; font-size: 1rem; }
.trust b { color: var(--ink); }
.trust .sep { width: 1px; height: 18px; background: var(--line); }

/* =========================================================
   HOW IT WORKS / BOT FEATURE
   ========================================================= */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px 28px;
  position: relative;
  transition: transform .2s, box-shadow .2s;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.step .num {
  font-family: var(--font-head); font-weight: 800; font-size: 0.9rem;
  width: 38px; height: 38px; border-radius: 12px;
  background: var(--peach-soft); color: var(--rose-deep);
  display: grid; place-items: center; margin-bottom: 18px;
}
.step h3 { font-size: 1.32rem; margin-bottom: 10px; }
.step p { color: var(--ink-soft); font-size: 1rem; }
.step .arrow {
  position: absolute; inset-block-start: 44px; inset-inline-start: -22px;
  color: var(--peach); font-size: 1.6rem; font-weight: 800;
}
@media (max-width: 820px){ .steps { grid-template-columns: 1fr; } .step .arrow { display:none; } }

/* feature: bot highlight (split) */
.feature { background: var(--bg-warm); }
.feature-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(34px,5vw,76px); align-items: center;
}
.feature-list { display: flex; flex-direction: column; gap: 22px; margin-top: 30px; }
.fitem { display: flex; gap: 16px; align-items: flex-start; }
.fitem .ic {
  width: 48px; height: 48px; border-radius: 14px; flex: none;
  display: grid; place-items: center; font-size: 1.35rem;
  background: var(--surface); box-shadow: var(--shadow-soft);
}
.fitem h4 { font-size: 1.16rem; margin-bottom: 4px; }
.fitem p { color: var(--ink-soft); font-size: 1rem; }

/* timeline card showing automatic reminders */
.timeline {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 26px; box-shadow: var(--shadow-card);
}
.timeline h4 { font-size: 1.05rem; color: var(--ink-soft); font-weight: 600; margin-bottom: 22px; display:flex; align-items:center; gap:8px; }
.tl-item { display: flex; gap: 14px; padding-bottom: 22px; position: relative; }
.tl-item:not(:last-child)::before {
  content:""; position:absolute; inset-inline-start: 17px; inset-block-start: 36px; bottom: 0;
  width: 2px; background: var(--line);
}
.tl-dot {
  width: 36px; height: 36px; border-radius: 50%; flex: none; z-index: 1;
  display: grid; place-items: center; font-size: 0.9rem; color:#fff;
  background: var(--rose); box-shadow: 0 6px 14px -6px var(--rose);
}
.tl-dot.done { background: var(--wa-green); box-shadow: 0 6px 14px -6px var(--wa-green); }
.tl-dot.soft { background: var(--peach); color: var(--rose-deep); box-shadow:none; }
.tl-body .when { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.tl-body .what { color: var(--ink-soft); font-size: 0.9rem; }
.tl-auto { font-size:0.72rem; color: var(--wa-green); font-weight:700; background: var(--wa-sent); padding:2px 8px; border-radius:999px; display:inline-block; margin-top:4px; }
@media (max-width: 820px){ .feature-grid { grid-template-columns: 1fr; } }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.tcols { columns: 3; column-gap: 22px; }
@media (max-width: 900px){ .tcols { columns: 2; } }
@media (max-width: 600px){ .tcols { columns: 1; } }
.tcard {
  break-inside: avoid; margin-bottom: 22px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--radius); padding: 24px;
  box-shadow: 0 10px 30px -24px oklch(0.4 0.1 350 / .5);
}
.tcard .stars { color: var(--coral); letter-spacing: 1px; margin-bottom: 12px; }
.tcard p { font-size: 1.04rem; color: var(--ink); margin-bottom: 18px; }
.tcard .who { display: flex; align-items: center; gap: 12px; }
.tcard .pic { width: 42px; height: 42px; border-radius: 50%; background: var(--peach); display:grid; place-items:center; font-family:var(--font-head); font-weight:800; color: var(--rose-deep); flex:none; }
.tcard .nm { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; }
.tcard .role { font-size: 0.82rem; color: var(--ink-faint); }

/* =========================================================
   PRICING
   ========================================================= */
.plans { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; align-items: stretch; }
.plan {
  background: var(--surface); border: 1.5px solid var(--line);
  border-radius: var(--radius); padding: 32px 28px;
  display: flex; flex-direction: column;
  transition: transform .2s, box-shadow .2s;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--shadow-card); }
.plan.featured { border-color: var(--rose); box-shadow: var(--shadow-card); position: relative; }
.plan.featured .ribbon {
  position: absolute; inset-block-start: -14px; inset-inline-start: 50%; transform: translateX(50%);
  background: var(--rose); color: #fff; font-family: var(--font-head); font-weight: 700;
  font-size: 0.78rem; padding: 6px 16px; border-radius: 999px; box-shadow: 0 8px 18px -8px var(--rose);
  white-space: nowrap;
}
.plan .pname { font-family: var(--font-head); font-weight: 700; font-size: 1.2rem; margin-bottom: 6px; }
.plan .pdesc { color: var(--ink-faint); font-size: 0.92rem; min-height: 40px; }
.plan .price { display: flex; align-items: baseline; gap: 6px; margin: 18px 0 4px; }
.plan .price .amt { font-family: var(--font-head); font-weight: 800; font-size: 2.6rem; color: var(--ink); }
.plan .price .cur { font-size: 1.4rem; color: var(--ink); font-weight: 800; }
.plan .price .per { color: var(--ink-faint); font-size: 0.9rem; }
.plan .punit { color: var(--ink-faint); font-size: 0.85rem; margin-bottom: 22px; }
.plan ul { list-style: none; display: flex; flex-direction: column; gap: 12px; margin-bottom: 26px; flex: 1; }
.plan li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.96rem; color: var(--ink-soft); }
.plan li .ck { color: var(--wa-green); font-weight: 800; flex: none; }
.plan .btn { width: 100%; justify-content: center; }
@media (max-width: 820px){ .plans { grid-template-columns: 1fr; max-width: 420px; margin-inline:auto; } }

/* =========================================================
   FINAL CTA
   ========================================================= */
.cta-final { position: relative; overflow: hidden; }
.cta-box {
  background: radial-gradient(130% 120% at 80% 0%, var(--peach) 0%, transparent 55%), var(--rose);
  color: #fff; border-radius: 34px;
  padding: clamp(44px, 6vw, 80px);
  text-align: center; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card);
}
.cta-box h2 { font-size: clamp(2rem, 4.6vw, 3.2rem); margin-bottom: 16px; }
.cta-box p { font-size: 1.18rem; opacity: .94; max-width: 34em; margin: 0 auto 32px; }
.cta-box .btn-primary { background: #fff; color: var(--rose-deep); }
.cta-box .btn-primary:hover { box-shadow: 0 20px 40px -14px oklch(0.2 0.1 10 / .6); }
.cta-box .mini { margin-top: 16px; font-size: 0.9rem; opacity: .9; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer { padding: 56px 0 40px; border-top: 1px solid var(--line); }
.footer-inner { display: flex; justify-content: space-between; gap: 30px; flex-wrap: wrap; }
.footer .logo { font-size: 1.3rem; margin-bottom: 12px; }
.footer .tag { color: var(--ink-faint); max-width: 24em; font-size: 0.95rem; }
.footer-cols { display: flex; gap: 60px; flex-wrap: wrap; }
.fcol h5 { font-family: var(--font-head); font-weight: 700; font-size: 0.95rem; margin-bottom: 14px; }
.fcol a { display: block; color: var(--ink-soft); font-size: 0.92rem; margin-bottom: 9px; transition: color .15s; }
.fcol a:hover { color: var(--rose-deep); }
.footer-base { margin-top: 40px; padding-top: 22px; border-top: 1px solid var(--line); display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; color: var(--ink-faint); font-size: 0.86rem; }

/* reveal on scroll */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
