/* =========================================================
   Pojištění Růžička — nezávislý pojišťovací poradce
   Art direction: "friendly clarity"
   Trust blue · warm coral accent · airy, rounded, human
   ========================================================= */

/* ---------- Design tokens ---------- */
:root {
  /* Barvy */
  --ink:        #0B1E3F;   /* hluboká navy, texty a tmavé sekce */
  --ink-soft:   #17305A;
  --blue:       #2563EB;   /* důvěryhodná modrá, primární */
  --blue-deep:  #1746C0;
  --blue-tint:  #EAF0FF;   /* světlé pozadí */
  --accent:     #FF7A45;   /* teplý přátelský korál/oranžová */
  --accent-deep:#F2632B;
  --accent-soft:#FFE7DB;
  --mint:       #10B981;   /* zelená pro důvěru/úspěch */
  --mint-soft:  #DCFAEE;

  --cream:      #FBF9F5;   /* teplá téměř bílá */
  --white:      #FFFFFF;
  --paper:      #FFFFFF;
  --muted:      #5C6B85;   /* tlumený text */
  --line:       #E7E9F0;   /* jemné linky */

  /* Typografie */
  --f-head: 'Sora', system-ui, sans-serif;
  --f-body: 'Inter', system-ui, sans-serif;

  /* Rádiusy */
  --r-sm: 12px;
  --r:    18px;
  --r-lg: 26px;
  --r-xl: 34px;

  /* Stíny */
  --sh-sm: 0 2px 8px rgba(11, 30, 63, .06);
  --sh:    0 14px 40px rgba(11, 30, 63, .10);
  --sh-lg: 0 30px 70px rgba(11, 30, 63, .16);
  --sh-accent: 0 16px 34px rgba(255, 122, 69, .34);
  --sh-blue:   0 16px 34px rgba(37, 99, 235, .30);

  /* Layout */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 48px);
  --sp: clamp(72px, 10vw, 130px); /* vertikální rytmus sekcí */

  --ease: cubic-bezier(.22, 1, .36, 1);
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
}

body {
  font-family: var(--f-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: clamp(16px, 1.05vw, 17px);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; }
ul, ol { list-style: none; }

::selection { background: var(--accent); color: #fff; }

:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 3px;
  border-radius: 4px;
}

.skip-link {
  position: absolute; left: 12px; top: -60px;
  background: var(--ink); color: #fff; padding: 10px 18px;
  border-radius: 10px; z-index: 200; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- Layout helpers ---------- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--sp); position: relative; }
.section--tint { background: var(--blue-tint); }
.section--ink { background: var(--ink); color: #fff; }

/* Nadpisy sekcí */
.section__head { max-width: 660px; margin: 0 auto clamp(44px, 6vw, 68px); text-align: center; }
.section__head--left { margin-inline: 0; text-align: left; max-width: 560px; }

.eyebrow {
  display: inline-block;
  font-family: var(--f-head);
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-tint);
  padding: 7px 14px;
  border-radius: 100px;
  margin-bottom: 20px;
}
.section--ink .eyebrow, .eyebrow--light { color: #fff; background: rgba(255,255,255,.12); }

h1, h2, h3, h4 { font-family: var(--f-head); font-weight: 700; line-height: 1.1; letter-spacing: -.02em; }
h2 { font-size: clamp(1.9rem, 4vw, 3rem); }
h3 { font-size: 1.28rem; letter-spacing: -.01em; }

.section__sub { color: var(--muted); font-size: 1.08rem; margin-top: 18px; }
.section--ink .section__sub { color: rgba(255,255,255,.72); }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  --btn-bg: var(--blue);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--f-head); font-weight: 600; font-size: 1rem;
  padding: 14px 26px; border: none; border-radius: 100px;
  background: var(--btn-bg); color: #fff;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s;
  will-change: transform;
}
.btn svg { transition: transform .3s var(--ease); }
.btn--primary { background: var(--blue); box-shadow: var(--sh-blue); }
.btn--primary:hover { background: var(--blue-deep); transform: translateY(-3px); box-shadow: 0 22px 44px rgba(37,99,235,.4); }
.btn--primary:hover svg { transform: translateX(4px); }

.btn--ghost {
  background: transparent; color: var(--ink);
  box-shadow: inset 0 0 0 2px var(--line);
}
.btn--ghost:hover { box-shadow: inset 0 0 0 2px var(--blue); color: var(--blue); transform: translateY(-3px); }

.btn--lg { padding: 17px 32px; font-size: 1.05rem; }
.btn--sm { padding: 10px 20px; font-size: .92rem; }
.btn--block { width: 100%; }

/* =========================================================
   NAVIGACE
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  padding-block: 16px;
  transition: background .35s var(--ease), box-shadow .35s var(--ease), padding .35s var(--ease);
}
.nav.is-scrolled {
  background: rgba(251, 249, 245, .85);
  backdrop-filter: saturate(180%) blur(14px);
  box-shadow: 0 1px 0 var(--line), var(--sh-sm);
  padding-block: 10px;
}
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.brand { display: inline-flex; align-items: center; gap: 12px; color: var(--ink); }
.brand__mark { color: var(--blue); display: grid; place-items: center; }
.brand__text { display: flex; flex-direction: column; line-height: 1.05; }
.brand__text strong { font-family: var(--f-head); font-weight: 700; font-size: 1.12rem; letter-spacing: -.02em; }
.brand__text small { font-size: .72rem; color: var(--muted); letter-spacing: .04em; }

.nav__links { display: flex; align-items: center; gap: clamp(14px, 2vw, 30px); }
.nav__links > a:not(.btn) {
  font-weight: 500; font-size: .96rem; color: var(--ink-soft);
  position: relative; padding: 4px 0; transition: color .2s;
}
.nav__links > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; height: 2px; width: 0;
  background: var(--accent); transition: width .3s var(--ease);
}
.nav__links > a:not(.btn):hover,
.nav__links > a:not(.btn).is-active { color: var(--blue); }
.nav__links > a:not(.btn):hover::after,
.nav__links > a:not(.btn).is-active::after { width: 100%; }

.nav__toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__toggle span { width: 26px; height: 2.5px; background: var(--ink); border-radius: 3px; transition: transform .3s var(--ease), opacity .2s; }
.nav__toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav__toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav__toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  padding-top: clamp(120px, 17vw, 180px);
  padding-bottom: clamp(60px, 9vw, 110px);
  overflow: hidden;
  background:
    radial-gradient(1200px 600px at 85% -5%, var(--blue-tint), transparent 60%),
    radial-gradient(900px 500px at 0% 20%, #FFF3EC, transparent 55%),
    var(--cream);
}
.hero__glow {
  position: absolute; top: -20%; right: -10%; width: 55vw; height: 55vw;
  background: radial-gradient(circle, rgba(37,99,235,.16), transparent 65%);
  filter: blur(20px); pointer-events: none;
}
.hero__grid-lines {
  position: absolute; inset: 0; pointer-events: none; opacity: .5;
  background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(700px 500px at 70% 30%, #000 10%, transparent 75%);
  -webkit-mask-image: radial-gradient(700px 500px at 70% 30%, #000 10%, transparent 75%);
}
.hero__inner {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.05fr .95fr; gap: clamp(30px, 5vw, 64px);
  align-items: center;
}
.hero__inner > * { min-width: 0; } /* zabrání přetečení grid položek na úzkých displejích */
.hero__content { max-width: 100%; }

.pill {
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--white); color: var(--ink-soft);
  font-weight: 600; font-size: .9rem;
  padding: 9px 16px 9px 12px; border-radius: 100px;
  box-shadow: var(--sh-sm); border: 1px solid var(--line);
  margin-bottom: 26px;
}
.pill__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 4px var(--mint-soft); animation: pulse 2.4s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 3px var(--mint-soft); } 50% { box-shadow: 0 0 0 7px rgba(16,185,129,.12); } }

.hero__title {
  font-size: clamp(1.6rem, 6.4vw, 4rem);
  letter-spacing: -.03em; line-height: 1.06;
}
.hero__title .hl { position: relative; color: var(--blue); white-space: nowrap; }
.hero__title .hl::after {
  content: ''; position: absolute; left: -2%; right: -2%; bottom: .06em; height: .34em;
  background: var(--accent-soft); z-index: -1; border-radius: 4px;
  transform: rotate(-1deg);
}

.hero__lead { color: var(--muted); font-size: clamp(1.05rem, 1.5vw, 1.22rem); max-width: 540px; margin: 26px 0 32px; }
.hero__lead em { color: var(--ink); font-style: normal; font-weight: 600; }

.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 30px; }

.hero__usp { display: flex; flex-wrap: wrap; gap: 22px; }
.hero__usp li { display: inline-flex; align-items: center; gap: 8px; font-weight: 500; font-size: .95rem; color: var(--ink-soft); }
.hero__usp svg { width: 20px; height: 20px; color: var(--mint); flex: none; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__photo {
  position: relative; border-radius: var(--r-xl); overflow: hidden;
  box-shadow: var(--sh-lg);
  aspect-ratio: 4/4.6;
  transform: rotate(1.4deg);
}
.hero__photo img { width: 100%; height: 100%; object-fit: cover; }
.hero__photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(11,30,63,.28));
}

.floatcard {
  position: absolute; background: var(--white); border-radius: var(--r);
  box-shadow: var(--sh); border: 1px solid var(--line); z-index: 3;
}
.floatcard--compare {
  top: 8%; left: -6%; padding: 16px 18px; width: 230px;
  animation: floaty 6s var(--ease) infinite;
}
.floatcard__title { font-family: var(--f-head); font-weight: 700; font-size: .82rem; color: var(--muted); text-transform: uppercase; letter-spacing: .06em; margin-bottom: 12px; }
.compare-row { display: flex; justify-content: space-between; align-items: center; font-size: .86rem; padding: 6px 0; color: var(--muted); }
.compare-row b { color: var(--ink); font-weight: 700; }
.compare-row--best { color: var(--ink); font-weight: 600; background: var(--mint-soft); margin: 4px -10px; padding: 8px 10px; border-radius: 10px; }
.compare-row--best em { display: block; font-style: normal; font-size: .66rem; color: var(--mint); font-weight: 700; text-transform: uppercase; letter-spacing: .05em; }
.compare-row--best b { color: var(--mint); }

.floatcard--save {
  bottom: 7%; right: -7%; padding: 14px 18px; display: flex; align-items: center; gap: 13px; width: 232px;
  animation: floaty 6s var(--ease) infinite reverse; animation-delay: -3s;
}
.floatcard--save .floatcard__ico { font-size: 1.7rem; }
.floatcard--save strong { display: block; font-family: var(--f-head); font-size: .95rem; }
.floatcard--save span { color: var(--muted); font-size: .82rem; }

@keyframes floaty { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

/* =========================================================
   TRUST / ČÍTAČE
   ========================================================= */
.trust {
  background: var(--ink); color: #fff;
  margin-top: -1px;
  border-radius: var(--r-xl) var(--r-xl) 0 0;
  padding-block: clamp(40px, 5vw, 58px);
}
.trust__inner { display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap; }
.trust__item { flex: 1; min-width: 140px; text-align: center; }
.trust__num { display: block; font-family: var(--f-head); font-weight: 800; font-size: clamp(2rem, 4vw, 3rem); letter-spacing: -.02em; color: #fff; white-space: nowrap; }
.trust__num .counter { color: var(--accent); }
.trust__unit { font-size: .5em; font-weight: 700; opacity: .9; margin-left: .18em; }
.trust__label { color: rgba(255,255,255,.66); font-size: .92rem; margin-top: 4px; display: block; }
.trust__divider { width: 1px; align-self: stretch; background: rgba(255,255,255,.14); }

/* =========================================================
   KARTY POJIŠTĚNÍ
   ========================================================= */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }

.card {
  position: relative; background: var(--white); border-radius: var(--r-lg);
  padding: 34px 30px 30px; border: 1px solid var(--line);
  box-shadow: var(--sh-sm);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s;
  overflow: hidden;
}
.card::before {
  content: ''; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--accent));
  transform: scaleX(0); transform-origin: left; transition: transform .45s var(--ease);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-lg); border-color: transparent; }
.card:hover::before { transform: scaleX(1); }

.card__icon {
  width: 58px; height: 58px; border-radius: 16px;
  display: grid; place-items: center; margin-bottom: 22px;
  background: var(--blue-tint); color: var(--blue);
  transition: transform .4s var(--ease);
}
.card__icon svg { width: 30px; height: 30px; }
.card:hover .card__icon { transform: rotate(-6deg) scale(1.08); }
.card__icon--home   { background: var(--mint-soft);   color: var(--mint); }
.card__icon--car    { background: var(--accent-soft); color: var(--accent-deep); }
.card__icon--travel { background: var(--blue-tint);   color: var(--blue); }
.card__icon--biz    { background: var(--mint-soft);   color: var(--mint); }
.card__icon--pension{ background: var(--accent-soft); color: var(--accent-deep); }

.card h3 { margin-bottom: 12px; }
.card p { color: var(--muted); font-size: .97rem; margin-bottom: 20px; }
.card__link {
  font-family: var(--f-head); font-weight: 600; font-size: .95rem; color: var(--blue);
  display: inline-flex; align-items: center; gap: 7px;
}
.card__link span { transition: transform .3s var(--ease); }
.card:hover .card__link span { transform: translateX(5px); }

/* =========================================================
   PROČ NEZÁVISLÝ
   ========================================================= */
.why { display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(36px, 5vw, 72px); align-items: center; }
.why__media { position: relative; }
.why__media img { border-radius: var(--r-xl); box-shadow: var(--sh-lg); aspect-ratio: 4/4.5; object-fit: cover; width: 100%; }
.why__badge {
  position: absolute; right: -18px; bottom: 34px;
  background: var(--accent); color: #fff; border-radius: var(--r);
  padding: 16px 22px; box-shadow: var(--sh-accent); text-align: center;
}
.why__badge strong { display: block; font-family: var(--f-head); font-size: 1.9rem; line-height: 1; }
.why__badge span { font-size: .82rem; opacity: .92; }

.why__list { display: grid; gap: 22px; margin-top: 34px; }
.why__list li { display: flex; gap: 18px; }
.why__ico {
  flex: none; width: 52px; height: 52px; border-radius: 14px;
  background: var(--white); box-shadow: var(--sh-sm); border: 1px solid var(--line);
  display: grid; place-items: center; color: var(--blue);
}
.why__ico svg { width: 26px; height: 26px; }
.why__list h3 { margin-bottom: 5px; }
.why__list p { color: var(--muted); font-size: .97rem; }

/* =========================================================
   JAK TO FUNGUJE
   ========================================================= */
.steps {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: clamp(18px, 2vw, 26px);
  counter-reset: step;
}
.step {
  position: relative; background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 32px 26px 28px;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.step:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.step__num {
  font-family: var(--f-head); font-weight: 800; font-size: 2.4rem;
  background: linear-gradient(135deg, var(--blue), var(--accent));
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
  display: block; margin-bottom: 14px; letter-spacing: -.03em;
}
.step h3 { margin-bottom: 9px; }
.step p { color: var(--muted); font-size: .95rem; }
/* spojovací linka na desktopu */
@media (min-width: 861px) {
  .step:not(:last-child)::after {
    content: ''; position: absolute; top: 52px; right: -13px; width: 26px; height: 2px;
    background: repeating-linear-gradient(90deg, var(--line) 0 6px, transparent 6px 11px);
    z-index: 1;
  }
}

/* =========================================================
   O MNĚ
   ========================================================= */
.about { display: grid; grid-template-columns: .85fr 1.15fr; gap: clamp(36px, 5vw, 74px); align-items: center; }
.about__photo { position: relative; border-radius: var(--r-xl); overflow: hidden; box-shadow: var(--sh-lg); aspect-ratio: 4/4.7; }
.about__photo img { width: 100%; height: 100%; object-fit: cover; }
.about__photo-tag {
  position: absolute; left: 16px; bottom: 16px;
  background: rgba(255,255,255,.14); backdrop-filter: blur(8px);
  color: #fff; font-family: var(--f-head); font-weight: 600; font-size: .95rem;
  padding: 8px 16px; border-radius: 100px; border: 1px solid rgba(255,255,255,.25);
}
.about__content h2 { color: #fff; }
.about__text { margin-top: 6px; }
.about__text p { color: rgba(255,255,255,.78); margin-bottom: 16px; font-size: 1.03rem; }
.about__text strong { color: #fff; }
.about__creds { display: flex; flex-wrap: wrap; gap: 14px; margin: 28px 0 30px; }
.about__creds li {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--r); padding: 16px 20px; flex: 1; min-width: 120px;
}
.about__creds strong { display: block; font-family: var(--f-head); font-size: 1.6rem; color: var(--accent); line-height: 1; }
.about__creds span { color: rgba(255,255,255,.66); font-size: .84rem; }

/* =========================================================
   REFERENCE
   ========================================================= */
.stars { margin-top: 20px; font-size: 1.02rem; color: var(--muted); }
.stars span { color: var(--accent); letter-spacing: 2px; font-size: 1.15rem; }
.stars b { color: var(--ink); font-weight: 700; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(18px, 2.4vw, 28px); }
.review {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r-lg);
  padding: 32px 28px; box-shadow: var(--sh-sm); position: relative;
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.review:hover { transform: translateY(-6px); box-shadow: var(--sh); }
.review::before {
  content: '\201C'; position: absolute; top: 6px; right: 24px;
  font-family: Georgia, serif; font-size: 5rem; color: var(--blue-tint); line-height: 1;
}
.review__stars { color: var(--accent); letter-spacing: 2px; margin-bottom: 14px; font-size: 1.05rem; }
.review blockquote { font-size: 1rem; color: var(--ink-soft); margin-bottom: 22px; position: relative; z-index: 1; }
.review figcaption { display: flex; align-items: center; gap: 13px; }
.review__avatar {
  width: 46px; height: 46px; border-radius: 50%; flex: none;
  display: grid; place-items: center; font-family: var(--f-head); font-weight: 700; color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--accent));
}
.review figcaption strong { display: block; font-family: var(--f-head); font-size: .98rem; }
.review figcaption small { color: var(--muted); font-size: .84rem; }

/* =========================================================
   FAQ
   ========================================================= */
.faq { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.faq .section__head { position: sticky; top: 100px; }
.faq .section__head a { color: var(--blue); font-weight: 600; }

.accordion { display: grid; gap: 12px; }
.acc { background: var(--white); border: 1px solid var(--line); border-radius: var(--r); overflow: hidden; transition: box-shadow .3s, border-color .3s; }
.acc.is-open { box-shadow: var(--sh); border-color: transparent; }
.acc__head {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 22px 24px; background: none; border: none; text-align: left;
  font-family: var(--f-head); font-weight: 600; font-size: 1.06rem; color: var(--ink);
}
.acc__icon { position: relative; flex: none; width: 22px; height: 22px; }
.acc__icon::before, .acc__icon::after {
  content: ''; position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  background: var(--blue); border-radius: 2px; transition: transform .35s var(--ease);
}
.acc__icon::before { width: 14px; height: 2.5px; }
.acc__icon::after  { width: 2.5px; height: 14px; }
.acc.is-open .acc__icon::after { transform: translate(-50%,-50%) scaleY(0); }
.acc.is-open .acc__icon::before { background: var(--accent); }
.acc__panel { max-height: 0; overflow: hidden; transition: max-height .4s var(--ease); }
.acc__panel p { padding: 0 24px 24px; color: var(--muted); }

/* =========================================================
   KONTAKT
   ========================================================= */
.contact { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 4.5vw, 60px); align-items: start; }
.contact__lead { color: var(--muted); margin: 18px 0 30px; font-size: 1.05rem; }
.contact__list { display: grid; gap: 18px; margin-bottom: 30px; }
.contact__list li { display: flex; align-items: center; gap: 15px; }
.contact__ico {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  background: var(--blue-tint); color: var(--blue); display: grid; place-items: center;
}
.contact__ico svg { width: 24px; height: 24px; }
.contact__list small { display: block; color: var(--muted); font-size: .8rem; text-transform: uppercase; letter-spacing: .05em; }
.contact__list a, .contact__hours { font-family: var(--f-head); font-weight: 600; font-size: 1.02rem; color: var(--ink); transition: color .2s; }
.contact__list a:hover { color: var(--blue); }

.map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--sh-sm); border: 1px solid var(--line); }
.map iframe { display: block; filter: saturate(1.05); }

/* Formulář */
.contact__form-wrap {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--r-xl); padding: clamp(26px, 3.5vw, 42px); box-shadow: var(--sh);
  position: relative;
}
.form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-family: var(--f-head); font-weight: 600; font-size: .92rem; }
.field label span { color: var(--accent-deep); }
.field input, .field textarea, .select-wrap select {
  width: 100%; font-family: inherit; font-size: 1rem; color: var(--ink);
  padding: 13px 16px; border: 1.5px solid var(--line); border-radius: var(--r-sm);
  background: var(--cream); transition: border-color .2s, box-shadow .2s, background .2s;
}
.field input::placeholder, .field textarea::placeholder { color: #9aa6bd; }
.field input:focus, .field textarea:focus, .select-wrap select:focus {
  outline: none; border-color: var(--blue); background: #fff;
  box-shadow: 0 0 0 4px rgba(37,99,235,.12);
}
.field textarea { resize: vertical; min-height: 96px; }
.field.is-invalid input, .field.is-invalid textarea { border-color: var(--accent-deep); box-shadow: 0 0 0 4px rgba(242,99,43,.1); }
.field__err { color: var(--accent-deep); font-size: .82rem; font-weight: 500; min-height: 0; }

.select-wrap { position: relative; }
.select-wrap::after {
  content: ''; position: absolute; right: 18px; top: 50%; width: 9px; height: 9px;
  border-right: 2px solid var(--muted); border-bottom: 2px solid var(--muted);
  transform: translateY(-70%) rotate(45deg); pointer-events: none;
}
.select-wrap select { appearance: none; cursor: pointer; }

.checkbox { display: flex; gap: 11px; align-items: flex-start; font-size: .9rem; color: var(--muted); cursor: pointer; }
.checkbox input { flex: none; width: 20px; height: 20px; margin-top: 2px; accent-color: var(--blue); cursor: pointer; }
.checkbox span span { color: var(--accent-deep); }

.btn__spinner {
  width: 18px; height: 18px; border-radius: 50%; display: none;
  border: 2.5px solid rgba(255,255,255,.4); border-top-color: #fff;
  animation: spin .7s linear infinite;
}
.btn.is-loading .btn__label { opacity: .6; }
.btn.is-loading .btn__spinner { display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

.form__note { text-align: center; color: var(--muted); font-size: .84rem; }

.form__success[hidden] { display: none; }
.form__success {
  display: flex; gap: 15px; align-items: center;
  background: var(--mint-soft); border: 1px solid rgba(16,185,129,.3);
  border-radius: var(--r); padding: 20px 22px; margin-top: 4px;
  animation: pop .5s var(--ease);
}
.form__success-ico {
  flex: none; width: 42px; height: 42px; border-radius: 50%;
  background: var(--mint); color: #fff; display: grid; place-items: center;
}
.form__success-ico svg { width: 24px; height: 24px; }
.form__success strong { font-family: var(--f-head); display: block; color: var(--ink); }
.form__success p { color: var(--ink-soft); font-size: .92rem; margin: 0; }
@keyframes pop { from { opacity: 0; transform: scale(.94); } to { opacity: 1; transform: scale(1); } }

/* =========================================================
   PATIČKA
   ========================================================= */
.footer { background: var(--ink); color: rgba(255,255,255,.72); padding-top: clamp(56px, 7vw, 84px); }
.footer__inner { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: clamp(28px, 4vw, 52px); padding-bottom: 50px; }
.brand--footer { color: #fff; margin-bottom: 16px; }
.brand--footer .brand__text small { color: rgba(255,255,255,.5); }
.footer__brand p { font-size: .95rem; max-width: 320px; }
.footer__col h4 { color: #fff; font-size: 1rem; margin-bottom: 18px; }
.footer__col ul { display: grid; gap: 11px; font-size: .94rem; }
.footer__col a { transition: color .2s; }
.footer__col a:hover { color: var(--accent); }
.footer__hl { color: var(--mint); font-weight: 600; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-block: 22px; }
.footer__bottom-inner { display: flex; justify-content: space-between; gap: 14px; flex-wrap: wrap; font-size: .84rem; color: rgba(255,255,255,.5); }

/* =========================================================
   STICKY CTA
   ========================================================= */
.sticky-cta {
  position: fixed; right: 22px; bottom: 22px; z-index: 90;
  display: inline-flex; align-items: center; gap: 9px;
  background: var(--accent); color: #fff; font-family: var(--f-head); font-weight: 600;
  padding: 15px 22px; border-radius: 100px; box-shadow: var(--sh-accent);
  transform: translateY(140%); transition: transform .5s var(--ease), background .25s;
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta:hover { background: var(--accent-deep); transform: translateY(-4px); }
.sticky-cta svg { flex: none; }

/* =========================================================
   REVEAL animace
   ========================================================= */
[data-reveal] { opacity: 0; transform: translateY(34px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
[data-reveal].is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { [data-reveal] { opacity: 1; transform: none; } }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .cards, .reviews { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .faq { grid-template-columns: 1fr; }
  .faq .section__head { position: static; }
}

@media (max-width: 860px) {
  /* Mobilní navigace */
  .nav__toggle { display: flex; z-index: 120; }
  .nav__links {
    position: fixed; inset: 0 0 0 auto; width: min(82vw, 340px);
    flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px;
    background: var(--cream); padding: 40px; box-shadow: var(--sh-lg);
    transform: translateX(100%); transition: transform .4s var(--ease); z-index: 110;
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__links > a:not(.btn) { font-size: 1.3rem; font-family: var(--f-head); font-weight: 600; }
  .nav__cta { margin-top: 14px; }
  .nav-backdrop { position: fixed; inset: 0; background: rgba(11,30,63,.4); backdrop-filter: blur(2px); z-index: 105; opacity: 0; visibility: hidden; transition: opacity .3s; }
  .nav-backdrop.is-open { opacity: 1; visibility: visible; }

  .hero__inner { grid-template-columns: 1fr; }
  .hero__visual { max-width: 460px; margin-inline: auto; margin-top: 16px; }
  .why, .about, .contact { grid-template-columns: 1fr; }
  .about__media, .why__media { max-width: 420px; }
  .floatcard--compare { left: 0; }
  .floatcard--save { right: 0; }
}

@media (max-width: 560px) {
  .cards, .reviews, .steps { grid-template-columns: 1fr; }
  .trust__divider { display: none; }
  .trust__inner { gap: 26px; }
  .trust__item { min-width: 45%; }
  .field-row { grid-template-columns: 1fr; }
  .why__badge { right: 12px; }
  .hero__visual { max-width: min(440px, 92vw); }
  .floatcard--compare { width: 188px; top: 4%; left: 2px; padding: 13px 15px; }
  .floatcard--save { width: 196px; right: 2px; bottom: 5%; padding: 12px 15px; }
  .floatcard--save .floatcard__ico { font-size: 1.4rem; }
  .footer__inner { grid-template-columns: 1fr 1fr; }
  .footer__brand { grid-column: 1 / -1; }
  .sticky-cta span { display: none; }
  .sticky-cta { padding: 15px; }
  .hero__title .hl { white-space: normal; }
}

@media (max-width: 380px) {
  .footer__inner { grid-template-columns: 1fr; }
}
