:root {
  --sun: #F5A623;
  --sun-deep: #D4891A;
  --sky: #0A1628;
  --sky-mid: #111f38;
  --sky-lt: #1a3560;
  --cream: #F8F5EE;
  --muted: #9AACBE;
  --green: #3DDC84;
  --light-bg: #EEF2F7;
  --light-text: #0A1628;
  --light-sub: #4a6080;

  /* Sekce — spacing */
  --section-pt: 100px;
  --section-pb: 100px;

  /* Sidebar */
  --sw: 340px;
}

/* ── RESET & BASE ── */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  background: var(--sky);
  color: var(--cream);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
}

p {
  font-size: 15px;
}

a {
  color: var(--sun);
  text-decoration: none;
}

a:hover {
  color: var(--sun-deep);
}

/* ── SECTION ── */

.sec {
  padding-top: var(--section-pt);
  padding-bottom: var(--section-pb);
}

.sec--sm {
  padding-top: calc(var(--section-pt) * 0.5);
  padding-bottom: calc(var(--section-pb) * 0.5);
}

.sec--lg {
  padding-top: calc(var(--section-pt) * 1.4);
  padding-bottom: calc(var(--section-pb) * 1.4);
}

/* ── BG ── */
.bg-sky {
  background-color: var(--sky);
}

.bg-sky-mid {
  background-color: var(--sky-mid);
}

.bg-light {
  background-color: var(--light-bg);
  color: var(--light-text);
}

.bg-bordered {
  border-top: 1px solid rgba(255, 255, 255, .06);
}

/* ── BG LIGHT - SETTINGS ── */
.bg-light .section-label {
  color: var(--sun);
}

.bg-light .section-title {
  color: var(--light-text);
}

.bg-light p,
.bg-light .muted-txt {
  color: var(--light-sub);
}

.bg-light a {
  color: var(--sky);
}

.bg-light a:hover {
  color: var(--sun-deep);
}

/* ── SVG IKONY — obecné ── */
.icon {
  display: inline-block;
  flex-shrink: 0;
  stroke: var(--sun);
  fill: none;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon--sm {
  width: 18px;
  height: 18px;
}

.icon--md {
  width: 22px;
  height: 22px;
}

.icon--lg {
  width: 28px;
  height: 28px;
}

.icon--xl {
  width: 36px;
  height: 36px;
}

/* ── FEATURES ── */
.feature-icon {
  width: 48px;
  height: 48px;
  background: rgba(245, 166, 35, .1);
  border: 1px solid rgba(245, 166, 35, .22);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  transition: background .25s;
  flex-shrink: 0;
}

.feature-card:hover .feature-icon {
  background: rgba(245, 166, 35, .17);
}

.icon--valign {
  vertical-align: middle;
}

.icon--success {
  width: 48px;
  height: 48px;
  stroke: var(--green);
}

/* ── TOPBAR ── */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  z-index: 900;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  transition: background .4s, backdrop-filter .4s, border-color .4s, box-shadow .4s;
  border-bottom: 1px solid transparent;
}

.topbar.scrolled {
  background: rgba(10, 22, 40, .82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom-color: rgba(245, 166, 35, .13);
  box-shadow: 0 4px 40px rgba(0, 0, 0, .38);
}

.topbar-logo {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 1.1rem;
  color: var(--cream);
}

.topbar-logo span {
  color: var(--sun);
}

.topbar-logo img.img-logo {
  max-width: 200px;
  width: 100%;
}

.topbar-right {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-partner {
  display: none;
  align-items: center;
  gap: 7px;
  background: rgba(245, 166, 35, .1);
  border: 1px solid rgba(245, 166, 35, .28);
  color: var(--sun);
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 50px;
  text-decoration: none;
  transition: background .2s, color .2s;
  white-space: nowrap;
}

.topbar-partner:hover {
  background: rgba(245, 166, 35, .18);
  color: var(--sun);
}

@media (min-width: 768px) {
  .topbar-partner {
    display: flex;
  }
}

/* ── HAMBURGER ── */
.hamburger {
  width: 46px;
  height: 46px;
  background: rgba(17, 31, 56, .8);
  border: 1px solid rgba(245, 166, 35, .28);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  backdrop-filter: blur(10px);
  transition: border-color .2s, background .2s;
}

.hamburger:hover {
  border-color: var(--sun);
  background: rgba(245, 166, 35, .1);
}

.ham-line {
  width: 20px;
  height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform .32s, opacity .22s, width .22s;
  transform-origin: center;
}

body.sidebar-open .ham-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

body.sidebar-open .ham-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

body.sidebar-open .ham-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── SIDEBAR ── */
.sidebar {
  position: fixed;
  top: 0;
  right: 0;
  width: var(--sw);
  height: 100%;
  background: var(--sky-mid);
  border-left: 1px solid rgba(245, 166, 35, .14);
  z-index: 1050;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.16, 1, .3, 1);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  padding: 80px 36px 40px;
}

body.sidebar-open .sidebar {
  transform: translateX(0);
}

.sidebar-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, .6);
  backdrop-filter: blur(4px);
  z-index: 1040;
  opacity: 0;
  pointer-events: none;
  transition: opacity .32s;
}

body.sidebar-open .sidebar-overlay {
  opacity: 1;
  pointer-events: all;
}

.sidebar-brand {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--cream);
  margin-bottom: 36px;
}

.sidebar-brand span {
  color: var(--sun);
}

.sidebar-nav {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
}

.sidebar-nav li {
  border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 0;
  color: var(--muted);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: color .18s, padding-left .18s;
}

.sidebar-nav a .icon {
  stroke: var(--sun);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.sidebar-nav a:hover {
  color: var(--cream);
  padding-left: 5px;
}

.sidebar-nav a.active {
  color: var(--cream);
}

.sidebar-divider {
  border: none;
  border-top: 1px solid rgba(255, 255, 255, .07);
  margin: 6px 0 22px;
}

.sidebar-label {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(154, 172, 190, .45);
  margin-bottom: 14px;
}

.sidebar-contacts {
  display: flex;
  flex-direction: column;
  gap: 13px;
}

.sidebar-contacts a {
  display: flex;
  align-items: center;
  gap: 11px;
  color: var(--muted);
  font-size: 14px;
  transition: color .18s;
}

.sidebar-contacts a .icon {
  stroke: var(--sun);
  width: 16px;
  height: 16px;
}

.sidebar-contacts a:hover {
  color: var(--cream);
}

.sidebar-cta {
  margin-top: auto;
  padding-top: 28px;
}

.sidebar-cta a {
  display: block;
  background: var(--sun);
  color: var(--sky);
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 14px;
  text-align: center;
  padding: 13px 20px;
  border-radius: 50px;
  transition: background .2s, transform .18s;
}

.sidebar-cta a:hover {
  background: var(--sun-deep);
  transform: translateY(-2px);
}

.sidebar-footer {
  margin-top: 22px;
  font-size: 12px;
  color: rgba(154, 172, 190, .32);
  line-height: 1.6;
}

.sidebar-footer a {
  color: rgba(154, 172, 190, .45);
}

.sidebar-footer a:hover {
  color: var(--muted);
}

/* ── HERO ── */
#hero {
  min-height: 100vh;
  background: linear-gradient(140deg, var(--sky) 50%, #0d1e3a 100%);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding-top: 70px;
}

#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 70% at 85% 15%, rgba(245, 166, 35, .16) 0%, transparent 55%),
    radial-gradient(ellipse 40% 50% at 5% 85%, rgba(61, 220, 132, .07) 0%, transparent 50%);
  pointer-events: none;
}

.sun-orb {
  position: absolute;
  top: -140px;
  right: -140px;
  width: 560px;
  height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, .75) 0%, rgba(245, 166, 35, .18) 40%, transparent 68%);
  filter: blur(8px);
}

.grid-lines {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(245, 166, 35, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(245, 166, 35, .045) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to top, rgba(0, 0, 0, .35) 0%, transparent 65%);
}

.particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(245, 166, 35, .55);
}

.hero-container {
  position: relative;
  z-index: 2;
}

.tag-region {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(61, 220, 132, .09);
  border: 1px solid rgba(61, 220, 132, .28);
  color: var(--green);
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 50px;
}

.hero-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: clamp(2.5rem, 5.2vw, 4.8rem);
  line-height: .97;
}

.hero-title .accent {
  color: var(--sun);
  display: block;
}

.hero-sub {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.78;
  max-width: 480px;
}

.hero-sub strong {
  color: var(--cream);
  font-weight: 500;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.stat-divider {
  padding-left: 2rem;
  border-left: 1px solid rgba(255, 255, 255, .12);
}

.stat-num {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--sun);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 4px;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}

.scroll-hint span {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
}

.scroll-arrow {
  width: 20px;
  height: 20px;
  border-right: 2px solid var(--sun);
  border-bottom: 2px solid var(--sun);
  transform: rotate(45deg);
  animation: bounce 1.9s ease-in-out infinite;
}

@keyframes bounce {

  0%,
  100% {
    transform: rotate(45deg) translateY(0);
  }

  50% {
    transform: rotate(45deg) translateY(6px);
  }
}

/* ── HERO PRAVÁ STRANA — stats panel ── */
.hero-stats-panel {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(245, 166, 35, .18);
  border-radius: 22px;
  overflow: hidden;
  position: relative;
}

.hero-stats-panel::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--sun), transparent);
  opacity: .6;
}

.hsp-header {
  padding: 24px 28px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.hsp-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: var(--cream);
}

.live-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(61, 220, 132, .09);
  border: 1px solid rgba(61, 220, 132, .24);
  color: var(--green);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 50px;
}

.pulse-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: rgba(61, 220, 132, .3);
  animation: pulse-ring 2s ease-out infinite;
}

@keyframes pulse-ring {
  0% {
    transform: scale(.7);
    opacity: .8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

/* Stat rows v panelu */
.hsp-stat {
  padding: 22px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, .05);
  display: flex;
  align-items: center;
  gap: 18px;
}

.hsp-stat:last-child {
  border-bottom: none;
}

.hsp-stat-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: rgba(245, 166, 35, .08);
  border: 1px solid rgba(245, 166, 35, .18);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hsp-stat-body {
  flex: 1;
}

.hsp-stat-value {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 1.3rem;
  color: var(--cream);
  line-height: 1;
}

.hsp-stat-label {
  font-size: 13px;
  color: var(--muted);
  margin-top: 3px;
}

/* Progress bar */
.hsp-bar-wrap {
  padding: 20px 28px 24px;
}

.hsp-bar-label {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 8px;
}

.hsp-bar-label strong {
  color: var(--green);
  font-weight: 500;
}

.hsp-bar-track {
  height: 5px;
  background: rgba(255, 255, 255, .08);
  border-radius: 99px;
  overflow: hidden;
}

.hsp-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--sun), var(--green));
  width: 0%;
  transition: width 1.8s ease;
}

.hero-source {
  font-size: 12px;
  color: rgba(154, 172, 190, .45);
  margin-top: 10px;
  text-align: right;
}

.hero-source a {
  color: rgba(154, 172, 190, .55);
}

.hero-source a:hover {
  color: var(--muted);
}

/* ── BUTTONS ── */
.btn-sun {
  background: var(--sun);
  color: var(--sky);
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 15px;
  padding: 13px 27px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background .2s, transform .18s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
}

.btn-sun svg {
  stroke: var(--sky)
}

.btn-sun:hover {
  background: var(--sun-deep);
  color: var(--sky)!important;
  transform: translateY(-2px);
  box-shadow: 0 12px 36px rgba(245, 166, 35, .34);
}

.btn-sun--full {
  width: 100%;
  padding: 15px;
}

.btn-ghost {
  background: transparent;
  color: var(--cream);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 27px;
  border-radius: 50px;
  border: 1px solid rgba(248, 245, 238, .22);
  cursor: pointer;
  transition: all .18s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
}

.btn-ghost:hover {
  border-color: var(--cream);
  color: var(--cream);
  background: rgba(248, 245, 238, .06);
}

.btn-phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--light-text);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 13px 27px;
  border-radius: 50px;
  border: 1.5px solid rgba(10, 22, 40, .2);
  transition: all .2s;
  text-decoration: none;
}

.btn-phone:hover {
  border-color: var(--light-text);
  color: var(--light-text);
  background: rgba(10, 22, 40, .06);
}

.btn-phone .icon {
  stroke: var(--sun);
}

/* ── SECTION COMMONS ── */
.section-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sun);
}

.section-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: clamp(1.7rem, 3vw, 2.75rem);
  line-height: 1.06;
}

/* ── FEATURES ── */
.feature-card {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .07);
  border-radius: 20px;
  padding: 32px 24px;
  height: 100%;
  transition: background .25s, transform .25s, border-color .25s;
}

.feature-card:hover {
  background: rgba(26, 53, 96, .7);
  border-color: rgba(245, 166, 35, .22);
  transform: translateY(-5px);
}

.feature-card h5 {
  font-size: 16px;
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  margin: 0;
}

/* ── ÚSPORA ── */
.savings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, 1fr));
  gap: 1px;
  background: rgba(255, 255, 255, .06);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .06);
}

.savings-cell {
  background: var(--sky);
  padding: 34px 24px;
  text-align: center;
  transition: background .2s;
}

.savings-cell:hover {
  background: var(--sky-mid);
}

.savings-amount {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 2rem;
  color: var(--sun);
  line-height: 1;
}

.savings-place {
  font-size: 14px;
  color: var(--muted);
  margin-top: 6px;
}

.savings-detail {
  font-size: 13px;
  color: rgba(154, 172, 190, .45);
  margin-top: 3px;
}

.source-note {
  font-size: 13px;
  color: rgba(154, 172, 190, .45);
  text-align: right;
}

.source-note a {
  color: rgba(154, 172, 190, .6);
}

.source-note a:hover {
  color: var(--muted);
}

/* ── CTA BAND ── */
.cta-band-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 16px;
}

.cta-band-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: clamp(1.9rem, 3.5vw, 3rem);
  color: var(--light-text);
  line-height: 1.05;
  margin-bottom: 20px;
}

.cta-band-sub {
  font-size: 15px;
  color: var(--light-sub);
  max-width: 520px;
  margin: 0 auto 36px;
  line-height: 1.7;
}

/* ── STEPS ── */
.step-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .07);
}

.step-item:last-child {
  border-bottom: none;
}

.step-num {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 12px;
  color: var(--sun);
  padding-top: 3px;
}

.step-item h5 {
  font-family: 'Figtree', sans-serif;
  font-size: 16px;
  margin-bottom: 4px;
}

.step-item p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.65;
}

.highlight-box {
  background: var(--sky);
  border: 1px solid rgba(245, 166, 35, .18);
  border-radius: 22px;
  padding: 38px;
}

.highlight-box-icon {
  color: var(--sun);
  margin-bottom: 1rem;
  display: block;
}

.highlight-box h4 {
  margin-bottom: .75rem;
}

.highlight-box p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.76;
  margin-bottom: 28px;
}

.highlight-box p strong {
  color: var(--cream);
}

.big-num {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: 1.6rem;
  color: var(--sun);
  line-height: 1;
}

.big-label {
  font-size: 13px;
  color: var(--muted);
}

.stat-sep {
  padding-left: 1.5rem;
  border-left: 1px solid rgba(255, 255, 255, .1);
}

/* ── FORM ── */
.form-box {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: 22px;
  padding: 38px;
}

.form-control,
.form-select {
  background: rgba(255, 255, 255, .05) !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 10px !important;
  color: var(--cream) !important;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  padding: 12px 14px;
  transition: border-color .2s, box-shadow .2s;
}

.form-control::placeholder {
  color: rgba(154, 172, 190, .37) !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--sun) !important;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, .13) !important;
  background: rgba(255, 255, 255, .07) !important;
}

.form-select option {
  background: #111f38;
  color: var(--cream);
}

.form-label {
  font-size: 13px;
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 6px;
}

.form-note {
  font-size: 12px;
  color: rgba(154, 172, 190, .37);
  text-align: center;
  margin-top: 1rem;
}

.form-note a {
  color: rgba(154, 172, 190, .54);
}

.form-note a:hover {
  color: var(--muted);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: var(--muted);
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  flex-shrink: 0;
}

.contact-block {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding-top: 22px;
}

.contact-row {
  display: flex;
  align-items: center;
  gap: .5rem;
  margin-bottom: .75rem;
}

.contact-row:last-child {
  margin-bottom: 0;
}

.contact-icon {
  color: var(--sun);
}

.contact-link {
  color: var(--cream);
  font-weight: 500;
  font-size: 15px;
}

.contact-link:hover {
  color: var(--sun);
}

.form-lead-text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 26px;
}

.form-lead-text strong {
  color: var(--cream);
}

#successMsg {
  display: none;
  text-align: center;
  padding: 36px 0;
}

.check-icon {
  font-size: 3rem;
  color: var(--green);
}

.success-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  margin-bottom: .5rem;
}

.success-text {
  color: var(--muted);
  font-size: 15px;
}

/* ── PARTNEŘI ── */
.partner-strip-label {
  font-size: 11px;
  color: rgba(154, 172, 190, .37);
  text-transform: uppercase;
  font-weight: 600;
}

.partner-badge {
  background: rgba(255, 255, 255, .04);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 8px;
  padding: 7px 15px;
  font-size: 13px;
  color: var(--muted);
}

/* ── FOOTER ── */
footer {
  border-top: 1px solid rgba(255, 255, 255, .07);
  padding: 24px 0;
}

.foot-text {
  font-size: 13px;
  color: rgba(154, 172, 190, .37);
}

footer a {
  font-size: 13px;
  color: var(--muted);
  transition: color .15s;
}

footer a:hover {
  color: var(--cream);
}

footer a.active {
  color: var(--sun);
}

/* ── GSAP REVEAL STATES ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-34px);
}

.reveal-right {
  opacity: 0;
  transform: translateX(34px);
}

/* ── GDPR PODSTRÁNKA ── */
.page-header {
  padding: 130px 0 70px;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(245, 166, 35, .12) 0%, transparent 70%);
  pointer-events: none;
}

.breadcrumb-custom {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  color: var(--muted);
  margin-bottom: 24px;
}

.breadcrumb-custom a {
  color: var(--muted);
  transition: color .15s;
}

.breadcrumb-custom a:hover {
  color: var(--cream);
}

.breadcrumb-custom .sep {
  color: rgba(154, 172, 190, .35);
  font-size: 11px;
}

.breadcrumb-current {
  color: var(--sun);
}

.page-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 900;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.05;
  margin-bottom: 16px;
}

.page-subtitle {
  font-size: 15px;
  color: var(--muted);
  font-weight: 300;
}

.content-wrap {
  padding: 80px 0 100px;
}

.toc {
  background: rgba(255, 255, 255, .03);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 28px;
  position: sticky;
  top: 90px;
}

.toc-title {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  color: var(--sun);
  margin-bottom: 18px;
}

.toc-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.toc-list li {
  border-bottom: 1px solid rgba(255, 255, 255, .05);
}

.toc-list li:last-child {
  border-bottom: none;
}

.toc-list a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  color: var(--muted);
  font-size: 14px;
  font-weight: 400;
  transition: color .2s, padding-left .2s;
}

.toc-list a::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--sun);
  flex-shrink: 0;
  opacity: .45;
  transition: opacity .2s;
}

.toc-list a:hover {
  color: var(--cream);
  padding-left: 4px;
}

.toc-list a:hover::before {
  opacity: 1;
}

.toc-updated {
  margin-top: 20px;
  font-size: 12px;
  color: rgba(154, 172, 190, .4);
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, .06);
}

.gdpr-section {
  margin-bottom: 52px;
  padding-top: 8px;
}

.gdpr-section h2 {
  font-family: 'Figtree', sans-serif;
  font-weight: 800;
  font-size: 1.35rem;
  margin-bottom: 16px;
  color: var(--cream);
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(245, 166, 35, .2);
}

.sec-num {
  font-size: 12px;
  font-weight: 700;
  color: var(--sun);
  background: rgba(245, 166, 35, .1);
  border: 1px solid rgba(245, 166, 35, .25);
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

.gdpr-section p,
.gdpr-section li {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}

.gdpr-section ul {
  padding-left: 0;
  list-style: none;
  margin-top: 12px;
}

.gdpr-section ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
}

.gdpr-section ul li::before {
  content: '›';
  color: var(--sun);
  font-weight: 700;
  font-size: 1.1rem;
  margin-top: 1px;
  flex-shrink: 0;
}

.gdpr-section strong {
  color: var(--cream);
  font-weight: 500;
}

.gdpr-section p:last-child {
  margin-bottom: 0;
}

.info-box {
  background: rgba(61, 220, 132, .06);
  border: 1px solid rgba(61, 220, 132, .2);
  border-radius: 12px;
  padding: 18px 20px;
  font-size: 14px;
  color: var(--muted);
  margin-top: 16px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.info-box .icon {
  stroke: var(--green);
  flex-shrink: 0;
  margin-top: 1px;
}

.info-box--mt {
  margin-top: 24px;
}

.contact-card {
  background: var(--sky-mid);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 16px;
  padding: 24px 28px;
  margin-top: 20px;
}

.contact-card p {
  margin-bottom: 6px;
  font-size: 14px;
  color: var(--muted);
}

.contact-card p:last-child {
  margin-bottom: 0;
}

.btn-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .1);
  color: var(--muted);
  font-family: 'Figtree', sans-serif;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all .2s;
  margin-bottom: 48px;
}

.btn-back:hover {
  border-color: var(--sun);
  color: var(--cream);
  background: rgba(245, 166, 35, .08);
}

/* ── RESPONSIVE ── */
@media (max-width: 991px) {
  .hero-visual {
    margin-top: 44px;
  }

  #hero {
    padding-bottom: 56px;
  }

  .highlight-box {
    padding: 26px 20px;
  }

  .toc {
    display: none;
  }

  .content-wrap {
    padding: 50px 0 70px;
  }
}

@media (max-width: 575px) {
  .sidebar {
    width: 100%;
  }

  .form-box {
    padding: 24px 16px;
  }

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