/* ====================================================================
   pozicka-new.less — landing page pôžička cez mobil
   Hardcoded styles, žiadne CMS premenné.
   ==================================================================== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --mint: #00C96B;
  --mint-deep: #00A855;
  --mint-grad: linear-gradient(135deg, #00c96b 0%, #00a855 100%);
  --mint-soft: #ECFDF5;
  --mint-50: #F0FDF4;
  --amber: #F59E0B;
  --amber-deep: #D97706;
  --ink: #0F172A;
  --ink-soft: #1E293B;
  --ink-border: rgba(255, 255, 255, 0.1);
  --off-white: #FAFAF9;
  --white: #FFFFFF;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748B;
  --slate-400: #94A3B8;
  --slate-300: #CBD5E1;
  --slate-200: #E2E8F0;
  --slate-100: #F1F5F9;
  --shadow-mint: 0 6px 20px rgba(0, 201, 107, 0.28);
  --shadow-mint-hover: 0 10px 28px rgba(0, 201, 107, 0.38);
  --shadow-card: 0 1px 2px rgba(15, 23, 42, 0.03);
  --shadow-card-hover: 0 20px 40px -12px rgba(15, 23, 42, 0.08);
  --radius-pill: 999px;
  --radius-card: 24px;
  --radius-xl: 32px;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.6;
  background: var(--off-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
.mono {
  font-family: 'JetBrains Mono', monospace;
  font-variant-numeric: tabular-nums;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 32px;
  }
}
@media (min-width: 1200px) {
  .container {
    padding: 0 40px;
  }
}
/* ================== BUTTONS ================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: inherit;
  font-weight: 600;
  letter-spacing: -0.01em;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.22s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--mint-grad);
  color: var(--white);
  font-weight: 600;
  font-size: 17px;
  padding: 0 30px;
  height: 56px;
  border-radius: var(--radius-pill);
  box-shadow: var(--shadow-mint);
}
.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: var(--shadow-mint-hover);
}
.btn-primary--lg {
  height: 60px;
  padding: 0 36px;
  font-size: 18px;
}
.btn-secondary {
  background: var(--mint-soft);
  color: var(--mint-deep);
  border: 1.5px solid rgba(0, 168, 85, 0.22);
  border-radius: var(--radius-pill);
  height: 52px;
  padding: 0 26px;
  font-size: 16px;
}
.btn-secondary:hover {
  background: rgba(0, 201, 107, 0.18);
  border-color: rgba(0, 168, 85, 0.4);
}
.btn-secondary--sm {
  height: 44px;
  padding: 0 22px;
  font-size: 15px;
}
.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255, 255, 255, 0.3);
  border-radius: var(--radius-pill);
  height: 52px;
  padding: 0 26px;
  font-size: 16px;
  font-weight: 600;
}
.btn-ghost-light:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.5);
}
/* ================== HEADER ================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: transparent;
  transition: background 0.3s var(--ease), backdrop-filter 0.3s var(--ease), border-color 0.3s var(--ease);
  border-bottom: 1px solid transparent;
}
.header.scrolled {
  background: rgba(250, 250, 249, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom-color: var(--slate-200);
}
@media (max-width: 1023px) {
  .header,
  .header.scrolled {
    background: var(--white);
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    border-bottom-color: var(--slate-200);
  }
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.logo {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: var(--mint-grad);
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px -4px rgba(0, 168, 85, 0.4);
}
.logo-icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--white);
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.logo-text-1 {
  font-weight: 700;
  font-size: 16px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.logo-text-2 {
  font-weight: 500;
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 2px;
}
/* ================== HAMBURGER & MOBILE NAV ================== */
.hamburger {
  display: none;
  width: 44px;
  height: 44px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  position: relative;
  border-radius: 10px;
}
.hamburger:hover {
  background: rgba(15, 23, 42, 0.04);
}
.hamburger span {
  position: absolute;
  left: 11px;
  width: 22px;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform 0.25s var(--ease), opacity 0.2s var(--ease), top 0.25s var(--ease);
}
.hamburger span:nth-child(1) {
  top: 14px;
}
.hamburger span:nth-child(2) {
  top: 21px;
}
.hamburger span:nth-child(3) {
  top: 28px;
}
.hamburger.open span:nth-child(1) {
  top: 21px;
  transform: rotate(45deg);
}
.hamburger.open span:nth-child(2) {
  opacity: 0;
}
.hamburger.open span:nth-child(3) {
  top: 21px;
  transform: rotate(-45deg);
}
@media (max-width: 1023px) {
  .hamburger {
    display: block;
  }
}
.mobile-nav-overlay {
  position: fixed;
  inset: 72px 0 0 0;
  background: rgba(15, 23, 42, 0.32);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s var(--ease);
  z-index: 95;
}
.mobile-nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}
.mobile-nav {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--slate-200);
  box-shadow: 0 12px 32px -12px rgba(15, 23, 42, 0.12);
  padding: 12px 20px 20px;
  transform: translateY(-110%);
  transition: transform 0.3s var(--ease);
  z-index: 96;
  display: none;
}
.mobile-nav.open {
  transform: translateY(0);
}
@media (max-width: 1023px) {
  .mobile-nav {
    display: block;
  }
}
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
}
.mobile-nav-list a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1px solid var(--slate-100);
  transition: color 0.2s, background 0.2s;
  border-radius: 8px;
}
.mobile-nav-list li:last-child a {
  border-bottom: none;
}
.mobile-nav-list a:hover {
  color: var(--mint-deep);
  background: var(--mint-soft);
}
.mobile-nav-list a svg {
  width: 20px;
  height: 20px;
  stroke: var(--mint-deep);
  stroke-width: 2;
  fill: none;
  flex-shrink: 0;
}
.mobile-nav-list a .nav-meta {
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-500);
}
/* ================== EYEBROW ================== */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 20px;
  background: var(--mint-soft);
  color: var(--mint-deep);
  border: 1px solid rgba(0, 168, 85, 0.18);
}
.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 3px rgba(0, 201, 107, 0.2);
}
.eyebrow--dark {
  background: rgba(0, 201, 107, 0.14);
  color: var(--mint);
  border-color: rgba(0, 201, 107, 0.3);
}
a.eyebrow--link {
  text-decoration: none;
  transition: background 0.2s, border-color 0.2s;
}
a.eyebrow--link:hover {
  background: rgba(0, 201, 107, 0.18);
  border-color: rgba(0, 168, 85, 0.4);
}
/* ================== HERO ================== */
.hero {
  position: relative;
  background: var(--off-white);
  padding: 140px 0 100px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .hero {
    padding: 96px 0 56px;
  }
  .hero-cta-row {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-cta-row .btn {
    width: 100%;
  }
}
.hero::before {
  content: '';
  position: absolute;
  top: -180px;
  left: -180px;
  width: 560px;
  height: 560px;
  background: radial-gradient(circle, rgba(0, 201, 107, 0.2) 0%, transparent 65%);
  filter: blur(60px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -240px;
  right: -240px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 201, 107, 0.1) 0%, transparent 65%);
  filter: blur(80px);
  pointer-events: none;
}
.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1.15fr 1fr;
    gap: 64px;
  }
}
.hero h1 {
  font-size: 6.5vw;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.05;
  color: var(--ink);
  margin-bottom: 16px;
}
.hero h1 .mark {
  position: relative;
  white-space: nowrap;
  color: var(--mint-deep);
  padding: 0 2px;
}
.hero h1 .mark::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0.04em;
  height: 0.18em;
  background: rgba(0, 201, 107, 0.22);
  border-radius: 2px;
  z-index: -1;
}
.hero-sub {
  font-size: 1.4vw;
  line-height: 1.55;
  color: var(--slate-600);
  margin-bottom: 14px;
  max-width: 520px;
}
.hero-amount {
  margin: 28px 0 32px;
  padding: 18px 22px;
  background: var(--white);
  border: 1px solid rgba(0, 201, 107, 0.18);
  border-radius: 18px;
  box-shadow: 0 8px 24px -10px rgba(0, 168, 85, 0.18);
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-amount-label {
  font-size: 11px;
  font-weight: 700;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.hero-amount-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 5.2vw;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-amount-value .eur {
  color: var(--ink);
  font-weight: 500;
  font-size: 0.7em;
  margin-left: 4px;
}
.hero-amount-meta {
  font-size: 14px;
  color: var(--slate-500);
  font-weight: 500;
}
.hero-cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.hero-badges {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px 28px;
  font-size: 14px;
  font-weight: 500;
  color: var(--slate-600);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.hero-badge-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--mint);
  color: var(--white);
  display: grid;
  place-items: center;
}
.hero-badge-icon svg {
  width: 11px;
  height: 11px;
  stroke-width: 3.5;
}
@media (max-width: 767px) {
  .hero-badges {
    display: grid;
    grid-template-columns: max-content max-content;
    gap: 14px 24px;
  }
}
/* PHONE MOCKUP */
.phone-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
@media (max-width: 1023px) {
  .phone-wrap {
    display: none;
  }
}
.phone-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0, 201, 107, 0.22) 0%, transparent 55%);
  filter: blur(30px);
  pointer-events: none;
}
.phone {
  position: relative;
  width: 280px;
  aspect-ratio: 0.47368421;
  background: #1A1F2E;
  border-radius: 44px;
  border: 2px solid #2A3142;
  box-shadow: 0 40px 80px -20px rgba(15, 23, 42, 0.25), 0 0 0 6px rgba(15, 23, 42, 0.04);
  padding: 8px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.phone-notch {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  width: 96px;
  height: 24px;
  background: #0A0E18;
  border-radius: 14px;
  z-index: 2;
}
.phone-screen {
  width: 100%;
  height: 100%;
  background: var(--off-white);
  border-radius: 36px;
  padding: 48px 18px 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  overflow: hidden;
}
.app-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-logo {
  font-weight: 700;
  font-size: 13px;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.app-logo .dot {
  color: var(--mint);
}
.app-status {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  color: var(--mint-deep);
}
.app-status svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}
.app-label {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.app-amount {
  font-family: 'JetBrains Mono', monospace;
  font-size: 30px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1.1;
  margin-top: 2px;
}
.app-amount .eur {
  color: var(--slate-400);
  font-size: 20px;
}
.app-slider {
  height: 6px;
  background: var(--slate-100);
  border-radius: 10px;
  overflow: hidden;
  margin-top: 8px;
}
.app-slider-fill {
  width: 50%;
  height: 100%;
  background: var(--mint-grad);
  border-radius: 10px;
}
.app-card {
  background: var(--mint-50);
  border: 1px solid rgba(0, 201, 107, 0.15);
  border-radius: 14px;
  padding: 12px;
}
.app-card-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.app-card-row + .app-card-row {
  margin-top: 8px;
}
.app-card-label {
  font-size: 10px;
  color: var(--slate-500);
  font-weight: 600;
}
.app-card-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 13px;
  font-weight: 700;
  color: var(--ink);
}
.app-card-value.accent {
  color: var(--mint-deep);
}
.app-cta {
  margin-top: auto;
  background: var(--mint-grad);
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  padding: 13px;
  border-radius: 14px;
  box-shadow: 0 4px 12px rgba(0, 201, 107, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.app-cta svg {
  width: 13px;
  height: 13px;
  stroke-width: 3;
}
/* ================== GENERIC SECTIONS ================== */
.section {
  padding: 112px 0;
  position: relative;
}
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }
}
.section--mint {
  background: var(--mint-50);
}
.section--white {
  background: var(--white);
}
.section--off {
  background: var(--off-white);
}
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
h2 {
  font-size: 4vw;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
h2 .mark {
  position: relative;
  white-space: nowrap;
  background: linear-gradient(transparent 62%, rgba(0, 201, 107, 0.32) 62%, rgba(0, 201, 107, 0.32) 92%, transparent 92%);
  padding: 0 4px;
}
.section-lead {
  font-size: 18px;
  color: var(--slate-600);
  line-height: 1.55;
}
/* ================== STEPS ================== */
.steps-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  position: relative;
}
@media (min-width: 768px) {
  .steps-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
.step {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-card);
}
.step:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 201, 107, 0.35);
}
.step-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 22px;
}
.step-num {
  font-family: 'JetBrains Mono', monospace;
  font-size: 14px;
  font-weight: 700;
  color: var(--mint-deep);
  letter-spacing: 0.05em;
}
.step-line {
  flex: 1;
  height: 1.5px;
  background: linear-gradient(to right, rgba(0, 201, 107, 0.5), rgba(0, 201, 107, 0));
}
.step-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--mint-soft);
  color: var(--mint-deep);
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}
.step-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}
.step h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.step p {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .step {
    padding: 24px 20px;
  }
  .step-header {
    margin-bottom: 16px;
  }
  .step-icon {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    margin-bottom: 14px;
  }
  .step-icon svg {
    width: 22px;
    height: 22px;
  }
  .step h3 {
    font-size: 18px;
    margin-bottom: 6px;
  }
  .step p {
    font-size: 15px;
    line-height: 1.55;
  }
}
.steps-footer {
  margin-top: 48px;
  text-align: center;
  font-size: 17px;
  color: var(--slate-600);
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  justify-content: center;
}
.steps-footer svg {
  color: var(--mint-deep);
}
/* ================== PRE KOHO ================== */
.segments-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-bottom: 32px;
}
@media (min-width: 768px) {
  .segments-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}
@media (max-width: 767px) {
  .segments-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    gap: 14px;
    padding: 4px 20px 16px;
    margin: 0 -20px 0;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .segments-grid::-webkit-scrollbar {
    display: none;
  }
  .segments-grid > .segment {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}
.segments-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--slate-500);
  margin: -16px 0 24px;
}
@media (max-width: 767px) {
  .segments-hint {
    display: block;
  }
}
.segment {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  padding: 32px;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-card);
}
.segment:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 201, 107, 0.35);
}
.segment-icon {
  width: 52px;
  height: 52px;
  border-radius: 16px;
  background: var(--mint-soft);
  color: var(--mint-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.segment-icon svg {
  width: 26px;
  height: 26px;
  stroke-width: 2;
}
.segment h3 {
  font-size: 21px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.segment-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  color: var(--mint-deep);
  background: var(--mint-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
}
.segment-tag.neutral {
  color: var(--slate-600);
  background: var(--slate-100);
}
.segment p {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.6;
}
.bonus-chips {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 10px;
  justify-content: center;
  align-items: center;
}
.bonus-chips-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-right: 4px;
}
.bonus-chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(0, 201, 107, 0.08);
  border: 1px solid rgba(0, 168, 85, 0.2);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 500;
  color: var(--slate-700);
}
.bonus-chip-icon {
  color: var(--mint-deep);
  display: grid;
  place-items: center;
}
.bonus-chip-icon svg {
  width: 14px;
  height: 14px;
  stroke-width: 2;
}
.bonus-chip strong {
  color: var(--ink);
  font-weight: 600;
}
.segments-note {
  margin-top: 32px;
  text-align: center;
  font-size: 15px;
  color: var(--slate-500);
}
.segments-note a {
  color: var(--mint-deep);
  text-decoration: underline;
  text-underline-offset: 3px;
  font-weight: 600;
}
/* ================== KALKULAČKA ================== */
.calc-wrap {
  max-width: 820px;
  margin: 0 auto;
}
.calc-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-xl);
  padding: 48px;
  box-shadow: 0 30px 60px -20px rgba(15, 23, 42, 0.08);
}
@media (max-width: 768px) {
  .calc-card {
    padding: 28px;
    border-radius: 24px;
  }
}
.calc-label {
  display: block;
  font-size: 12px;
  font-weight: 600;
  color: var(--slate-500);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.calc-amount-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin: 6px 0 18px;
}
.calc-amount-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 5.5vw;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
}
.calc-amount-value .eur {
  color: var(--slate-400);
  margin-left: 4px;
}
.calc-minmax {
  font-size: 13px;
  color: var(--slate-500);
  font-family: 'JetBrains Mono', monospace;
  display: flex;
  justify-content: space-between;
  margin-top: 10px;
}
.calc-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  background: transparent;
  cursor: pointer;
  margin-top: 4px;
}
.calc-slider::-webkit-slider-runnable-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint) var(--val, 44%), var(--slate-200) var(--val, 44%), var(--slate-200) 100%);
}
.calc-slider::-moz-range-track {
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--mint) 0%, var(--mint) var(--val, 44%), var(--slate-200) var(--val, 44%), var(--slate-200) 100%);
}
.calc-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--mint);
  box-shadow: 0 4px 14px rgba(0, 201, 107, 0.4);
  margin-top: -10px;
  cursor: grab;
}
.calc-slider::-moz-range-thumb {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--white);
  border: 3px solid var(--mint);
  box-shadow: 0 4px 14px rgba(0, 201, 107, 0.4);
  cursor: grab;
}
.calc-years {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 8px;
  margin-top: 8px;
}
.calc-year-btn {
  height: 48px;
  border-radius: 12px;
  border: 1.5px solid var(--slate-200);
  background: var(--white);
  color: var(--slate-700);
  font-weight: 600;
  font-size: 15px;
  font-family: 'JetBrains Mono', monospace;
  cursor: pointer;
  transition: all 0.2s var(--ease);
}
.calc-year-btn:hover {
  border-color: var(--mint);
  color: var(--ink);
}
.calc-year-btn.active {
  background: var(--mint-grad);
  color: var(--white);
  border-color: transparent;
  box-shadow: 0 4px 12px -4px rgba(0, 168, 85, 0.4);
}
@media (max-width: 540px) {
  .calc-years {
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
  }
  .calc-year-btn {
    font-size: 12px;
    padding: 0 2px;
    white-space: nowrap;
  }
}
.calc-result {
  margin-top: 36px;
  padding: 24px 28px;
  background: var(--mint-50);
  border: 1px solid rgba(0, 201, 107, 0.2);
  border-radius: 20px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  justify-content: space-between;
}
.calc-result-text {
  flex: 1;
  min-width: 180px;
}
.calc-result-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--mint-deep);
  font-weight: 600;
  margin-bottom: 6px;
}
.calc-result-value {
  font-family: 'JetBrains Mono', monospace;
  font-size: 5vw;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.calc-result-value .per {
  font-size: 15px;
  color: var(--slate-500);
  font-weight: 500;
  margin-left: 8px;
}
.calc-footnote {
  font-size: 12px;
  line-height: 1.6;
  color: var(--slate-500);
  margin-top: 20px;
}
/* ================== BENTO ================== */
.bento {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 16px;
}
@media (min-width: 768px) {
  .bento {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
@media (min-width: 1024px) {
  .bento {
    grid-template-columns: 1.6fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
  }
  .bento > .ben--hero {
    grid-row: 0.33333333;
    grid-column: 1;
  }
}
.ben {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: all 0.25s var(--ease);
  box-shadow: var(--shadow-card);
}
.ben:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card-hover);
  border-color: rgba(0, 201, 107, 0.3);
}
.ben--hero {
  background: linear-gradient(135deg, var(--mint-50) 0%, var(--mint-soft) 100%);
  border-color: rgba(0, 201, 107, 0.2);
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.ben--hero h3 {
  font-size: 2.8vw;
  line-height: 1.1;
}
.ben-big-number {
  font-family: 'JetBrains Mono', monospace;
  font-size: 7vw;
  font-weight: 700;
  color: var(--mint-deep);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-top: 28px;
}
.ben-icon {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background: var(--mint-soft);
  color: var(--mint-deep);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.ben-icon svg {
  width: 24px;
  height: 24px;
  stroke-width: 2;
}
.ben-stat {
  font-family: 'JetBrains Mono', monospace;
  font-size: 36px;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 14px;
}
.ben h3 {
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 8px;
  color: var(--ink);
}
.ben p {
  color: var(--slate-600);
  font-size: 15px;
  line-height: 1.55;
}
/* ================== BEZ PAPIEROV ================== */
.papers-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .papers-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
.paper-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: var(--radius-card);
  padding: 36px 32px;
  position: relative;
  box-shadow: var(--shadow-card);
}
.paper-card--highlight {
  background: linear-gradient(135deg, var(--mint-50) 0%, var(--white) 100%);
  border-color: rgba(0, 201, 107, 0.3);
}
.paper-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: var(--mint-soft);
  color: var(--mint-deep);
  display: grid;
  place-items: center;
  margin-bottom: 22px;
}
.paper-icon svg {
  width: 28px;
  height: 28px;
  stroke-width: 2;
}
.paper-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 5px 12px;
  border-radius: var(--radius-pill);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.paper-tag--mint {
  background: var(--mint);
  color: var(--white);
}
.paper-tag--slate {
  background: var(--slate-100);
  color: var(--slate-700);
}
.paper-card h3 {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
  margin-bottom: 10px;
}
.paper-for {
  font-size: 13px;
  font-weight: 600;
  color: var(--mint-deep);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 14px;
}
.paper-card p {
  color: var(--slate-600);
  font-size: 16px;
  line-height: 1.6;
}
.papers-footnote {
  margin-top: 28px;
  text-align: center;
  font-size: 14px;
  color: var(--slate-500);
}
/* ================== FAQ ================== */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.25s var(--ease);
}
.faq-item[open] {
  border-color: rgba(0, 201, 107, 0.45);
  box-shadow: 0 8px 24px rgba(0, 201, 107, 0.08);
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  padding: 22px 26px;
  font-size: 17px;
  font-weight: 600;
  color: var(--ink);
  cursor: pointer;
  list-style: none;
  user-select: none;
  line-height: 1.45;
}
.faq-question::-webkit-details-marker {
  display: none;
}
.faq-icon {
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--slate-100);
  color: var(--ink);
  display: grid;
  place-items: center;
  transition: all 0.3s var(--ease);
}
.faq-icon svg {
  width: 18px;
  height: 18px;
  stroke-width: 2.5;
}
.faq-item[open] .faq-icon {
  background: var(--mint);
  color: var(--white);
  transform: rotate(180deg);
}
.faq-answer {
  padding: 0 26px 24px;
  color: var(--slate-700);
  font-size: 16px;
  line-height: 1.7;
}
.faq-answer p + p {
  margin-top: 10px;
}
/* ================== FINÁLNE CTA (svetlé) ================== */
.final-cta {
  background: var(--white);
  padding: 112px 0;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 201, 107, 0.2) 0%, transparent 60%);
  filter: blur(80px);
}
.final-cta::after {
  content: '';
  position: absolute;
  bottom: -200px;
  left: -200px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0, 201, 107, 0.12) 0%, transparent 60%);
  filter: blur(80px);
}
.final-cta-wrap {
  position: relative;
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}
.final-cta h2 {
  font-size: 5.5vw;
  margin-bottom: 16px;
}
.final-cta p {
  font-size: 18px;
  color: var(--slate-600);
  margin-bottom: 36px;
}
.final-cta-trust {
  margin-top: 24px;
  font-size: 14px;
  color: var(--slate-500);
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
}
.final-cta-trust span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.final-cta-trust svg {
  color: var(--mint-deep);
}
/* ================== FOOTER ================== */
.footer {
  background: var(--ink);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
@media (min-width: 768px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.footer-col h4 {
  color: var(--white);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.footer-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 6px;
}
.footer-col strong {
  color: var(--white);
  font-weight: 600;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--mint);
}
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid var(--ink-border);
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: space-between;
}
/* ================== RECENZIE ================== */
.reviews-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 767px) {
  .reviews-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 20px;
    gap: 14px;
    padding: 4px 20px 16px;
    margin: 0 -20px;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }
  .reviews-track::-webkit-scrollbar {
    display: none;
  }
  .review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
  }
}
.review-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-card);
}
.review-stars {
  color: #FBBF24;
  font-size: 16px;
  letter-spacing: 2px;
}
.review-text {
  font-size: 16px;
  line-height: 1.55;
  color: var(--slate-700);
  flex: 1;
}
.review-author {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--slate-100);
  padding-top: 14px;
}
.review-author strong {
  font-size: 15px;
  font-weight: 700;
  color: var(--ink);
}
.review-author span {
  font-size: 13px;
  color: var(--slate-500);
}
.reviews-foot {
  margin-top: 32px;
  text-align: center;
}
.reviews-foot a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 15px;
  font-weight: 600;
  color: var(--mint-deep);
  text-decoration: none;
  padding: 8px 4px;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s;
}
.reviews-foot a:hover {
  border-bottom-color: var(--mint);
}
.reviews-hint {
  display: none;
  text-align: center;
  font-size: 12px;
  color: var(--slate-500);
  margin-top: 12px;
}
@media (max-width: 767px) {
  .reviews-hint {
    display: block;
  }
}
/* Reviews grid (samostatná stránka /recenzie) */
.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}
@media (min-width: 1024px) {
  .reviews-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
/* ================== STICKY CTA (mobile) ================== */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(240, 253, 244, 0.9399999999999999);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(0, 201, 107, 0.2);
  padding: 12px 20px calc(12px);
  z-index: 90;
  transform: translateY(100%);
  transition: transform 0.3s var(--ease);
}
.sticky-cta.visible {
  transform: translateY(0);
}
.sticky-cta .btn-primary {
  width: 100%;
  height: 52px;
}
@media (max-width: 767px) {
  .sticky-cta {
    display: block;
  }
}
/* ================== REVEAL ================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
}
.reveal.in {
  opacity: 1;
  transform: none;
}
@media (max-width: 767px) {
  .hide-mobile {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .show-mobile {
    display: none !important;
  }
}
@media (max-width: 1023px) {
  .hide-responsive {
    display: none !important;
  }
}
@media (min-width: 1024px) {
  .show-responsive {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
}
/* ================== SUB-PAGES (o-nas, kontakt, recenzie) ================== */
.subpage {
  padding: 120px 0 64px;
}
.page-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.page-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: var(--mint-soft);
  color: var(--mint-deep);
  border: 1px solid rgba(0, 168, 85, 0.18);
  margin-bottom: 20px;
}
.page-eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
}
.page-header h1 {
  font-size: 5vw;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.1;
  color: var(--ink);
  margin-bottom: 16px;
}
.page-header h1 .mark {
  position: relative;
  color: var(--mint-deep);
}
.page-header h1 .mark::after {
  content: '';
  position: absolute;
  left: 2px;
  right: 2px;
  bottom: 0.04em;
  height: 0.18em;
  background: rgba(0, 201, 107, 0.22);
  border-radius: 2px;
  z-index: -1;
}
.page-header p {
  font-size: 18px;
  color: var(--slate-500);
  line-height: 1.6;
}
.subpage-content {
  max-width: 760px;
  margin: 0 auto;
}
.subpage-content h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--ink);
  margin: 40px 0 16px;
  letter-spacing: -0.02em;
}
.subpage-content h2:first-child {
  margin-top: 0;
}
.subpage-content p {
  font-size: 17px;
  line-height: 1.7;
  color: var(--slate-600);
  margin-bottom: 16px;
}
.subpage-content ul {
  list-style: none;
  margin: 16px 0 24px;
  padding: 0;
}
.subpage-content ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
  color: var(--slate-700);
  border-bottom: 1px solid var(--slate-100);
}
.subpage-content ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  width: 18px;
  height: 18px;
  background: var(--mint);
  border-radius: 50%;
}
.subpage-content ul li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 22px;
  width: 8px;
  height: 4px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.partners {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin: 32px 0;
}
@media (min-width: 768px) {
  .partners {
    grid-template-columns: 1fr 1fr;
  }
}
.partner-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
}
.partner-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.partner-card .role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-deep);
  background: var(--mint-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.partner-card p {
  font-size: 14px;
  color: var(--slate-600);
  line-height: 1.6;
  margin-bottom: 4px;
}
.cta-section {
  margin-top: 64px;
  text-align: center;
  padding: 48px 24px;
  background: var(--mint-soft);
  border-radius: 24px;
}
.cta-section h2 {
  font-size: 24px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 12px;
}
.cta-section p {
  color: var(--slate-600);
  margin-bottom: 24px;
}
/* Kontakt page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  max-width: 760px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--mint-soft);
  display: grid;
  place-items: center;
  color: var(--mint-deep);
  margin-bottom: 8px;
}
.contact-card-icon svg {
  width: 22px;
  height: 22px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-card h3 {
  font-size: 14px;
  font-weight: 600;
  color: var(--slate-500);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-card a,
.contact-card .value {
  font-size: 18px;
  font-weight: 700;
  color: var(--ink);
  text-decoration: none;
}
.contact-card a:hover {
  color: var(--mint-deep);
}
.contact-card .meta {
  font-size: 14px;
  color: var(--slate-500);
}
.info-section {
  max-width: 760px;
  margin: 48px auto 0;
}
.info-section h2 {
  font-size: 22px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.info-block {
  background: var(--white);
  border: 1px solid var(--slate-200);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 16px;
  box-shadow: var(--shadow-card);
}
.info-block h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 8px;
}
.info-block .role {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--mint-deep);
  background: var(--mint-soft);
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  margin-bottom: 10px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.info-block p {
  font-size: 15px;
  color: var(--slate-600);
  line-height: 1.7;
  margin-bottom: 4px;
}
