/* ── VANESA VÁLOVÁ – hlavní stylesheet ──────────────── */

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

:root {
  --navy:         #163252;
  --blue:         #3A6FA8;
  --cream:        #F4F2EE;
  --light-blue:   #EAF0F8;
  --light-accent: #9ABCD8;
  --slate:        #4A5A6A;
  --gray:         #8A9AAA;
  --near-black:   #0A1828;
  --champagne:    #C9A87C;
  --champagne-light: #D8C8B8;
  /* Legacy aliases – postupně odstraňovat */
  --brown:   var(--navy);
  --beige:   var(--cream);
  --rose:    var(--blue);
  --wine:    var(--navy);
  --white:   #ffffff;
  --text:    var(--slate);
  --muted:   var(--gray);
  --navy-dark: var(--near-black);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--beige);
  color: var(--text);
  line-height: 1.75;
  font-size: clamp(1rem, 1.2vw, 1.125rem);
  -webkit-font-smoothing: antialiased;
}

/* ── TYPOGRAPHY ─────────────────────────────── */
h1, h2 {
  font-family: var(--font-heading);
  line-height: 1.3;
}
h3, h4 {
  font-family: var(--font-body);
  color: var(--brown);
  font-weight: 400;
  color: var(--brown);
}
h1 { font-size: clamp(2rem, 4vw, 3.0625rem); font-weight: 400; color: var(--navy); }
h2 { font-family: var(--font-heading); font-size: clamp(2rem, 4vw, 2.4375rem); font-weight: 600; line-height: 1.3; color: var(--navy); text-align: center; }
h3 { font-size: 1.1875rem; font-weight: 500; }
p  { color: var(--slate); }
strong { color: var(--navy); font-weight: 600; }

/* ── LAYOUT ──────────────────────────────────── */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}
.container--wide {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}
section { padding: 80px 0; }
section.alt { background: var(--light-blue); }

/* ── TEXT HIGHLIGHT ─────────────────────────────── */
.hl {
  font-style: italic;
  color: var(--blue);
}

/* ── NAV ─────────────────────────────────────── */
#site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(244,242,238,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(22,50,82,0.1);
}
.nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-kontakt-mobile { display: none; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  display: block;
  padding: 6px 14px;
  font-size: 1.0625rem;
  font-weight: 400;
  color: #6A7A8A;
  text-decoration: none;
  border-radius: 2px;
  transition: color 0.2s, background 0.2s;
  white-space: nowrap;
}
.nav-links a:hover {
  color: var(--navy);
  background: rgba(22,50,82,0.06);
}
.nav-links a.active {
  color: var(--navy);
  font-weight: 500;
}
.nav-cta {
  flex-shrink: 0;
}
.nav-cta a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  background: var(--navy);
  color: var(--light-blue) !important;
  border-radius: 2px;
  font-size: 1.0625rem;
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s, transform 0.2s;
}
.nav-cta a:hover {
  opacity: 0.88;
  transform: translateY(-1px);
  background: var(--navy) !important;
}
/* hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--brown);
  flex-shrink: 0;
}
@media (max-width: 860px) {
  #site-nav { position: sticky; }
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .nav-kontakt-mobile { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    position: absolute;
    top: 58px;
    left: 0; right: 0;
    background: var(--beige);
    border-bottom: 1px solid rgba(22,50,82,0.1);
    padding: 8px 24px 12px;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.0625rem; padding: 8px 12px; }
  .nav-links.open .nav-kontakt-mobile {
    display: list-item;
    width: 100%;
    border-top: 1px solid rgba(22,50,82,0.08);
    margin-top: 8px;
    padding-top: 8px;
  }
  .nav-kontakt-mobile a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--navy);
    color: var(--light-blue) !important;
    padding: 8px 18px;
    border-radius: 2px;
    font-weight: 500;
    font-size: 0.9375rem;
    text-decoration: none;
  }
  .nav-cta { display: none !important; }
}

/* ── BUTTONS ──────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 2px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s, opacity 0.2s;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(22,50,82,0.2); }
.btn--primary {
  background: var(--navy);
  color: var(--light-blue);
}
.btn--outline {
  background: transparent;
  border: 0.5px solid var(--navy);
  color: var(--navy);
}
.btn-wrap { margin-top: 48px; }

/* ── INTRO / HERO ───────────────────────────────── */
#intro {
  background: var(--cream);
  padding: 80px 0 80px;
  position: relative;
  overflow: hidden;
}
#domu {
  padding-top: 56px;
  padding-bottom: 0;
  background: var(--cream);
  overflow: hidden;
}
#hero {
  background: var(--cream);
  padding: 40px 0 0;
  position: relative;
  overflow: hidden;
}
.intro-layout {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}
.intro-label br { display: none; }
.intro-label {
  display: inline-flex;
  align-items: center;
  gap: 0;
  font-size: 0.9875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 24px;
}
.intro-heading {
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.3;
  font-family: var(--font-heading);
  color: var(--navy);
}
h3, h4 {
  font-family: var(--font-body);
  color: var(--brown);
  font-weight: 400;
  margin-bottom: 32px;
}
.intro-sub {
  font-size: 1.1875rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 24px;
}
.intro-img-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  align-self: stretch;
}
.intro-img-wrap img {
  width: 115%;
  display: block;
  margin-top: -20px;
  border-radius: 6px;
}
@media (max-width: 820px) {
  .intro-label { display: block; text-align: center; }
  .intro-label br { display: inline; }
  .spoluprace-urgence { text-align: left !important; }
  .intro-layout {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .intro-text-col h1 { text-align: left; }
  .intro-sub { margin: 24px auto 0; text-align: left; }
  .intro-img-wrap { max-width: 320px; margin: 0 auto; }
  #poznavas .section-header { text-align: left; }
  #poznavas .section-header .eyebrow { justify-content: flex-start; }
}

/* ── POZNAVÁS SE ───────────────────────────────── */
#poznavas {
  background: var(--cream);
}
#poznavas ul li::marker { color: var(--rose); }
.poznavas-layout { display: grid; grid-template-columns: 1fr auto; grid-template-areas: "para img" "list img"; gap: 8px 24px; margin-top: 16px; }
.poznavas-para { grid-area: para; font-size: 1.2rem; font-weight: 700; color: var(--brown); }
.poznavas-list { grid-area: list; padding-left: 20px; line-height: 2; }
.poznavas-img { grid-area: img; width: 200px; height: 200px; object-fit: contain; align-self: center; }
@media (max-width: 820px) {
  .poznavas-layout { grid-template-columns: 1fr auto; grid-template-areas: "para img" "list list"; }
  .poznavas-img { width: 64px; height: 64px; }
}
#poznavas .section-header {
  text-align: left;
  margin: 0 auto 8px;
}
#poznavas .section-header .eyebrow { justify-content: flex-start; }
.poznavas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 40px;
}
.poznavas-col {
  background: #ffffff;
  border-radius: 4px;
  padding: 24px 22px;
  border: none;
  border-left: 2px solid var(--blue);
}
.poznavas-col--accent {
  background: #ffffff;
}
.poznavas-col h3 {
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.check-list {
  list-style: none;
}
.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 7px 0;
  border-bottom: 1px solid rgba(22,50,82,0.07);
  color: var(--slate);
  font-size: 0.93rem;
}
.check-list li:last-child { border-bottom: none; }
.check-list .ic { flex-shrink: 0; margin-top: 2px; }

.key-statement {
  margin-top: 44px;
  background: var(--navy);
  border-radius: 4px;
  padding: 36px 40px;
  color: var(--light-blue);
}
.key-statement p {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
}
.key-statement strong { color: var(--light-blue); }

/* ── PROBLEM ───────────────────────────────────── */
#problem {
  background: var(--cream);
}
.problem-layout {
  display: grid;
  grid-template-columns: 1fr 442px;
  gap: 60px;
  align-items: center;
}
.problem-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.problem-step {
  background: #ffffff;
  border-radius: 4px;
  padding: 20px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: none;
  border-left: 2px solid var(--blue);
}
.problem-step-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(58,111,168,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.problem-step-text { font-size: 1.125rem; color: var(--slate); line-height: 1.6; }
@media (max-width: 700px) {
  .problem-steps { grid-template-columns: 1fr; }
}
.problem-photo-wrap {
  position: relative;
}
.problem-photo-bg {
  width: 100%;
  position: relative;
}
.problem-photo-bg img {
  width: 100%;
  display: block;
}

/* ── PRO KOHO ──────────────────────────────────── */
#prokoho {
  background: var(--navy);
}
#prokoho h2 { color: var(--light-blue); }
#prokoho .eyebrow { color: var(--light-accent); }
.prokoho-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-top: 0;
}
.prokoho-photo {
  border-left: 2px solid var(--blue);
  border-radius: 6px;
  overflow: hidden;
}
.prokoho-photo img {
  width: calc(100% + 1px);
  height: 100%;
  object-fit: cover;
  display: block;
}
.prokoho-cards {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.prokoho-card {
  border-radius: 4px;
  padding: 28px;
}
.prokoho-card--yes {
  background: var(--cream);
  border: none;
  border-left: 2px solid var(--blue);
}
.prokoho-card--no {
  background: var(--cream);
  border: none;
  border-left: 2px solid var(--blue);
  padding: 20px 28px;
}
.prokoho-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.prokoho-card .check-list li {
  color: var(--navy);
  font-size: 1.125rem;
  align-items: center;
}
.prokoho-card .check-list li strong {
  color: var(--blue);
}
.prokoho-card h3 {
  color: var(--navy);
}

/* ── CO ZISKAS ─────────────────────────────────── */
#ziskas {
  background: var(--beige);
}
.ziskas-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 0;
}
.ziskas-grid .benefit-card { grid-column: span 2; }

.benefit-card {
  background: var(--navy);
  border-radius: 4px;
  padding: 22px;
  border: none;
  border-left: 2px solid var(--light-accent);
  transition: transform 0.2s, box-shadow 0.2s;
}
.benefit-card h3 { font-size: 1.1875rem; margin-bottom: 8px; color: var(--light-blue); }
.benefit-card p { font-size: 1.0625rem; line-height: 1.65; color: rgba(234,240,248,0.8); }
.benefit-card p strong { color: var(--light-blue); }
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(10,24,40,0.2);
}
.ziskas-grid .benefit-card:nth-child(even) {
  background: #ffffff;
  border-left-color: var(--blue);
}
.ziskas-grid .benefit-card:nth-child(even) h3 { color: var(--navy); }
.ziskas-grid .benefit-card:nth-child(even) p { color: var(--slate); }
.ziskas-grid .benefit-card:nth-child(even) p strong { color: var(--navy); }
.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 4px;
  background: rgba(234,240,248,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-accent);
  margin-bottom: 16px;
}
.ziskas-grid .benefit-card:nth-child(even) .benefit-icon {
  background: rgba(58,111,168,0.12);
  color: var(--blue);
}

/* ── JAK PROBÍHÁ ───────────────────────────────── */
#process p { color: rgba(234,240,248,0.75); }
#process strong { color: var(--light-blue); }
#process {
  background: #163252;
}
#process h2 { color: #EAF0F8; }
#process .eyebrow { color: #9ABCD8; }
#process .process-intro p { color: rgba(234,240,248,0.75); }
#process .process-content p { color: rgba(234,240,248,0.75); }
#process .process-content h3 { color: #EAF0F8; }
#process .process-num { background: #3A6FA8; color: #EAF0F8; }
#process .process-step:not(:last-child)::after { background: linear-gradient(to bottom, #3A6FA8, transparent); }
.process-intro {
  max-width: 680px;
  margin: 0 auto 52px;
  text-align: center;
}
.process-intro p { font-size: 1.1875rem; }
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 720px;
  margin: 0 auto;
}
.process-step {
  display: flex;
  gap: 28px;
  align-items: flex-start;
  position: relative;
}
.process-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 24px;
  top: 52px;
  bottom: -28px;
  width: 2px;
  background: linear-gradient(to bottom, var(--rose), transparent);
}
.process-num {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--blue);
  color: var(--light-blue);
  font-family: var(--font-body);
  font-size: 1.2rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-bottom: 28px;
}
.process-content {
  padding-top: 8px;
  padding-bottom: 28px;
}
.process-content h3 { margin-bottom: 8px; font-size: 1.1rem; color: var(--light-blue); font-weight: 500; }
.process-content p { font-size: 1.025rem; }

/* ── CO SE ZMĚNÍ ───────────────────────────────── */
#zmeni {
  background: var(--beige);
}
.zmeni-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 60px;
  align-items: center;
}
.zmeni-list {
  list-style: none;
  margin-top: 28px;
}
.zmeni-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(22,50,82,0.08);
  font-size: 1.1375rem;
  color: var(--slate);
}
.zmeni-list li:last-child { border-bottom: none; }
.zmeni-list .ic { flex-shrink: 0; margin-top: 3px; color: var(--blue); }
.zmeni-photo {
  position: relative;
  border-left: 2px solid var(--blue);
  border-radius: 6px;
  overflow: hidden;
}
.zmeni-photo--mobile { display: none; }
.zmeni-photo img {
  width: 100%;
  display: block;
}

/* ── PROC JA ───────────────────────────────────── */
#procja {
  background: var(--cream);
}
.procja-layout {
  display: grid;
  grid-template-columns: 390px 1fr;
  gap: 60px;
  align-items: start;
}
.procja-photo-wrap {
  position: sticky;
  top: 80px;
}
.procja-photo-bg {
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  border-left: 2px solid var(--blue);
}
.procja-photo-bg img {
  width: 100%;
  height: auto;
  display: block;
}
@media (max-width: 820px) {
  .procja-photo-wrap { position: static; }
}
.procja-text p {
  font-size: 1.1375rem;
  margin-bottom: 16px;
}
.procja-highlights {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 24px 0 32px;
}
.procja-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  border-radius: 2px;
  border-left: 2px solid var(--blue);
  padding: 12px 16px;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 400;
}
.procja-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.6875rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  background: var(--light-blue);
  border-radius: 4px;
  line-height: 1.5;
  margin: 32px 0;
}

/* ── FAQ ───────────────────────────────────────── */
#faq {
  background: var(--light-blue);
}
.faq-list {
  max-width: 740px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  background: var(--navy);
  border-radius: 4px;
  border: none;
  border-left: 2px solid var(--blue);
  overflow: hidden;
}
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 20px 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--light-blue);
  transition: color 0.2s;
}
.faq-q:hover { color: var(--light-accent); }
.faq-icon { flex-shrink: 0; transition: transform 0.3s; color: var(--light-accent); }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.faq-a-inner {
  padding: 0 24px 20px;
  font-size: 1.125rem;
  color: rgba(234,240,248,0.75);
  line-height: 1.75;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ── FINAL CTA ─────────────────────────────────── */
#cta-final {
  background: var(--navy);
  padding: 80px 0;
  text-align: center;
}
#cta-final h2, #cta-final h3 { color: var(--light-blue); margin-bottom: 20px; }
#cta-final h2:not(:last-of-type) { margin-bottom: 12px; }
#cta-final p:not(.cta-final-label) { color: rgba(234,240,248,0.75); max-width: 560px; margin: 0 auto 40px; font-size: 1.1875rem; }
.cta-final-label {
  font-size: 0.69rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 48px;
}

/* ── BANNER SPOLUPRÁCE ──────────────────────────── */
#spoluprace, #spoluprace-hero {
  background: #163252;
  padding: 18px 24px;
  position: relative;
  z-index: 1;
  margin-top: -4px;
}
.banner-strip {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0;
}
.banner-strip-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 32px;
  border-left: 1px solid rgba(234,240,248,0.15);
}
.banner-strip-item:first-child { border-left: none; padding-left: 0; }
.banner-strip-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #9ABCD8;
  flex-shrink: 0;
}
.banner-strip-text {
  font-family: var(--font-body);
  font-size: 1.0625rem;
  font-weight: 500;
  color: #EAF0F8;
  line-height: 1.5;
  white-space: nowrap;
}
.banner-typing-cursor {
  color: #9ABCD8;
  animation: banner-cursor-blink 0.65s step-end infinite;
}
@keyframes banner-cursor-blink {
  50% { opacity: 0; }
}
@media (max-width: 600px) {
  .banner-strip { grid-template-columns: 1fr; gap: 20px; }
  .banner-strip-item { border-left: none; padding-left: 0; }
}
.banner-sub {
  font-size: clamp(0.85rem, 2vw, 1rem);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
}

/* ── SECTION HEADER ────────────────────────────── */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 44px;
}
.eyebrow {
  display: block;
  text-align: center;
  font-size: 0.875rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--blue);
  margin-bottom: 20px;
}
.section-header h2 { margin-bottom: 28px; }
.section-header p { font-size: 1.0625rem; line-height: 1.75; margin-bottom: 0; }

/* ── FOOTER ────────────────────────────────────── */
footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 36px 24px;
  font-size: 0.9875rem;
  line-height: 1.9;
}
footer a { color: rgba(255,255,255,0.9); text-decoration: none; transition: color 0.2s; }
footer a:hover { color: var(--light-accent); }
.footer-li {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.footer-divider { opacity: 0.3; }
@media (max-width: 600px) {
  .footer-divider { display: none; }
  .footer-li { gap: 10px; }
}
.footer-credit { margin-top: 28px; font-size: 0.9875rem; color: var(--gray); }
.footer-credit a { color: var(--light-accent); text-decoration: underline; text-underline-offset: 3px; }

/* ── PHOTO PLACEHOLDER ──────────────────────────── */
.photo-placeholder {
  background: var(--light-blue);
  border: 2px dashed var(--blue);
  border-radius: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--blue);
  font-family: var(--font-body);
  font-size: 0.9875rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: 100%;
}

/* ── UTILITIES ─────────────────────────────────── */
.text-center { text-align: center; }
.mt-4  { margin-top: 16px; }
.mt-6  { margin-top: 24px; }
.mt-8  { margin-top: 32px; }
.mt-10 { margin-top: 40px; }
.mb-2  { margin-bottom: 8px; }

/* ── RESPONSIVE ────────────────────────────────── */
@media (max-width: 720px) {
  .ziskas-grid { grid-template-columns: 1fr; }
  .ziskas-grid .benefit-card { grid-column: span 1; }
  section { padding: 56px 0; }
  .prokoho-layout { grid-template-columns: 1fr; }
  .prokoho-cards { order: 1; }
  .prokoho-photo { order: 2; border-left: 2px solid var(--blue); border-top: none; }
  .poznavas-grid,
  .zmeni-layout,
  .procja-layout,
  .problem-layout { grid-template-columns: 1fr; }
  .problem-photo-wrap,
  .procja-photo-wrap { max-width: 320px; margin: 0 auto; }
  .zmeni-photo { display: none; }
  .zmeni-photo--mobile { display: block; max-width: 320px; margin: 40px auto 0; }
  .hero-deco-l, .hero-deco-r { display: none; }
  .intro-inner { flex-direction: column; text-align: center; }
  .key-statement { padding: 28px 24px; }
  .process-intro { text-align: left; }
  #poznavas .section-header { text-align: left; }
  #poznavas .section-header .eyebrow { justify-content: flex-start; }
}

/* ── TEASER – SPOLUPRÁCE ───────────────────────── */
.nabidka-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.nabidka-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
@media (max-width: 820px) {
  .nabidka-grid { grid-template-columns: 1fr; gap: 36px; }
  .nabidka-cards { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .nabidka-cards { grid-template-columns: 1fr; }
}

/* ── HERO – ZDARMA ─────────────────────────────── */
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 40px 80px;
}
.hero-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 20px;
}
.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--navy);
}
.hero-sub {
  font-size: 1.1875rem;
  color: var(--slate);
  line-height: 1.75;
  max-width: 520px;
  margin-top: 20px;
}
.hero-img-wrap {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}
.hero-img-wrap img {
  width: 100%;
  display: block;
  border-left: 2px solid var(--blue);
  border-radius: 6px;
}
.quote-box {
  background: var(--light-blue);
  border-left: 3px solid var(--blue);
  border-radius: 4px;
  padding: 24px 28px;
  margin-top: 32px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.quote-icon {
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 2px;
}
.quote-box p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--navy);
}
@media (max-width: 820px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: left;
    padding: 0 40px 64px;
    gap: 36px;
  }
  .hero-sub { margin-top: 20px; }
  .hero-img-wrap { max-width: 320px; margin: 0 auto; }
  #co-ziskas .section-header,
  #pro-koho .section-header { text-align: left; }
  #co-ziskas .section-header h2,
  #pro-koho .section-header h2 { text-align: left; }
  #co-ziskas .eyebrow,
  #pro-koho .eyebrow { text-align: left; }
}

/* ── TEASER – ZDARMA ───────────────────────────── */
.magnet-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 48px;
  align-items: stretch;
}
.magnet-img {
  flex-shrink: 0;
  width: 220px;
  border-radius: 6px;
  overflow: hidden;
  border-left: 2px solid var(--blue);
}
.magnet-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
@media (max-width: 700px) {
  .magnet-grid { grid-template-columns: 1fr; }
  .magnet-img { display: none; }
}

/* ── PŘÍBĚH – O MNĚ ───────────────────────────── */
#pribeh { background: var(--light-blue); }
.pribeh-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 60px;
  align-items: start;
}
.pribeh-photo-wrap {
  position: sticky;
  top: 80px;
}
.pribeh-photo-bg {
  border-radius: 6px;
  overflow: hidden;
  border-left: 2px solid var(--blue);
}
.pribeh-photo-bg img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.pribeh-text-col p {
  font-size: 1.0625rem;
  line-height: 1.8;
  margin-bottom: 16px;
}
.pribeh-text-col h2 {
  text-align: left;
  margin-bottom: 28px;
}
.pribeh-text-col .eyebrow {
  text-align: left;
}
.pribeh-quote {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.4375rem;
  font-weight: 600;
  color: var(--navy);
  border-left: 3px solid var(--blue);
  padding: 16px 24px;
  background: #fff;
  border-radius: 4px;
  line-height: 1.5;
  margin: 28px 0;
}
.pribeh-closing {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--blue);
  margin-top: 32px;
}
@media (max-width: 820px) {
  .pribeh-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .pribeh-photo-wrap {
    position: static;
    max-width: 280px;
    margin: 0 auto;
    order: 2;
  }
  .pribeh-text-col { order: 1; }
}

/* ── KONTAKT ────────────────────────────────────── */
#kontakt-hero {
  background: var(--cream);
  padding: 64px 0 48px;
}
#kontakt-hero .intro-label {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 16px;
}
.kontakt-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 60px;
  align-items: start;
}
.kontakt-form {
  background: #ffffff;
  border-radius: 8px;
  padding: 40px;
  border: 1px solid rgba(22,50,82,0.08);
  border-left: 2px solid var(--blue);
}
.kontakt-form h2 { text-align: left; margin-bottom: 6px; }
.form-sub {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 28px;
}
.form-group {
  margin-bottom: 18px;
}
.form-group label {
  display: block;
  font-size: 0.9875rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}
.form-group input[type="text"],
.form-group input[type="email"],
.form-group textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid #ddd;
  border-radius: 4px;
  font-size: 1.0625rem;
  font-family: var(--font-body);
  color: var(--navy);
  background: var(--cream);
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
}
.form-group textarea {
  height: 130px;
  resize: vertical;
}
.form-gdpr {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 4px 0 24px;
}
.form-gdpr input[type="checkbox"] {
  margin-top: 3px;
  flex-shrink: 0;
  accent-color: var(--blue);
  width: 15px;
  height: 15px;
}
.form-gdpr span {
  font-size: 0.9375rem;
  color: var(--slate);
  line-height: 1.5;
}
.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  background: var(--navy);
  color: var(--light-blue);
  border: none;
  border-radius: 2px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--font-body);
  cursor: pointer;
  transition: opacity 0.2s, transform 0.2s;
}
.form-submit:hover { opacity: 0.88; transform: translateY(-1px); }
.kontakt-info {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 72px;
}
.info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border-radius: 4px;
  border-left: 2px solid var(--blue);
  padding: 18px 20px;
}
.info-card-icon {
  width: 40px;
  height: 40px;
  border-radius: 4px;
  background: rgba(58,111,168,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
}
.info-card-body { min-width: 0; }
.info-card-label {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 3px;
}
.info-card-value {
  font-size: 1rem;
  color: var(--navy);
  word-break: break-all;
}
.info-card-value a {
  color: var(--blue);
  text-decoration: underline;
  text-underline-offset: 3px;
}
@media (max-width: 860px) {
  .kontakt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .kontakt-info { padding-top: 0; }
  #kontakt-hero .container--wide { padding: 0 40px; }
}

/* ── TEASER – O MNĚ ───────────────────────────── */
.omne-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 60px;
  align-items: center;
}
.page-omne .intro-img-wrap img {
  border-left: 2px solid var(--blue);
}
.omne-photo {
  border-left: 2px solid var(--blue);
  border-radius: 6px;
  overflow: hidden;
}
.omne-photo img { width: 100%; display: block; object-fit: cover; }
@media (max-width: 820px) {
  .omne-grid { grid-template-columns: 1fr; gap: 32px; }
  .omne-photo { max-width: 280px; }
}

/* ── ANIMATIONS ────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal-up.active {
  opacity: 1;
  transform: translateY(0);
}
