/* ============================================================
   BLAJOBER — Design System
   Premium SaaS / Marketplace landing
   Palette from the mobile app: cyan #06B6D4 · ink #0F172A
   ============================================================ */

/* ---------- Tokens ---------- */
:root {
  --c-primary: #06B6D4;
  --c-primary-600: #0891B2;
  --c-primary-700: #0E7490;
  --c-primary-050: #ECFEFF;
  --c-primary-100: #CFFAFE;
  --c-accent: #8B5CF6;
  --c-accent-050: #F5F3FF;
  --c-warm: #FF806C;
  --c-warm-050: #FFF4F1;
  --c-gold: #F59E0B;
  --c-green: #10B981;
  --c-ink: #0F172A;
  --c-slate-700: #334155;
  --c-slate-500: #64748B;
  --c-slate-400: #94A3B8;
  --c-border: #E2E8F0;
  --c-border-soft: #EDF2F7;
  --c-bg: #FFFFFF;
  --c-bg-soft: #F8FAFC;
  --c-bg-tint: #F0FDFF;

  --grad-primary: linear-gradient(135deg, #22D3EE 0%, #06B6D4 45%, #0891B2 100%);
  --grad-ink: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
  --grad-hero: radial-gradient(1200px 600px at 85% -10%, rgba(6,182,212,.14), transparent 60%),
               radial-gradient(900px 500px at -10% 25%, rgba(139,92,246,.10), transparent 55%),
               linear-gradient(180deg, #FDFEFF 0%, #F6FBFD 100%);

  --ff-head: "Plus Jakarta Sans", "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;
  --ff-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --fs-hero: clamp(2.4rem, 5.2vw, 4.2rem);
  --fs-h2: clamp(1.75rem, 3.2vw, 2.6rem);
  --fs-h3: clamp(1.2rem, 1.8vw, 1.45rem);
  --fs-lead: clamp(1.02rem, 1.4vw, 1.2rem);

  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;

  --shadow-sm: 0 1px 2px rgba(15,23,42,.05), 0 2px 8px rgba(15,23,42,.05);
  --shadow-md: 0 6px 18px rgba(15,23,42,.07), 0 2px 6px rgba(15,23,42,.05);
  --shadow-lg: 0 24px 60px -12px rgba(15,23,42,.16);
  --shadow-primary: 0 10px 30px -8px rgba(6,182,212,.45);
  --shadow-phone: 0 40px 80px -24px rgba(15,23,42,.35);

  --container: 1200px;
  --header-h: 72px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- Reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 16px); }
body {
  margin: 0;
  font-family: var(--ff-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--c-slate-700);
  background: var(--c-bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--c-primary-600); text-decoration: none; }
h1,h2,h3,h4,h5 { font-family: var(--ff-head); color: var(--c-ink); line-height: 1.18; margin: 0 0 .6em; font-weight: 800; letter-spacing: -.02em; }
p { margin: 0 0 1em; }
ul { padding: 0; margin: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }
input, textarea, select { font-family: inherit; font-size: 1rem; }
::selection { background: var(--c-primary-100); color: var(--c-primary-700); }

.icon { width: 1.25em; height: 1.25em; flex: none; vertical-align: -0.28em; }

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

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55em;
  font-weight: 600; font-size: 1rem; line-height: 1;
  padding: 1em 1.7em; border-radius: 999px; border: 1.5px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s, color .25s, border-color .25s;
  white-space: nowrap;
}
.btn:active { transform: translateY(1px) scale(.99); }
.btn-primary { background: var(--grad-primary); color: #fff; box-shadow: var(--shadow-primary); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 16px 36px -8px rgba(6,182,212,.55); color: #fff; }
.btn-dark { background: var(--c-ink); color: #fff; }
.btn-dark:hover { background: #1E293B; transform: translateY(-2px); color: #fff; }
.btn-ghost { background: transparent; color: var(--c-ink); border-color: var(--c-border); }
.btn-ghost:hover { border-color: var(--c-primary); color: var(--c-primary-600); background: var(--c-primary-050); }
.btn-white { background: #fff; color: var(--c-primary-700); box-shadow: var(--shadow-md); }
.btn-white:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-sm { padding: .72em 1.3em; font-size: .92rem; }
.btn-lg { padding: 1.15em 2.1em; font-size: 1.06rem; }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1EBE5A; color: #fff; transform: translateY(-2px); }

/* ---------- Store badges ---------- */
.store-badges { display: flex; gap: 12px; flex-wrap: wrap; }
.store-badge {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--c-ink); color: #fff; border-radius: 14px;
  padding: 9px 18px 9px 14px; min-width: 168px;
  border: 1px solid rgba(255,255,255,.12);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.store-badge:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); color: #fff; }
.store-badge .icon { width: 26px; height: 26px; }
.store-badge span { display: flex; flex-direction: column; line-height: 1.2; }
.store-badge small { font-size: .66rem; opacity: .75; letter-spacing: .02em; }
.store-badge strong { font-size: 1.02rem; font-family: var(--ff-head); }
.store-badges-sm .store-badge { min-width: 148px; padding: 7px 14px 7px 11px; }
.store-badges-sm .store-badge strong { font-size: .9rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto; z-index: 100;
  height: var(--header-h);
  background: rgba(255,255,255,.82);
  -webkit-backdrop-filter: blur(14px); backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s, background .3s, box-shadow .3s;
}
.site-header.scrolled { border-bottom-color: var(--c-border-soft); box-shadow: 0 8px 30px -12px rgba(15,23,42,.08); background: rgba(255,255,255,.92); }
.nav-wrap { display: flex; align-items: center; gap: 28px; height: var(--header-h); }
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand-mark { width: 34px; height: 34px; }
.brand-name { font-family: var(--ff-head); font-weight: 800; font-size: 1.32rem; color: var(--c-ink); letter-spacing: -.02em; }
.brand-name::after { content: ""; }
.main-nav { margin-inline: auto; }
.main-nav ul { display: flex; gap: 4px; }
.main-nav a {
  display: block; padding: .55em .85em; border-radius: 999px;
  color: var(--c-slate-700); font-weight: 500; font-size: .95rem;
  transition: color .2s, background .2s; white-space: nowrap;
}
.main-nav a:hover { color: var(--c-primary-600); background: var(--c-primary-050); }
.main-nav a.active { color: var(--c-primary-700); background: var(--c-primary-050); font-weight: 600; }
.nav-actions { display: flex; gap: 10px; align-items: center; }
.nav-toggle { display: none; background: none; border: 0; color: var(--c-ink); padding: 8px; border-radius: 10px; }
.nav-toggle .icon { width: 26px; height: 26px; }

.mobile-nav {
  display: none; position: fixed; top: var(--header-h); left: 0; right: 0;
  background: #fff; border-bottom: 1px solid var(--c-border-soft);
  padding: 18px 24px 26px; box-shadow: var(--shadow-lg);
  max-height: calc(100dvh - var(--header-h)); overflow-y: auto;
}
.mobile-nav.open { display: block; animation: slideDown .3s var(--ease); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 16px; }
.mobile-nav a { display: block; padding: .8em 1em; border-radius: 12px; color: var(--c-ink); font-weight: 600; }
.mobile-nav a:hover, .mobile-nav a.active { background: var(--c-primary-050); color: var(--c-primary-700); }
.mobile-nav-cta { display: flex; flex-direction: column; gap: 10px; }
@keyframes slideDown { from { opacity: 0; transform: translateY(-12px);} to { opacity: 1; transform: none; } }

/* ---------- Sections ---------- */
main { padding-top: var(--header-h); }
.section { padding: clamp(64px, 9vw, 110px) 0; position: relative; }
.section-soft { background: var(--c-bg-soft); }
.section-tint { background: linear-gradient(180deg, #F0FDFF 0%, #F8FAFC 100%); }
.section-head { max-width: 720px; margin: 0 auto clamp(40px, 6vw, 64px); text-align: center; }
.section-head h2 { font-size: var(--fs-h2); }
.section-head p { font-size: var(--fs-lead); color: var(--c-slate-500); }
.eyebrow {
  display: inline-flex; align-items: center; gap: .5em;
  font-size: .82rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
  color: var(--c-primary-600); background: var(--c-primary-050);
  border: 1px solid var(--c-primary-100);
  padding: .45em 1.1em; border-radius: 999px; margin-bottom: 18px;
}
.text-grad { background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; }

/* ---------- Reveal animations (hidden state only when JS is active) ---------- */
html.js .reveal { opacity: 0; transform: translateY(26px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
html.js .reveal.visible { opacity: 1; transform: none; }
html.js .reveal[data-delay="1"] { transition-delay: .1s; }
html.js .reveal[data-delay="2"] { transition-delay: .2s; }
html.js .reveal[data-delay="3"] { transition-delay: .3s; }
html.js .reveal[data-delay="4"] { transition-delay: .4s; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  html.js .reveal { opacity: 1; transform: none; transition: none; }
  * { animation-duration: .001s !important; animation-iteration-count: 1 !important; }
}

/* ---------- Phone mockup ---------- */
.phone {
  position: relative; width: 258px; flex: none;
  background: #0B1220; border-radius: 40px; padding: 10px;
  box-shadow: var(--shadow-phone), inset 0 0 0 2px rgba(255,255,255,.06);
}
.phone::before {
  content: ""; position: absolute; top: 20px; left: 50%; transform: translateX(-50%);
  width: 74px; height: 8px; border-radius: 8px; background: #0B1220; z-index: 2;
}
.phone img { border-radius: 31px; width: 100%; aspect-ratio: 9/19.2; object-fit: cover; object-position: top; background: #fff; }
.phone-sm { width: 212px; border-radius: 34px; padding: 8px; }
.phone-sm img { border-radius: 27px; }
.phone-sm::before { width: 60px; height: 7px; top: 16px; }
.phone-lg { width: 292px; }

/* ---------- HERO ---------- */
.hero { background: var(--grad-hero); overflow: hidden; position: relative; padding: clamp(48px, 7vw, 88px) 0 clamp(56px, 8vw, 96px); }
.hero-grid { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(32px, 5vw, 64px); align-items: center; }
.hero h1 { font-size: var(--fs-hero); margin-bottom: .5em; }
.hero .lead { font-size: var(--fs-lead); color: var(--c-slate-500); max-width: 34em; margin-bottom: 1.8em; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 26px; }
.hero-badges { margin-bottom: 34px; }
.hero-trust { display: flex; flex-wrap: wrap; gap: 22px; align-items: center; }
.trust-item { display: inline-flex; align-items: center; gap: 9px; font-size: .92rem; font-weight: 600; color: var(--c-slate-700); }
.trust-item .icon { color: var(--c-primary-600); width: 20px; height: 20px; }

.hero-visual { position: relative; display: flex; justify-content: center; align-items: center; min-height: 560px; }
.hero-visual .phone { z-index: 3; animation: floatA 7s ease-in-out infinite; }
.hero-visual .phone-back {
  position: absolute; z-index: 2; right: max(0px, calc(50% - 258px));
  top: 60px; transform: rotate(8deg);
  animation: floatB 8s ease-in-out 1s infinite;
}
@keyframes floatA { 0%,100% { transform: translateY(0);} 50% { transform: translateY(-14px);} }
@keyframes floatB { 0%,100% { transform: rotate(8deg) translateY(0);} 50% { transform: rotate(8deg) translateY(-18px);} }

.float-chip {
  position: absolute; z-index: 4;
  display: flex; align-items: center; gap: 10px;
  background: rgba(255,255,255,.9); -webkit-backdrop-filter: blur(8px); backdrop-filter: blur(8px);
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 16px; padding: 10px 16px;
  box-shadow: var(--shadow-md);
  font-size: .86rem; font-weight: 600; color: var(--c-ink);
  animation: floatA 6s ease-in-out infinite;
}
.float-chip .icon { width: 30px; height: 30px; padding: 6px; border-radius: 10px; color: #fff; }
.float-chip small { display: block; font-weight: 500; color: var(--c-slate-500); }
.chip-1 { top: 8%; left: 0; animation-delay: .4s; }
.chip-2 { bottom: 18%; left: -4%; animation-delay: 1.2s; }
.chip-3 { top: 26%; right: -2%; animation-delay: .8s; }
.chip-4 { bottom: 6%; right: 4%; animation-delay: 1.6s; }
.chip-teal .icon { background: var(--grad-primary); }
.chip-purple .icon { background: linear-gradient(135deg,#A78BFA,#7C3AED); }
.chip-warm .icon { background: linear-gradient(135deg,#FDA48F,#F97360); }
.chip-green .icon { background: linear-gradient(135deg,#34D399,#059669); }

.hero-blob { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; pointer-events: none; }
.blob-1 { width: 420px; height: 420px; background: #A5F3FC; top: -6%; right: -4%; }
.blob-2 { width: 340px; height: 340px; background: #DDD6FE; bottom: -10%; left: 24%; opacity: .4; }

/* ---------- Stats ---------- */
.stats-band { background: var(--grad-ink); color: #fff; padding: clamp(40px, 5vw, 64px) 0; }
.stats-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; text-align: center; }
.stat-value { font-family: var(--ff-head); font-weight: 800; font-size: clamp(1.8rem, 3.4vw, 2.7rem); letter-spacing: -.02em; background: linear-gradient(120deg,#67E8F9,#22D3EE 60%,#A5F3FC); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-label { color: #94A3B8; font-size: .92rem; font-weight: 500; margin-top: 4px; }

/* ---------- Category cards ---------- */
.cat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cat-card {
  background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg);
  padding: 26px 22px; text-align: center;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s;
  display: block;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--c-primary-100); }
.cat-icon {
  width: 58px; height: 58px; margin: 0 auto 14px; border-radius: 18px;
  display: grid; place-items: center;
  transition: transform .3s var(--ease);
}
.cat-card:hover .cat-icon { transform: scale(1.1) rotate(-4deg); }
.cat-icon .icon { width: 27px; height: 27px; }
.cat-card h3 { font-size: 1.05rem; margin-bottom: 4px; }
.cat-card p { font-size: .85rem; color: var(--c-slate-400); margin: 0; }
.ci-teal { background: var(--c-primary-050); color: var(--c-primary-600); }
.ci-purple { background: var(--c-accent-050); color: var(--c-accent); }
.ci-warm { background: var(--c-warm-050); color: #F97360; }
.ci-green { background: #ECFDF5; color: #059669; }
.ci-gold { background: #FFFBEB; color: #D97706; }
.ci-blue { background: #EFF6FF; color: #2563EB; }
.ci-pink { background: #FDF2F8; color: #DB2777; }
.ci-slate { background: #F1F5F9; color: #475569; }

/* ---------- App showcase carousel ---------- */
.showcase { overflow: hidden; }
.showcase-track {
  display: flex; gap: 34px; padding: 24px 8px 40px;
  overflow-x: auto; scroll-snap-type: x mandatory;
  scrollbar-width: none; -ms-overflow-style: none;
  cursor: grab;
}
.showcase-track::-webkit-scrollbar { display: none; }
.showcase-track.dragging { cursor: grabbing; scroll-snap-type: none; }
.showcase-item { scroll-snap-align: center; text-align: center; flex: none; }
.showcase-item .phone { margin: 0 auto 18px; transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.showcase-item:hover .phone { transform: translateY(-10px); }
.showcase-item h3 { font-size: 1.02rem; margin-bottom: 2px; }
.showcase-item p { font-size: .85rem; color: var(--c-slate-400); max-width: 220px; margin: 0 auto; }
.showcase-nav { display: flex; justify-content: center; gap: 12px; }
.showcase-btn {
  width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--c-border);
  background: #fff; color: var(--c-ink); display: grid; place-items: center;
  transition: all .25s var(--ease);
}
.showcase-btn:hover { background: var(--c-primary); border-color: var(--c-primary); color: #fff; box-shadow: var(--shadow-primary); }
.showcase-btn .icon { width: 20px; height: 20px; }
.showcase-btn.prev .icon { transform: rotate(180deg); }

/* ---------- Feature cards ---------- */
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.feat-card {
  background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg);
  padding: 28px 24px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.feat-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.feat-icon {
  width: 50px; height: 50px; border-radius: 15px; display: grid; place-items: center;
  background: var(--grad-primary); color: #fff; margin-bottom: 16px;
  box-shadow: 0 8px 20px -6px rgba(6,182,212,.5);
}
.feat-icon .icon { width: 24px; height: 24px; }
.feat-card h3 { font-size: 1.06rem; margin-bottom: 6px; }
.feat-card p { font-size: .9rem; color: var(--c-slate-500); margin: 0; }

/* ---------- Steps ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; counter-reset: step; }
.steps::before {
  content: ""; position: absolute; top: 44px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--c-primary-100) 0 10px, transparent 10px 20px);
}
.step { text-align: center; position: relative; padding: 0 8px; }
.step-dot {
  width: 88px; height: 88px; margin: 0 auto 20px; border-radius: 50%;
  background: #fff; border: 1.5px solid var(--c-border-soft);
  display: grid; place-items: center; position: relative;
  box-shadow: var(--shadow-md);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.step:hover .step-dot { transform: scale(1.08); box-shadow: var(--shadow-lg); }
.step-dot .icon { width: 34px; height: 34px; color: var(--c-primary-600); }
.step-num {
  position: absolute; bottom: -6px; right: -2px;
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-primary); color: #fff;
  font-family: var(--ff-head); font-weight: 800; font-size: .88rem;
  display: grid; place-items: center; border: 3px solid #fff;
}
.step h3 { font-size: 1.08rem; margin-bottom: 6px; }
.step p { font-size: .9rem; color: var(--c-slate-500); }

/* ---------- Why cards ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  border-radius: var(--radius-lg); padding: 30px 26px;
  background: #fff; border: 1px solid var(--c-border-soft);
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.why-card::before {
  content: ""; position: absolute; inset: 0 0 auto; height: 3px;
  background: var(--grad-primary); opacity: 0; transition: opacity .3s;
}
.why-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.why-card:hover::before { opacity: 1; }
.why-card .icon { width: 32px; height: 32px; color: var(--c-primary-600); margin-bottom: 14px; }
.why-card h3 { font-size: 1.05rem; }
.why-card p { font-size: .9rem; color: var(--c-slate-500); margin: 0; }

/* ---------- Pro section ---------- */
.pro-section { background: var(--grad-ink); color: #CBD5E1; overflow: hidden; }
.pro-grid { display: grid; grid-template-columns: 1fr .85fr; gap: clamp(40px, 6vw, 80px); align-items: center; }
.pro-section h2 { color: #fff; font-size: var(--fs-h2); }
.pro-section .eyebrow { background: rgba(6,182,212,.12); border-color: rgba(6,182,212,.3); color: #67E8F9; }
.pro-benefits { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 22px; margin: 28px 0 34px; }
.pro-benefit { display: flex; gap: 12px; align-items: flex-start; font-size: .95rem; }
.pro-benefit .icon { color: #22D3EE; width: 21px; height: 21px; margin-top: 2px; }
.pro-benefit strong { color: #fff; display: block; font-family: var(--ff-head); font-weight: 700; }
.pro-benefit span { color: #94A3B8; font-size: .87rem; }
.pro-visual { position: relative; display: flex; justify-content: center; }
.pro-visual .phone { animation: floatA 7s ease-in-out infinite; }
.pro-visual .glow { position: absolute; inset: 10% -10%; background: radial-gradient(closest-side, rgba(6,182,212,.25), transparent); filter: blur(30px); }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testi-card {
  background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg);
  padding: 28px; display: flex; flex-direction: column; gap: 16px;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.testi-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.testi-card > .icon { width: 30px; height: 30px; color: var(--c-primary-100); }
.testi-stars { display: flex; gap: 3px; color: var(--c-gold); }
.testi-stars .icon { width: 17px; height: 17px; }
.testi-text { font-size: .96rem; color: var(--c-slate-700); margin: 0; flex: 1; }
.testi-person { display: flex; align-items: center; gap: 13px; }
.testi-avatar {
  width: 46px; height: 46px; border-radius: 50%; color: #fff; flex: none;
  display: grid; place-items: center; font-weight: 700; font-family: var(--ff-head); font-size: .95rem;
}
.testi-person strong { display: block; color: var(--c-ink); font-family: var(--ff-head); font-size: .95rem; }
.testi-person span { font-size: .82rem; color: var(--c-slate-400); }
.av-1 { background: linear-gradient(135deg,#22D3EE,#0891B2); }
.av-2 { background: linear-gradient(135deg,#A78BFA,#7C3AED); }
.av-3 { background: linear-gradient(135deg,#FDA48F,#F97360); }
.av-4 { background: linear-gradient(135deg,#34D399,#059669); }
.av-5 { background: linear-gradient(135deg,#FBBF24,#D97706); }
.av-6 { background: linear-gradient(135deg,#60A5FA,#2563EB); }

/* ---------- Pricing ---------- */
.pricing-toggle {
  display: inline-flex; background: #EEF3F8; border-radius: 999px; padding: 5px; gap: 4px; margin-bottom: 44px;
}
.pricing-toggle button {
  border: 0; background: transparent; padding: .65em 1.6em; border-radius: 999px;
  font-weight: 600; color: var(--c-slate-500); transition: all .25s var(--ease); font-size: .95rem;
}
.pricing-toggle button.active { background: #fff; color: var(--c-ink); box-shadow: var(--shadow-sm); }
.pricing-toggle .save-tag { background: #D1FAE5; color: #047857; font-size: .72rem; font-weight: 700; padding: .2em .6em; border-radius: 999px; margin-left: .5em; }

.price-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; align-items: stretch; }
.price-card {
  background: #fff; border: 1.5px solid var(--c-border-soft); border-radius: var(--radius-lg);
  padding: 30px 26px; display: flex; flex-direction: column;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  position: relative;
}
.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.price-card.featured {
  border-color: var(--c-primary); box-shadow: 0 24px 60px -16px rgba(6,182,212,.35);
  background: linear-gradient(180deg, #F0FDFF 0%, #fff 30%);
}
.price-pop {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--grad-primary); color: #fff; font-size: .74rem; font-weight: 700;
  padding: .4em 1.2em; border-radius: 999px; letter-spacing: .04em; white-space: nowrap;
  box-shadow: var(--shadow-primary);
}
.price-name { font-size: 1.1rem; margin-bottom: 2px; }
.price-desc { font-size: .85rem; color: var(--c-slate-400); margin-bottom: 18px; }
.price-value { font-family: var(--ff-head); font-weight: 800; font-size: 2.4rem; color: var(--c-ink); letter-spacing: -.03em; }
.price-value small { font-size: .95rem; font-weight: 600; color: var(--c-slate-400); letter-spacing: 0; }
.price-was { font-size: .88rem; color: var(--c-slate-400); text-decoration: line-through; margin-left: 6px; }
.price-save { display: inline-block; margin: 6px 0 0; font-size: .78rem; font-weight: 700; color: #047857; background: #D1FAE5; border-radius: 999px; padding: .25em .8em; }
.price-feats { margin: 22px 0 26px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.price-feats li { display: flex; gap: 10px; font-size: .9rem; align-items: flex-start; }
.price-feats .icon { width: 18px; height: 18px; color: var(--c-primary-600); margin-top: 3px; }
.price-feats li.off { color: var(--c-slate-400); }
.price-feats li.off .icon { color: #CBD5E1; }

.compare-wrap { overflow-x: auto; border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg); background: #fff; }
.compare { width: 100%; border-collapse: collapse; min-width: 680px; font-size: .92rem; }
.compare th, .compare td { padding: 14px 18px; text-align: center; border-bottom: 1px solid var(--c-border-soft); }
.compare th:first-child, .compare td:first-child { text-align: left; font-weight: 500; color: var(--c-slate-700); }
.compare thead th { font-family: var(--ff-head); font-weight: 700; color: var(--c-ink); font-size: .98rem; background: var(--c-bg-soft); }
.compare thead th.hl { color: var(--c-primary-700); background: var(--c-primary-050); }
.compare td.hl { background: #F7FEFF; }
.compare .icon { width: 19px; height: 19px; color: var(--c-primary-600); }
.compare .icon.no { color: #CBD5E1; }
.compare tr:last-child td { border-bottom: 0; }

/* ---------- FAQ ---------- */
.faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius); overflow: hidden; transition: box-shadow .3s; }
.faq-item[open] { box-shadow: var(--shadow-md); border-color: var(--c-primary-100); }
.faq-item summary {
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 19px 24px; cursor: pointer; list-style: none;
  font-family: var(--ff-head); font-weight: 700; color: var(--c-ink); font-size: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .icon { width: 21px; height: 21px; color: var(--c-slate-400); transition: transform .3s var(--ease); flex: none; }
.faq-item[open] summary .icon { transform: rotate(180deg); color: var(--c-primary-600); }
.faq-item .faq-body { padding: 0 24px 20px; color: var(--c-slate-500); font-size: .95rem; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(32px, 5vw, 56px); align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 14px; }
.contact-line {
  display: flex; gap: 16px; align-items: center;
  background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius);
  padding: 18px 20px; transition: all .25s var(--ease);
}
.contact-line:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-line .icon { width: 42px; height: 42px; padding: 10px; border-radius: 13px; background: var(--c-primary-050); color: var(--c-primary-600); flex: none; }
.contact-line strong { display: block; color: var(--c-ink); font-family: var(--ff-head); font-size: .95rem; }
.contact-line span, .contact-line a { font-size: .9rem; color: var(--c-slate-500); }
.contact-form {
  background: #fff; border: 1px solid var(--c-border-soft); border-radius: var(--radius-lg);
  padding: clamp(24px, 4vw, 40px); box-shadow: var(--shadow-md);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-field { margin-bottom: 16px; }
.form-field label { display: block; font-size: .86rem; font-weight: 600; color: var(--c-ink); margin-bottom: 6px; }
.form-field input, .form-field textarea, .form-field select {
  width: 100%; border: 1.5px solid var(--c-border); border-radius: 12px;
  padding: .8em 1em; font-size: .95rem; color: var(--c-ink);
  transition: border-color .2s, box-shadow .2s; background: var(--c-bg-soft);
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none; border-color: var(--c-primary); box-shadow: 0 0 0 4px rgba(6,182,212,.12); background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.map-embed { border: 0; width: 100%; height: 320px; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); margin-top: 24px; }

/* ---------- Final CTA ---------- */
.cta-banner {
  background: var(--grad-primary); border-radius: var(--radius-xl);
  padding: clamp(40px, 6vw, 72px); position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; align-items: center;
  color: #fff;
}
.cta-banner::before, .cta-banner::after {
  content: ""; position: absolute; border-radius: 50%; background: rgba(255,255,255,.12);
}
.cta-banner::before { width: 340px; height: 340px; top: -160px; right: -80px; }
.cta-banner::after { width: 220px; height: 220px; bottom: -120px; left: 8%; }
.cta-banner h2 { color: #fff; font-size: clamp(1.7rem, 3vw, 2.4rem); }
.cta-banner p { color: rgba(255,255,255,.85); font-size: 1.05rem; }
.cta-banner .store-badges { position: relative; z-index: 1; }
.cta-banner .btn-white { border: 0; }
.cta-phone { position: relative; z-index: 1; display: flex; justify-content: center; }
.cta-phone .phone { transform: rotate(6deg); }

/* ---------- Footer ---------- */
.site-footer { background: #0B1220; color: #94A3B8; padding: clamp(48px, 7vw, 72px) 0 32px; font-size: .92rem; }
.footer-top { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1.4fr; gap: 36px; padding-bottom: 44px; border-bottom: 1px solid rgba(148,163,184,.14); }
.footer-brand p { margin-top: 16px; max-width: 30em; font-size: .9rem; }
.footer-brand .brand-name { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 18px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 11px; display: grid; place-items: center;
  background: rgba(148,163,184,.1); color: #CBD5E1; transition: all .25s var(--ease);
}
.footer-social a:hover { background: var(--c-primary); color: #fff; transform: translateY(-3px); }
.footer-social .icon { width: 18px; height: 18px; }
.footer-col h4 { color: #fff; font-size: .95rem; margin-bottom: 16px; }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a { color: #94A3B8; transition: color .2s; }
.footer-col a:hover { color: #67E8F9; }
.footer-news p { font-size: .85rem; }
.newsletter { display: flex; gap: 8px; margin: 12px 0 18px; }
.newsletter input {
  flex: 1; min-width: 0; background: rgba(148,163,184,.1); border: 1px solid rgba(148,163,184,.2);
  border-radius: 12px; padding: .7em 1em; color: #fff; font-size: .9rem;
}
.newsletter input::placeholder { color: #64748B; }
.newsletter input:focus { outline: none; border-color: var(--c-primary); }
.newsletter .btn { padding: .7em .9em; }
.footer-legal { padding-top: 26px; display: flex; flex-direction: column; gap: 14px; }
.footer-legal ul { display: flex; flex-wrap: wrap; gap: 8px 22px; }
.footer-legal a { color: #64748B; font-size: .84rem; }
.footer-legal a:hover { color: #67E8F9; }
.footer-legal p { font-size: .84rem; color: #475569; margin: 0; }

/* ---------- Sub-pages (hero + legal layout) ---------- */
.page-hero {
  background: var(--grad-hero); padding: clamp(48px, 7vw, 80px) 0; text-align: center;
}
.page-hero h1 { font-size: clamp(2rem, 4vw, 3.1rem); }
.page-hero p { font-size: var(--fs-lead); color: var(--c-slate-500); max-width: 40em; margin-inline: auto; }
.breadcrumb { font-size: .85rem; color: var(--c-slate-400); margin-bottom: 18px; }
.breadcrumb a { color: var(--c-primary-600); }

.legal-layout { display: grid; grid-template-columns: 260px 1fr; gap: 48px; align-items: start; }
.legal-toc {
  position: sticky; top: calc(var(--header-h) + 24px);
  background: var(--c-bg-soft); border: 1px solid var(--c-border-soft); border-radius: var(--radius);
  padding: 22px;
}
.legal-toc h4 { font-size: .82rem; text-transform: uppercase; letter-spacing: .06em; color: var(--c-slate-400); margin-bottom: 12px; }
.legal-toc ul { display: flex; flex-direction: column; gap: 4px; }
.legal-toc a { display: block; font-size: .88rem; color: var(--c-slate-500); padding: .4em .7em; border-radius: 8px; }
.legal-toc a:hover { background: var(--c-primary-050); color: var(--c-primary-700); }
.legal-body h2 { font-size: 1.5rem; margin-top: 2.2em; scroll-margin-top: calc(var(--header-h) + 20px); }
.legal-body h2:first-child { margin-top: 0; }
.legal-body h3 { font-size: 1.15rem; margin-top: 1.6em; }
.legal-body ul { list-style: disc; padding-left: 1.4em; margin-bottom: 1em; display: block; }
.legal-body li { margin-bottom: .4em; }
.legal-meta { font-size: .88rem; color: var(--c-slate-400); background: var(--c-bg-soft); border: 1px solid var(--c-border-soft); border-radius: 12px; padding: 12px 18px; display: inline-flex; gap: 8px; align-items: center; margin-bottom: 28px; }
.notice {
  border-left: 3px solid var(--c-primary); background: var(--c-primary-050);
  border-radius: 0 12px 12px 0; padding: 16px 20px; margin: 20px 0; font-size: .93rem;
}
.notice.warn { border-color: var(--c-gold); background: #FFFBEB; }
.notice.danger { border-color: #EF4444; background: #FEF2F2; }

/* ---------- 404 ---------- */
.error-hero { min-height: calc(100dvh - var(--header-h)); display: grid; place-items: center; text-align: center; background: var(--grad-hero); padding: 60px 24px; }
.error-code { font-family: var(--ff-head); font-weight: 800; font-size: clamp(6rem, 18vw, 11rem); line-height: 1; background: var(--grad-primary); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -.04em; }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 90;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; display: grid; place-items: center;
  box-shadow: 0 12px 30px -6px rgba(37,211,102,.55);
  transition: transform .25s var(--ease);
}
.wa-float:hover { transform: scale(1.1); color: #fff; }
.wa-float .icon { width: 30px; height: 30px; }

/* ---------- Back to top of category chips row ---------- */
.pill-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; border: 1px solid var(--c-border); border-radius: 999px;
  padding: .55em 1.2em; font-size: .9rem; font-weight: 600; color: var(--c-slate-700);
  transition: all .25s var(--ease);
}
.pill:hover { border-color: var(--c-primary); color: var(--c-primary-600); background: var(--c-primary-050); transform: translateY(-2px); }
.pill .icon { width: 17px; height: 17px; color: var(--c-primary-600); }

/* ---------- Responsive ---------- */
@media (max-width: 1080px) {
  .cat-grid, .feat-grid, .why-grid { grid-template-columns: repeat(3, 1fr); }
  .price-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 20px; }
  .footer-top { grid-template-columns: 1fr 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 920px) {
  .main-nav, .nav-actions { display: none; }
  .nav-toggle { display: block; margin-left: auto; }
  .hero-grid, .pro-grid, .contact-grid, .cta-banner { grid-template-columns: 1fr; }
  .hero-visual { min-height: 500px; margin-top: 12px; }
  .hero { text-align: center; }
  .hero .lead { margin-inline: auto; }
  .hero-ctas, .hero-badges .store-badges, .hero-trust { justify-content: center; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 36px 20px; }
  .steps::before { display: none; }
  .testi-grid { grid-template-columns: 1fr 1fr; }
  .legal-layout { grid-template-columns: 1fr; }
  .legal-toc { position: static; }
  .cta-phone { display: none; }
  .pro-visual { order: -1; }
}
@media (max-width: 640px) {
  .cat-grid, .feat-grid, .why-grid, .testi-grid, .price-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-news { grid-column: 1 / -1; }
  .hero-visual .phone-back { display: none; }
  .float-chip { display: none; }
  .phone { width: 232px; }
}
@media (max-width: 460px) {
  .cat-grid, .feat-grid, .why-grid, .testi-grid, .price-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .container { padding-inline: 18px; }
}
