/* ─────────────────────────────────────────
   Billio.cz — web stylesheet
   ───────────────────────────────────────── */

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

:root {
  --blue:        #2171d7;
  --blue-dark:   #1258b0;
  --blue-xdark:  #073b7d;
  --blue-mid:    #4dc1eb;
  --blue-light:  #e3f3fb;
  --blue-xlight: #f0f8fd;

  --ink:    #060d1f;
  --ink-2:  #374558;
  --ink-3:  #6b7a99;
  --ink-4:  #9daabf;

  --line:   #e4e8f0;
  --line-2: #cdd3de;
  --bg:     #ffffff;
  --bg-2:   #f7f9fc;
  --bg-3:   #eef2f8;

  --green:    #059669;
  --green-bg: #ecfdf5;

  --shadow-xs: 0 1px 2px rgba(6,13,31,.06);
  --shadow-sm: 0 2px 6px rgba(6,13,31,.07), 0 1px 2px rgba(6,13,31,.05);
  --shadow-md: 0 6px 16px rgba(6,13,31,.08), 0 2px 4px rgba(6,13,31,.05);
  --shadow-lg: 0 16px 40px rgba(6,13,31,.10), 0 4px 8px rgba(6,13,31,.06);
  --shadow-xl: 0 28px 64px rgba(6,13,31,.12), 0 8px 16px rgba(6,13,31,.06);
  --shadow-blue: 0 12px 36px rgba(33,113,215,.28);
  --shadow-blue-lg: 0 20px 56px rgba(33,113,215,.32);

  --r-xs:   4px;
  --r-sm:   8px;
  --r-md:  12px;
  --r-lg:  16px;
  --r-xl:  24px;
  --r-2xl: 36px;
  --r-full: 9999px;

  --font: 'Asap', system-ui, -apple-system, sans-serif;
  --ease: 0.18s ease;
  --ease-out: 0.3s cubic-bezier(0.22, 1, 0.36, 1);
}

html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ── TYPE ── */
h1, h2, h3, h4 { line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); }

/* ── UTILS ── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 28px; }
.container--sm { max-width: 820px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 12px 24px;
  border-radius: var(--r-sm);
  font-family: var(--font); font-size: 15px; font-weight: 600;
  cursor: pointer; border: none; text-decoration: none;
  transition: all var(--ease);
  white-space: nowrap; line-height: 1;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-dark);
  box-shadow: var(--shadow-blue-lg);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent; color: var(--blue);
  border: 1.5px solid var(--blue);
}
.btn-outline:hover { background: var(--blue-xlight); }
.btn-ghost { background: transparent; color: var(--ink-3); border: none; }
.btn-ghost:hover { color: var(--ink); background: var(--bg-2); }
.btn-white {
  background: #fff; color: var(--blue);
  box-shadow: 0 8px 24px rgba(0,0,0,.15);
}
.btn-white:hover { background: var(--bg-2); transform: translateY(-1px); box-shadow: 0 12px 36px rgba(0,0,0,.18); }
.btn-ghost-inv { background: rgba(255,255,255,.12); color: #fff; border: 1.5px solid rgba(255,255,255,.2); }
.btn-ghost-inv:hover { background: rgba(255,255,255,.2); }
.btn-sm { padding: 9px 18px; font-size: 14px; }
.btn-lg { padding: 15px 32px; font-size: 16px; border-radius: var(--r-md); }

/* Arrow icon animation */
.btn-arrow svg { transition: transform var(--ease); }
.btn-arrow:hover svg { transform: translateX(3px); }

/* ── FLASH ── */
.flash-strip { padding: 12px 0; }
.flash {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 20px; border-radius: var(--r-md);
  font-size: 15px; font-weight: 500; margin-bottom: 10px;
}
.flash-success { background: var(--green-bg); color: #065f46; }
.flash-danger   { background: #fef2f2; color: #991b1b; }
.flash-warning  { background: #fffbeb; color: #92400e; }
.flash-info     { background: var(--blue-light); color: var(--blue-dark); }

/* ── LABEL ── */
.label {
  display: inline-flex; align-items: center; gap: 7px;
  font-size: 11px; font-weight: 700;
  text-transform: uppercase; letter-spacing: 1.5px;
  color: var(--blue);
}
.label::before {
  content: ''; display: block;
  width: 20px; height: 2px;
  background: var(--blue); border-radius: 2px;
}

/* ── NAV ── */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,.85);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.nav.scrolled { border-color: var(--line); box-shadow: var(--shadow-sm); }
.nav-inner { display: flex; align-items: center; height: 66px; gap: 6px; }
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 28px; width: auto; display: block; }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; }
.nav-links a {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  text-decoration: none; padding: 8px 14px;
  transition: color var(--ease);
  position: relative;
}
.nav-links a:hover { color: var(--ink); }
.nav-links a.active {
  color: var(--blue); font-weight: 600;
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 14px; right: 14px;
  height: 2px; background: var(--blue); border-radius: 2px;
}
.nav-login {
  font-size: 14px; font-weight: 500; color: var(--ink-3);
  text-decoration: none; padding: 8px 14px;
  transition: color var(--ease);
}
.nav-login:hover { color: var(--ink); }
.nav-actions { display: flex; align-items: center; gap: 4px; margin-left: 16px; }
.nav-burger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; border: none; background: none; margin-left: auto;
}
.nav-burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--ease); }

/* Mobile nav */
.mobile-nav {
  display: none; position: fixed; top: 66px; left: 0; right: 0; bottom: 0;
  background: #fff; z-index: 99; padding: 16px; flex-direction: column;
  gap: 2px; overflow-y: auto;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 17px; font-weight: 500; color: var(--ink); text-decoration: none;
  padding: 14px 16px; border-radius: var(--r-sm); transition: color var(--ease);
}
.mobile-nav a:hover { color: var(--blue); }
.mobile-nav .mn-sep { height: 1px; background: var(--line); margin: 8px 0; }
.mobile-nav .mn-login { color: var(--ink-3); font-size: 15px; }
.mobile-nav .mn-cta { color: var(--blue); font-weight: 700; font-size: 15px; }

/* ── HERO ── */
.hero {
  padding: 64px 0 0;
  overflow: hidden;
  background:
    radial-gradient(ellipse 900px 700px at 100% -5%, rgba(33,113,215,.06) 0%, transparent 65%),
    radial-gradient(ellipse 600px 500px at -5% 80%, rgba(77,193,235,.04) 0%, transparent 60%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 80px;
}

/* Left */
.hero-text { position: relative; z-index: 2; }
.hero-eyebrow { margin-bottom: 28px; }
.hero-eyebrow-pill {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--blue-light); color: var(--blue);
  padding: 6px 14px 6px 8px;
  border-radius: var(--r-full);
  font-size: 13px; font-weight: 600;
}
.hero-eyebrow-dot {
  width: 20px; height: 20px; background: var(--blue); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hero-eyebrow-dot::after {
  content: ''; display: block; width: 6px; height: 6px;
  background: #fff; border-radius: 50%;
}

.hero h1 {
  font-size: clamp(42px, 5.5vw, 72px);
  font-weight: 900;
  line-height: 1.15;
  color: var(--ink);
  margin-bottom: 24px;
}
.hero h1 em {
  font-style: normal;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  padding: 0 0.05em;
  margin: 0 -0.05em;
}
.hero h1 em.hero-clr-phone {
  background: linear-gradient(135deg, #009fe3, #02c0fc);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero h1 em.hero-clr-cafe {
  background: linear-gradient(135deg, #6f4e37, #c4a272);
  -webkit-background-clip: text;
  background-clip: text;
}
.hero h1 em.hero-clr-beach {
  background: linear-gradient(135deg, #e8a838, #38bdf8);
  -webkit-background-clip: text;
  background-clip: text;
}

.hero-desc {
  font-size: 17px; line-height: 1.75;
  color: var(--ink-3);
  max-width: 480px;
  margin-bottom: 36px;
}

.hero-ctas { display: flex; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 44px; }

.hero-proof {
  display: flex; align-items: center; gap: 14px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
}
.hero-avatars { display: flex; }
.hero-avatar {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  border: 2px solid #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700;
  margin-left: -8px;
}
.hero-avatars .hero-avatar:first-child { margin-left: 0; }
.hero-proof-text { font-size: 13px; color: var(--ink-3); line-height: 1.4; }
.hero-proof-text strong { display: block; color: var(--ink); font-weight: 600; font-size: 14px; }
.hero-stars { color: #f59e0b; font-size: 13px; letter-spacing: 1px; }

/* Right — app dashboard preview */
.hero-visual {
  position: relative;
  height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── App preview shell ── */
.app-preview {
  width: 520px;
  height: 440px;
  background: #f6f8fb;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-xl), 0 0 0 1px rgba(6,13,31,.06);
  overflow: hidden;
  display: flex;
  font-size: 9px;
  line-height: 1.4;
  color: #182433;
  user-select: none;
  pointer-events: none;
  transform: perspective(1200px) rotateY(-4deg) rotateX(2deg);
}

/* ── Sidebar ── */
.app-sidebar {
  width: 110px;
  background: #fff;
  color: rgba(0,0,0,.5);
  flex-shrink: 0;
  padding: 10px 8px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid rgba(0,0,0,.08);
}
.app-sidebar-logo { padding: 2px 4px 6px; }
.app-sidebar-logo-text { font-size: 13px; font-weight: 800; color: #182433; letter-spacing: -0.03em; }
.app-sidebar-actions { display: flex; gap: 3px; padding: 0 2px 4px; }
.app-quick-btn {
  flex: 1; height: 16px;
  background: rgba(0,0,0,.04);
  border-radius: 3px;
  border: 1px solid rgba(0,0,0,.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(0,0,0,.35);
}
.app-sidebar-nav { display: flex; flex-direction: column; gap: 1px; }
.app-nav-item {
  display: flex; align-items: center; gap: 6px;
  padding: 5px 8px;
  border-radius: 4px;
  font-size: 8px; font-weight: 500;
  color: rgba(0,0,0,.5);
  text-decoration: none;
  transition: background 0.15s;
}
.app-nav-item svg { flex-shrink: 0; opacity: .6; }
.app-nav-item.active {
  background: rgba(0,0,0,.06);
  color: #182433;
  font-weight: 600;
}
.app-nav-item.active svg { opacity: 1; }

/* ── Main area ── */
.app-main {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

/* Topbar */
.app-topbar {
  height: 32px;
  background: #fff;
  border-bottom: 1px solid #e4e8f0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 10px;
  flex-shrink: 0;
}
.app-company { display: flex; align-items: center; gap: 6px; }
.app-company-avatar {
  width: 18px; height: 18px;
  background: #066fd1;
  color: #fff;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 8px; font-weight: 700;
}
.app-company-info { display: flex; flex-direction: column; line-height: 1.1; }
.app-company-name { font-size: 8px; font-weight: 700; color: #182433; }
.app-company-ico { font-size: 6.5px; color: #6c7a91; }
.app-topbar-right { display: flex; align-items: center; gap: 6px; }
.app-dark-toggle {
  width: 18px; height: 18px;
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  color: #6c7a91;
}
.app-user-avatar {
  width: 18px; height: 18px;
  background: #e3f3fb;
  color: #066fd1;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 6.5px; font-weight: 700;
}

/* Content */
.app-content {
  flex: 1;
  overflow: hidden;
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

/* Page header */
.app-page-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2px;
}
.app-page-title { font-size: 12px; font-weight: 800; color: #182433; letter-spacing: -0.02em; }
.app-page-actions { display: flex; gap: 4px; align-items: center; }
.app-select {
  font-size: 7px; font-weight: 500; color: #182433;
  border: 1px solid #e4e8f0;
  border-radius: 3px;
  padding: 2px 6px;
  background: #fff;
  font-family: var(--font);
}
.app-btn-primary {
  font-size: 7px; font-weight: 600; color: #fff;
  background: #066fd1;
  border-radius: 3px;
  padding: 3px 8px;
  white-space: nowrap;
}

/* Cards */
.app-card {
  background: #fff;
  border: 1px solid #e4e8f0;
  border-radius: 6px;
  overflow: hidden;
}
.app-card-head {
  font-size: 8px; font-weight: 700; color: #182433;
  padding: 7px 9px;
  border-bottom: 1px solid #e4e8f0;
}
.app-card-head-flex { display: flex; align-items: center; justify-content: space-between; }
.app-cards-row { display: flex; gap: 6px; }
.app-cards-row > .app-card { flex: 1; }

/* Stat inside card */
.app-card-stats { display: flex; padding: 8px 6px; gap: 4px; }
.app-card-stat { flex: 1; text-align: center; }
.app-card-stat-label { font-size: 6.5px; color: #6c7a91; font-weight: 600; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 2px; }
.app-card-stat-val { font-size: 10px; font-weight: 800; color: #182433; letter-spacing: -0.02em; }
.app-card-stat-sub { font-size: 6.5px; color: #6c7a91; }
.app-clr-green { color: #2fb344 !important; }
.app-clr-red { color: #d63939 !important; }

/* Chart card */
.app-chart-card { flex-shrink: 0; }
.app-chart { display: flex; gap: 2px; padding: 8px 9px 0; }
.app-chart-y {
  display: flex; flex-direction: column; justify-content: space-between;
  width: 30px; text-align: right;
  font-size: 5.5px; color: #9daabf;
  padding-bottom: 12px;
}
.app-chart-area { flex: 1; position: relative; }
.app-chart-grid {
  position: absolute; inset: 0; bottom: 12px;
  display: flex; flex-direction: column; justify-content: space-between;
}
.app-chart-grid > div { height: 1px; background: #f0f3f8; }
.app-chart-bars {
  display: flex; gap: 6px; justify-content: space-around;
  align-items: flex-end;
  height: 70px;
  padding: 0 4px;
  position: relative;
  z-index: 1;
}
.app-bar {
  flex: 1;
  display: flex;
  flex-direction: column-reverse;
  max-width: 28px;
  border-radius: 2px 2px 0 0;
  overflow: hidden;
}
.app-bar-seg { width: 100%; }
.app-bar-paid { height: var(--h-paid); background: rgba(47,179,68,.75); }
.app-bar-unpaid { height: var(--h-unpaid); background: rgba(66,153,225,.6); }
.app-chart-x {
  display: flex; justify-content: space-around;
  font-size: 6px; color: #9daabf; font-weight: 500;
  padding: 3px 4px 0;
}
.app-chart-legend {
  display: flex; gap: 10px; justify-content: center;
  padding: 5px 0 7px;
  font-size: 6.5px; color: #6c7a91; font-weight: 500;
}
.app-legend-item { display: flex; align-items: center; gap: 3px; }
.app-legend-dot { width: 6px; height: 6px; border-radius: 2px; flex-shrink: 0; }

/* Table */
.app-table { width: 100%; border-collapse: collapse; }
.app-table th {
  font-size: 6.5px; font-weight: 700; color: #6c7a91;
  text-transform: uppercase; letter-spacing: 0.3px;
  text-align: left; padding: 4px 8px;
  border-bottom: 1px solid #e4e8f0;
  background: #f6f8fb;
}
.app-table td {
  font-size: 7.5px; color: #374558;
  padding: 4px 8px;
  border-bottom: 1px solid #f0f3f8;
  white-space: nowrap;
}
.app-text-bold { font-weight: 700; color: #182433; }
.app-text-right { text-align: right; }
.app-link { font-size: 7px; color: #066fd1; font-weight: 500; }

/* Badges */
.app-badge {
  display: inline-block;
  font-size: 6.5px; font-weight: 700;
  padding: 1px 5px;
  border-radius: 9px;
  white-space: nowrap;
}
.app-badge-green { background: #ecfdf5; color: #2fb344; }
.app-badge-blue { background: #e3f3fb; color: #066fd1; }
.app-badge-red { background: #fee2e2; color: #d63939; }
.app-badge-yellow { background: #fef3c7; color: #92400e; }

/* ── STATS STRIP ── */
.stats-strip {
  background: var(--ink);
  padding: 32px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-item {
  text-align: center;
  padding: 0 24px;
  position: relative;
}
.stat-item + .stat-item::before {
  content: '';
  position: absolute;
  left: 0; top: 20%; bottom: 20%;
  width: 1px;
  background: rgba(255,255,255,.1);
}
.stat-value {
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 900;
  letter-spacing: -0.04em;
  color: #fff;
  line-height: 1;
  margin-bottom: 6px;
}
.stat-value span { color: var(--blue-mid); }
.stat-label { font-size: 13px; color: rgba(255,255,255,.45); font-weight: 500; }

/* ── SECTIONS ── */
.section { padding: 72px 0; }
.section-alt { background: var(--bg-2); }
.section-sm { padding: 52px 0; }
.section-head { margin-bottom: 48px; }
.section-head--center { text-align: center; max-width: 640px; margin: 0 auto 48px; }
.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  margin-top: 16px;
  margin-bottom: 18px;
}
.section-desc { font-size: 17px; color: var(--ink-3); line-height: 1.72; }

/* ── FEATURE SPOTLIGHT ── */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.feature-split.reverse .feature-visual { order: -1; }

.feature-body {}
.feature-list { list-style: none; margin: 24px 0 32px; }
.feature-list li {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 10px 0;
  font-size: 15px; color: var(--ink-2); line-height: 1.55;
  border-bottom: 1px solid var(--line);
}
.feature-list li:first-child { border-top: 1px solid var(--line); }
.feature-check {
  flex-shrink: 0; width: 20px; height: 20px; border-radius: 50%;
  background: var(--green-bg); color: var(--green);
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; margin-top: 1px;
}
.feature-link {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 15px; font-weight: 600; color: var(--blue);
  text-decoration: none; transition: gap var(--ease);
}
.feature-link:hover { gap: 10px; }

/* Feature visual panels */
.feature-visual {
  background: var(--bg-2);
  border-radius: var(--r-2xl);
  border: 1px solid var(--line);
  overflow: hidden;
  min-height: 420px;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 32px;
}

/* Dashboard panel */
.dash-panel {
  width: 100%;
  background: #fff;
  border-radius: var(--r-xl);
  box-shadow: var(--shadow-md);
  overflow: hidden;
  border: 1px solid var(--line);
}
.dash-topbar {
  background: var(--ink);
  padding: 14px 18px;
  display: flex; align-items: center; gap: 10px;
}
.dash-topbar-logo { height: 16px; width: auto; filter: brightness(10); }
.dash-topbar-title { font-size: 12px; color: rgba(255,255,255,.5); font-weight: 500; }
.dash-topbar-spacer { flex: 1; }
.dash-topbar-badge {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--blue); color: #fff;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
}
.dash-body { padding: 20px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; margin-bottom: 18px; }
.dash-stat {
  background: var(--bg-2); border-radius: var(--r-md); padding: 14px;
  border: 1px solid var(--line);
}
.dash-stat-label { font-size: 10px; color: var(--ink-4); font-weight: 600; text-transform: uppercase; letter-spacing: .8px; margin-bottom: 6px; }
.dash-stat-val { font-size: 18px; font-weight: 800; color: var(--ink); letter-spacing: -0.5px; }
.dash-stat-val.blue { color: var(--blue); }
.dash-stat-val.green { color: var(--green); }
.dash-row {
  display: grid; grid-template-columns: 1fr 1fr 90px 70px;
  align-items: center; padding: 10px 12px;
  background: var(--bg-2); border-radius: var(--r-sm);
  border: 1px solid var(--line);
  margin-bottom: 6px; font-size: 11px;
}
.dash-row-num { font-weight: 700; color: var(--ink); }
.dash-row-cl { color: var(--ink-3); }
.dash-row-am { font-weight: 700; }
.dash-badge {
  display: inline-flex; padding: 2px 8px;
  border-radius: var(--r-full); font-size: 10px; font-weight: 700;
}
.dash-badge.paid { background: var(--green-bg); color: var(--green); }
.dash-badge.wait { background: #fef3c7; color: #92400e; }

/* API panel */
.code-panel {
  width: 100%;
  background: #0d1117;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}
.code-topbar {
  background: #161b22; padding: 12px 16px;
  display: flex; align-items: center; gap: 8px;
}
.code-dot { width: 10px; height: 10px; border-radius: 50%; }
.code-filename {
  font-size: 12px; color: rgba(255,255,255,.4); margin-left: 8px;
  font-family: 'SF Mono', 'Fira Code', monospace;
}
.code-body { padding: 20px 24px; font-family: 'SF Mono', 'Fira Code', 'Courier New', monospace; font-size: 12.5px; line-height: 1.8; }
.code-comment { color: #6e7681; }
.code-keyword { color: #ff7b72; }
.code-string { color: #a5d6ff; }
.code-prop { color: #79c0ff; }
.code-val { color: #56d364; }
.code-plain { color: #e6edf3; }
.code-num { color: #f2cc60; }

/* ── MINI FEATURES GRID ── */
.mini-features { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; background: var(--line); border-radius: var(--r-xl); overflow: hidden; }
.mini-feature {
  background: var(--bg);
  padding: 32px 28px;
  transition: background var(--ease);
}
.mini-feature:hover { background: var(--blue-xlight); }
.mini-icon {
  width: 44px; height: 44px;
  background: var(--blue-light);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: var(--blue); margin-bottom: 18px;
}
.mini-icon svg { width: 20px; height: 20px; }
.mini-feature h4 { font-size: 15px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.02em; }
.mini-feature p { font-size: 13.5px; color: var(--ink-3); line-height: 1.6; }

/* ── HOW IT WORKS ── */
.steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; position: relative; }
.steps::before {
  content: '';
  position: absolute;
  top: 28px; left: calc(100% / 6); right: calc(100% / 6);
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--line) 20%, var(--line) 80%, transparent);
}
.step { padding: 0 32px; text-align: center; }
.step-num {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 800; color: var(--blue);
  margin: 0 auto 24px; position: relative; z-index: 1;
}
.step h4 { font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.step p { font-size: 14px; color: var(--ink-3); line-height: 1.65; }

/* ── PRICING ── */
.pricing-toggle {
  display: inline-flex;
  background: var(--bg-3); border-radius: var(--r-full); padding: 4px;
  margin-bottom: 48px;
}
.pricing-toggle-wrap { display: flex; justify-content: center; }
.ptoggle {
  padding: 8px 22px; border-radius: var(--r-full);
  font-size: 14px; font-weight: 500;
  cursor: pointer; border: none; background: transparent;
  color: var(--ink-3); transition: all var(--ease);
  display: flex; align-items: center; gap: 4px;
  font-family: var(--font);
}
.ptoggle.active { background: #fff; color: var(--ink); box-shadow: var(--shadow-sm); font-weight: 600; }
.ptoggle-badge {
  font-size: 12px; font-weight: 600; color: var(--green);
}

/* Slider wrapper — visible structure only on mobile */
.pricing-slider { position: relative; }
.pricing-viewport { overflow: visible; }
.pricing-arrow, .pricing-dots { display: none; }

.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing-card {
  background: #fff;
  border: 1.5px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 36px;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 0 0 1px var(--blue), var(--shadow-md);
  background: linear-gradient(175deg, var(--blue-xlight) 0%, #fff 60%);
}
.pricing-pill {
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: var(--blue); color: #fff;
  padding: 4px 18px; border-radius: var(--r-full);
  font-size: 12px; font-weight: 700; white-space: nowrap;
}
.plan-tier { font-size: 11px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--ink-4); margin-bottom: 4px; }
.plan-desc { font-size: 14px; color: var(--ink-3); margin-bottom: 24px; }
.plan-price { display: flex; align-items: baseline; gap: 2px; margin-bottom: 4px; }
.plan-amount {
  font-size: 48px; font-weight: 900; letter-spacing: -0.04em; color: var(--ink);
  transition: all var(--ease);
}
.plan-currency { font-size: 20px; font-weight: 700; color: var(--ink-3); }
.plan-period { font-size: 13px; color: var(--ink-4); margin-bottom: 28px; }
.plan-sep { height: 1px; background: var(--line); margin-bottom: 24px; }
.plan-features { list-style: none; margin-bottom: 28px; }
.plan-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; padding: 5px 0; }
.pf-ok, .pf-no {
  flex-shrink: 0; width: 17px; height: 17px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px; font-weight: 700; margin-top: 2px;
}
.pf-ok { background: var(--green-bg); color: var(--green); }
.pf-no { background: #fee2e2; color: #dc2626; }
.pf-muted { color: var(--ink-4); }

/* ── CASE STUDIES ── */
.cases-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.case-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px 28px;
  transition: box-shadow var(--ease), transform var(--ease);
}
.case-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.case-icon {
  width: 48px; height: 48px; border-radius: var(--r-md);
  background: var(--blue-xlight); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
}
.case-tag {
  font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}
.case-title { font-size: 18px; font-weight: 700; color: var(--ink); margin-bottom: 12px; line-height: 1.3; }
.case-desc { font-size: 14px; line-height: 1.72; color: var(--ink-2); margin-bottom: 24px; }
.case-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; border-top: 1px solid var(--line); padding-top: 20px; }
.case-stat-value { font-size: 22px; font-weight: 800; color: var(--blue); margin-bottom: 4px; }
.case-stat-label { font-size: 12px; color: var(--ink-3); line-height: 1.4; }

/* ── TESTIMONIALS ── */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 32px;
  position: relative;
  transition: box-shadow var(--ease), transform var(--ease);
}
.testimonial:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.testimonial-quote {
  font-size: 56px; line-height: .8;
  color: var(--blue-light);
  font-family: Georgia, serif;
  font-weight: 900;
  margin-bottom: 4px;
}
.testimonial-stars { color: #f59e0b; font-size: 14px; letter-spacing: 2px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 15px; line-height: 1.72; color: var(--ink-2);
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700; flex-shrink: 0;
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--ink); }
.testimonial-role { font-size: 12px; color: var(--ink-4); }

/* ── FAQ ── */
.faq { max-width: 720px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
}
.faq-question {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0;
  cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--ink);
  gap: 16px;
  list-style: none;
  user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--bg-3);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), transform var(--ease);
  color: var(--ink-3);
}
details[open] .faq-icon { background: var(--blue); color: #fff; transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px;
  font-size: 15px; color: var(--ink-3); line-height: 1.75;
}

/* ── CTA ── */
.cta-section {
  background: linear-gradient(140deg, var(--blue) 0%, var(--blue-dark) 55%, var(--blue-xdark) 100%);
  padding: 72px 0;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,255,255,.06) 0%, transparent 65%);
}
.cta-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,255,255,.04) 0%, transparent 65%);
}
.cta-inner { text-align: center; color: #fff; position: relative; z-index: 1; }
.cta-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,.5); margin-bottom: 20px; }
.cta-inner h2 {
  font-size: clamp(32px, 4.5vw, 56px);
  font-weight: 900; letter-spacing: -0.04em;
  color: #fff; margin-bottom: 16px;
}
.cta-inner p { font-size: 17px; opacity: .7; max-width: 440px; margin: 0 auto 40px; line-height: 1.72; }
.cta-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }
.cta-note { margin-top: 20px; font-size: 13px; opacity: .45; }

/* ── CONTACT ── */
.contact-grid { display: grid; grid-template-columns: 5fr 7fr; gap: 80px; align-items: start; }
.contact-info-title { font-size: 28px; font-weight: 800; margin: 16px 0 12px; letter-spacing: -0.03em; }
.contact-info-desc { font-size: 15px; color: var(--ink-3); line-height: 1.72; margin-bottom: 32px; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 0; border-top: 1px solid var(--line); font-size: 15px;
}
.contact-detail:last-child { border-bottom: 1px solid var(--line); }
.contact-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-detail a { color: inherit; text-decoration: none; font-weight: 500; }
.contact-detail a:hover { color: var(--blue); }
.contact-perks { display: flex; flex-direction: column; gap: 12px; margin-top: 8px; }
.contact-perk {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; color: var(--ink-2); font-weight: 500;
}
.contact-form {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 44px;
  box-shadow: var(--shadow-sm);
}
.contact-form-title { font-size: 20px; font-weight: 800; margin-bottom: 28px; letter-spacing: -0.03em; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; margin-bottom: 6px; color: var(--ink); }
.form-input {
  width: 100%; padding: 11px 14px;
  border: 1.5px solid var(--line);
  border-radius: var(--r-sm);
  font-family: var(--font); font-size: 14px; color: var(--ink);
  background: #fff; outline: none;
  transition: border-color var(--ease), box-shadow var(--ease);
  resize: vertical;
}
.form-input:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(0,84,166,.1); }
.form-input::placeholder { color: var(--ink-4); }
.form-gdpr { margin-bottom: 20px; }
.form-checkbox { display: flex; align-items: flex-start; gap: 10px; cursor: pointer; }
.form-checkbox input[type="checkbox"] {
  flex-shrink: 0; margin-top: 2px;
  width: 16px; height: 16px; accent-color: var(--blue); cursor: pointer;
}
.form-checkbox span { font-size: 13px; color: var(--ink-3); line-height: 1.55; }
.form-checkbox span a { color: var(--blue); text-decoration: none; }
.form-checkbox span a:hover { text-decoration: underline; }
.form-note { font-size: 12px; color: var(--ink-4); margin-top: 12px; text-align: center; }

/* ── FEATURES PAGE ── */
.features-tier-head { text-align: center; margin-bottom: 56px; }
.tier-pill {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; border-radius: var(--r-full); padding: 5px 14px;
}
.tier-pill--free     { background: var(--green-bg); color: var(--green); }
.tier-pill--pro      { background: var(--blue-xlight); color: var(--blue); }
.tier-pill--business { background: #fef3c7; color: #92400e; }
.features-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.features-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 24px; transition: box-shadow var(--ease), transform var(--ease);
}
.feature-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.feature-card-icon {
  width: 44px; height: 44px; border-radius: var(--r-sm);
  background: var(--blue-xlight); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px; flex-shrink: 0;
}
.feature-card-icon--pro      { background: var(--blue-xlight); color: var(--blue); }
.feature-card-icon--business { background: #fef3c7; color: #92400e; }
.feature-card h3 { font-size: 15px; font-weight: 700; color: var(--ink); margin-bottom: 8px; }
.feature-card p  { font-size: 13px; color: var(--ink-3); line-height: 1.7; }

/* ── COOKIE CONSENT (orestbida/cookieconsent v3) ── */
#cc-main {
  --cc-font-family: var(--font);
  --cc-bg: #fff;
  --cc-primary-color: var(--ink);
  --cc-secondary-color: var(--ink-3);
  --cc-btn-primary-bg: var(--blue);
  --cc-btn-primary-color: #fff;
  --cc-btn-primary-border-color: var(--blue);
  --cc-btn-primary-hover-bg: var(--blue-dark);
  --cc-btn-primary-hover-border-color: var(--blue-dark);
  --cc-btn-secondary-bg: transparent;
  --cc-btn-secondary-color: var(--blue);
  --cc-btn-secondary-border-color: var(--blue);
  --cc-btn-secondary-hover-bg: var(--blue-xlight);
  --cc-btn-secondary-hover-color: var(--blue-dark);
  --cc-btn-secondary-hover-border-color: var(--blue);
  --cc-separator-border-color: var(--line);
  --cc-toggle-on-bg: var(--blue);
  --cc-toggle-off-bg: var(--line-2);
  --cc-toggle-readonly-bg: var(--bg-3);
  --cc-cookie-category-block-bg: var(--bg-2);
  --cc-cookie-category-block-border: var(--line);
  --cc-btn-border-radius: var(--r-sm);
  --cc-modal-border-radius: var(--r-lg);
  --cc-link-color: var(--blue);
  --cc-modal-margin: 0;
}
#cc-main .cm { box-shadow: 0 -4px 24px rgba(6,13,31,.08); border-top: 1px solid var(--line); }
#cc-main .cm__title { font-weight: 700; letter-spacing: -0.02em; }
#cc-main .cm__desc { font-size: 14px; line-height: 1.6; }
#cc-main .cm__desc a { color: var(--blue); text-decoration: none; }
#cc-main .cm__desc a:hover { text-decoration: underline; }
#cc-main .cm__btn { font-weight: 600; font-size: 14px; padding: 9px 18px; }
#cc-main .pm__title { font-weight: 700; letter-spacing: -0.02em; }
#cc-main .pm__badge { background: var(--blue-light); color: var(--blue); }

/* ── STATIC PAGES ── */
.page-header { padding: 52px 0 40px; }
.page-header h1 { font-size: clamp(32px, 4vw, 52px); font-weight: 900; margin-top: 16px; margin-bottom: 12px; letter-spacing: -0.03em; }
.page-header p { font-size: 16px; color: var(--ink-3); }
.prose code { font-family: monospace; background: var(--bg-3); padding: 2px 6px; border-radius: 4px; font-size: 13px; }
.prose { max-width: 780px; }
.prose h2 { font-size: 22px; font-weight: 700; margin: 48px 0 12px; padding-top: 48px; border-top: 1px solid var(--line); }
.prose h2:first-of-type { margin-top: 0; padding-top: 0; border-top: none; }
.prose h3 { font-size: 17px; font-weight: 700; margin: 28px 0 8px; }
.prose p { font-size: 15px; color: var(--ink-3); line-height: 1.78; margin-bottom: 16px; }
.prose ul { padding-left: 0; margin-bottom: 16px; list-style: none; }
.prose ul li { font-size: 15px; color: var(--ink-3); line-height: 1.7; margin-bottom: 10px; padding-left: 20px; position: relative; }
.prose ul li::before { content: '–'; position: absolute; left: 0; color: var(--ink-4); }
.prose a { color: var(--blue); }

/* ── FOOTER ── */
.footer { background: var(--ink); color: rgba(255,255,255,.55); padding: 52px 0 28px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 40px; }
.footer-logo { display: flex; align-items: center; text-decoration: none; margin-bottom: 16px; }
.footer-logo img { height: 24px; width: auto; }
.footer-brand p { font-size: 14px; line-height: 1.75; max-width: 280px; }
.footer-col h5 { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,.35); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,.55); text-decoration: none; transition: color var(--ease); }
.footer-col ul li a:hover { color: #fff; }
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.5);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--ease), color var(--ease);
  text-decoration: none;
}
.footer-social-link:hover { background: rgba(255,255,255,.15); color: #fff; }
.footer-sep { border: none; border-top: 1px solid rgba(255,255,255,.12); margin: 0 0 28px; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; font-size: 13px; flex-wrap: wrap; gap: 12px; }
.footer-bottom span { color: rgba(255,255,255,.4); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { color: rgba(255,255,255,.4); text-decoration: none; transition: color var(--ease); }
.footer-bottom-links a:hover { color: rgba(255,255,255,.75); }

/* ── COMPARISON TABLE ── */
.compare-table { overflow-x: auto; }
.compare-table table { width: 100%; border-collapse: collapse; font-size: 14px; }
.compare-table thead th {
  padding: 14px 20px; text-align: center; font-weight: 700; font-size: 13px;
  border-bottom: 2px solid var(--line);
}
.compare-table thead th:first-child { text-align: left; }
.compare-table tbody td {
  padding: 12px 20px; text-align: center; border-bottom: 1px solid var(--line);
  color: var(--ink-2);
}
.compare-table tbody td:first-child { text-align: left; font-weight: 500; color: var(--ink); }
.compare-table .compare-group {
  background: var(--bg-2); font-size: 11px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; color: var(--ink-4); padding: 10px 20px;
}
.compare-table .compare-featured { background: var(--blue-xlight); font-weight: 600; }
.compare-table thead .compare-featured { color: var(--blue); }
.ct-yes { color: var(--green); font-weight: 700; }
.ct-no  { color: var(--ink-4); }

/* ── ANIMATIONS ── */
.anim { opacity: 0; transform: translateY(28px); transition: opacity 0.65s var(--ease-out), transform 0.65s var(--ease-out); }
.anim.visible { opacity: 1; transform: none; }
.anim[data-d="1"] { transition-delay: 0.08s; }
.anim[data-d="2"] { transition-delay: 0.16s; }
.anim[data-d="3"] { transition-delay: 0.24s; }
.anim[data-d="4"] { transition-delay: 0.32s; }

/* ── RESPONSIVE ── */

/* Small desktops, iPads landscape */
@media (max-width: 1280px) {
  .feature-split { gap: 48px; }
  .contact-grid { gap: 48px; }
}

/* Tablets */
@media (max-width: 1024px) {
  .hero { padding: 40px 0 0; }
  .hero-inner { grid-template-columns: 1fr; padding-bottom: 0; }
  .hero-visual { height: 420px; margin-bottom: 40px; }
  .app-preview { width: 100%; height: 380px; transform: none; }
  .section { padding: 56px 0; }
  .section-head { margin-bottom: 36px; }
  .section-head--center { margin-bottom: 36px; }
  .cta-section { padding: 56px 0; }
  .stats-strip { padding: 24px 0; }
  .footer { padding: 40px 0 20px; }
  .feature-split { grid-template-columns: 1fr; gap: 36px; }
  .feature-split.reverse .feature-visual { order: 0; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .stat-item + .stat-item::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .mini-features { grid-template-columns: repeat(2, 1fr); }
  .features-grid, .features-grid--4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { gap: 16px; }
  .cases-grid { gap: 16px; }
}

/* Mobile */
@media (max-width: 768px) {
  .nav-links, .nav-login { display: none; }
  .nav-burger { display: flex; margin-left: 0; }
  .nav-actions { margin-left: auto; }

  .hero { padding: 40px 0 0; }
  .hero-inner { gap: 0; }
  .hero h1 { letter-spacing: -0.03em; }
  .hero-visual { height: 320px; margin-bottom: 32px; }
  .app-preview { width: 100%; height: 290px; transform: none; }
  .app-sidebar { display: none; }
  .app-chart-bars { height: 50px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }

  .section { padding: 48px 0; }
  .section-head { margin-bottom: 32px; }
  .section-head--center { margin-bottom: 32px; }

  .mini-features { grid-template-columns: 1fr; border-radius: var(--r-lg); }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }

  .feature-split .feature-visual { display: none; }

  .pricing-toggle { margin-bottom: 32px; }
  .ptoggle { padding: 6px 14px; font-size: 13px; }

  .pricing-viewport { overflow: hidden; }
  .pricing-grid {
    display: flex; gap: 0;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    max-width: none;
    padding-top: 16px;
  }
  .pricing-card {
    flex: 0 0 100%;
    padding: 36px 24px;
  }

  .pricing-arrow {
    display: flex;
    position: absolute;
    top: 50%; transform: translateY(-50%);
    z-index: 5;
    width: 36px; height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1.5px solid var(--line);
    box-shadow: var(--shadow-sm);
    align-items: center; justify-content: center;
    cursor: pointer;
    color: var(--ink);
  }
  .pricing-arrow-prev { left: -4px; }
  .pricing-arrow-next { right: -4px; }
  .pricing-arrow:disabled { opacity: 0.25; cursor: default; }
  .pricing-arrow:not(:disabled):active { background: var(--bg-2); }

  .pricing-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }
  .pricing-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--line-2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background var(--ease), transform var(--ease);
  }
  .pricing-dot.active {
    background: var(--blue);
    transform: scale(1.25);
  }
  .testimonials-grid { grid-template-columns: 1fr; }
  .cases-grid { grid-template-columns: 1fr; }
  .features-grid, .features-grid--4 { grid-template-columns: 1fr; }
  .contact-form { padding: 28px; }
  .form-row { grid-template-columns: 1fr; }

  .footer { padding: 40px 0 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; margin-bottom: 28px; }

  .cta-section { padding: 48px 0; }
  .page-header { padding: 40px 0 28px; }

  .blog-grid { grid-template-columns: 1fr; }
}


/* ── Blog ── */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 28px; }
.blog-card { display: block; background: var(--bg-1); border: 1px solid var(--line); border-radius: 12px; overflow: hidden; text-decoration: none; color: inherit; transition: box-shadow .2s, border-color .2s; }
.blog-card:hover { border-color: var(--blue); box-shadow: 0 4px 24px rgba(0,0,0,.06); }
.blog-card-img { width: 100%; height: 200px; object-fit: cover; }
.blog-card-body { padding: 24px; }
.blog-card-date { font-size: 13px; color: var(--ink-4); display: block; margin-bottom: 8px; }
.blog-card-title { font-size: 19px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.01em; }
.blog-card-desc { font-size: 14px; color: var(--ink-3); line-height: 1.65; }
.blog-back { font-size: 14px; color: var(--blue); text-decoration: none; display: inline-block; margin-bottom: 16px; }
.blog-back:hover { text-decoration: underline; }
.blog-article-date { font-size: 14px; color: var(--ink-4); display: block; margin-top: 8px; }
.blog-empty { text-align: center; padding: 48px 0; color: var(--ink-3); font-size: 16px; }
.container--sm { max-width: 720px; }

/* ── reCAPTCHA ── */
.grecaptcha-badge { visibility: hidden !important; }
.recaptcha-note { font-size: 11px; color: var(--ink-4); margin-top: 10px; line-height: 1.5; }
.recaptcha-note a { color: var(--ink-4); text-decoration: underline; }
