/* ════════════════════════════════════════════════════════
   KRENO — Landing Page CSS
   Design: Clean, white, editorial — inspired by Linear/Vercel
   Fonts: Bricolage Grotesque (headings) + DM Sans (body)
════════════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
  --primary:       #5850E8;
  --primary-dark:  #4740D4;
  --primary-light: #EEEDFD;
  --primary-mid:   #B5B0F5;
  --success:       #00C48C;
  --warning:       #F59E0B;
  --danger:        #EF4444;

  --text:         #0C0B1A;
  --text-2:       #4A4A6A;
  --text-muted:   #9898B5;
  --bg:           #FFFFFF;
  --bg-subtle:    #F8F8FC;
  --bg-muted:     #F1F1F8;
  --border:       #E5E5F0;
  --border-2:     #D0D0E8;

  --shadow-sm:  0 1px 3px rgba(12,11,26,.06), 0 1px 2px rgba(12,11,26,.04);
  --shadow:     0 4px 16px rgba(12,11,26,.08), 0 1px 4px rgba(12,11,26,.04);
  --shadow-lg:  0 12px 40px rgba(12,11,26,.12), 0 4px 12px rgba(12,11,26,.06);
  --shadow-xl:  0 24px 64px rgba(12,11,26,.16);

  --radius:     10px;
  --radius-lg:  16px;
  --radius-xl:  24px;
  --radius-full: 9999px;

  --font-head: 'Bricolage Grotesque', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;

  --max-w: 1200px;
  --nav-h: 64px;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul { list-style: none; }

/* ── Layout ── */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-head);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--text);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: var(--radius);
  transition: all .18s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 1px 4px rgba(88,80,232,.3);
}
.btn-primary:hover {
  background: var(--primary-dark);
  box-shadow: 0 4px 16px rgba(88,80,232,.35);
  transform: translateY(-1px);
}
.btn-primary:active { transform: translateY(0); }
.btn-outline {
  border: 1.5px solid var(--border-2);
  color: var(--text);
  background: var(--bg);
}
.btn-outline:hover {
  border-color: var(--primary);
  color: var(--primary);
  background: var(--primary-light);
}
.btn-ghost {
  color: var(--text-2);
  background: transparent;
}
.btn-ghost:hover {
  color: var(--primary);
  background: var(--primary-light);
}
.btn-white {
  background: #fff;
  color: var(--primary);
  font-weight: 600;
  box-shadow: 0 2px 12px rgba(0,0,0,.12);
}
.btn-white:hover {
  background: #f5f5ff;
  box-shadow: 0 4px 20px rgba(0,0,0,.18);
  transform: translateY(-1px);
}
.btn-sm  { font-size: 13.5px; padding: 7px 16px; }
.btn-lg  { font-size: 16px; padding: 13px 28px; border-radius: var(--radius-lg); }
.btn-full { width: 100%; justify-content: center; }

/* ── Tag / Badge ── */
.tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(88,80,232,.18);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  margin-bottom: 16px;
}

/* ── Section head ── */
.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-head h2 {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  margin-bottom: 16px;
  color: var(--text);
}
.section-head p {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
}
.section-head em { font-style: italic; color: var(--primary); }

/* ── Reveal animation ── */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity .5s ease, transform .5s ease;
}
.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ════════════════════════ NAVBAR ════════════════════════ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s, box-shadow .2s;
}
.nav-scrolled {
  border-color: var(--border);
  box-shadow: 0 1px 12px rgba(12,11,26,.06);
}
.nav-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  border-radius: 8px;
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-name {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.04em;
  color: var(--text);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  padding: 6px 12px;
  border-radius: 8px;
  transition: color .15s, background .15s;
}
.nav-links a:hover { color: var(--text); background: var(--bg-muted); }
.nav-login {
  border: 1px solid var(--border) !important;
}
.nav-login:hover { border-color: var(--border-2) !important; }
.nav-burger { display: none; flex-direction: column; gap: 5px; padding: 4px; margin-left: auto; }
.nav-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: all .25s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 2px;
  padding: 12px 20px 20px;
  background: #fff;
  border-top: 1px solid var(--border);
}
.nav-mobile a {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-2);
  padding: 10px 12px;
  border-radius: 8px;
}
.nav-mobile a:hover { background: var(--bg-muted); color: var(--text); }
.nav-mobile .btn { margin-top: 8px; }
.nav-mobile.open { display: flex; }

/* ════════════════════════ HERO ════════════════════════ */
.hero {
  position: relative;
  padding: calc(var(--nav-h) + 72px) 0 80px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}
.hero-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(88,80,232,.06) 1px, transparent 1px);
  background-size: 32px 32px;
}
.hero-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: .35;
}
.hero-blob-1 {
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(88,80,232,.18) 0%, transparent 70%);
  top: -100px; right: -100px;
}
.hero-blob-2 {
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(0,196,140,.12) 0%, transparent 70%);
  bottom: -50px; left: 5%;
}
.hero-wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid rgba(88,80,232,.2);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
  cursor: pointer;
  transition: background .15s;
}
.hero-badge:hover { background: rgba(88,80,232,.12); }
.badge-chip {
  background: var(--primary);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: 2px 8px;
  border-radius: 20px;
}
.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.04em;
  margin-bottom: 20px;
  color: var(--text);
}
.hero-title em {
  font-style: normal;
  color: var(--primary);
  position: relative;
}
.hero-title em::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--primary-mid));
  border-radius: 2px;
  opacity: .4;
}
.hero-sub {
  font-size: 17px;
  color: var(--text-2);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 520px;
}
.hero-sub strong { color: var(--text); }
.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.hero-proof {
  display: flex;
  align-items: center;
  gap: 12px;
}
.proof-avatars { display: flex; margin-right: 4px; }
.proof-avatars span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px; height: 32px;
  border-radius: 50%;
  border: 2.5px solid #fff;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  margin-left: -8px;
}
.proof-avatars span:first-child { margin-left: 0; }
.proof-text {
  font-size: 13.5px;
  color: var(--text-2);
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.proof-text strong { color: var(--text); font-weight: 600; }
.proof-stars { color: #f59e0b; font-size: 12px; }

/* ── Hero Mockup ── */
.hero-visual { position: relative; }
.mockup {
  background: #fff;
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-xl);
  overflow: visible;
  position: relative;
  animation: float 6s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
.mockup-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.mb-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.mb-url {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 0 8px;
}
.mockup-body { padding: 16px; }
.m-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.m-stat {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 10px 12px;
  text-align: center;
}
.m-stat-num {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 2px;
}
.m-stat-label { font-size: 10px; color: var(--text-muted); }
.m-chart-label { font-size: 11px; font-weight: 500; color: var(--text-2); margin-bottom: 8px; }
.m-chart {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  height: 60px;
  margin-bottom: 20px;
}
.m-bar {
  flex: 1;
  background: var(--bg-muted);
  border-radius: 4px 4px 0 0;
  position: relative;
}
.m-bar span {
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  color: var(--text-muted);
}
.m-bar-active { background: var(--primary) !important; }
.m-booking-row { display: flex; flex-direction: column; gap: 6px; }
.m-booking {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  font-size: 11.5px;
}
.m-booking-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }
.m-booking-name { font-weight: 600; color: var(--text); line-height: 1.3; }
.m-booking-svc  { font-size: 10px; color: var(--text-muted); }
.m-booking-price { margin-left: auto; font-weight: 600; color: var(--text); font-size: 11px; }
.mockup-notif {
  position: absolute;
  bottom: -20px; right: -24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: notif-in 1s ease forwards;
  animation-delay: .8s;
  opacity: 0;
}
.mockup-notif-2 {
  bottom: auto; top: 70px;
  right: auto; left: -28px;
  animation-delay: 1.4s;
}
@keyframes notif-in {
  from { opacity: 0; transform: scale(.9) translateY(6px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.notif-icon { font-size: 18px; flex-shrink: 0; }
.notif-text { display: flex; flex-direction: column; gap: 1px; }
.notif-text strong { font-size: 12px; font-weight: 600; color: var(--text); }
.notif-text span   { font-size: 11px; color: var(--text-muted); }

/* ════════════════════════ TRUST STRIP ════════════════════════ */
.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: var(--bg-subtle);
  padding: 16px 0;
}
.trust-inner {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-label {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-pills { display: flex; gap: 8px; flex-wrap: wrap; }
.trust-pills span {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-full);
  padding: 4px 14px;
}

/* ════════════════════════ STATS ════════════════════════ */
.stats-section { padding: 64px 0; }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.stat-block {
  background: var(--bg);
  padding: 32px 24px;
  text-align: center;
}
.stat-value {
  font-family: var(--font-head);
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--primary);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label { font-size: 14px; color: var(--text-2); }

/* ════════════════════════ FEATURES ════════════════════════ */
.features { padding: 96px 0; background: var(--bg-subtle); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-flow: dense;
  gap: 16px;
}

/* Base card */
.feat-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, transform .22s;
}
.feat-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  background: var(--accent, transparent);
  opacity: 0;
  transition: opacity .22s;
}
.feat-card:hover {
  border-color: var(--border-2);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}
.feat-card:hover::before { opacity: 1; }
.feat-large { grid-column: span 2; }

/* Accent colors */
.feat-accent-purple { --accent: #5850E8; }
.feat-accent-amber  { --accent: #f59e0b; }
.feat-accent-green  { --accent: #00C48C; }
.feat-accent-pink   { --accent: #ec4899; }
.feat-accent-violet { --accent: #8b5cf6; }
.feat-accent-cyan   { --accent: #06b6d4; }

/* Card top row: icon + badge */
.feat-card-top {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.feat-badge {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: var(--primary-light);
  border: 1px solid color-mix(in srgb, var(--primary) 20%, transparent);
  padding: 3px 9px;
  border-radius: var(--radius-full);
  letter-spacing: 0.01em;
}

/* Icon wrap */
.feat-icon-wrap {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 10px;
  background: color-mix(in srgb, var(--c) 10%, transparent);
  border: 1px solid color-mix(in srgb, var(--c) 18%, transparent);
  color: var(--c);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0;
}
/* When icon-wrap is standalone (not inside card-top) */
.feat-card > .feat-icon-wrap { margin-bottom: 16px; }

.feat-card h3 {
  font-size: 17px;
  font-weight: 700;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}
.feat-card p { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }
.feat-card p strong { color: var(--text); font-weight: 600; }

/* ── Big metric callout ── */
.feat-metric {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 20px 0 16px;
}
.feat-metric-value {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.feat-metric-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
}
.feat-metric-amber .feat-metric-value { color: #d97706; }
.feat-metric-green  .feat-metric-value { color: #059669; }

/* ── SMS bubble ── */
.feat-sms-bubble {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px 12px 12px 4px;
  padding: 10px 14px;
  margin-top: 4px;
}
.fsb-sender {
  font-size: 10px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 4px;
}
.fsb-text { font-size: 12.5px; color: var(--text-2); line-height: 1.5; }

/* ── Stripe badge ── */
.feat-stripe-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-muted);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  margin-top: 12px;
}

/* ── Booking UI mockup ── */
.feat-booking-ui {
  margin-top: 20px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 16px;
}
.fbu-label {
  font-size: 10.5px;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 8px;
}
.fbu-services { display: flex; flex-direction: column; gap: 6px; }
.fbu-service {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 12px;
  cursor: default;
  transition: border-color .15s;
}
.fbu-active {
  color: var(--text);
  border-color: var(--primary);
  background: var(--primary-light);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--primary) 8%, transparent);
}
.fbu-price { font-size: 12px; color: var(--text-muted); font-weight: 400; }
.fbu-active .fbu-price { color: var(--primary); font-weight: 500; }
.fbu-slots { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 8px; }
.fbu-slot {
  font-size: 12.5px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 6px 11px;
  cursor: default;
}
.fbu-slot-active {
  color: #fff;
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(88,80,232,.3);
}
.fbu-slot-taken {
  color: var(--text-muted);
  text-decoration: line-through;
  opacity: 0.5;
}

/* ── Stats UI mockup ── */
.feat-stats-ui { margin-top: 20px; }
.fsu-numbers {
  display: flex;
  gap: 24px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.fsu-kpi {}
.fsu-val {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
  line-height: 1.1;
}
.fsu-val span { font-size: 14px; font-weight: 600; color: var(--text-2); }
.fsu-lbl { font-size: 11.5px; color: var(--text-muted); margin-top: 2px; }
.fsu-kpi-up .fsu-val { color: #059669; }
.fsu-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 68px;
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 10px 12px 0;
}
.fsu-bar {
  flex: 1;
  height: var(--h);
  background: var(--bg-muted);
  border-radius: 4px 4px 0 0;
  transition: background .2s;
}
.fsu-bar-hi { background: var(--primary); opacity: 0.9; }

/* ── Team UI mockup ── */
.feat-team-ui { margin-top: 20px; }
.ftu-avatars {
  display: flex;
  margin-bottom: 10px;
}
.ftu-av {
  width: 36px; height: 36px;
  border-radius: 50%;
  background-color: var(--av, var(--bg-muted));
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--bg);
  margin-left: -8px;
  position: relative;
}
.ftu-av:first-child { margin-left: 0; }
.ftu-av-more {
  background-color: var(--bg-muted);
  color: var(--text-2);
  font-size: 11px;
}
.ftu-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 5px 10px;
  border-radius: var(--radius-full);
  margin-top: 12px;
}
.ftu-badge::before {
  content: '';
  width: 7px; height: 7px;
  background: #22c55e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ── Site vitrine preview ── */
.feat-site-preview { margin-top: 20px; }
.fsp-browser {
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  background: var(--bg);
  box-shadow: var(--shadow-sm);
}
.fsp-chrome {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--bg-muted);
  border-bottom: 1px solid var(--border);
}
.fsp-dots { display: flex; gap: 5px; }
.fsp-dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: var(--border-2);
}
.fsp-dots span:nth-child(1) { background: #ef4444; }
.fsp-dots span:nth-child(2) { background: #f59e0b; }
.fsp-dots span:nth-child(3) { background: #22c55e; }
.fsp-url {
  font-size: 11px;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 3px 10px;
  flex: 1;
  text-align: center;
}
.fsp-url strong { color: var(--text-2); }
.fsp-body {}
.fsp-hero {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: linear-gradient(120deg, #5850E8 0%, #8b5cf6 100%);
}
.fsp-salon-name {
  font-size: 14px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.01em;
}
.fsp-cta-btn {
  font-size: 11px;
  font-weight: 600;
  color: var(--primary);
  background: #fff;
  padding: 5px 12px;
  border-radius: var(--radius-full);
}
.fsp-svcs { padding: 10px 16px; display: flex; flex-direction: column; gap: 0; }
.fsp-svc {
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--text-2);
  padding: 7px 0;
  border-bottom: 1px solid var(--border);
}
.fsp-svc:last-child { border-bottom: none; }
.fsp-svc span:last-child { font-weight: 600; color: var(--text); }

/* ════════════════════════ PREVIEW ════════════════════════ */
.preview-section { padding: 80px 0; }
.preview-tabs {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 28px;
  flex-wrap: wrap;
}
.ptab {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-2);
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  padding: 8px 18px;
  border-radius: var(--radius-full);
  transition: all .15s;
}
.ptab:hover { background: var(--bg-muted); color: var(--text); }
.ptab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 2px 8px rgba(88,80,232,.3);
}
.preview-screen {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.pscreen-chrome {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 12px 16px;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
}
.chrome-dot { width: 10px; height: 10px; border-radius: 50%; flex-shrink: 0; }
.chrome-url {
  flex: 1;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-radius: 6px;
  padding: 3px 10px;
  margin: 0 8px;
}
.pscreen-body { display: flex; height: 420px; overflow: hidden; }

.ps-sidebar {
  width: 52px;
  background: var(--bg-subtle);
  border-right: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 14px 0;
  gap: 8px;
  flex-shrink: 0;
}
.ps-logo {
  width: 28px; height: 28px;
  background: var(--primary);
  border-radius: 7px;
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}
.ps-nav-item {
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background .15s;
}
.ps-nav-item:hover { background: var(--bg-muted); }
.ps-nav-item.active { background: var(--primary-light); }

.ps-main { flex: 1; padding: 14px; overflow-y: auto; }
.ps-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.ps-page-title { font-size: 13px; color: var(--text-2); }
.ps-page-title strong { color: var(--text); }
.ps-avatar {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-bottom: 14px;
}
.ps-stat {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 8px 10px;
}
.ps-stat-accent { background: var(--primary-light); border-color: rgba(88,80,232,.2); }
.ps-stat-val {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  line-height: 1.2;
}
.ps-stat-lbl { font-size: 10px; color: var(--text-muted); }
.ps-chart-area { margin-bottom: 14px; }
.ps-chart-title { font-size: 11.5px; font-weight: 600; color: var(--text-2); margin-bottom: 8px; }
.ps-chart-bars { display: flex; align-items: flex-end; gap: 4px; height: 80px; }
.ps-bar { flex: 1; background: var(--bg-muted); border-radius: 4px 4px 0 0; position: relative; }
.ps-bar span { position: absolute; bottom: -14px; left: 50%; transform: translateX(-50%); font-size: 8px; color: var(--text-muted); }
.ps-bar-active { background: var(--primary); }
.ps-booking-row {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 8px;
  border-radius: 6px;
  margin-bottom: 3px;
}
.ps-booking-row:hover { background: var(--bg-subtle); }
.ps-booking-time { font-size: 10px; font-weight: 600; color: var(--text-2); width: 36px; flex-shrink: 0; }
.ps-booking-name { font-size: 11px; font-weight: 600; color: var(--text); flex: 1; }
.ps-booking-svc  { font-size: 10px; color: var(--text-muted); flex: 1; }
.ps-booking-badge {
  font-size: 9.5px;
  font-weight: 600;
  padding: 2px 7px;
  border-radius: 10px;
  flex-shrink: 0;
}
.ps-booking-badge.ok   { background: rgba(0,196,140,.12); color: #00965f; }
.ps-booking-badge.warn { background: rgba(245,158,11,.12); color: #b07100; }

.ps-booking-page { flex-direction: column; overflow-y: auto; }
.ps-salon-header { display: flex; align-items: center; gap: 12px; padding: 16px; border-bottom: 1px solid var(--border); }
.ps-salon-avatar {
  width: 40px; height: 40px;
  border-radius: 10px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.ps-salon-name { font-weight: 700; font-size: 14px; color: var(--text); }
.ps-salon-sub  { font-size: 11px; color: var(--text-muted); }
.ps-services-list { padding: 12px 16px; }
.ps-svc-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-bottom: 6px;
  cursor: pointer;
  transition: all .15s;
}
.ps-svc-item:hover { border-color: var(--primary); background: var(--primary-light); }
.ps-svc-selected { border-color: var(--primary); background: var(--primary-light); }
.ps-svc-info strong { font-size: 12px; font-weight: 600; color: var(--text); display: block; }
.ps-svc-info span   { font-size: 10px; color: var(--text-muted); }
.ps-svc-price { font-size: 12px; font-weight: 600; color: var(--text); display: flex; align-items: center; gap: 4px; }
.ps-badge-pay { font-size: 9px; background: rgba(88,80,232,.1); color: var(--primary); padding: 2px 5px; border-radius: 5px; }
.ps-time-slots { display: flex; flex-wrap: wrap; gap: 6px; padding: 8px 16px 12px; }
.ps-slot {
  font-size: 11px; font-weight: 500;
  padding: 5px 10px;
  border: 1px solid var(--border);
  border-radius: 6px;
  cursor: pointer;
  color: var(--text-2);
  transition: all .15s;
}
.ps-slot:hover  { border-color: var(--primary); color: var(--primary); background: var(--primary-light); }
.ps-slot-sel    { border-color: var(--primary); color: #fff; background: var(--primary); }
.ps-slot-taken  { background: var(--bg-muted); color: var(--text-muted); cursor: not-allowed; text-decoration: line-through; }
.ps-book-btn {
  margin: 0 16px 16px;
  background: var(--primary);
  color: #fff;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  padding: 12px;
  border-radius: 8px;
  cursor: pointer;
}
.ps-book-btn:hover { background: var(--primary-dark); }

.ps-agenda-grid { display: flex; height: 300px; overflow-y: auto; }
.ps-time-col { width: 36px; flex-shrink: 0; border-right: 1px solid var(--border); }
.ps-time-col div { font-size: 9px; color: var(--text-muted); height: 50px; display: flex; align-items: flex-start; padding: 2px 4px 0; }
.ps-day-col { flex: 1; position: relative; }
.ps-appt {
  position: absolute;
  left: 6px; right: 6px;
  border-left: 3px solid;
  border-radius: 0 6px 6px 0;
  padding: 4px 6px;
}
.ps-appt-name { font-size: 10px; font-weight: 600; color: var(--text); }
.ps-appt-svc  { font-size: 9px; color: var(--text-muted); }

/* ════════════════════════ VS COMPETITORS ════════════════════════ */
.vs-section { padding: 80px 0; background: var(--bg-subtle); }

.roi-card {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 24px;
  align-items: center;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 40px;
  margin-bottom: 48px;
}
.roi-scenario { text-align: center; }
.roi-label { font-size: 13px; font-weight: 500; color: var(--text-muted); margin-bottom: 10px; }
.roi-calc { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.roi-num {
  font-family: var(--font-head);
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}
.roi-num.roi-bad  { color: var(--danger); }
.roi-num.roi-good { color: var(--success); }
.roi-desc { font-size: 13px; color: var(--text-2); max-width: 200px; }
.roi-vs {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 800;
  color: var(--text-muted);
  background: var(--bg-muted);
  border-radius: 50%;
  width: 44px; height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.roi-good-side .roi-label { color: var(--success); font-weight: 600; }

.comp-table {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  margin-bottom: 36px;
}
.comp-head {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr;
  background: var(--bg-subtle);
  border-bottom: 1px solid var(--border);
  padding: 14px 20px;
  gap: 8px;
}
.comp-head .comp-col {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-2);
  justify-content: center;
}
.comp-feature-col { justify-content: flex-start !important; }
.comp-col-kreno { color: var(--primary) !important; }
.comp-row {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1fr 1fr 1fr;
  padding: 13px 20px;
  gap: 8px;
  border-bottom: 1px solid var(--border);
  align-items: center;
  transition: background .1s;
}
.comp-row:last-child { border-bottom: none; }
.comp-row:hover { background: var(--bg-subtle); }
.comp-feature { font-size: 14px; font-weight: 500; color: var(--text); }
.comp-col { display: flex; align-items: center; justify-content: center; }
.ci {
  display: inline-block;
  font-size: 12.5px;
  font-weight: 600;
  text-align: center;
  padding: 3px 8px;
  border-radius: 6px;
}
.ci-ok      { color: var(--success); background: rgba(0,196,140,.1); }
.ci-no      { color: var(--danger);  background: rgba(239,68,68,.08); }
.ci-best    { color: var(--primary); background: var(--primary-light); font-weight: 700; }
.ci-bad     { color: var(--danger);  background: rgba(239,68,68,.08); font-size: 11px; }
.ci-neutral { color: var(--text-muted); background: var(--bg-muted); }

.vs-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-align: center;
}
.vs-note { font-size: 13px; color: var(--text-muted); }

/* ════════════════════════ STEPS ════════════════════════ */
.steps-section { padding: 80px 0; }
.steps-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.step { position: relative; }
.step-num {
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--border-2);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-bottom: 4px;
}
.step-line {
  width: 40px; height: 3px;
  background: var(--primary);
  border-radius: 2px;
  margin-bottom: 16px;
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.step p { font-size: 14.5px; color: var(--text-2); line-height: 1.65; }

/* ════════════════════════ PRICING ════════════════════════ */
.pricing { padding: 80px 0; background: var(--bg-subtle); }
.plans {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 24px;
}
.plan {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 32px 28px;
  position: relative;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.plan:hover { border-color: var(--border-2); box-shadow: var(--shadow); transform: translateY(-3px); }
.plan-featured {
  border-color: var(--primary);
  border-width: 2px;
  box-shadow: 0 0 0 1px var(--primary-light), var(--shadow-lg);
}
.plan-featured:hover {
  border-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 0 0 1px var(--primary-light), var(--shadow-xl);
}
.plan-badge {
  position: absolute;
  top: -13px; left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: var(--radius-full);
  white-space: nowrap;
}
.plan-name { font-family: var(--font-head); font-size: 20px; font-weight: 700; margin-bottom: 16px; }
.plan-price { display: flex; align-items: flex-end; gap: 3px; margin-bottom: 12px; }
.plan-cur { font-size: 15px; font-weight: 600; color: var(--text-2); padding-bottom: 6px; }
.plan-amt { font-family: var(--font-head); font-size: 52px; font-weight: 800; letter-spacing: -0.04em; line-height: 1; color: var(--text); }
.plan-per { font-size: 14px; color: var(--text-muted); padding-bottom: 6px; }
.plan-desc { font-size: 13.5px; color: var(--text-2); margin-bottom: 20px; line-height: 1.5; }
.plan-feats { margin-bottom: 24px; display: flex; flex-direction: column; gap: 9px; }
.plan-feats li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--text-2); }
.plan-feats .ok { color: var(--success); font-size: 12px; font-weight: 700; }
.plan-feats .no { color: var(--border-2); font-size: 12px; }
.pricing-note { text-align: center; font-size: 13px; color: var(--text-muted); }

/* ════════════════════════ TESTIMONIALS ════════════════════════ */
.testis-section { padding: 80px 0; }
.testis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.testi {
  background: var(--bg-subtle);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: border-color .2s, box-shadow .2s, transform .2s;
}
.testi:hover { border-color: var(--border-2); box-shadow: var(--shadow); transform: translateY(-2px); }
.testi-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 1px; }
.testi p { font-size: 14.5px; color: var(--text-2); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.testi-av {
  width: 38px; height: 38px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 15px; flex-shrink: 0;
}
.testi-author strong { font-size: 14px; font-weight: 600; color: var(--text); display: block; }
.testi-author span   { font-size: 12px; color: var(--text-muted); }

/* ════════════════════════ FAQ ════════════════════════ */
.faq-section { padding: 80px 0; background: var(--bg-subtle); }
.faq-wrap { max-width: 720px; margin: 0 auto; }
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color .15s;
}
.faq-item:hover { border-color: var(--border-2); }
.faq-item[open] { border-color: var(--primary); }
.faq-item summary {
  font-size: 15px;
  font-weight: 600;
  color: var(--text);
  padding: 18px 20px;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 20px; font-weight: 300; color: var(--text-muted); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; color: var(--primary); }
.faq-item p { font-size: 14.5px; color: var(--text-2); line-height: 1.7; padding: 0 20px 18px; }
.faq-more { text-align: center; margin-top: 28px; }
.faq-more a {
  font-size: 14px; font-weight: 500; color: var(--primary);
  border-bottom: 1px solid rgba(88,80,232,.3);
  padding-bottom: 1px;
}
.faq-more a:hover { border-color: var(--primary); }

/* ════════════════════════ CTA ════════════════════════ */
.cta-section {
  background: var(--primary);
  padding: 96px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}
.cta-section::after {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.08) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; text-align: center; }
.cta-badge {
  display: inline-block;
  background: rgba(255,255,255,.15);
  border: 1px solid rgba(255,255,255,.25);
  color: rgba(255,255,255,.9);
  font-size: 13px; font-weight: 500;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  margin-bottom: 24px;
}
.cta-inner h2 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #fff;
  margin-bottom: 16px;
  letter-spacing: -0.04em;
}
.cta-inner p { font-size: 17px; color: rgba(255,255,255,.75); margin-bottom: 36px; }
.cta-actions { display: flex; align-items: center; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-link {
  font-size: 14px; font-weight: 500; color: rgba(255,255,255,.75);
  border-bottom: 1px solid rgba(255,255,255,.3);
  padding-bottom: 1px;
}
.cta-link:hover { color: #fff; border-color: rgba(255,255,255,.7); }

/* ════════════════════════ FOOTER ════════════════════════ */
.footer { background: var(--text); color: rgba(255,255,255,.6); padding: 56px 0 40px; }
.footer-inner { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand .footer-logo { display: flex; align-items: center; gap: 8px; margin-bottom: 12px; }
.footer-brand .logo-name { color: #fff; font-size: 18px; }
.footer-brand p { font-size: 13.5px; line-height: 1.6; margin-bottom: 20px; color: rgba(255,255,255,.5); }
.footer-legal { font-size: 12px; color: rgba(255,255,255,.3); }
.footer-col h4 {
  font-family: var(--font-head);
  font-size: 13px; font-weight: 700;
  color: rgba(255,255,255,.8);
  letter-spacing: .02em;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.footer-col a { display: block; font-size: 13.5px; color: rgba(255,255,255,.5); padding: 4px 0; transition: color .15s; }
.footer-col a:hover { color: rgba(255,255,255,.9); }

/* ════════════════════════ MODAL ════════════════════════ */
.modal-overlay {
  position: fixed; inset: 0;
  background: rgba(12,11,26,.6);
  backdrop-filter: blur(6px);
  z-index: 200;
  display: flex; align-items: center; justify-content: center;
  padding: 20px;
}
.modal-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 32px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 32px 80px rgba(12,11,26,.25);
  border: 1px solid var(--border);
}
.modal-close {
  position: absolute; top: 16px; right: 16px;
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--bg-muted);
  color: var(--text-2);
  font-size: 14px;
  display: flex; align-items: center; justify-content: center;
  transition: background .15s;
}
.modal-close:hover { background: var(--border); }
.modal-head { text-align: center; margin-bottom: 24px; }
.modal-logo-wrap { display: flex; justify-content: center; margin-bottom: 14px; }
.modal-logo-wrap .logo-mark { width: 40px; height: 40px; font-size: 20px; border-radius: 10px; }
.modal-head h2 { font-size: 22px; font-weight: 800; margin-bottom: 4px; }

.sector-card {
  display: flex; flex-direction: column;
  align-items: center; gap: 6px;
  padding: 16px 12px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  cursor: pointer;
  transition: all .15s;
  text-align: center;
}
.sector-card:hover { border-color: var(--primary); background: var(--primary-light); }
.sector-card:active { transform: scale(.97); }
.sector-icon { font-size: 24px; }
.sector-label { font-size: 12.5px; font-weight: 500; color: var(--text-2); }

.mform-group { margin-bottom: 14px; }
.mform-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.mform-group label { display: block; font-size: 13px; font-weight: 500; color: var(--text); margin-bottom: 5px; }
.mform-group input {
  width: 100%; padding: 10px 14px;
  font-size: 14px; font-family: var(--font-body);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  color: var(--text); background: var(--bg);
  outline: none;
  transition: border-color .15s, box-shadow .15s;
}
.mform-group input::placeholder { color: var(--text-muted); }
.mform-group input:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(88,80,232,.1); }
.modal-note { text-align: center; font-size: 12px; color: var(--text-muted); margin-top: 10px; }

/* ════════════════════════ TOAST ════════════════════════ */
.toast {
  position: fixed; bottom: 24px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: #fff;
  font-size: 14px; font-weight: 500;
  padding: 12px 20px; border-radius: var(--radius-full);
  box-shadow: var(--shadow-lg); z-index: 300;
  display: flex; align-items: center; gap: 8px;
  white-space: nowrap;
}

/* ════════════════════════ RESPONSIVE ════════════════════════ */
@media (max-width: 1024px) {
  .hero-wrap { grid-template-columns: 1fr; gap: 48px; }
  .hero-text { max-width: 600px; }
  .hero-visual { order: -1; max-width: 460px; margin: 0 auto; }
  .feat-grid { grid-template-columns: repeat(2, 1fr); }
  .feat-large { grid-column: span 2; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-inner { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: span 2; }
  .comp-head, .comp-row { grid-template-columns: 2fr 1fr 1fr; }
  .comp-head .comp-col:nth-child(5),
  .comp-row .comp-col:nth-child(5) { display: none; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .hero { padding-top: calc(var(--nav-h) + 48px); }
  .hero-title { font-size: 38px; }
  .hero-sub { font-size: 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); border-radius: var(--radius); }
  .feat-grid { grid-template-columns: 1fr; }
  .feat-large { grid-column: span 1; }
  .steps-row { grid-template-columns: 1fr; gap: 32px; }
  .plans { grid-template-columns: 1fr; }
  .testis-grid { grid-template-columns: 1fr; }
  .roi-card { grid-template-columns: 1fr; gap: 16px; padding: 24px; }
  .roi-vs { margin: 0 auto; }
  .comp-head, .comp-row { grid-template-columns: 1.5fr 1fr 1fr; padding: 10px 14px; }
  .comp-head .comp-col:nth-child(4),
  .comp-row .comp-col:nth-child(4) { display: none; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .pscreen-body { height: 360px; }
  .mockup-notif, .mockup-notif-2 { display: none; }
  .wrap { padding: 0 16px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 32px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .plan { padding: 24px 20px; }
  .plan-amt { font-size: 44px; }
  .comp-head, .comp-row { grid-template-columns: 1.5fr 1fr; }
  .comp-head .comp-col:nth-child(4),
  .comp-row .comp-col:nth-child(4) { display: none; }
  .trust-inner { flex-direction: column; align-items: flex-start; gap: 10px; }
  .mform-row { grid-template-columns: 1fr; }
  .roi-num { font-size: 32px; }
}

::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: var(--border-2); border-radius: 3px; }
::selection { background: var(--primary-light); color: var(--primary); }
