:root {
  --dark: #3D5047;
  --dark-2: #344239;
  --teal: #5BBFB5;
  --teal-deep: #3A9F95;
  --cream: #F5F0E8;
  --cream-2: #F8F5F0;
  --white: #FFFFFF;
  --text: #2C4A3E;
  --text-mid: #5A7A70;
  --text-light: #8AADA5;
  --gold: #C9A84C;
  --border: rgba(61,80,71,0.12);
  --shadow-sm: 0 2px 8px rgba(44,74,62,0.06);
  --shadow-md: 0 8px 24px rgba(44,74,62,0.08);
  --shadow-lg: 0 24px 64px rgba(44,74,62,0.16);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--teal); color: var(--dark); }

html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', system-ui, -apple-system, sans-serif;
  background: var(--cream-2);
  color: var(--text);
  font-weight: 400;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.eyebrow {
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal-deep);
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before {
  content: '';
  width: 18px; height: 1.5px;
  background: var(--teal);
  display: inline-block;
}

h1, h2, h3, h4 { font-weight: 700; letter-spacing: -0.015em; line-height: 1.1; }
h1 { font-size: clamp(40px, 5.8vw, 84px); letter-spacing: -0.025em; }
h2 { font-size: clamp(28px, 3.5vw, 48px); letter-spacing: -0.02em; }
h3 { font-size: clamp(20px, 2vw, 26px); }
p  { font-weight: 400; color: var(--text-mid); }

.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 clamp(20px, 4vw, 32px); }

/* ─────────────── NAV ─────────────── */
.nav {
  position: fixed;
  top: 16px; left: 50%; transform: translateX(-50%);
  z-index: 100;
  background: rgba(61,80,71,0.92);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 100px;
  padding: 8px 10px 8px 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 12px 40px rgba(0,0,0,0.18);
  white-space: nowrap;
  max-width: calc(100vw - 32px);
}
.nav-brand {
  display: inline-flex; align-items: center; gap: 8px;
  text-decoration: none;
  padding-right: 10px;
  margin-right: 6px;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.nav-brand img {
  height: 22px;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}
.nav-links { display: inline-flex; gap: 2px; }
.nav-link {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-weight: 500; font-size: 13px;
  padding: 8px 14px;
  border-radius: 100px;
  transition: all 0.2s;
  white-space: nowrap;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.06); }
.nav-cta {
  background: var(--teal);
  color: var(--dark);
  font-weight: 700; font-size: 13px;
  padding: 9px 18px;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
  margin-left: 6px;
}
.nav-cta:hover { background: var(--white); transform: translateY(-1px); }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-brand { border-right: none; padding-right: 0; margin-right: 0; }
  .nav { padding: 8px 8px 8px 16px; gap: 10px; }
}

/* ─────────────── HERO ─────────────── */
.hero {
  background: var(--dark);
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  color: var(--white);
}
.hero::before {
  content: '';
  position: absolute;
  right: -120px; top: -100px;
  width: 620px; height: 620px;
  background: radial-gradient(circle, rgba(91,191,181,0.10) 0%, transparent 60%);
  pointer-events: none;
}
.hero-diamond {
  position: absolute;
  border-radius: 26px;
  pointer-events: none;
}
.hero-diamond.d1 {
  right: 8%; top: 18%;
  width: 200px; height: 200px;
  background: rgba(255,255,255,0.04);
  transform: rotate(45deg);
  animation: float 12s ease-in-out infinite;
}
.hero-diamond.d2 {
  right: 22%; top: 48%;
  width: 110px; height: 110px;
  background: rgba(91,191,181,0.14);
  transform: rotate(45deg);
  animation: float 9s ease-in-out infinite reverse;
}
.hero-diamond.d3 {
  right: 4%; top: 62%;
  width: 70px; height: 70px;
  background: rgba(91,191,181,0.08);
  transform: rotate(45deg);
  animation: float 14s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: rotate(45deg) translateY(0); }
  50%      { transform: rotate(45deg) translateY(-18px); }
}

.hero-content {
  position: relative; z-index: 2;
  max-width: 760px;
}
.hero h1 { color: var(--white); margin-top: 28px; }
.hero h1 .accent { color: var(--teal); }
.hero-wordmark {
  height: 36px;
  width: auto;
  display: block;
  margin-bottom: 56px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}
@media (max-width: 600px) {
  .hero-wordmark { height: 28px; margin-bottom: 36px; }
}
.hero-divider {
  width: 56px; height: 2px;
  background: var(--teal);
  margin: 36px 0 28px;
}
.hero-lead {
  font-weight: 300;
  font-size: clamp(17px, 1.5vw, 21px);
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 580px;
}
.hero-cta-row {
  margin-top: 44px;
  display: flex; gap: 14px; flex-wrap: wrap;
}
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 16px 28px;
  border-radius: 100px;
  font-weight: 700; font-size: 14px;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.2s ease;
  letter-spacing: -0.005em;
}
.btn-primary {
  background: var(--teal);
  color: var(--dark);
}
.btn-primary:hover {
  background: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 32px rgba(91,191,181,0.3);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.2);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.4);
}
.btn-arrow { transition: transform 0.2s; }
.btn:hover .btn-arrow { transform: translateX(3px); }

.hero-trust {
  margin-top: 72px;
  display: flex; gap: 48px; flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-item .trust-val {
  font-weight: 700; font-size: 32px;
  color: var(--teal);
  line-height: 1;
  letter-spacing: -0.02em;
}
.trust-item .trust-lbl {
  font-weight: 400; font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
}

/* ─────────────── SECTION COMMON ─────────────── */
section { padding: 110px 0; position: relative; }
.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head h2 {
  margin-top: 18px;
  color: var(--text);
}
.section-head .sub {
  margin-top: 20px;
  font-size: 17px;
  color: var(--text-mid);
  max-width: 600px;
  font-weight: 400;
  text-wrap: pretty;
}

/* ─────────────── PROČ RESIMO ─────────────── */
.proc { background: var(--cream-2); }
.proc-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
@media (max-width: 760px) { .proc-grid { grid-template-columns: 1fr; } }
.proc-card {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  display: flex; gap: 20px;
  align-items: flex-start;
  border: 1px solid rgba(61,80,71,0.06);
  transition: all 0.25s;
}
.proc-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(91,191,181,0.25);
}
.proc-num {
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: rgba(91,191,181,0.12);
  color: var(--teal-deep);
  border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px;
  letter-spacing: 0.02em;
}
.proc-card h3 {
  font-size: 17px;
  margin-bottom: 8px;
  color: var(--text);
}
.proc-card p {
  font-size: 14px;
  line-height: 1.6;
}

/* ─────────────── CO DOSTANETE ─────────────── */
.features { background: var(--white); }
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .features-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .features-grid { grid-template-columns: 1fr; } }
.feat {
  background: var(--cream-2);
  border-radius: 16px;
  padding: 28px;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(61,80,71,0.05);
  transition: all 0.25s;
}
.feat::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--teal);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.feat:hover {
  transform: translateY(-3px);
  background: var(--white);
  box-shadow: var(--shadow-md);
}
.feat:hover::before { transform: scaleX(1); }
.feat.hero-feat {
  background: var(--dark);
  color: var(--white);
  grid-column: span 1;
}
.feat.hero-feat::before { transform: scaleX(1); }
.feat.hero-feat h3 { color: var(--white); }
.feat.hero-feat p { color: rgba(255,255,255,0.6); }
.feat-icon {
  width: 40px; height: 40px;
  background: rgba(91,191,181,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.feat.hero-feat .feat-icon { background: rgba(91,191,181,0.18); }
.feat-icon svg { width: 18px; height: 18px; stroke: var(--teal-deep); fill: none; stroke-width: 1.8; }
.feat.hero-feat .feat-icon svg { stroke: var(--teal); }
.feat h3 { font-size: 16px; margin-bottom: 8px; color: var(--text); letter-spacing: -0.01em; }
.feat p { font-size: 13.5px; line-height: 1.6; }

/* ─────────────── PRICING (the interactive part) ─────────────── */
.pricing {
  background: linear-gradient(180deg, var(--cream-2) 0%, var(--cream) 100%);
  position: relative;
  overflow: hidden;
}
.pricing::before {
  content: '';
  position: absolute;
  right: -150px; top: 80px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(91,191,181,0.10) 0%, transparent 65%);
  pointer-events: none;
}
.pricing::after {
  content: '';
  position: absolute;
  left: -120px; bottom: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, rgba(61,80,71,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.calc-shell {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(61,80,71,0.08);
}

.calc-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
}
@media (max-width: 900px) { .calc-grid { grid-template-columns: 1fr; } }

/* LEFT — slider + tier */
.calc-left {
  padding: clamp(28px, 5vw, 44px) clamp(24px, 5vw, 44px) clamp(28px, 4vw, 36px);
  border-right: 1px solid rgba(61,80,71,0.06);
}
@media (max-width: 900px) { .calc-left { border-right: none; border-bottom: 1px solid rgba(61,80,71,0.06); } }

.calc-step {
  font-weight: 600; font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 8px;
}
.calc-q {
  font-weight: 700;
  font-size: 24px;
  color: var(--text);
  letter-spacing: -0.015em;
  line-height: 1.25;
  margin-bottom: 28px;
}

.slider-readout {
  display: flex; align-items: baseline; gap: 12px;
  margin-bottom: 14px;
}
.slider-readout .val {
  font-weight: 700;
  font-size: 64px;
  color: var(--text);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.slider-readout .val.is-custom {
  font-size: 44px;
  color: var(--teal-deep);
}
.slider-readout .unit {
  font-weight: 500; font-size: 16px;
  color: var(--text-mid);
}

.slider-wrap {
  position: relative;
  margin: 26px 0 14px;
  padding: 14px 0;
}
.slider-track {
  position: relative;
  height: 6px;
  background: rgba(61,80,71,0.08);
  border-radius: 100px;
}
.slider-fill {
  position: absolute;
  inset: 0 auto 0 0;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal));
  border-radius: 100px;
  transition: width 0.18s ease;
}
input[type="range"].slider {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 34px;
  top: 0;
  margin: 0;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  outline: none;
  cursor: grab;
  z-index: 2;
}
input[type="range"].slider:active { cursor: grabbing; }
input[type="range"].slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px; height: 28px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 6px 16px rgba(91,191,181,0.35), 0 2px 4px rgba(0,0,0,0.06);
  transition: transform 0.15s;
}
input[type="range"].slider::-webkit-slider-thumb:hover { transform: scale(1.1); }
input[type="range"].slider::-moz-range-thumb {
  width: 22px; height: 22px;
  background: var(--white);
  border: 3px solid var(--teal);
  border-radius: 50%;
  cursor: grab;
  box-shadow: 0 6px 16px rgba(91,191,181,0.35);
}

.slider-ticks {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 0 2px;
}
.slider-ticks span {
  font-weight: 500; font-size: 11px;
  color: var(--text-light);
  font-variant-numeric: tabular-nums;
}

/* Tier chips */
.tier-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 32px;
}
.tier-chip {
  border: 1px solid rgba(61,80,71,0.1);
  background: var(--cream-2);
  border-radius: 10px;
  padding: 10px 8px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  font-family: inherit;
}
.tier-chip:hover {
  border-color: var(--teal);
  background: var(--white);
}
.tier-chip.active {
  border-color: var(--teal);
  background: var(--dark);
}
.tier-chip-range {
  font-weight: 700; font-size: 11px;
  color: var(--text-mid);
  letter-spacing: -0.005em;
}
.tier-chip.active .tier-chip-range { color: var(--teal); }
.tier-chip-lbl {
  font-weight: 500; font-size: 9.5px;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-top: 2px;
}
.tier-chip.active .tier-chip-lbl { color: rgba(255,255,255,0.55); }

/* RIGHT — price */
.calc-right {
  padding: clamp(28px, 5vw, 44px) clamp(24px, 5vw, 44px) clamp(28px, 4vw, 36px);
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
  display: flex; flex-direction: column;
}
.calc-right::before {
  content: '';
  position: absolute;
  right: -80px; top: -60px;
  width: 280px; height: 280px;
  background: rgba(91,191,181,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.calc-right .calc-step { color: var(--teal); }
.calc-right .calc-q { color: var(--white); }

.price-tier-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(91,191,181,0.15);
  border: 1px solid rgba(91,191,181,0.3);
  border-radius: 100px;
  padding: 6px 14px;
  font-weight: 600; font-size: 11px;
  color: var(--teal);
  letter-spacing: 0.04em;
  margin-bottom: 22px;
  width: fit-content;
  position: relative; z-index: 2;
}
.price-tier-tag .dot {
  width: 6px; height: 6px;
  background: var(--teal);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(91,191,181,0.18);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(91,191,181,0.18); }
  50%      { box-shadow: 0 0 0 8px rgba(91,191,181,0.06); }
}

.price-big {
  font-weight: 700;
  font-size: clamp(44px, 11.5vw, 76px);
  color: var(--white);
  line-height: 0.95;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
  position: relative; z-index: 2;
  transition: opacity 0.2s;
  word-break: keep-all;
}
.price-big.is-custom { font-size: clamp(32px, 7vw, 44px); }
.price-big .currency {
  font-size: clamp(18px, 4.5vw, 28px);
  color: rgba(255,255,255,0.55);
  font-weight: 600;
  margin-left: 6px;
  letter-spacing: 0;
}
.price-period {
  font-weight: 400; font-size: 14px;
  color: rgba(255,255,255,0.55);
  margin-top: 6px;
  position: relative; z-index: 2;
}

.price-breakdown {
  margin-top: 28px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  position: relative; z-index: 2;
}
.pb-cell {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 10px;
  padding: 14px 16px;
}
.pb-lbl {
  font-weight: 500; font-size: 10.5px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.pb-val {
  font-weight: 700; font-size: clamp(15px, 3.8vw, 20px);
  color: var(--white);
  line-height: 1.1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.015em;
  word-break: break-word;
}
.pb-sub {
  font-weight: 400; font-size: 11px;
  color: rgba(255,255,255,0.45);
  margin-top: 4px;
}

.price-meta {
  margin-top: 22px;
  display: flex; flex-direction: column; gap: 10px;
  position: relative; z-index: 2;
}
.meta-row {
  display: flex; align-items: flex-start; gap: 10px;
  font-weight: 400; font-size: 12.5px;
  color: rgba(255,255,255,0.65);
  line-height: 1.5;
}
.meta-row svg {
  flex-shrink: 0;
  width: 14px; height: 14px;
  stroke: var(--teal);
  margin-top: 3px;
}
.meta-row b { color: var(--white); font-weight: 600; }

/* Billing toggle */
.billing-toggle {
  display: inline-flex;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 100px;
  padding: 4px;
  margin-bottom: 18px;
  position: relative; z-index: 2;
}
.billing-toggle button {
  background: transparent;
  border: none;
  color: rgba(255,255,255,0.55);
  font-family: inherit;
  font-weight: 600; font-size: 11.5px;
  padding: 8px 16px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: 0.02em;
  display: inline-flex; align-items: center; gap: 6px;
}
.billing-toggle button.active {
  background: var(--teal);
  color: var(--dark);
}
.billing-toggle .save-pill {
  background: rgba(201,168,76,0.2);
  color: var(--gold);
  font-size: 9.5px;
  padding: 2px 6px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.03em;
}
.billing-toggle button.active .save-pill { background: var(--dark); color: var(--gold); }

/* Calc footer CTAs */
.calc-actions {
  margin-top: auto;
  padding-top: 24px;
  display: flex; gap: 10px;
  position: relative; z-index: 2;
}
.calc-actions .btn { flex: 1; justify-content: center; padding: 14px 20px; font-size: 13.5px; }
.btn-primary.compact { background: var(--teal); color: var(--dark); }
.btn-ghost.light { color: var(--white); border-color: rgba(255,255,255,0.18); }

/* ─────────────── V CENĚ — standalone section ─────────────── */
.included-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.included-section::before {
  content: '';
  position: absolute;
  left: -180px; top: -100px;
  width: 480px; height: 480px;
  background: radial-gradient(circle, rgba(91,191,181,0.08) 0%, transparent 65%);
  pointer-events: none;
}
.included-card {
  position: relative;
  background: var(--white);
  border-radius: 28px;
  border: 1px solid rgba(61,80,71,0.06);
  box-shadow: var(--shadow-md);
  padding: 56px;
  overflow: hidden;
}
.included-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--teal-deep), var(--teal));
}
@media (max-width: 760px) { .included-card { padding: 36px 24px; } }

.included-head { margin-bottom: 44px; max-width: 760px; }
.included-head h2 { margin-top: 18px; color: var(--text); }
.included-lead {
  margin-top: 18px;
  font-size: 16px;
  color: var(--text-mid);
  line-height: 1.6;
  text-wrap: pretty;
  max-width: 640px;
}

.included-items {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  padding-top: 36px;
  border-top: 1px solid rgba(61,80,71,0.08);
}
@media (max-width: 880px) { .included-items { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .included-items { grid-template-columns: 1fr; } }

.included-items li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.inc-ico {
  flex-shrink: 0;
  width: 38px; height: 38px;
  background: rgba(91,191,181,0.12);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.inc-ico svg { width: 18px; height: 18px; stroke: var(--teal-deep); }
.included-items h4 {
  font-weight: 700;
  font-size: 14.5px;
  color: var(--text);
  letter-spacing: -0.005em;
  margin-bottom: 4px;
  line-height: 1.3;
}
.included-items p {
  font-size: 13px;
  color: var(--text-mid);
  line-height: 1.55;
}

.included-foot {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid rgba(61,80,71,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.included-foot-meta {
  display: flex; align-items: center; gap: 14px;
  flex-wrap: wrap;
  font-size: 13px;
  color: var(--text-mid);
}
.foot-pill {
  background: rgba(91,191,181,0.12);
  color: var(--teal-deep);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 100px;
  border: 1px solid rgba(91,191,181,0.25);
}
.included-foot .btn { padding: 14px 24px; font-size: 13.5px; }

/* ─────────────── REFERENCE ─────────────── */
.refs { background: var(--white); }
.ref-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 10px;
  margin-top: 16px;
}
@media (max-width: 900px) { .ref-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
.ref-cell {
  background: var(--cream-2);
  border: 1px solid rgba(61,80,71,0.06);
  border-radius: 12px;
  padding: 22px 12px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: var(--text-mid);
  letter-spacing: -0.005em;
  transition: all 0.2s;
}
.ref-cell:hover {
  background: var(--white);
  border-color: var(--teal);
  color: var(--text);
  box-shadow: var(--shadow-sm);
}

/* ─────────────── CTA / KONTAKT ─────────────── */
.cta-section {
  background: var(--dark);
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  right: -200px; top: -200px;
  width: 700px; height: 700px;
  background: radial-gradient(circle, rgba(91,191,181,0.12) 0%, transparent 60%);
  pointer-events: none;
}
.cta-section .container { position: relative; z-index: 2; }
.cta-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: start;
}
@media (max-width: 880px) { .cta-grid { grid-template-columns: 1fr; gap: 40px; } }

.cta-section h2 { color: var(--white); }
.cta-section .eyebrow { color: var(--teal); }
.cta-section .sub {
  font-weight: 300;
  font-size: 17px;
  color: rgba(255,255,255,0.65);
  line-height: 1.55;
  margin-top: 20px;
  text-wrap: pretty;
  max-width: 520px;
}

.contact-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 36px;
  backdrop-filter: blur(10px);
}
.contact-person {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.contact-avatar {
  width: 56px; height: 56px;
  background: rgba(91,191,181,0.15);
  border: 1.5px dashed rgba(91,191,181,0.4);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-avatar svg { width: 24px; height: 24px; stroke: var(--teal); fill: none; stroke-width: 1.5; }
.contact-person-name {
  font-weight: 700; font-size: 17px; color: var(--white);
}
.contact-person-role {
  font-weight: 400; font-size: 13px; color: rgba(255,255,255,0.55);
  margin-top: 2px;
}
.contact-team {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 560px) { .contact-team { grid-template-columns: 1fr; gap: 12px; } }
.contact-person-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 18px 20px;
  display: flex; flex-direction: column;
  gap: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.contact-person-card:hover {
  border-color: rgba(91,191,181,0.3);
  background: rgba(255,255,255,0.06);
}
.contact-person-card .contact-person-name {
  font-weight: 700; font-size: 15px; color: var(--white);
  letter-spacing: -0.005em;
  line-height: 1.3;
}
.contact-person-card .contact-person-role {
  font-weight: 600; font-size: 10.5px;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-top: 4px;
}
.contact-person-rows {
  display: flex; flex-direction: column; gap: 7px;
}
.contact-person-row {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 500; font-size: 12.5px;
  color: rgba(255,255,255,0.78);
  text-decoration: none;
  transition: color 0.18s;
  font-variant-numeric: tabular-nums;
}
.contact-person-row svg {
  width: 13px; height: 13px;
  stroke: var(--teal);
  flex-shrink: 0;
}
.contact-person-row:hover { color: var(--teal); }

.contact-rows {
  display: flex; flex-direction: column; gap: 14px;
  margin-bottom: 24px;
}
.contact-row {
  display: flex; align-items: center; gap: 14px;
}
.contact-row-ico {
  width: 36px; height: 36px;
  background: rgba(91,191,181,0.10);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row-ico svg { width: 15px; height: 15px; stroke: var(--teal); fill: none; stroke-width: 2; }
.contact-row-lbl {
  font-weight: 600; font-size: 10px;
  color: var(--teal);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-row-val {
  font-weight: 600; font-size: 14px;
  color: var(--white);
  margin-top: 1px;
  text-decoration: none;
}
.contact-row-val:hover { color: var(--teal); }

.cta-btns {
  display: flex; gap: 10px; flex-wrap: wrap;
}
.cta-btns .btn { flex: 1; justify-content: center; }

/* Form */
.form-card {
  background: var(--white);
  color: var(--text);
  border-radius: 20px;
  padding: clamp(20px, 4vw, 32px);
  box-shadow: var(--shadow-lg);
}
.form-head {
  font-weight: 700; font-size: 20px;
  color: var(--text);
  letter-spacing: -0.015em;
  margin-bottom: 6px;
}
.form-sub {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 24px;
}
.field {
  display: flex; flex-direction: column;
  margin-bottom: 14px;
}
.field label {
  font-weight: 600; font-size: 11px;
  color: var(--text-mid);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.field input, .field textarea {
  font-family: inherit;
  font-size: 14px;
  color: var(--text);
  background: var(--cream-2);
  border: 1.5px solid transparent;
  border-radius: 10px;
  padding: 12px 14px;
  outline: none;
  transition: all 0.18s;
}
.field input:focus, .field textarea:focus {
  border-color: var(--teal);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(91,191,181,0.12);
}
.field textarea { resize: vertical; min-height: 84px; font-family: inherit; }
.field-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
}
@media (max-width: 480px) { .field-row { grid-template-columns: 1fr; } }
.form-summary {
  background: var(--cream-2);
  border-radius: 10px;
  padding: 14px 16px;
  margin: 16px 0 20px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 12.5px;
  color: var(--text-mid);
  border: 1px dashed rgba(61,80,71,0.15);
}
.form-summary b { color: var(--text); font-weight: 700; font-variant-numeric: tabular-nums; }
.form-submit {
  width: 100%;
  background: var(--dark);
  color: var(--white);
  border: none;
  font-family: inherit;
  font-weight: 700; font-size: 14px;
  padding: 16px;
  border-radius: 100px;
  cursor: pointer;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.2s;
}
.form-submit:hover { background: var(--text); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.form-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
@keyframes fadeIn { from { opacity: 0; transform: translateY(-4px); } to { opacity: 1; transform: translateY(0); } }

/* ─────────────── FOOTER ─────────────── */
.footer {
  background: var(--dark-2);
  color: rgba(255,255,255,0.5);
  padding: 32px 0;
  font-size: 12px;
}
.footer .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-brand img {
  height: 22px;
  width: auto;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.footer a { color: rgba(255,255,255,0.7); text-decoration: none; }
.footer a:hover { color: var(--teal); }

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

/* ─────────────── FOCUS-VISIBLE (a11y) ─────────────── */
*:focus { outline: none; }
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible,
[role="button"]:focus-visible, .tier-chip:focus-visible,
input[type="range"]:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 2px;
  border-radius: 4px;
}
.btn:focus-visible, .nav-cta:focus-visible, .form-submit:focus-visible {
  outline-offset: 3px;
  border-radius: 100px;
}

/* ─────────────── HERO REWORK ─────────────── */
.hero { padding: 130px 0 80px; }
.hero-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
@media (max-width: 980px) { .hero-layout { grid-template-columns: 1fr; gap: 48px; } }

.hero h1 { font-size: clamp(34px, 4.4vw, 62px); margin-top: 22px; line-height: 1.05; }
.hero-lead { font-size: clamp(16px, 1.3vw, 19px); max-width: 540px; }

/* Product visual */
.hero-visual {
  position: relative;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) { .hero-visual { height: 460px; margin-top: 12px; } }
@media (max-width: 600px) { .hero-visual { height: 380px; } }

.mockup-desktop {
  position: absolute;
  left: 0; top: 30px;
  width: 84%;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.35), 0 8px 24px rgba(0,0,0,0.2);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.08);
}
.mockup-bar {
  display: flex; align-items: center; gap: 6px;
  padding: 10px 14px;
  background: #ECE7DD;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}
.mockup-bar span {
  width: 8px; height: 8px; border-radius: 50%; background: #d0c9bb;
}
.mockup-bar .url {
  margin-left: 14px;
  background: rgba(0,0,0,0.05);
  padding: 4px 10px;
  border-radius: 100px;
  font-family: ui-monospace, SF Mono, Menlo, monospace;
  font-size: 10px;
  color: #6f7a73;
  flex: 1;
  max-width: 260px;
}
.mockup-screenshot {
  width: 100%;
  display: block;
  aspect-ratio: 2 / 1;
  object-fit: cover;
  object-position: top center;
  background: var(--cream-2);
}
.mockup-phone-screenshot {
  position: absolute;
  top: 22px; left: 0; right: 0; bottom: 0;
  width: 100%;
  height: calc(100% - 22px);
  display: block;
  object-fit: cover;
  object-position: top center;
}

/* Mobile phone frame */
.mockup-phone {
  position: absolute;
  right: 0; bottom: 0;
  width: 180px;
  height: 360px;
  background: var(--dark-2);
  border-radius: 28px;
  padding: 8px;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45), 0 0 0 1px rgba(255,255,255,0.05);
}
@media (max-width: 600px) { .mockup-phone { width: 140px; height: 280px; right: -8px; } }
.mockup-phone-screen {
  width: 100%; height: 100%;
  background: var(--cream-2);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}
.mockup-phone-notch {
  position: absolute;
  top: 8px; left: 50%; transform: translateX(-50%);
  width: 50px; height: 14px;
  background: var(--dark-2);
  border-radius: 100px;
  z-index: 2;
}

/* Trust strip */
.trust-strip {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.trust-strip-lbl {
  font-weight: 500; font-size: 11px;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.trust-strip-logos {
  display: flex; gap: 28px; flex-wrap: wrap;
  align-items: center;
}
.trust-strip-logos span {
  font-weight: 700; font-size: 14px;
  color: rgba(255,255,255,0.55);
  letter-spacing: -0.005em;
}

/* ─────────────── STATS BAND ─────────────── */
.stats-band {
  background: var(--white);
  padding: 80px 0;
  border-bottom: 1px solid rgba(61,80,71,0.06);
}
.stats-band-head {
  margin-bottom: 40px;
  text-align: center;
}
.stats-band-head h2 {
  font-size: clamp(24px, 2.4vw, 32px);
  color: var(--text);
  max-width: 720px;
  margin: 8px auto 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(61,80,71,0.08);
  background: var(--cream-2);
}
@media (max-width: 880px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 480px) { .stats-grid { grid-template-columns: 1fr; } }
.stats-cell {
  padding: 32px 28px;
  border-right: 1px solid rgba(61,80,71,0.06);
  background: var(--white);
}
.stats-grid > :last-child { border-right: none; }
@media (max-width: 880px) {
  .stats-cell:nth-child(2n) { border-right: none; }
  .stats-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(61,80,71,0.06); }
}
.stats-num {
  font-weight: 700;
  font-size: clamp(34px, 3.6vw, 46px);
  color: var(--text);
  letter-spacing: -0.03em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  display: flex; align-items: baseline;
}
.stats-num .plus { color: var(--teal-deep); font-size: 0.7em; margin-left: 2px; }
.stats-lbl {
  margin-top: 10px;
  font-weight: 600;
  font-size: 13px;
  color: var(--text);
  letter-spacing: -0.005em;
}
.stats-src {
  margin-top: 6px;
  font-weight: 400;
  font-size: 11.5px;
  color: var(--text-light);
  line-height: 1.4;
}

/* ─────────────── JAK TO FUNGUJE (3 steps) ─────────────── */
.howit { background: var(--cream-2); }
.howit-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  position: relative;
}
@media (max-width: 880px) { .howit-steps { grid-template-columns: 1fr; } }
.howit-step {
  background: var(--white);
  border-radius: 18px;
  padding: 32px;
  border: 1px solid rgba(61,80,71,0.06);
  position: relative;
  overflow: hidden;
}
.howit-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--teal);
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s;
}
.howit-step:hover::before { transform: scaleY(1); }
.howit-num {
  font-weight: 700; font-size: 11px;
  color: var(--teal-deep);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.howit-icon {
  width: 48px; height: 48px;
  background: rgba(91,191,181,0.12);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
}
.howit-icon svg { width: 22px; height: 22px; stroke: var(--teal-deep); fill: none; stroke-width: 1.6; }
.howit-step h3 { font-size: 18px; color: var(--text); margin-bottom: 8px; }
.howit-step p { font-size: 14px; line-height: 1.55; }
.howit-badge {
  margin: 32px auto 0;
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--white);
  border: 1px solid rgba(91,191,181,0.3);
  color: var(--teal-deep);
  font-weight: 700; font-size: 13px;
  padding: 12px 22px;
  border-radius: 100px;
  box-shadow: var(--shadow-sm);
}
.howit-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--teal);
  border-radius: 50%;
}
.howit-foot { text-align: center; }

/* ─────────────── PRICING — Most Popular + savings ─────────────── */
.tier-chip { position: relative; }
.tier-chip .pop-badge {
  position: absolute;
  top: -9px; left: 50%; transform: translateX(-50%);
  background: var(--teal);
  color: var(--dark);
  font-weight: 700; font-size: 8.5px;
  padding: 3px 8px;
  border-radius: 100px;
  letter-spacing: 0.06em;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(91,191,181,0.35);
}

.savings-callout {
  display: none;
  align-items: center; gap: 10px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold);
  font-weight: 700; font-size: 12px;
  padding: 8px 14px;
  border-radius: 100px;
  margin-bottom: 14px;
  position: relative; z-index: 2;
  width: fit-content;
  letter-spacing: -0.005em;
}
.savings-callout.show { display: inline-flex; animation: fadeIn 0.3s ease; }
.savings-callout svg { width: 14px; height: 14px; stroke: var(--gold); fill: none; stroke-width: 2.4; flex-shrink: 0; }

.price-strike {
  font-weight: 500; font-size: 14px;
  color: rgba(255,255,255,0.4);
  text-decoration: line-through;
  margin-right: 8px;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
@media (max-width: 480px) {
  .price-strike { display: block; margin-right: 0; margin-bottom: 6px; }
}
.price-effective {
  font-weight: 400; font-size: 12px;
  color: rgba(255,255,255,0.55);
  margin-top: 4px;
}
.price-effective b { color: var(--teal); font-weight: 700; }

/* ─────────────── FAQ ─────────────── */
.faq { background: var(--cream-2); }
.faq-list {
  max-width: 880px;
  margin: 0 auto;
  display: flex; flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border-radius: 14px;
  border: 1px solid rgba(61,80,71,0.08);
  overflow: hidden;
  transition: border-color 0.2s;
}
.faq-item[open] { border-color: rgba(91,191,181,0.35); }
.faq-item summary {
  padding: 22px 26px;
  font-weight: 700; font-size: 16px;
  color: var(--text);
  cursor: pointer;
  list-style: none;
  display: flex; justify-content: space-between; align-items: center;
  gap: 16px;
  letter-spacing: -0.01em;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: '';
  flex-shrink: 0;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: rgba(91,191,181,0.12);
  background-image:
    linear-gradient(var(--teal-deep), var(--teal-deep)),
    linear-gradient(var(--teal-deep), var(--teal-deep));
  background-size: 10px 1.6px, 1.6px 10px;
  background-position: center, center;
  background-repeat: no-repeat;
  transition: transform 0.25s, background-color 0.2s;
}
.faq-item[open] summary::after {
  transform: rotate(45deg);
  background-color: rgba(91,191,181,0.2);
}
.faq-item .faq-answer {
  padding: 0 26px 24px;
  font-size: 14.5px;
  color: var(--text-mid);
  line-height: 1.65;
  text-wrap: pretty;
  max-width: 720px;
}
.faq-item .faq-answer b { color: var(--text); font-weight: 700; }

/* ─────────────── REFERENCE update ─────────────── */
.ref-grid { grid-template-columns: repeat(7, 1fr); }
@media (max-width: 1100px) { .ref-grid { grid-template-columns: repeat(4, 1fr); } }
@media (max-width: 560px) { .ref-grid { grid-template-columns: repeat(2, 1fr); } }
.ref-disclaimer {
  margin-top: 24px;
  font-size: 12px;
  color: var(--text-light);
  text-align: center;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
  line-height: 1.5;
}

/* ─────────────── CALENDLY POST-SUBMIT ─────────────── */
.calendly-card {
  display: none;
  background: var(--cream-2);
  border-radius: 14px;
  padding: 28px;
  margin-top: 16px;
  border: 1px solid rgba(91,191,181,0.3);
  text-align: center;
}
.calendly-card.show { display: block; animation: fadeIn 0.4s ease; }
.calendly-card h4 {
  font-weight: 700;
  font-size: 18px;
  color: var(--text);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}
.calendly-card .lead-info {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 20px;
}
.calendly-card .lead-info b { color: var(--text); }
.calendly-placeholder {
  background: var(--white);
  border-radius: 10px;
  padding: 36px 24px;
  border: 1.5px dashed rgba(91,191,181,0.4);
  margin-bottom: 16px;
}
.calendly-placeholder-ico {
  width: 48px; height: 48px;
  background: rgba(91,191,181,0.15);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
}
.calendly-placeholder-ico svg {
  width: 22px; height: 22px;
  stroke: var(--teal-deep);
  fill: none; stroke-width: 1.8;
}
.calendly-placeholder p {
  font-size: 13.5px;
  color: var(--text-mid);
  margin-bottom: 4px;
}
.calendly-placeholder small {
  font-size: 11px;
  color: var(--text-light);
  font-family: ui-monospace, SF Mono, Menlo, monospace;
}
/* ─────────────── FLOATING STICKY CTA ─────────────── */
.float-cta {
  position: fixed;
  right: 20px; bottom: 20px;
  background: var(--teal);
  color: var(--dark);
  font-weight: 700; font-size: 13.5px;
  padding: 14px 22px;
  border-radius: 100px;
  text-decoration: none;
  box-shadow: 0 12px 32px rgba(91,191,181,0.4), 0 4px 12px rgba(0,0,0,0.1);
  display: none;
  align-items: center; gap: 8px;
  z-index: 90;
  transition: all 0.25s ease;
  letter-spacing: -0.005em;
}
.float-cta.visible {
  display: inline-flex;
  animation: floatIn 0.4s ease;
}
@keyframes floatIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.float-cta:hover {
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(91,191,181,0.5);
}
@media (max-width: 600px) {
  .float-cta { right: 12px; bottom: 12px; padding: 12px 18px; font-size: 12.5px; }
}

/* ─────────────── REDUCED MOTION ─────────────── */
@media (prefers-reduced-motion: reduce) {
  .hero-diamond, .float-cta { animation: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
  * { scroll-behavior: auto !important; }
}

/* ─────────────── HERO PROOF STRIP ─────────────── */
.hero-proof {
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  max-width: 540px;
}
.hero-proof-row {
  display: flex;
  align-items: stretch;
  gap: 28px;
}
.hero-proof-item {
  display: flex;
  flex-direction: column;
}
.hero-proof-val {
  font-weight: 700;
  font-size: clamp(28px, 2.8vw, 38px);
  color: var(--teal);
  letter-spacing: -0.025em;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}
.hero-proof-lbl {
  margin-top: 8px;
  font-weight: 500;
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  letter-spacing: -0.005em;
}
.hero-proof-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
}
.hero-proof-src {
  margin-top: 14px;
  font-weight: 400;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.005em;
}
@media (max-width: 600px) {
  .hero-proof-row { gap: 18px; }
  .hero-proof-val { font-size: 26px; }
}

/* ─────────────── STATS 3×2 GRID ─────────────── */
.stats-grid.stats-grid-6 {
  grid-template-columns: repeat(3, 1fr);
}
.stats-grid.stats-grid-6 > .stats-cell:nth-child(3) { border-right: none; }
.stats-grid.stats-grid-6 > .stats-cell:nth-child(-n+3) { border-bottom: 1px solid rgba(61,80,71,0.06); }
.stats-grid.stats-grid-6 > .stats-cell:nth-child(4),
.stats-grid.stats-grid-6 > .stats-cell:nth-child(5) { border-right: 1px solid rgba(61,80,71,0.06); }
.stats-grid.stats-grid-6 > .stats-cell:nth-child(6) { border-right: none; }
@media (max-width: 880px) {
  .stats-grid.stats-grid-6 { grid-template-columns: repeat(2, 1fr); }
  .stats-grid.stats-grid-6 > .stats-cell { border-right: 1px solid rgba(61,80,71,0.06); }
  .stats-grid.stats-grid-6 > .stats-cell:nth-child(2n) { border-right: none; }
  .stats-grid.stats-grid-6 > .stats-cell:nth-child(-n+4) { border-bottom: 1px solid rgba(61,80,71,0.06); }
  .stats-grid.stats-grid-6 > .stats-cell:nth-child(5),
  .stats-grid.stats-grid-6 > .stats-cell:nth-child(6) { border-bottom: none; }
}
@media (max-width: 480px) {
  .stats-grid.stats-grid-6 { grid-template-columns: 1fr; }
  .stats-grid.stats-grid-6 > .stats-cell { border-right: none; border-bottom: 1px solid rgba(61,80,71,0.06); }
  .stats-grid.stats-grid-6 > .stats-cell:last-child { border-bottom: none; }
}
.stats-disclaimer {
  margin-top: 18px;
  text-align: center;
  font-size: 11.5px;
  color: var(--text-light);
  opacity: 0.65;
  font-weight: 400;
  letter-spacing: 0.005em;
}

/* ───────── MOBILE SWEEP ───────── */
@media (max-width: 480px) {
  .hero { padding: 110px 0 60px; }
  .hero h1 { font-size: clamp(28px, 8.5vw, 38px); line-height: 1.08; }
  .hero-lead { font-size: 15px; }
  .hero-cta-row { gap: 10px; margin-top: 28px; }
  .hero-cta-row .btn { width: 100%; justify-content: center; padding: 14px 22px; }
  .hero-trust { margin-top: 48px; gap: 32px; }
  .trust-strip { gap: 14px; }
  .trust-strip-logos { gap: 16px; flex-wrap: wrap; }

  .calc-shell { border-radius: 18px; }
  .price-breakdown { grid-template-columns: 1fr; gap: 10px; margin-top: 22px; padding-top: 18px; }
  .pb-cell { padding: 12px 14px; }
  .tier-chips { gap: 6px; flex-wrap: wrap; }
  .tier-chip { padding: 8px 12px; font-size: 11px; flex: 1 1 calc(50% - 6px); min-width: 0; }

  .form-card { border-radius: 16px; }
  .form-submit { padding: 14px 22px; }

  .faq-item summary { padding: 18px 18px; font-size: 15px; }
  .faq-answer { padding: 0 18px 18px; font-size: 14px; line-height: 1.55; }

  .footer .container { flex-direction: column; align-items: flex-start; gap: 12px; }
  .footer-brand { flex-wrap: wrap; }

  .stats-band { padding: 56px 0; }
  .stats-band-head { margin-bottom: 28px; }
  .stats-cell { padding: 22px 18px; }

  .howit { padding-bottom: 48px; }
  .howit-step { padding: 22px 20px; }
  .howit-foot { margin-top: 28px; }

  .features { padding: 64px 0; }
  .feat { padding: 24px 20px; }
}
@media (max-width: 360px) {
  .price-big { font-size: clamp(36px, 11vw, 44px); }
  .price-big.is-custom { font-size: 26px; }
}
