/* ============================================================
   VILLAMARKET — LIGHT / AIRY THEME
   Sora (display) + Plus Jakarta Sans (text)
   ============================================================ */

:root {
  /* palette */
  --ink: #0d2436;
  --ink-2: #1e3a4c;
  --body: #51626f;
  --muted: #85929e;

  --primary: #0d9488;
  --primary-deep: #0f766e;
  --primary-ink: #0b5e56;
  --primary-soft: #d9f4f0;
  --primary-tint: #f0faf8;

  --sky: #0ea5e9;
  --sky-soft: #e3f4fd;

  --gold: #f59e0b;
  --gold-deep: #d97706;
  --gold-soft: #fdf1dc;

  --rose: #e85d75;
  --rose-soft: #fdecef;

  --wa: #25d366;
  --wa-deep: #128c7e;
  --wa-soft: #e9fbef;

  --bg: #ffffff;
  --tint: #f4f8f9;
  --line: #e5edf0;
  --line-2: #d8e4e8;

  /* type */
  --font-display: "Sora", sans-serif;
  --font-text: "Plus Jakarta Sans", sans-serif;

  /* geometry */
  --r-lg: 26px;
  --r-md: 18px;
  --r-sm: 12px;
  --container: 1200px;

  /* shadows */
  --sh-xs: 0 1px 2px rgba(13, 36, 54, .05);
  --sh-sm: 0 2px 10px -2px rgba(13, 36, 54, .08);
  --sh-md: 0 14px 34px -14px rgba(13, 36, 54, .16);
  --sh-lg: 0 30px 70px -28px rgba(13, 36, 54, .24);
  --sh-teal: 0 14px 30px -12px rgba(13, 148, 136, .45);
  --sh-gold: 0 14px 30px -12px rgba(217, 119, 6, .45);
}

/* ---------- reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: clip; }
body {
  margin: 0;
  font-family: var(--font-text);
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--body);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}
body.nav-locked { overflow: hidden; }
section[id] { scroll-margin-top: 76px; }
img, svg, canvas { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: 0; background: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  color: var(--ink);
  line-height: 1.16;
  margin: 0 0 .5em;
  letter-spacing: -.02em;
  text-wrap: balance;
}
p { margin: 0 0 1em; }
b, strong { color: var(--ink-2); }
::selection { background: var(--primary-soft); color: var(--primary-ink); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
.muted { color: var(--muted); font-size: .82rem; }

/* ---------- soft background blobs ---------- */
.fx { position: fixed; inset: 0; z-index: -1; pointer-events: none; overflow: hidden; }
.fx__blob {
  position: absolute; border-radius: 50%; filter: blur(90px); opacity: .55;
}
.fx__blob--1 { width: 620px; height: 620px; top: -220px; right: -160px; background: radial-gradient(circle, #d2f2ec, transparent 65%); }
.fx__blob--2 { width: 540px; height: 540px; top: 40%; left: -240px; background: radial-gradient(circle, #e2f2fd, transparent 65%); }
.fx__blob--3 { width: 480px; height: 480px; bottom: -180px; right: 8%; background: radial-gradient(circle, #fdf0d9, transparent 65%); }

/* ---------- scroll progress ---------- */
.scrollbar {
  position: fixed; top: 0; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, var(--primary), var(--sky), var(--gold));
  z-index: 200; border-radius: 0 3px 3px 0;
}

/* ---------- icons ---------- */
.ic { width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2.6; stroke-linecap: round; stroke-linejoin: round; flex: none; }

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px; border-radius: 999px;
  font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .2s ease, box-shadow .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:active { transform: scale(.97); }
.btn--lg { padding: 16px 32px; font-size: 1.02rem; }
.btn--block { width: 100%; }

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff; box-shadow: var(--sh-teal);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(13, 148, 136, .55); }

.btn--gold {
  background: linear-gradient(135deg, #fbbf24, var(--gold-deep));
  color: #3d2a05; box-shadow: var(--sh-gold);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 20px 38px -12px rgba(217, 119, 6, .55); }

.btn--outline {
  border: 1.5px solid var(--line-2); color: var(--ink-2); background: #fff;
}
.btn--outline:hover { border-color: var(--primary); color: var(--primary-ink); background: var(--primary-tint); }

.btn--ghost { color: var(--body); padding: 12px 16px; }
.btn--ghost:hover { color: var(--primary-ink); }

.btn--white { background: #fff; color: var(--primary-ink); box-shadow: 0 16px 34px -14px rgba(4, 47, 46, .5); }
.btn--white:hover { transform: translateY(-2px); }
.btn--glass {
  background: rgba(255, 255, 255, .14); color: #fff;
  border: 1px solid rgba(255, 255, 255, .38); backdrop-filter: blur(6px);
}
.btn--glass:hover { background: rgba(255, 255, 255, .24); }

/* ============================================================
   TOPBAR + NAV
   ============================================================ */
.topbar {
  background: linear-gradient(90deg, #fdf6e6, #f2faf6 55%, #eaf6fd);
  border-bottom: 1px solid var(--line);
  font-size: .86rem; color: var(--ink-2);
}
.topbar__inner { display: flex; align-items: center; justify-content: center; gap: 16px; padding: 9px 24px; flex-wrap: wrap; text-align: center; }
.topbar a { color: var(--primary-ink); font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .25s ease, box-shadow .25s ease;
}
.nav.is-scrolled { border-bottom-color: var(--line); box-shadow: var(--sh-sm); }
.nav__inner { display: flex; align-items: center; gap: 28px; padding: 14px 24px; }

.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand__mark {
  width: 38px; height: 38px; border-radius: 12px;
  display: grid; place-items: center; color: #fff;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  box-shadow: var(--sh-teal);
}
.brand__name { font-family: var(--font-display); font-weight: 800; font-size: 1.18rem; color: var(--ink); letter-spacing: -.02em; }
.brand__name span { color: var(--primary); }

.nav__links { display: flex; gap: 4px; margin-left: auto; }
.nav__links a {
  padding: 8px 13px; border-radius: 999px;
  font-size: .93rem; font-weight: 600; color: var(--body);
  transition: color .2s, background .2s;
}
.nav__links a:hover { color: var(--primary-ink); background: var(--primary-tint); }

.nav__cta { display: flex; align-items: center; gap: 8px; }
.nav__burger { display: none; flex-direction: column; gap: 5px; padding: 8px; margin-left: auto; position: relative; z-index: 95; flex: none; }
.nav__burger span { width: 22px; height: 2.5px; border-radius: 2px; background: var(--ink); transition: transform .25s ease, opacity .2s ease; }
.nav__burger.is-open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__burger.is-open span:nth-child(2) { opacity: 0; }
.nav__burger.is-open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ============================================================
   HERO
   ============================================================ */
.hero { position: relative; padding: 72px 0 0; overflow: hidden; }
.hero__grid {
  display: grid; grid-template-columns: 1.06fr .94fr;
  gap: 56px; align-items: center;
}

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 8px 16px; border-radius: 999px;
  background: var(--gold-soft); border: 1px solid #f5dfb2;
  color: #8a5a06; font-size: .82rem; font-weight: 700;
  margin-bottom: 22px;
}
.pill__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(245, 158, 11, .18); animation: pulse 2s infinite; }
@keyframes pulse { 50% { box-shadow: 0 0 0 7px rgba(245, 158, 11, .06); } }

.hero h1 { font-size: clamp(2.3rem, 4.6vw, 3.55rem); font-weight: 800; margin-bottom: 20px; }
.grad {
  background: linear-gradient(95deg, var(--primary) 10%, var(--sky) 90%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.grad--gold { background: linear-gradient(95deg, var(--gold-deep), #b45309); -webkit-background-clip: text; background-clip: text; color: transparent; }

.scribble { position: relative; display: inline-block; }
.scribble svg { position: absolute; left: 0; bottom: -8px; width: 100%; height: 12px; }

.lead { font-size: 1.09rem; max-width: 56ch; margin-bottom: 28px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }

.proof { display: flex; align-items: center; gap: 14px; margin-bottom: 20px; }
.proof p { margin: 0; font-size: .9rem; }
.proof__avatars { display: flex; }
.proof__avatars span {
  width: 38px; height: 38px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .72rem; font-weight: 800; color: #fff;
  border: 2.5px solid #fff; margin-left: -9px;
  box-shadow: var(--sh-sm);
}
.proof__avatars span:first-child { margin-left: 0; }
.proof__avatars span:nth-child(1) { background: #14b8a6; }
.proof__avatars span:nth-child(2) { background: #0ea5e9; }
.proof__avatars span:nth-child(3) { background: #f59e0b; }
.proof__avatars span:nth-child(4) { background: #8b5cf6; }

.hero__trust { display: flex; gap: 20px; flex-wrap: wrap; }
.hero__trust li { display: flex; align-items: center; gap: 7px; font-size: .88rem; font-weight: 600; color: var(--ink-2); }
.hero__trust .ic { color: var(--primary); }

/* --- hero dashboard mockup --- */
.hero__visual { position: relative; perspective: 1200px; }
.dash {
  --rx: 0deg; --ry: 0deg;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px;
  box-shadow: var(--sh-lg);
  transform: rotateX(var(--rx)) rotateY(var(--ry));
  transform-style: preserve-3d;
}
.dash__top { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 18px; }
.dash__id { display: flex; align-items: center; gap: 12px; }
.dash__id strong { display: block; font-size: .95rem; color: var(--ink); }
.dash__id span { font-size: .78rem; color: var(--muted); }
.dash__avatar {
  width: 42px; height: 42px; border-radius: 13px;
  display: grid; place-items: center; color: #fff; font-weight: 800; font-size: .82rem;
  background: linear-gradient(135deg, var(--primary), var(--sky));
}
.badge--live {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 6px 12px; border-radius: 999px;
  background: var(--gold-soft); color: #8a5a06;
  font-size: .74rem; font-weight: 800;
}
.badge--live i { width: 7px; height: 7px; border-radius: 50%; background: var(--gold); animation: pulse 2s infinite; }

.dash__stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 16px; }
.stat {
  background: var(--tint); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 16px;
  display: flex; flex-direction: column; gap: 3px;
}
.stat__label { font-size: .74rem; color: var(--muted); font-weight: 600; }
.stat__value { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--ink); letter-spacing: -.02em; }
.stat__delta { font-size: .74rem; font-weight: 800; }
.stat__delta.up { color: var(--primary-deep); }

.dash__chartwrap { background: var(--tint); border: 1px solid var(--line); border-radius: var(--r-md); padding: 14px 16px 10px; margin-bottom: 16px; }
.dash__chart-head { display: flex; justify-content: space-between; align-items: baseline; font-size: .82rem; font-weight: 700; color: var(--ink-2); margin-bottom: 6px; }
.chartbox { position: relative; width: 100%; }
.chartbox--donut { height: 190px; }

.dash__foot { display: flex; gap: 8px; flex-wrap: wrap; }
.chip {
  display: inline-flex; align-items: center; gap: 6px;
  padding: 7px 13px; border-radius: 999px;
  background: var(--tint); border: 1px solid var(--line);
  font-size: .76rem; font-weight: 700; color: var(--ink-2);
}
.chip--green { background: var(--wa-soft); border-color: #c9f0d6; color: #0c7a43; }
.livedot { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; animation: pulse 2s infinite; }

.floatcard {
  position: absolute; background: #fff;
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 13px 17px; box-shadow: var(--sh-md);
  display: flex; flex-direction: column; gap: 1px;
  animation: float 5.5s ease-in-out infinite;
}
.floatcard__k { font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.floatcard__v { font-family: var(--font-display); font-weight: 800; font-size: 1.12rem; color: var(--primary-deep); }
.floatcard__s { font-size: .74rem; color: var(--body); }
.floatcard--a { top: -22px; right: -14px; }
.floatcard--a .floatcard__v { color: var(--gold-deep); }
.floatcard--b { bottom: -24px; left: -18px; animation-delay: -2.7s; }
@keyframes float { 50% { transform: translateY(-9px); } }

/* --- stat strip --- */
.statstrip {
  margin-top: 64px;
  display: grid; grid-template-columns: repeat(4, 1fr);
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); box-shadow: var(--sh-sm);
  overflow: hidden;
}
.statstrip > div { padding: 26px 18px; text-align: center; border-left: 1px solid var(--line); }
.statstrip > div:first-child { border-left: 0; }
.statstrip strong { display: block; font-family: var(--font-display); font-weight: 800; font-size: 2rem; color: var(--primary-deep); letter-spacing: -.02em; }
.statstrip span { font-size: .82rem; color: var(--muted); font-weight: 600; }

/* --- ticker --- */
.ticker { margin-top: 40px; border-block: 1px solid var(--line); background: var(--tint); overflow: hidden; }
.ticker__track {
  display: flex; align-items: center; gap: 26px;
  width: max-content; padding: 13px 0;
  animation: ticker 34s linear infinite;
}
.ticker__track span { font-size: .84rem; font-weight: 700; color: var(--ink-2); white-space: nowrap; }
.ticker__track i { color: var(--gold); font-style: normal; font-size: .7rem; }
@keyframes ticker { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS / HEADINGS
   ============================================================ */
.section { padding: 96px 0; position: relative; }
.section--tint { background: var(--tint); border-block: 1px solid var(--line); }
.section--slim { padding: 56px 0; }

.sec-head { max-width: 780px; margin: 0 auto 56px; text-align: center; }
.sec-head h2 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); font-weight: 800; }
.sec-head p { font-size: 1.03rem; }

.eyebrow {
  display: inline-flex; align-items: center;
  padding: 6px 15px; border-radius: 999px; margin-bottom: 16px;
  background: var(--primary-tint); border: 1px solid #c8e9e3;
  color: var(--primary-ink); font-size: .78rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
}
.hl-gold { color: var(--gold-deep); }

/* ============================================================
   COMPARE (problem/solution)
   ============================================================ */
.compare2 { display: grid; grid-template-columns: 1fr auto 1fr; gap: 22px; align-items: stretch; max-width: 1020px; margin: 0 auto; }
.compare2__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 30px;
  box-shadow: var(--sh-sm);
  display: flex; flex-direction: column;
}
.compare2__card--good { border-color: #bfe7e0; box-shadow: 0 24px 50px -24px rgba(13, 148, 136, .3); }
.compare2__tag {
  align-self: flex-start; padding: 6px 14px; border-radius: 999px;
  font-size: .76rem; font-weight: 800; margin-bottom: 18px;
  background: var(--rose-soft); color: #b3364c;
}
.compare2__card--good .compare2__tag { background: var(--primary-soft); color: var(--primary-ink); }
.compare2__card ul { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.compare2__card li { position: relative; padding-left: 30px; font-size: .95rem; }
.compare2__card li::before {
  position: absolute; left: 0; top: 1px;
  width: 20px; height: 20px; border-radius: 50%;
  display: grid; place-items: center;
  font-size: .68rem; font-weight: 900;
}
.compare2__card li.x::before { content: "✕"; background: var(--rose-soft); color: var(--rose); }
.compare2__card li.v::before { content: "✓"; background: var(--primary-soft); color: var(--primary-deep); }
.compare2__vs {
  align-self: center;
  width: 52px; height: 52px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff;
  font-family: var(--font-display); font-weight: 800; font-size: .85rem;
  box-shadow: var(--sh-md);
}
.verdict { margin-top: 22px; padding: 13px 16px; border-radius: var(--r-sm); font-size: .87rem; font-weight: 700; text-align: center; }
.verdict--bad { background: var(--rose-soft); color: #b3364c; }
.verdict--good { background: var(--primary-soft); color: var(--primary-ink); }

/* ============================================================
   CALCULATOR
   ============================================================ */
.calc {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 30px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 38px;
  box-shadow: var(--sh-md); max-width: 1060px; margin: 0 auto;
}
.calc__controls { display: flex; flex-direction: column; gap: 30px; }
.calc__field label { display: block; font-size: .85rem; font-weight: 700; color: var(--ink-2); margin-bottom: 5px; }
.calc__out { font-family: var(--font-display); font-weight: 800; font-size: 1.5rem; color: var(--primary-deep); margin-bottom: 10px; letter-spacing: -.02em; }
.calc__scale { display: flex; justify-content: space-between; font-size: .72rem; color: var(--muted); margin-top: 7px; }

input[type="range"] {
  -webkit-appearance: none; appearance: none;
  width: 100%; height: 8px; border-radius: 99px;
  background: var(--line); outline: none; cursor: pointer;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none; appearance: none;
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--primary);
  box-shadow: var(--sh-sm); transition: transform .15s;
}
input[type="range"]::-webkit-slider-thumb:hover { transform: scale(1.15); }
input[type="range"]::-moz-range-thumb {
  width: 24px; height: 24px; border-radius: 50%;
  background: #fff; border: 3px solid var(--primary);
  box-shadow: var(--sh-sm);
}

.calc__result {
  background: var(--tint); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 28px;
  display: flex; flex-direction: column;
}
.calc__bars { display: flex; flex-direction: column; gap: 20px; margin-bottom: 24px; }
.calc__barlabel { font-size: .82rem; font-weight: 700; color: var(--body); display: block; margin-bottom: 7px; }
.calc__track { height: 14px; border-radius: 99px; background: #e9f0f2; overflow: hidden; }
.calc__fill { height: 100%; border-radius: 99px; width: 0; transition: width .6s cubic-bezier(.22, 1, .36, 1); }
.calc__fill--bad { background: linear-gradient(90deg, #f39ca9, var(--rose)); }
.calc__fill--good { background: linear-gradient(90deg, #34d399, var(--primary)); }
.calc__num { display: block; margin-top: 6px; font-family: var(--font-display); font-weight: 800; font-size: 1.25rem; letter-spacing: -.02em; }
.calc__num--bad { color: var(--rose); }
.calc__num--good { color: var(--primary-deep); }

.calc__savings {
  background: #fff; border: 1px solid #c8e9e3;
  border-radius: var(--r-md); padding: 20px 24px; text-align: center;
  box-shadow: var(--sh-sm);
}
.calc__savings span { font-size: .8rem; font-weight: 800; text-transform: uppercase; letter-spacing: .07em; color: var(--muted); display: block; }
.calc__savings strong {
  display: block; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(1.9rem, 3.4vw, 2.6rem); letter-spacing: -.03em;
  color: var(--primary-deep);
}
.calc__savings em { display: block; font-style: normal; font-size: .84rem; color: var(--body); margin-top: 5px; }
.calc__note { font-size: .76rem; color: var(--muted); margin: 18px 0 0; }

/* ============================================================
   FOUNDERS
   ============================================================ */
.founders {
  background:
    radial-gradient(900px 420px at 85% 0%, rgba(245, 158, 11, .1), transparent 60%),
    linear-gradient(180deg, #fffdf7, #fdf8ec);
  border-block: 1px solid #f3e7c9;
}
.founders__inner { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.founders .eyebrow { background: var(--gold-soft); border-color: #f0ddb0; color: #8a5a06; }
.founders h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }

.founders__meter {
  background: #fff; border: 1px solid #f0e3c2;
  border-radius: var(--r-md); padding: 20px 22px;
  margin: 26px 0; box-shadow: var(--sh-sm);
}
.founders__meterhead { display: flex; justify-content: space-between; align-items: baseline; font-size: .85rem; font-weight: 700; color: var(--body); margin-bottom: 11px; }
.founders__meterhead strong { color: var(--gold-deep); font-family: var(--font-display); }
.founders__track { height: 12px; border-radius: 99px; background: #f5edd8; overflow: hidden; }
.founders__fill { height: 100%; width: 0; border-radius: 99px; background: linear-gradient(90deg, #fbbf24, var(--gold-deep)); transition: width 1.2s cubic-bezier(.22, 1, .36, 1); }
.founders__left { display: block; margin-top: 9px; font-size: .8rem; color: var(--body); }
.founders__left b { color: var(--gold-deep); }

.founders__perks { display: flex; flex-direction: column; gap: 12px; margin-bottom: 30px; }
.founders__perks li { position: relative; padding-left: 28px; font-size: .96rem; }
.founders__perks .ic { color: var(--gold-deep); position: absolute; left: 0; top: 4px; }

/* gold membership pass */
.founders__visual { display: flex; flex-direction: column; align-items: center; }
.fstack { position: relative; width: min(400px, 100%); }
.fpass { border-radius: 22px; padding: 26px; position: relative; }
.fpass--std {
  position: absolute; inset: 0; transform: rotate(6deg) translate(16px, -14px);
  background: #fff; border: 1px solid var(--line-2); box-shadow: var(--sh-sm);
}
.fpass--gold {
  background: linear-gradient(140deg, #241a05, #4d3506 55%, #8a6410);
  color: #fbeed0; overflow: hidden;
  box-shadow: 0 34px 70px -26px rgba(120, 84, 12, .55);
}
.fpass__shine {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 30%, rgba(255, 235, 180, .22) 45%, transparent 60%);
  animation: shine 4.5s ease-in-out infinite;
}
@keyframes shine { 0%, 100% { transform: translateX(-70%); } 50% { transform: translateX(70%); } }
.fpass__head { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.fpass__brand { font-family: var(--font-display); font-weight: 700; font-size: 1rem; }
.fpass__brand b { color: #fbbf24; }
.fpass__type {
  padding: 5px 13px; border-radius: 999px; font-size: .72rem; font-weight: 800;
  background: rgba(251, 191, 36, .18); border: 1px solid rgba(251, 191, 36, .45); color: #fcd34d;
  text-transform: uppercase; letter-spacing: .06em;
}
.fpass__type--std { background: var(--tint); border: 1px solid var(--line); color: var(--muted); }
.fpass__chip { display: block; width: 42px; height: 32px; border-radius: 7px; background: linear-gradient(135deg, #fcd34d, #b4820a); margin-bottom: 14px; }
.fpass__no { font-size: .86rem; letter-spacing: .12em; margin-bottom: 18px; color: #fcd34d; font-weight: 700; }
.fpass__no em { font-style: normal; color: rgba(251, 238, 208, .6); }
.fpass__benefit { display: flex; align-items: center; gap: 15px; margin-bottom: 18px; }
.fpass__benefit strong { font-family: var(--font-display); font-size: 2.5rem; font-weight: 800; color: #fcd34d; }
.fpass__benefit span { font-size: .84rem; line-height: 1.45; color: #fbeed0; }
.fpass__chips { display: flex; gap: 8px; flex-wrap: wrap; margin-bottom: 18px; }
.fpass__chips span { padding: 6px 12px; border-radius: 999px; background: rgba(255, 255, 255, .1); font-size: .74rem; font-weight: 600; }
.fpass__foot { display: flex; justify-content: space-between; gap: 10px; font-size: .72rem; text-transform: uppercase; letter-spacing: .05em; color: rgba(251, 238, 208, .75); border-top: 1px solid rgba(251, 191, 36, .25); padding-top: 14px; }
.founders__hint { margin-top: 26px; font-size: .82rem; color: var(--body); text-align: center; max-width: 40ch; }

/* ============================================================
   PRICING
   ============================================================ */
.toggle { display: flex; align-items: center; justify-content: center; gap: 15px; margin-bottom: 44px; }
.toggle__opt { font-weight: 700; color: var(--muted); transition: color .2s; }
.toggle__opt.is-active { color: var(--ink); }
.toggle__save { margin-left: 7px; padding: 3px 10px; border-radius: 999px; background: var(--primary-soft); color: var(--primary-ink); font-size: .72rem; font-weight: 800; }
.toggle__switch {
  width: 58px; height: 31px; border-radius: 999px;
  background: var(--line-2); position: relative; transition: background .25s;
}
.toggle__switch.is-yearly { background: var(--primary); }
.toggle__knob {
  position: absolute; top: 3px; left: 3px;
  width: 25px; height: 25px; border-radius: 50%;
  background: #fff; box-shadow: var(--sh-sm); transition: transform .25s cubic-bezier(.34, 1.56, .64, 1);
}
.toggle__switch.is-yearly .toggle__knob { transform: translateX(27px); }

.plans { display: grid; grid-template-columns: repeat(2, minmax(0, 430px)); gap: 26px; justify-content: center; align-items: stretch; }
.plan {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 36px;
  box-shadow: var(--sh-sm); position: relative;
  display: flex; flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.plan:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.plan--featured { border: 2px solid var(--primary); box-shadow: 0 30px 60px -26px rgba(13, 148, 136, .38); }
.plan__ribbon {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  padding: 6px 18px; border-radius: 999px;
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #fff; font-size: .74rem; font-weight: 800;
  text-transform: uppercase; letter-spacing: .07em;
  box-shadow: var(--sh-teal); white-space: nowrap;
}
.plan__head h3 { font-size: 1.3rem; margin-bottom: 4px; }
.plan__head p { font-size: .88rem; color: var(--muted); }
.plan__price { display: flex; align-items: baseline; gap: 8px; margin: 18px 0 24px; }
.plan__amount { font-family: var(--font-display); font-weight: 800; font-size: 2.85rem; letter-spacing: -.03em; color: var(--ink); }
.plan__per { color: var(--muted); font-size: .92rem; font-weight: 600; }
.plan__per em { font-style: normal; font-size: .8rem; }
.plan__list { display: flex; flex-direction: column; gap: 11px; margin-bottom: 30px; flex: 1; }
.plan__list li { position: relative; padding-left: 28px; font-size: .93rem; }
.plan__list li::before {
  content: "✓"; position: absolute; left: 0; top: 1px;
  width: 19px; height: 19px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary-deep);
  font-size: .66rem; font-weight: 900;
}
.plan__hint { margin: 14px 0 0; text-align: center; font-size: .8rem; color: var(--gold-deep); font-weight: 700; }

/* ============================================================
   AD BUDGET / REPORTING
   ============================================================ */
.journey { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; max-width: 1020px; margin: 0 auto 40px; }
.journey__step {
  display: flex; gap: 15px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 22px;
  box-shadow: var(--sh-xs);
}
.journey__no {
  flex: none; width: 34px; height: 34px; border-radius: 11px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  color: #fff; font-weight: 800; font-size: .92rem;
}
.journey__step strong { display: block; font-family: var(--font-display); font-size: .97rem; color: var(--ink); margin-bottom: 4px; }
.journey__step p { margin: 0; font-size: .85rem; }

.reklam__bento { display: grid; grid-template-columns: 1.05fr 1fr 1.2fr; gap: 20px; align-items: stretch; }
.panel {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--sh-sm);
}
.panel__head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 16px; }
.panel__head strong { font-family: var(--font-display); font-size: .96rem; color: var(--ink); }
.panel__legend { display: flex; flex-direction: column; gap: 9px; font-size: .84rem; }
.panel__legend div { display: flex; align-items: center; gap: 9px; }
.panel__legend b { margin-left: auto; color: var(--ink); }
.panel__legend i { width: 11px; height: 11px; border-radius: 4px; flex: none; }
.panel__donut--stack { display: flex; flex-direction: column; gap: 18px; }

.adpreview {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--sh-sm); display: flex; flex-direction: column; gap: 16px;
}
.adpreview__tag { display: flex; align-items: center; gap: 8px; font-size: .8rem; font-weight: 800; color: var(--primary-ink); }
.adpreview__tag i { width: 8px; height: 8px; border-radius: 50%; background: var(--primary); animation: pulse 2s infinite; }
.adpreview__ad {
  border: 1px solid var(--line); border-radius: var(--r-md);
  padding: 17px; display: flex; flex-direction: column; gap: 4px;
  background: var(--tint);
}
.adpreview__sponsor { font-size: .72rem; color: var(--muted); }
.adpreview__ad strong { font-size: .98rem; color: #1558c0; font-family: var(--font-text); }
.adpreview__desc { font-size: .83rem; color: var(--body); }
.adpreview__stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-top: auto; }
.adpreview__stats div { background: var(--primary-tint); border: 1px solid #d4ede8; border-radius: var(--r-sm); padding: 12px 8px; text-align: center; }
.adpreview__stats b { display: block; font-family: var(--font-display); font-size: 1.15rem; color: var(--primary-deep); }
.adpreview__stats span { font-size: .72rem; color: var(--muted); font-weight: 600; }

.reklam__note {
  margin: 36px auto 0; max-width: 760px; text-align: center;
  background: #fff; border: 1px dashed var(--line-2);
  border-radius: var(--r-md); padding: 18px 26px; font-size: .92rem;
}

/* ============================================================
   TRAFFIC FLOW
   ============================================================ */
.flow { display: grid; grid-template-columns: 1fr auto 1.1fr auto 1fr; gap: 14px; align-items: stretch; margin-bottom: 48px; }
.flow__stage {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 28px 24px;
  box-shadow: var(--sh-sm); text-align: center; position: relative;
}
.flow__stage--hub { border-color: #c8e9e3; }
.flow__no {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  width: 27px; height: 27px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--ink); color: #fff; font-size: .76rem; font-weight: 800;
}
.flow__stage h4 { font-size: 1.04rem; margin: 14px 0 7px; }
.flow__stage p { font-size: .85rem; margin-bottom: 14px; }
.flow__chips { display: flex; gap: 6px; flex-wrap: wrap; justify-content: center; margin-bottom: 14px; }
.flow__chips span { padding: 5px 11px; border-radius: 999px; background: var(--tint); border: 1px solid var(--line); font-size: .73rem; font-weight: 700; color: var(--ink-2); }
.flow__metric { display: inline-block; padding: 6px 14px; border-radius: 999px; font-size: .76rem; font-weight: 800; background: var(--sky-soft); color: #0369a1; }
.flow__metric--teal { background: var(--primary-soft); color: var(--primary-ink); }
.flow__metric--gold { background: var(--gold-soft); color: #8a5a06; }

.flow__link { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; padding: 0 3px; }
.flow__link i { width: 7px; height: 7px; border-radius: 50%; background: var(--primary); opacity: .3; animation: flowdot 1.5s infinite; }
.flow__link i:nth-child(2) { animation-delay: .25s; }
.flow__link i:nth-child(3) { animation-delay: .5s; }
@keyframes flowdot { 50% { opacity: 1; transform: scale(1.25); } }
.flow__link em { font-style: normal; font-size: .66rem; color: var(--muted); font-weight: 700; writing-mode: vertical-rl; }

.hub { position: relative; width: 110px; height: 110px; margin: 6px auto 2px; }
.hub__ring { position: absolute; inset: 0; border: 1.5px dashed #9adcd2; border-radius: 50%; animation: spin 16s linear infinite; }
.hub__ring--2 { inset: 13px; animation-direction: reverse; animation-duration: 11s; border-color: #bfe7fb; }
.hub__spin { position: absolute; inset: -6px; border-radius: 50%; border: 2px solid transparent; border-top-color: var(--primary); animation: spin 3.2s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }
.hub__core {
  position: absolute; inset: 26px; border-radius: 50%;
  display: grid; place-items: center; text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  color: #fff; font-weight: 800; font-size: .74rem; line-height: 1.25;
  box-shadow: var(--sh-teal);
}
.villamini {
  display: flex; align-items: center; gap: 11px;
  background: var(--tint); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px 15px; margin: 6px auto 2px;
  width: fit-content;
}
.villamini__img { width: 42px; height: 42px; border-radius: 12px; display: grid; place-items: center; background: linear-gradient(135deg, #fbbf24, var(--gold-deep)); color: #fff; }
.villamini__body { text-align: left; }
.villamini__body strong { display: block; font-size: .86rem; color: var(--ink); }
.villamini__body .up { font-size: .72rem; font-weight: 800; color: var(--primary-deep); }

.dual { display: grid; grid-template-columns: 1fr auto 1fr auto 1.15fr; gap: 14px; align-items: center; max-width: 1060px; margin: 0 auto; }
.dual__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 22px 24px; box-shadow: var(--sh-xs);
}
.dual__card strong { display: block; font-family: var(--font-display); font-size: .98rem; color: var(--ink); margin: 8px 0 5px; }
.dual__card p { margin: 0; font-size: .84rem; }
.dual__tag { display: inline-block; padding: 4px 11px; border-radius: 999px; background: var(--gold-soft); color: #8a5a06; font-size: .7rem; font-weight: 800; }
.dual__tag--sys { background: var(--sky-soft); color: #0369a1; }
.dual__op { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--muted); }
.dual__result {
  background: linear-gradient(135deg, var(--primary), var(--primary-deep));
  color: #ecfdf9; border-radius: var(--r-md); padding: 24px 26px;
  box-shadow: var(--sh-teal);
}
.dual__result strong { display: block; font-family: var(--font-display); font-size: 1.02rem; color: #fff; margin-bottom: 5px; }
.dual__result p { margin: 0; font-size: .84rem; color: #d3f3ec; }

/* ============================================================
   MOBILE APP + WHATSAPP + AI
   ============================================================ */
.section--app {
  background:
    radial-gradient(800px 400px at 12% 8%, rgba(37, 211, 102, .09), transparent 60%),
    radial-gradient(700px 400px at 92% 85%, rgba(14, 165, 233, .08), transparent 60%),
    var(--tint);
  border-block: 1px solid var(--line);
  overflow: hidden;
}
.section--app .eyebrow { background: var(--wa-soft); border-color: #c4eed3; color: #0c7a43; }

.app { display: grid; grid-template-columns: .9fr 1.1fr; gap: 64px; align-items: center; }

/* phone frame */
.app__phone-wrap { position: relative; display: flex; justify-content: center; }
.phone {
  width: min(360px, 100%);
  background: #0d2436; border-radius: 46px; padding: 12px;
  box-shadow: 0 44px 90px -34px rgba(13, 36, 54, .45), inset 0 0 0 2px rgba(255, 255, 255, .07);
  position: relative;
}
.phone__notch {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  width: 116px; height: 26px; background: #0d2436; border-radius: 0 0 18px 18px; z-index: 3;
}
.phone__screen {
  border-radius: 36px; overflow: hidden;
  background: #f0ece4;
  display: flex; flex-direction: column;
  min-height: 620px;
}
.wa__header {
  display: flex; align-items: center; gap: 12px;
  background: var(--wa-deep); color: #fff;
  padding: 34px 18px 13px;
}
.wa__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  font-weight: 800; font-size: .8rem; color: #fff; flex: none;
}
.wa__title strong { display: block; font-size: .95rem; }
.wa__title span { display: flex; align-items: center; gap: 6px; font-size: .72rem; opacity: .85; }
.wa__online { width: 7px; height: 7px; border-radius: 50%; background: #6ef79f; display: inline-block; }

.wa__chat { flex: 1; padding: 16px 14px 22px; display: flex; flex-direction: column; gap: 10px; }
.wa__day { align-self: center; padding: 4px 13px; border-radius: 999px; background: rgba(13, 36, 54, .07); font-size: .68rem; font-weight: 700; color: #5d6b76; margin-bottom: 4px; }

.wa__msg {
  max-width: 88%; padding: 11px 13px; border-radius: 14px;
  font-size: .83rem; line-height: 1.5; position: relative;
  box-shadow: var(--sh-xs);
}
.wa__msg p { margin: 0; color: #22313d; }
.wa__msg--in { align-self: flex-start; background: #fff; border-top-left-radius: 4px; }
.wa__msg--out { align-self: flex-end; background: #d9fdd3; border-top-right-radius: 4px; }
.wa__msg--out p { font-weight: 700; }
.wa__msg--paid { background: #fff; border-left: 4px solid var(--wa); }
.wa__label { display: block; font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--wa-deep); margin-bottom: 5px; }
.wa__note {
  display: block; margin-top: 8px; padding: 8px 10px; border-radius: 9px;
  background: var(--wa-soft); font-size: .74rem; color: #21633c; line-height: 1.45;
}
.wa__sub { font-size: .73rem; color: #6a7883; font-weight: 500; }
.wa__time { display: block; text-align: right; font-size: .64rem; color: #93a1ab; margin-top: 5px; }
.wa__ticks { font-style: normal; color: #53bdeb; letter-spacing: -.12em; }

.wa__actions { display: flex; gap: 7px; align-self: flex-start; max-width: 88%; flex-wrap: wrap; }
.wa__btn {
  padding: 8px 14px; border-radius: 999px;
  background: #fff; border: 1.5px solid #d5e0e5;
  font-size: .78rem; font-weight: 800; color: #22313d;
  box-shadow: var(--sh-xs); cursor: default;
}
.wa__btn--ok { background: var(--wa); border-color: var(--wa); color: #08361c; }
.wa__btn--no { color: #b3364c; }

/* chat entrance animation */
.wa-step { opacity: 0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.wa-step.is-on { opacity: 1; transform: none; }

/* floating badges around the phone */
.app__float {
  position: absolute; display: flex; align-items: center; gap: 11px;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--sh-md); animation: float 6s ease-in-out infinite;
  z-index: 4;
}
.app__floatic { font-size: 1.3rem; }
.app__float strong { display: block; font-size: .82rem; color: var(--ink); font-family: var(--font-display); }
.app__float span { font-size: .72rem; color: var(--muted); }
.app__float--ai { top: 9%; left: -6%; }
.app__float--time { bottom: 7%; right: -7%; animation-delay: -3s; }

/* app copy side */
.app__copy h3 { font-size: 1.4rem; margin-bottom: 22px; }
.app__steps { display: flex; flex-direction: column; gap: 18px; margin-bottom: 30px; }
.app__steps li { display: flex; gap: 15px; align-items: flex-start; }
.app__stepno {
  flex: none; width: 36px; height: 36px; border-radius: 12px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, var(--wa), #16a34a);
  color: #fff; font-weight: 800;
  box-shadow: 0 10px 22px -10px rgba(22, 163, 74, .55);
}
.app__steps strong { display: block; font-family: var(--font-display); color: var(--ink); font-size: 1rem; margin-bottom: 3px; }
.app__steps p { margin: 0; font-size: .9rem; }

.app__ai {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px; box-shadow: var(--sh-sm);
  margin-bottom: 28px;
}
.app__aitag {
  display: inline-block; padding: 6px 14px; border-radius: 999px;
  background: linear-gradient(90deg, #eef4ff, #f0faff);
  border: 1px solid #d3e3f8; color: #1e5bb8;
  font-size: .78rem; font-weight: 800; margin-bottom: 18px;
}
.app__aigrid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.aicard { display: flex; gap: 11px; align-items: flex-start; }
.aicard > span { font-size: 1.25rem; line-height: 1.3; }
.aicard strong { display: block; font-size: .88rem; color: var(--ink); font-family: var(--font-display); margin-bottom: 2px; }
.aicard p { margin: 0; font-size: .8rem; }

.app__stores { display: flex; gap: 13px; flex-wrap: wrap; }
.storebtn {
  display: inline-flex; align-items: center; gap: 11px;
  padding: 11px 20px; border-radius: 15px;
  background: var(--ink); color: #fff;
  transition: transform .2s, box-shadow .25s;
}
.storebtn:hover { transform: translateY(-2px); box-shadow: var(--sh-md); }
.storebtn em { display: block; font-style: normal; font-size: .64rem; opacity: .75; letter-spacing: .04em; text-transform: uppercase; }
.storebtn strong { display: block; font-family: var(--font-display); font-size: .98rem; color: #fff; line-height: 1.2; }

/* ============================================================
   TOOLS
   ============================================================ */
.tools { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.tool {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 22px;
  box-shadow: var(--sh-xs);
  transition: transform .25s ease, box-shadow .25s ease;
}
.tool:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.tool h4 { font-size: 1.02rem; margin: 16px 0 6px; }
.tool p { margin: 0; font-size: .86rem; }
.tool__mock {
  height: 120px; border-radius: var(--r-md);
  background: var(--tint); border: 1px solid var(--line);
  display: grid; place-items: center; padding: 14px; overflow: hidden;
}

.sync { display: flex; align-items: center; gap: 7px; flex-wrap: wrap; justify-content: center; }
.sync__chip { padding: 6px 11px; border-radius: 999px; background: #fff; border: 1px solid var(--line-2); font-size: .7rem; font-weight: 800; color: var(--ink-2); }
.sync__chip--vm { background: var(--primary); border-color: var(--primary); color: #fff; }
.sync__link { display: flex; gap: 3px; }
.sync__link i { width: 5px; height: 5px; border-radius: 50%; background: var(--primary); opacity: .35; animation: flowdot 1.4s infinite; }
.sync__link i:nth-child(2) { animation-delay: .3s; }

.wapp { background: #fff; border: 1px solid #c9f0d6; border-left: 4px solid var(--wa); border-radius: 13px; padding: 11px 14px; width: 100%; box-shadow: var(--sh-xs); }
.wapp__head { display: block; font-size: .66rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: #0c7a43; margin-bottom: 3px; }
.wapp strong { display: block; font-size: .82rem; color: var(--ink); font-family: var(--font-text); }
.wapp__body { font-size: .74rem; color: var(--body); }

.prange { width: 100%; }
.prange__label { display: block; font-size: .68rem; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; color: var(--muted); margin-bottom: 9px; }
.prange__bar { height: 10px; border-radius: 99px; background: #e6eef0; position: relative; margin-bottom: 9px; }
.prange__win { position: absolute; left: 34%; width: 38%; top: 0; bottom: 0; border-radius: 99px; background: linear-gradient(90deg, #34d399, var(--primary)); }
.prange__vals { display: flex; justify-content: center; gap: 7px; font-size: .84rem; }
.prange__vals b { color: var(--primary-deep); }
.prange__vals em { color: var(--muted); font-style: normal; }

.region { text-align: center; }
.region__tag { display: inline-block; padding: 3px 11px; border-radius: 999px; background: var(--sky-soft); color: #0369a1; font-size: .66rem; font-weight: 800; margin-bottom: 7px; }
.region strong { display: block; font-size: .95rem; color: var(--ink); }
.region__stat { font-size: .8rem; color: var(--body); }
.region__stat b { color: var(--primary-deep); }

/* ============================================================
   PAYMENTS
   ============================================================ */
.section--pay {
  background:
    radial-gradient(900px 460px at 88% 20%, rgba(14, 165, 233, .1), transparent 60%),
    linear-gradient(180deg, #fbfdfe, #f2f8fb);
  border-block: 1px solid var(--line);
}
.payment { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.payment h2 { font-size: clamp(1.7rem, 3vw, 2.35rem); }
.paylist { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 26px; }
.paylist li {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-sm); padding: 13px 17px;
  font-size: .9rem; box-shadow: var(--sh-xs);
}
.paylist b { color: var(--primary-deep); }

.payment__globe { display: flex; flex-direction: column; align-items: center; gap: 30px; }
.orbit { position: relative; width: min(340px, 78vw); aspect-ratio: 1; }
.orbit__ring { position: absolute; border-radius: 50%; border: 1.5px dashed #b9dbe8; }
.orbit__ring--1 { inset: 0; }
.orbit__ring--2 { inset: 15%; border-color: #a8dcd3; }
.orbit__sats { position: absolute; inset: 0; animation: spin 26s linear infinite; }
.orbit__sat { position: absolute; top: 50%; left: 50%; transform: rotate(var(--a)) translateX(calc(min(340px, 78vw) / 2)) rotate(calc(-1 * var(--a))); }
.orbit__sat i {
  display: grid; place-items: center;
  width: 42px; height: 42px; border-radius: 50%; margin: -21px;
  background: #fff; border: 1px solid var(--line);
  font-style: normal; font-weight: 800; color: var(--primary-deep);
  box-shadow: var(--sh-sm);
}
.orbit__center {
  position: absolute; inset: 31%; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center; text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  color: #fff; box-shadow: var(--sh-teal); padding: 10px;
}
.orbit__center strong { font-family: var(--font-display); font-size: .95rem; color: #fff; }
.orbit__center span { font-size: .7rem; opacity: .9; }
.payment__cards { display: flex; gap: 9px; flex-wrap: wrap; justify-content: center; }
.paycard {
  padding: 8px 16px; border-radius: 10px;
  background: #fff; border: 1px solid var(--line);
  font-size: .76rem; font-weight: 800; color: var(--ink-2);
  box-shadow: var(--sh-xs); letter-spacing: .03em;
}

/* ============================================================
   GUIDE
   ============================================================ */
.guide { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.guide__card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px;
  box-shadow: var(--sh-xs); position: relative;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s;
}
.guide__card:hover { transform: translateY(-5px); box-shadow: var(--sh-md); border-color: #c8e9e3; }
.guide__no { font-family: var(--font-display); font-weight: 800; font-size: .85rem; color: var(--primary); background: var(--primary-tint); border: 1px solid #cdebe5; padding: 4px 11px; border-radius: 999px; }
.guide__card h4 { font-size: 1.05rem; margin: 15px 0 6px; }
.guide__card p { margin: 0; font-size: .88rem; }

/* ============================================================
   SORSAT / CALENDAR
   ============================================================ */
.sorsat { display: grid; grid-template-columns: 1.02fr .98fr; gap: 56px; align-items: center; }
.sorsat h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.sorsat__modes { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 28px; }
.mode {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 20px; box-shadow: var(--sh-xs);
  display: flex; flex-direction: column;
}
.mode--pro { border: 2px solid var(--gold); box-shadow: 0 22px 46px -20px rgba(217, 119, 6, .3); }
.mode__head { display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-bottom: 13px; }
.mode__badge { padding: 5px 13px; border-radius: 999px; background: var(--tint); border: 1px solid var(--line); font-size: .74rem; font-weight: 800; color: var(--ink-2); }
.mode__badge--gold { background: var(--gold-soft); border-color: #f0ddb0; color: #8a5a06; }
.mode__flag { font-size: .7rem; font-weight: 800; color: var(--gold-deep); }
.mode ul { display: flex; flex-direction: column; gap: 8px; flex: 1; }
.mode li { position: relative; padding-left: 21px; font-size: .84rem; }
.mode li::before { content: "•"; position: absolute; left: 6px; color: var(--primary); font-weight: 900; }
.mode__foot { margin-top: 15px; padding-top: 12px; border-top: 1px solid var(--line); font-size: .76rem; font-weight: 800; color: var(--muted); }
.mode__foot--pro { color: var(--gold-deep); }

.cal {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 24px;
  box-shadow: var(--sh-lg); position: relative;
}
.cal__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-bottom: 16px; }
.cal__head strong { font-family: var(--font-display); color: var(--ink); }
.cal__sub { display: block; font-size: .76rem; color: var(--muted); }
.cal__days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; margin-bottom: 6px; }
.cal__days span { text-align: center; font-size: .68rem; font-weight: 800; color: var(--muted); text-transform: uppercase; }
.cal__grid { display: grid; grid-template-columns: repeat(7, 1fr); gap: 6px; }
.cell {
  aspect-ratio: 1; border-radius: 10px;
  display: grid; place-items: center;
  font-size: .78rem; font-weight: 700;
  animation: cellin .4s both;
}
@keyframes cellin { from { opacity: 0; transform: scale(.7); } }
.cell.free { background: var(--tint); border: 1px solid var(--line); color: var(--body); }
.cell.hold { background: var(--gold-soft); border: 1px solid #f0ddb0; color: #8a5a06; }
.cell.sel { background: var(--sky-soft); border: 1px solid #a8d8f5; color: #0369a1; }
.cell.sold { background: var(--primary); border: 1px solid var(--primary-deep); color: #fff; }
.cell.confirmed { animation: pop .55s; }
@keyframes pop { 40% { transform: scale(1.22); } }

.cal__legend { display: flex; gap: 15px; flex-wrap: wrap; margin-top: 15px; font-size: .74rem; color: var(--body); }
.cal__legend span { display: inline-flex; align-items: center; gap: 6px; }
.d { width: 11px; height: 11px; border-radius: 4px; display: inline-block; }
.d--free { background: var(--tint); border: 1px solid var(--line-2); }
.d--hold { background: var(--gold-soft); border: 1px solid #f0ddb0; }
.d--sel { background: var(--sky-soft); border: 1px solid #a8d8f5; }
.d--sold { background: var(--primary); }

.cal__toast {
  position: absolute; left: 22px; right: 22px; bottom: 78px;
  display: flex; align-items: center; gap: 11px;
  background: var(--ink); color: #fff;
  border-radius: var(--r-md); padding: 12px 16px;
  box-shadow: var(--sh-lg);
  opacity: 0; transform: translateY(12px); pointer-events: none;
  transition: opacity .35s, transform .35s;
}
.cal__toast.show { opacity: 1; transform: none; }
.cal__toastic { width: 30px; height: 30px; border-radius: 50%; display: grid; place-items: center; background: var(--wa); color: #08361c; font-weight: 900; flex: none; }
.cal__toast strong { display: block; font-size: .84rem; font-family: var(--font-text); color: #fff; }
.cal__toast span { font-size: .74rem; opacity: .8; }

.cal__boost {
  margin-top: 16px; display: flex; align-items: center; justify-content: space-between;
  background: var(--gold-soft); border: 1px solid #f0ddb0;
  border-radius: var(--r-sm); padding: 11px 17px;
}
.cal__boost span { font-size: .8rem; font-weight: 700; color: #8a5a06; }
.cal__boost strong { font-family: var(--font-display); color: var(--gold-deep); }

/* ============================================================
   COMPARISON TABLE
   ============================================================ */
.ctable { max-width: 900px; margin: 0 auto; overflow-x: auto; border-radius: var(--r-lg); border: 1px solid var(--line); box-shadow: var(--sh-sm); background: #fff; }
.ctable table { width: 100%; border-collapse: collapse; font-size: .92rem; min-width: 620px; }
.ctable th, .ctable td { padding: 14px 20px; text-align: left; border-bottom: 1px solid var(--line); }
.ctable thead th { background: var(--tint); font-family: var(--font-display); font-size: .85rem; color: var(--ink); }
.ctable thead .ctable__us { background: var(--primary); color: #fff; }
.ctable tbody tr:last-child td { border-bottom: 0; }
.ctable tbody tr:hover td { background: #fafcfc; }
.ctable td.ok { color: var(--primary-deep); font-weight: 700; background: var(--primary-tint); }
.ctable td.no { color: #b3364c; }

/* ============================================================
   STEPS
   ============================================================ */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.step {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 26px 24px;
  box-shadow: var(--sh-xs); text-align: center;
  transition: transform .25s ease, box-shadow .25s ease;
}
.step:hover { transform: translateY(-5px); box-shadow: var(--sh-md); }
.step__n {
  display: inline-grid; place-items: center;
  width: 44px; height: 44px; border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--sky));
  color: #fff; font-family: var(--font-display); font-weight: 800; font-size: 1.05rem;
  box-shadow: var(--sh-teal); margin-bottom: 15px;
}
.step h4 { font-size: 1.02rem; margin-bottom: 6px; }
.step p { margin: 0; font-size: .86rem; }

/* ============================================================
   REFERRAL
   ============================================================ */
.refer {
  display: grid; grid-template-columns: 1.2fr auto auto; gap: 36px; align-items: center;
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 34px 40px;
  box-shadow: var(--sh-sm);
}
.refer h3 { font-size: 1.5rem; margin-bottom: 6px; }
.refer p { margin: 0; font-size: .93rem; }
.refer__steps { display: flex; gap: 22px; }
.refer__steps li { display: flex; flex-direction: column; align-items: center; gap: 8px; font-size: .78rem; font-weight: 700; color: var(--body); text-align: center; max-width: 96px; }
.refer__steps span {
  width: 34px; height: 34px; border-radius: 50%;
  display: grid; place-items: center;
  background: var(--primary-soft); color: var(--primary-ink); font-weight: 800;
}

/* ============================================================
   FAQ
   ============================================================ */
.faqwrap { max-width: 820px; }
.faq { display: flex; flex-direction: column; gap: 13px; }
.faq__item {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--r-md); overflow: hidden;
  box-shadow: var(--sh-xs); transition: border-color .25s, box-shadow .25s;
}
.faq__item[open] { border-color: #c8e9e3; box-shadow: var(--sh-sm); }
.faq__item summary {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-weight: 700; color: var(--ink); font-size: .98rem;
}
.faq__item summary::-webkit-details-marker { display: none; }
.faq__i { position: relative; width: 22px; height: 22px; flex: none; }
.faq__i::before, .faq__i::after {
  content: ""; position: absolute; inset: 0; margin: auto;
  background: var(--primary); border-radius: 2px; transition: transform .25s;
}
.faq__i::before { width: 13px; height: 2.5px; }
.faq__i::after { width: 2.5px; height: 13px; }
.faq__item[open] .faq__i::after { transform: rotate(90deg); }
.faq__item p { padding: 0 22px 20px; margin: 0; font-size: .92rem; }

/* ============================================================
   FINAL CTA
   ============================================================ */
.cta {
  margin: 40px 24px 0; border-radius: 34px;
  background:
    radial-gradient(700px 320px at 15% 0%, rgba(255, 255, 255, .16), transparent 60%),
    linear-gradient(130deg, #0f766e, #0d9488 55%, #0284c7);
  padding: 90px 0; text-align: center;
  position: relative; overflow: hidden;
}
.cta::after {
  content: ""; position: absolute; inset: 0;
  background: radial-gradient(520px 220px at 88% 100%, rgba(245, 158, 11, .28), transparent 65%);
  pointer-events: none;
}
.cta__inner { position: relative; z-index: 1; }
.cta h2 { color: #fff; font-size: clamp(1.85rem, 3.6vw, 2.7rem); }
.cta__hl { color: #fcd34d; }
.cta p { color: #ccecf5; max-width: 56ch; margin: 0 auto 30px; font-size: 1.04rem; }
.cta__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-bottom: 22px; }
.cta__fine { font-size: .8rem; color: rgba(255, 255, 255, .75); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer { padding: 72px 0 30px; }
.footer__grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 40px; border-bottom: 1px solid var(--line); }
.brand--foot .brand__mark { width: 34px; height: 34px; }
.footer__brand p { margin-top: 14px; font-size: .88rem; max-width: 34ch; }
.footer__col { display: flex; flex-direction: column; gap: 9px; }
.footer__col h5 { font-size: .8rem; text-transform: uppercase; letter-spacing: .08em; color: var(--muted); margin-bottom: 6px; }
.footer__col a { font-size: .9rem; color: var(--body); transition: color .2s; }
.footer__col a:hover { color: var(--primary-ink); }
.footer__bottom { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; padding-top: 24px; font-size: .8rem; color: var(--muted); }

/* ============================================================
   REVEAL ANIMATIONS
   ============================================================ */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s ease, transform .7s cubic-bezier(.22, 1, .36, 1); }
.reveal.in { opacity: 1; transform: none; }
.stagger > * { opacity: 0; transform: translateY(18px); transition: opacity .6s ease, transform .6s cubic-bezier(.22, 1, .36, 1); }
.stagger.in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
  .reveal, .stagger > *, .wa-step { opacity: 1; transform: none; }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1080px) {
  .hero__grid { grid-template-columns: 1fr; gap: 60px; }
  .hero__visual { max-width: 560px; margin: 0 auto; }
  .floatcard--a { right: 0; }
  .floatcard--b { left: 0; }
  .reklam__bento { grid-template-columns: 1fr 1fr; }
  .reklam__bento > .panel:last-child { grid-column: 1 / -1; }
  .flow { grid-template-columns: 1fr; }
  .flow__link { flex-direction: row; padding: 4px 0; }
  .flow__link em { display: none; }
  .dual { grid-template-columns: 1fr; }
  .dual__op { text-align: center; }
  .app { grid-template-columns: 1fr; gap: 70px; }
  .app__phone-wrap { order: 2; }
  .tools { grid-template-columns: 1fr 1fr; }
  .payment { grid-template-columns: 1fr; gap: 50px; }
  .sorsat { grid-template-columns: 1fr; gap: 50px; }
  .guide { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .founders__inner { grid-template-columns: 1fr; gap: 50px; }
  .refer { grid-template-columns: 1fr; text-align: center; justify-items: center; }
}

@media (max-width: 860px) {
  .nav__inner { gap: 12px; padding: 12px 16px; }
  .nav__links {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: min(320px, 84vw);
    background: #fff; box-shadow: var(--sh-lg);
    flex-direction: column; gap: 4px;
    padding: 90px 24px 24px;
    transform: translateX(100%); visibility: hidden;
    transition: transform .3s cubic-bezier(.22, 1, .36, 1), visibility .3s;
    z-index: 90; margin-left: 0;
  }
  .nav__links.is-open { transform: none; visibility: visible; }
  .nav__links a { font-size: 1.05rem; padding: 12px 16px; }
  .nav__cta { margin-left: auto; }
  .nav__cta .btn--ghost { display: none; }
  .nav__cta .btn { padding: 10px 18px; font-size: .88rem; }
  .nav__burger { display: flex; margin-left: 0; }
  .brand__mark { width: 34px; height: 34px; }
  .brand__name { font-size: 1.08rem; }

  /* hero yüzen kartları: bindirme yerine dash altında yan yana */
  .hero__visual { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
  .dash { grid-column: 1 / -1; }
  .floatcard { position: static; animation: none; }

  /* uygulama bölümü rozetleri: telefonun üstüne binmesin */
  .app__phone-wrap { flex-direction: column; align-items: center; gap: 12px; }
  .app__float { position: static; animation: none; }

  .statstrip { grid-template-columns: 1fr 1fr; }
  .statstrip > div:nth-child(odd) { border-left: 0; }
  .statstrip > div:nth-child(n+3) { border-top: 1px solid var(--line); }
  .compare2 { grid-template-columns: 1fr; }
  .compare2__vs { justify-self: center; margin: -6px 0; }
  .calc { grid-template-columns: 1fr; padding: 26px; }
  .plans { grid-template-columns: 1fr; }
  .journey { grid-template-columns: 1fr; }
  .reklam__bento { grid-template-columns: 1fr; }
  .app__aigrid { grid-template-columns: 1fr; }
  .app__float--ai { left: 0; }
  .app__float--time { right: 0; }
  .paylist { grid-template-columns: 1fr; }
}

@media (max-width: 560px) {
  .section { padding: 68px 0; }
  .hero { padding-top: 48px; }
  .hero__actions .btn { width: 100%; }
  .topbar { font-size: .78rem; }
  .topbar__inner { padding: 8px 16px; gap: 6px; }
  .sorsat__modes { grid-template-columns: 1fr; }
  .refer__steps { gap: 14px; }
  .cta { margin: 30px 12px 0; padding: 64px 24px; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .phone { border-radius: 38px; }
  .phone__screen { min-height: 560px; }
  /* döndürülmüş standart kart ekrandan taşmasın */
  .fpass--std { transform: rotate(3deg) translate(8px, -8px); }
  .founders__visual { padding-top: 10px; }
  .hero__visual { grid-template-columns: 1fr; }
}

/* ============================================================
   MOBILE HORIZONTAL SWIPE (scroll-snap carousels)
   ============================================================ */
@media (max-width: 860px) {
  .tools, .guide, .steps, .journey, .plans {
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    justify-content: start;
    gap: 14px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    margin-inline: -24px;
    padding-inline: 24px;
    padding-bottom: 18px;
    scroll-padding-inline: 24px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .tools::-webkit-scrollbar, .guide::-webkit-scrollbar, .steps::-webkit-scrollbar,
  .journey::-webkit-scrollbar, .plans::-webkit-scrollbar { display: none; }

  .tools > *, .guide > *, .steps > *, .journey > *, .plans > * {
    scroll-snap-align: center;
    width: min(76vw, 320px);
  }
  .plans > * { width: min(86vw, 360px); }
  .journey > * { width: min(80vw, 340px); }

  /* kaydırılınca kart gölgesi kesilmesin, hover kayması kapansın */
  .tool:hover, .guide__card:hover, .step:hover, .plan:hover { transform: none; }
  .plan--featured { transform: none; }
  .plans { padding-top: 18px; } /* "En avantajlı" şeridi kesilmesin */

  /* kaydırma ipucu: başlık altına küçük yönlendirme */
  .tools::after, .guide::after, .steps::after, .journey::after, .plans::after {
    content: ""; width: 1px; flex: none;
  }

  /* karşılaştırma tablosu: ilk sütun sabit kalsın */
  .ctable th:first-child, .ctable td:first-child {
    position: sticky; left: 0; z-index: 2;
    background: #fff;
    box-shadow: 6px 0 10px -8px rgba(13, 36, 54, .18);
  }
  .ctable thead th:first-child { background: var(--tint); z-index: 3; }
}

/* ============================================================
   COMPARISON TABLE → FEATURE CARDS (small screens)
   ============================================================ */
@media (max-width: 700px) {
  .ctable { overflow: visible; border: 0; box-shadow: none; background: transparent; border-radius: 0; }
  .ctable table { min-width: 0; width: 100%; display: block; }
  .ctable thead { display: none; }
  .ctable tbody { display: grid; gap: 12px; }
  .ctable tr {
    display: grid; grid-template-columns: 1fr 1fr;
    background: #fff; border: 1px solid var(--line);
    border-radius: var(--r-md); overflow: hidden;
    box-shadow: var(--sh-xs);
  }
  .ctable tbody tr:hover td { background: inherit; }
  .ctable td { border-bottom: 0; padding: 12px 16px; }
  .ctable td:first-child {
    grid-column: 1 / -1;
    position: static; box-shadow: none;
    font-family: var(--font-display); font-weight: 700; font-size: .9rem; color: var(--ink);
    background: var(--tint); border-bottom: 1px solid var(--line);
    padding: 11px 16px;
  }
  .ctable td.ok, .ctable td.no { font-size: .86rem; padding-top: 9px; }
  .ctable td.ok { background: var(--primary-tint); }
  .ctable td.no { background: #fff; border-left: 1px solid var(--line); }
  .ctable td.ok::before, .ctable td.no::before {
    display: block; font-size: .64rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .07em; margin-bottom: 2px;
  }
  .ctable td.ok::before { content: "VillaMarket"; color: var(--primary); }
  .ctable td.no::before { content: "Komisyonlu site"; color: var(--muted); }
}
