/* =============================================
   KATKA HROUZKOVÁ — Premium Coaching Website
   Design System
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400;1,500&family=DM+Sans:wght@300;400;500;600&display=swap');

/* --- TOKENS --- */
:root {
  --paper:      #F8F9FB; /* Veľmi svetlá chladná sivobiela (pozadia sekcií) */
  --cream:      #FFFFFF; /* Čistá biela (karty, čisté bloky) */
  --forest:     #255964; /* Tmavá antracitová (hlavný text, tmavé pozadia) */
  --forest-mid: #23262B; /* Takmer čierna (hovery a tmavé linky) */
  --terra:      #255964; /* Sofistikovaná studená petrolejová (hlavný akcent, tlačidlá) */
  --terra-dark: #1A3F47; /* Tmavšia petrolejová (hovery na tlačidlách) */
  --charcoal:   #255964; /* Hlavná tmavá pre texty */
  --warm-gray:  #5C6370; /* Sekundárny chladný text */
  --sand:       rgba(35,38,43,0.08); /* Jemné linky a okraje */
  --sand-light: rgba(35,38,43,0.03); /* Jemný podmaz pod ikonkami */

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in-out: cubic-bezier(0.4, 0, 0.2, 1);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 24px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.08);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
}

/* --- RESET --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  font-size: 18px;
  line-height: 1.75;
  color: var(--charcoal);
  background: var(--bg-light);
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
ul { list-style: none; }

/* --- REDUCED MOTION --- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
}

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; line-height: 1.1; }
h1 { font-size: clamp(50px, 6.5vw, 82px); }
h2 { font-size: clamp(38px, 5vw, 62px); }
h3 { font-size: clamp(26px, 3.5vw, 40px); }
h4 { font-size: clamp(20px, 2.2vw, 27px); }

.display { font-size: clamp(48px, 7vw, 80px); font-weight: 300; letter-spacing: -0.02em; }
.overline {
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--terra);
}
.lead { font-size: clamp(19px, 2.2vw, 22px); line-height: 1.6; color: var(--warm-gray); }
.caption { font-size: 16px; color: var(--warm-gray); }

/* =============================================
   LAYOUT
   ============================================= */
.container {
  width: 100%;
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 48px;
}
.container--narrow { max-width: 800px; }
.container--wide   { max-width: 1280px; }

section { position: relative; }

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-sans);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.03em;
  padding: 15px 30px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), background 0.2s;
  will-change: auto;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn--primary {
  background: var(--terra);
  color: #fff;
  box-shadow: 0 4px 14px rgba(37,89,100,0.25);
}
.btn--primary:hover { background: var(--terra-dark); box-shadow: 0 8px 24px rgba(37,89,100,0.35); }

.btn--ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--greige-light);
}
.btn--ghost:hover { border-color: var(--charcoal); }

.btn--white {
  background: #fff;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}
.btn--white:hover { box-shadow: var(--shadow-md); }

.btn--outline-white {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.45);
}
.btn--outline-white:hover { border-color: #fff; background: rgba(255,255,255,0.08); }

.btn svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   NAV
   ============================================= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 99999;
  padding: 20px 0;
  transition: background 0.3s, padding 0.3s, box-shadow 0.3s;
}
.nav.scrolled {
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 1px 0 var(--greige-light);
}
.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav__logo {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: #2F343B;
  flex-shrink: 0;
}
.nav__logo span { color: var(--terra); }

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav__links a {
  font-size: 16px;
  font-weight: 400;
  color: var(--charcoal);
  opacity: 0.8;
  transition: opacity 0.2s;
  position: relative;
  white-space: nowrap;
}
.nav__links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 1px;
  background: var(--terra);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s var(--ease-out);
}
.nav__links a:hover { opacity: 1; }
.nav__links a:hover::after { transform: scaleX(1); }

.nav__right { display: flex; align-items: center; gap: 16px; }

.nav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  background: var(--white);
  border-radius: var(--radius-pill);
  padding: 4px 6px;
}
.nav__lang button {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  padding: 5px 10px;
  border-radius: var(--radius-pill);
  color: var(--warm-gray);
  transition: background 0.2s, color 0.2s;
}
.nav__lang button.active {
  background: #fff;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  position: relative;
  z-index: 10000;
}
.nav__hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform 0.3s, opacity 0.3s;
  transform-origin: center;
}
.nav__hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav__hamburger.open span:nth-child(2) { opacity: 0; }
.nav__hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav__mobile {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 99;
  padding: 100px 48px 48px;
  flex-direction: column;
  gap: 8px;
}
.nav__mobile.open { display: flex; }
.nav__mobile a {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--charcoal);
  padding: 12px 0;
  border-bottom: 1px solid var(--greige-light);
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.3s, transform 0.3s;
}
.nav__mobile.open a { opacity: 1; transform: none; }
.nav__mobile a:nth-child(1) { transition-delay: 0.05s; }
.nav__mobile a:nth-child(2) { transition-delay: 0.10s; }
.nav__mobile a:nth-child(3) { transition-delay: 0.15s; }
.nav__mobile a:nth-child(4) { transition-delay: 0.20s; }
.nav__mobile a:nth-child(5) { transition-delay: 0.25s; }
.nav__mobile a:nth-child(6) { transition-delay: 0.30s; }

/* =============================================
   HERO
   ============================================= */
.hero {
  min-height: auto;
  display: block;
  overflow: visible;
  padding: 180px 0 120px;
}
.hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 140px 80px 80px 64px;
}
@media (max-width: 768px) {
  .hero__content {
    padding: 24px 20px 32px !important;
  }
  .hero__image {
    height: 85vw !important;
    max-height: 480px !important;
  }
  .hero__image img {
    object-position: center 10% !important;
  }
}
.hero__overline { margin-bottom: 20px; }
.hero__title {
  font-size: clamp(44px, 5.5vw, 70px);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.hero__title em { color: var(--terra); }
.hero__sub {
  font-size: clamp(16px, 1.8vw, 19px);
  color: var(--warm-gray);
  line-height: 1.65;
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 56px; }
.hero__meta {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}
.hero__meta-item { display: flex; flex-direction: column; gap: 2px; }
.hero__meta-label { font-size: 16px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--warm-gray); }
.hero__meta-value { font-size: 16px; font-weight: 500; }

.hero__image {
  position: relative;
  overflow: hidden;
}
.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  will-change: auto;
}
.hero__image-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--bg-light) 0%, transparent 15%);
  pointer-events: none;
}

/* =============================================
   LOGOS STRIP
   ============================================= */
.logos {
  background: var(--cream);
  padding: 40px 0;
  border-top: 1px solid var(--greige-light);
  border-bottom: 1px solid var(--greige-light);
}
.logos__inner {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.logos__label {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
  margin-right: 8px;
  flex-shrink: 0;
}
.logos__divider {
  width: 1px; height: 24px;
  background: var(--greige-light);
  flex-shrink: 0;
  margin-right: 8px;
}
.logos__items {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}
.logos__item {
  font-family: var(--font-sans);
  font-size: 19px;
  font-weight: 500;
  color: var(--warm-gray);
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
}
.logos__item:hover { opacity: 1; }

/* =============================================
   PROBLEM / INTRO
   ============================================= */
.intro {
  padding: 120px 0;
  overflow: hidden;
}
.intro__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro__image-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.intro__image-card {
  position: absolute;
  bottom: 28px; left: 28px;
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  max-width: 220px;
}
.intro__image-card strong {
  font-family: var(--font-serif);
  font-size: 28px;
  display: block;
  line-height: 1;
}
.intro__image-card span { font-size: 16px; color: var(--warm-gray); }

.intro__overline { margin-bottom: 16px; }
.intro__title { margin-bottom: 24px; }
.intro__lead { font-size: 18px; line-height: 1.7; color: var(--warm-gray); margin-bottom: 32px; }
.intro__statement {
  background: #255964;
  color: #fff;
  border-radius: var(--radius-md);
  padding: 28px 32px;
  margin-bottom: 32px;
}
.intro__statement p {
  font-family: var(--font-serif);
  font-size: 22px;
  line-height: 1.4;
  color: rgba(255,255,255,0.95);
}
.intro__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.intro__list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--charcoal);
}
.intro__list li::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

/* =============================================
   HOW I WORK
   ============================================= */
.how {
  padding: 100px 0;
  background: #255964;
  color: #fff;
}
.how__header {
  text-align: center;
  margin-bottom: 64px;
}
.how__header .overline { color: rgba(255,255,255,0.5); }
.how__header h2 { color: #fff; margin-top: 12px; }
.how__header p { color: rgba(255,255,255,0.65); max-width: 540px; margin: 16px auto 0; }

.how__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.how__card {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 36px 32px;
  transition: background 0.3s, transform 0.3s var(--ease-out);
  will-change: auto;
}
.how__card:hover {
  background: rgba(255,255,255,0.11);
  transform: translateY(-4px);
}
.how__card-num {
  font-family: var(--font-serif);
  font-size: 52px;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
  margin-bottom: 16px;
}
.how__card h3 {
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.how__card p {
  font-size: 16px;
  color: rgba(255,255,255,0.65);
  line-height: 1.7;
}

/* =============================================
   SERVICES
   ============================================= */
.services {
  padding: 120px 0;
}
.services__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: end;
  margin-bottom: 64px;
}
.services__header h2 { line-height: 1.1; }
.services__header p { font-size: 16px; color: var(--warm-gray); }

.services__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: #EAECEF;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid var(--greige-light);
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
  position: relative;
  overflow: hidden;
  will-change: auto;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--terra);
  transition: height 0.4s var(--ease-out);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card:hover::before { height: 100%; }

.service-card__icon {
  width: 48px; height: 48px;
  background: var(--white);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 22px;
  transition: background 0.3s;
}
.service-card:hover .service-card__icon { background: rgba(196,102,74,0.1); }

.service-card h3 { font-size: 24px; margin-bottom: 12px; }
.service-card p { font-size: 16px; color: var(--warm-gray); line-height: 1.7; margin-bottom: 24px; }
.service-card__items {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 28px;
}
.service-card__item {
  font-size: 16px;
  color: rgba(255,255,255,0.75);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-card__item::before {
  content: '';
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
}

.service-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
  transition: gap 0.2s;
}
.service-card__link:hover { gap: 12px; }
.service-card__link svg { width: 16px; height: 16px; }

/* =============================================
   ABOUT TEASER
   ============================================= */
.about {
  padding: 120px 0;
  background: var(--white);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about__image-wrap {
  position: relative;
}
.about__image-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.about__image-frame img {
  width: 100%; height: 100%; object-fit: cover;
}
.about__cert-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}
.about__cert {
  background: var(--cream);
  border: 1px solid var(--greige-light);
  border-radius: var(--radius-sm);
  padding: 8px 14px;
  font-size: 16px;
  font-weight: 500;
  color: var(--warm-gray);
  display: flex;
  align-items: center;
  gap: 6px;
}
.about__cert::before {
  content: '✓';
  color: #255964;
  font-weight: 700;
  font-size: 16px;
}

.about__content .overline { margin-bottom: 16px; }
.about__content h2 { margin-bottom: 20px; }
.about__content .lead { margin-bottom: 24px; }
.about__content p { font-size: 16px; color: var(--warm-gray); margin-bottom: 20px; line-height: 1.75; }

.about__quote {
  border-left: 3px solid var(--terra);
  padding-left: 24px;
  margin: 32px 0;
}
.about__quote p {
  font-family: var(--font-serif);
  font-size: 21px;
  color: var(--charcoal);
  line-height: 1.5;
  margin: 0;
}

.about__stats {
  display: flex;
  gap: 40px;
  margin: 32px 0;
}
.about__stat { display: flex; flex-direction: column; gap: 2px; }
.about__stat-num {
  font-family: var(--font-serif);
  font-size: 42px;
  font-weight: 400;
  color: var(--terra);
  line-height: 1;
}
.about__stat-label { font-size: 16px; color: var(--warm-gray); }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 120px 0;
  overflow: hidden;
}
.testimonials__header {
  text-align: center;
  margin-bottom: 64px;
}
.testimonials__header h2 { margin-top: 12px; }

.testimonials__track-wrap {
  overflow: hidden;
  cursor: grab;
  user-select: none;
}
.testimonials__track-wrap:active { cursor: grabbing; }
.testimonials__track {
  display: flex;
  gap: 24px;
  padding: 0 48px 16px;
  transition: transform 0.4s var(--ease-out);
}
.testimonial-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid var(--greige-light);
  min-width: 380px;
  max-width: 380px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: box-shadow 0.3s;
}
.testimonial-card:hover { box-shadow: var(--shadow-md); }

.testimonial-card__quote {
  font-family: var(--font-serif);
  font-size: 19px;
  line-height: 1.55;
  color: var(--charcoal);
  flex: 1;
}
.testimonial-card__quote::before {
  content: '\201C';
  font-size: 40px;
  line-height: 0.5;
  vertical-align: -0.3em;
  color: var(--terra);
  opacity: 0.4;
  margin-right: 4px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--greige-light);
}
.testimonial-card__avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--greige-light);
}
.testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.testimonial-card__name { font-size: 16px; font-weight: 500; }
.testimonial-card__company { font-size: 16px; color: var(--warm-gray); }

.testimonials__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}
.testimonials__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--greige-light);
  transition: background 0.2s, width 0.2s;
  cursor: pointer;
}
.testimonials__dot.active {
  background: var(--terra);
  width: 24px;
  border-radius: 4px;
}
.testimonials__btn {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--greige-light);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  cursor: pointer;
}
.testimonials__btn:hover { background: #255964; border-color: #255964; color: #fff; transform: scale(1.05); }
.testimonials__btn svg { width: 18px; height: 18px; }

/* =============================================
   CERTIFICATIONS
   ============================================= */
.certs {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid var(--greige-light);
  border-bottom: 1px solid var(--greige-light);
}
.certs__inner {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}
.certs__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--warm-gray);
  margin-right: 8px;
}
.cert-badge {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fff;
  border: 1px solid var(--greige-light);
  border-radius: var(--radius-pill);
  padding: 10px 18px;
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, transform 0.2s;
}
.cert-badge:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.cert-badge__check {
  width: 20px; height: 20px;
  background: #255964;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
}

/* =============================================
   STATS
   ============================================= */
.stats {
  padding: 100px 0;
  background: var(--bg-light);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  background: var(--greige-light);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.stat-item {
  background: var(--cream);
  padding: 48px 36px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-item__num {
  font-family: var(--font-serif);
  font-size: 64px;
  font-weight: 300;
  color: var(--terra);
  line-height: 1;
}
.stat-item__unit {
  font-family: var(--font-serif);
  font-size: 32px;
  color: var(--terra);
  opacity: 0.6;
}
.stat-item__label {
  font-size: 16px;
  color: var(--warm-gray);
  max-width: 140px;
  text-align: center;
  line-height: 1.4;
}

/* =============================================
   FINAL CTA
   ============================================= */
.cta-section {
  padding: 120px 0;
  background: #255964;
  overflow: hidden;
  position: relative;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,0.03);
  pointer-events: none;
}
.cta-section__inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-section .overline { color: rgba(255,255,255,0.85); margin-bottom: 20px; }
.cta-section h2 {
  color: #fff;
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.cta-section h2 em { color: rgba(255,255,255,0.6); }
.cta-section p {
  color: rgba(255,255,255,0.65);
  font-size: 17px;
  max-width: 480px;
  margin: 0 auto 48px;
  line-height: 1.7;
}
.cta-section__ctas {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}
.cta-section__contact {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.1);
}
.cta-section__contact a {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  transition: color 0.2s;
}
.cta-section__contact a:hover { color: #fff; }
.cta-section__contact svg { width: 18px; height: 18px; flex-shrink: 0; }

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.5);
  padding: 60px 0 36px;
}
.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 56px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer__brand-name {
  font-family: var(--font-serif);
  font-size: 22px;
  color: #fff;
  margin-bottom: 12px;
}
.footer__brand-desc {
  font-size: 16px;
  line-height: 1.65;
  color: rgba(255,255,255,0.85);
  margin-bottom: 20px;
}
.footer__contact-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 16px; color: rgba(255,255,255,0.6);
  margin-bottom: 10px;
  transition: color 0.2s;
}
.footer__contact-item:hover { color: #fff; }
.footer__contact-item svg { width: 16px; height: 16px; flex-shrink: 0; opacity: 0.5; }

.footer__col-title {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.footer__col-links { display: flex; flex-direction: column; gap: 10px; }
.footer__col-links a {
  font-size: 16px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
}
.footer__col-links a:hover { color: #fff; }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 16px;
}
.footer__legal { display: flex; gap: 24px; }
.footer__legal a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.footer__legal a:hover { color: rgba(255,255,255,0.7); }

/* =============================================
   ANIMATIONS — initial states (GSAP handles them)
   ============================================= */
.anim-fade-up { opacity: 0; transform: translateY(40px); }
.anim-fade-in { opacity: 0; }
.anim-fade-left { opacity: 0; transform: translateX(-40px); }
.anim-fade-right { opacity: 0; transform: translateX(40px); }
.anim-scale { opacity: 0; transform: scale(0.95); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero__content {
    padding: 24px 20px 32px;
    order: 1;
  }
  .hero__image {
    order: 0;
    height: 75vw;
    max-height: 460px;
  }
  .hero__image img {
    object-position: center top !important;
  }
  .hero__image-overlay {
    background: linear-gradient(to bottom, transparent 70%, var(--bg-light));
  }
  .intro__grid { grid-template-columns: 1fr; gap: 48px; }
  .intro__image-wrap { aspect-ratio: 3/4; }
  .how__grid { grid-template-columns: 1fr; }
  .services__header { grid-template-columns: 1fr; gap: 20px; }
  .about__grid { grid-template-columns: 1fr; gap: 48px; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 36px; }
  .nav__links { display: none; }
  .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .hero__content { padding: 24px 20px 40px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__meta { gap: 20px; }
  .logos__inner { justify-content: center; }
  .how__grid { grid-template-columns: 1fr; }
  .services__grid { grid-template-columns: 1fr; }
  .testimonials__track { padding: 0 20px 16px; }
  .testimonial-card { min-width: 300px; max-width: 300px; }
  .stats__grid { grid-template-columns: 1fr 1fr; }
  .cta-section__contact { gap: 20px; }
  .footer__top { grid-template-columns: 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
  .about__stats { gap: 24px; flex-wrap: wrap; }
  .certs__inner { gap: 12px; }
}

/* --- logos čitateľnosť --- */
.logos__item {
  color: var(--charcoal) !important;
  opacity: 0.95 !important;
  font-weight: 600 !important;
}

/* --- ghost button border fix --- */
.btn--ghost {
  border: 1.5px solid rgba(37,89,100,0.25) !important;
  color: var(--charcoal) !important;
}

/* --- stat-item jemný rámik --- */
.stat-item {
  border: 1px solid rgba(37,89,100,0.12) !important;
}

/* --- FAQ items jemný rámik --- */
#faq details {
  border: 1px solid rgba(37,89,100,0.12) !important;
  background: var(--cream) !important;
}

/* --- Jemné prechody medzi sekciami --- */

/* Stats sekcia — fade do biela na okrajoch */
.stats {
  background: linear-gradient(180deg, 
    #ffffff 0%, 
    #F8F9FB 15%, 
    #F8F9FB 85%, 
    #ffffff 100%
  );
}

/* Testimonials — fade nahor */
.testimonials {
  background: #F4F6F7;
  padding-top: 60px;
}

/* Tmavé sekcie — jemný fade na vrchole a spodku */
.contact-teaser,
.cta-section {
  position: relative;
}

.intro::after,
.services::after,
.about::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(248,249,251,0.4));
  pointer-events: none;
}

/* --- Jemné oddelenie sekcií striedaním pozadia --- */
.intro        { background: #F8F9FB; }
.services     { background: #D8DCE0; }
.about        { background: #F8F9FB; }
.testimonials { background: #F4F6F7; }
.stats        { background: #F8F9FB; }

/* --- celá service karta klikacia --- */
.service-card { position: relative; }
.service-card__link::after {
  content: '';
  position: absolute;
  inset: 0;
}

/* --- certs strip --- */
.certs-strip {
  background: var(--cream);
  padding: 20px 0;
  border-bottom: 1px solid rgba(47,52,59,0.07);
}
.certs-strip__inner {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.certs-strip__label {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--warm-gray);
  white-space: nowrap;
}
.certs-strip__divider {
  width: 1px; height: 20px;
  background: rgba(47,52,59,0.15);
  flex-shrink: 0;
}
.cert-badge {
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
  background: rgba(37,89,100,0.06);
  border: 1px solid rgba(37,89,100,0.15);
  border-radius: var(--radius-pill);
  padding: 5px 12px;
  white-space: nowrap;
}

/* --- certifikaty v logos stripe --- */
.logos__certs {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: nowrap;
}
.logos__cert {
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
  white-space: nowrap;
}

/* --- step cisla viditelne na tmavom pozadi --- */
.step__num { color: rgba(255,255,255,0.75) !important; }

/* --- svc-col odsadenia --- */
.svc-col li {
  align-items: flex-start;
  padding-left: 0;
}
.svc-col li::before {
  margin-top: 7px;
  flex-shrink: 0;
}
.svc-col li strong {
  color: var(--charcoal);
}
.svc-col ul {
  padding: 0;
}

/* --- svc-col li - label nad textom --- */
.svc-col li {
  flex-direction: column;
  gap: 2px !important;
  align-items: flex-start !important;
}
.svc-col li::before {
  display: none !important;
}
.svc-col li strong {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--charcoal);
}
.svc-col li strong::before {
  content: '';
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--terra);
  flex-shrink: 0;
  display: inline-block;
}
.svc-col--no li strong::before {
  background: var(--warm-gray);
  opacity: .4;
}

/* --- odstran odrazky zo svc-col --- */
.svc-col li strong::before { display: none !important; }



/* nav z-index fix — scroll margin pre sekcie */
section[id] { scroll-margin-top: 100px; }

/* ── zoom / stacking context fix ── */
.nav {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  isolation: isolate;
}
.hero__image img,
.intro__image-wrap,
.about__image-frame,
.service-card,
.how__card {
  will-change: auto;
}
.btn {
  will-change: auto;
}

/* =============================================
   SERVICES — Featured + list layout
   ============================================= */
.services__layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1.2fr;
  gap: 24px;
  align-items: stretch;
}

.services__header { display: none; }

/* LEFT col */
.services__intro-col {
  background: transparent;
  border-radius: 0;
  padding: 16px 36px 16px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}
.services__intro-col .overline { margin-bottom: 4px; }
.services__intro-col h2 {
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
  margin-bottom: 0;
}
.services__intro-col p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.7;
  flex: 1;
}

/* CENTER: featured card */
.services__featured-card {
  background: #255964;
  border-radius: var(--radius-md);
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,0.06);
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s;
}
.services__featured-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 3px; height: 0;
  background: var(--terra);
  transition: height 0.4s var(--ease-out);
}
.services__featured-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.services__featured-card:hover::before { height: 100%; }
.services__featured-card h3 { font-size: 24px; margin: 0 0 12px; color: #fff; }
.services__featured-card p { font-size: 16px; color: rgba(255,255,255,0.6); line-height: 1.7; margin-bottom: 24px; }

/* RIGHT: list col */
.services__list-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.services__list-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 22px 24px;
  border: 1.5px solid #255964;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
  text-decoration: none;
  flex: 1;
}
.services__list-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }

.services__list-item__icon {
  width: 44px; height: 44px;
  background: #fff;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  transition: background 0.2s;
}
.services__list-item__icon svg { width: 20px; height: 20px; stroke: #255964; fill: none; stroke-width: 1.6; }
.services__list-item:hover .services__list-item__icon { background: rgba(37,89,100,.08); }
.services__list-item:hover .services__list-item__icon svg { stroke: var(--terra); }

.services__list-item__text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.services__list-item__text strong {
  font-size: 16px;
  font-weight: 500;
  color: var(--charcoal);
}
.services__list-item__text span {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.5;
}
.services__list-item__arrow {
  width: 16px; height: 16px;
  flex-shrink: 0;
  color: #255964;
  transition: opacity 0.2s, transform 0.2s, color 0.2s;
}
.services__list-item:hover .services__list-item__arrow { color: #255964; transform: translateX(3px); }

/* Responsive */
@media (max-width: 1024px) {
  .services__layout { grid-template-columns: 1fr 1fr; }
  .services__intro-col { grid-column: 1 / -1; }
}
@media (max-width: 640px) {
  .services__layout { grid-template-columns: 1fr; }
  .services__intro-col { grid-column: auto; }
}

.services__intro-col .btn--primary {
  background: #fff !important;
  color: #255964 !important;
  box-shadow: none !important;
}
.services__intro-col .btn--primary:hover {
  background: rgba(255,255,255,0.88) !important;
  box-shadow: none !important;
}
/* Zjistit více — biela na tmavej karte */
.services__featured-card .service-card__link {
  color: rgba(255,255,255,0.75);
}
.services__featured-card .service-card__link:hover {
  color: #fff;
}
.services__featured-card .service-card__link svg {
  stroke: rgba(255,255,255,0.75);
}

/* Kontaktujte ma — biely s rámikom */
.services__intro-col .btn--white {
  background: transparent !important;
  color: var(--charcoal) !important;
  border: 1.5px solid var(--charcoal) !important;
  box-shadow: none !important;
}
.services__intro-col .btn--white:hover {
  background: var(--charcoal) !important;
  color: #fff !important;
}
/* Services — sub-grid (4 priame karty) */
.services__sub-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.services__sub-card {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 20px 22px;
  border: 1.5px solid #255964;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  transition: transform 0.25s var(--ease-out), background 0.25s;
  position: relative;
}
.services__sub-card:hover { transform: translateY(-2px); background: #fff; }
.services__sub-card strong {
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.3;
}
.services__sub-card span {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.5;
  flex: 1;
}
.services__sub-card svg {
  width: 14px; height: 14px;
  color: #255964;
  opacity: 0.7;
  margin-top: 4px;
  transition: opacity 0.2s, transform 0.2s;
}
.services__sub-card:hover svg { opacity: 1; transform: translateX(3px); }

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

.services__center-col {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__center-header { display: flex; flex-direction: column; gap: 12px; }
.services__center-header h3 { color: var(--charcoal); margin: 0; font-size: 22px; }
.services__center-col .service-card__icon { background: rgba(37,89,100,0.08); margin-bottom: 0; }
.services__center-col .service-card__icon svg { stroke: #255964; }

.services__center-col {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.services__center-header { display: flex; flex-direction: column; gap: 12px; }
.services__center-header h3 { color: var(--charcoal); margin: 0; font-size: 22px; }
.services__center-col .service-card__icon { background: rgba(37,89,100,0.08); margin-bottom: 0; }
.services__center-col .service-card__icon svg { stroke: #255964; }

/* Services — nový 2-stĺpcový layout */
.services__new-layout {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  align-items: start;
}
.services__cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.svc-main-card {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 28px 24px;
  border: 1px solid rgba(37,89,100,0.12);
  border-top: none;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s;
}
.svc-main-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc-main-card__icon {
  width: 40px; height: 40px;
  background: #fff;
  border-radius: 10px;
  border: 1px solid rgba(37,89,100,0.1);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 4px;
}
.svc-main-card__icon svg { width: 20px; height: 20px; stroke: #255964; }
.svc-main-card h3 { font-size: 16px; font-weight: 500; color: var(--charcoal); margin: 0; line-height: 1.3; }
.svc-main-card p { font-size: 16px; color: var(--warm-gray); line-height: 1.65; margin: 0; flex: 1; }
.svc-main-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
  margin-top: 4px;
  transition: gap 0.2s;
}
.svc-main-card:hover .svc-main-card__link { gap: 10px; }
.svc-main-card__link svg { width: 14px; height: 14px; }

@media (max-width: 1024px) {
  .services__new-layout { grid-template-columns: 1fr; gap: 40px; }
  .services__cards-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .services__cards-grid { grid-template-columns: 1fr; }
}

/* Services — vizuálne vylepšenia */

/* Väčší nadpis vľavo */
.services__new-layout .services__intro-col h2 {
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  color: var(--charcoal);
}

/* Ikonky v krúžku */
.svc-main-card__icon {
  width: 48px !important;
  height: 48px !important;
  background: #F0F2F4 !important;
  border-radius: 50% !important;
  border: none !important;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  transition: background 0.2s;
}
.svc-main-card:hover .svc-main-card__icon { background: rgba(37,89,100,0.1) !important; }
.svc-main-card__icon svg { width: 22px !important; height: 22px !important; stroke: #255964; }

/* Väčší, serif nadpis karty */
.svc-main-card h3 {
  font-family: var(--font-serif) !important;
  font-size: 20px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  line-height: 1.2 !important;
  margin: 4px 0 !important;
}

/* Čistejšie karty — biela, jemný tieň */
.svc-main-card {
  background: #fff !important;
  border: 1px solid rgba(37,89,100,0.08) !important;
  border-radius: 16px !important;
  padding: 28px 24px !important;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.svc-main-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.09) !important;
  border-color: rgba(37,89,100,0.15) !important;
}

/* Intro col — svetlé pozadie preč, voľný text */
.services__new-layout .services__intro-col {
  background: transparent !important;
  padding: 16px 0 !important;
  border-radius: 0 !important;
}

/* Btn Zjistit více — border štýl */
.services__new-layout .services__intro-col .btn--white {
  background: transparent !important;
  border: 1.5px solid var(--charcoal) !important;
  color: var(--charcoal) !important;
  box-shadow: none !important;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.services__new-layout .services__intro-col .btn--white::after {
  content: '→';
  font-size: 16px;
}
.services__new-layout .services__intro-col .btn--white:hover {
  background: var(--charcoal) !important;
  color: #fff !important;
}

/* Quotes — jednoduché vety bez bublín */
.quotes-plain {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px 40px;
  margin: 36px 0;
  max-width: 560px;
}
.quote-plain {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.6;
  margin: 0;
  padding-top: 24px;
  position: relative;
  max-width: 200px;
}
.quote-plain::before {
  content: '\201C';
  position: absolute;
  top: 0; left: 0;
  font-family: var(--font-serif);
  font-size: 36px;
  line-height: 1;
  color: var(--terra);
  opacity: 0.3;
  font-style: normal;
}
@media (max-width: 640px) {
  .quotes-plain { grid-template-columns: 1fr; }
}

/* Svc intro 2-column */
.svc-intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
  margin-bottom: 56px;
}
.svc-intro-text {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.8;
  margin: 0;
}
.svc-intro-label {
  font-size: 17px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--charcoal);
  margin-bottom: 20px;
}
.svc-comes-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.svc-comes-list li {
  font-size: 17px;
  color: var(--warm-gray);
  line-height: 1.7;
  padding-left: 16px;
  border-left: 2px solid rgba(37,89,100,0.2);
}
@media (max-width: 768px) {
  .svc-intro-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* =============================================
   MOBILE — komplexné opravy
   ============================================= */

@media (max-width: 768px) {
  /* Container */
  .container { padding: 0 20px; }

  /* Hero */
  .hero { grid-template-columns: 1fr; }
  .hero__content { padding: 24px 0 40px; order: 1; }
  .hero__image { order: 0; height: 80vw; max-height: 500px; }
  .hero__ctas { flex-direction: column; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .hero__tags { gap: 6px; }

  /* Nav */
  .nav__links, .nav__right .btn { display: none; }
  .nav__hamburger { display: flex; }

  /* Logos */
  .logos__items { gap: 16px; }

  /* Intro */
  .intro__grid { grid-template-columns: 1fr; gap: 36px; }
  .intro__image-wrap { aspect-ratio: 3/4; }

  /* Services */
  .services__new-layout { grid-template-columns: 1fr; gap: 36px; }
  .services__cards-grid { grid-template-columns: 1fr 1fr; gap: 12px; }

  /* Contact teaser */
  .contact-teaser__grid { grid-template-columns: 1fr; gap: 36px; }
  .contact-teaser__img { aspect-ratio: 16/9; }

  /* About */
  .about__grid { grid-template-columns: 1fr; gap: 36px; }
  .about__image-frame { aspect-ratio: 3/4; max-height: 420px; }
  .about__stats { gap: 20px; flex-wrap: wrap; }

  /* Testimonials */
  .testimonial-card { min-width: 280px; max-width: 280px; padding: 28px 24px; }

  /* Stats */
  .stats__grid { grid-template-columns: 1fr 1fr; }

  /* CTA section */
  .cta-section__ctas { flex-direction: column; align-items: center; }
  .cta-section__ctas .btn { width: 100%; justify-content: center; }
  .cta-section__contact { flex-direction: column; gap: 16px; }

  /* Footer */
  .footer__top { grid-template-columns: 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 8px; }

  /* Subpage hero */
  .page-hero { padding: 100px 0 48px; }
  .page-tabs { gap: 0; }
  .page-tab { padding: 10px 12px; font-size: 16px; }

  /* Svc intro grid */
  .svc-intro-grid { grid-template-columns: 1fr; gap: 32px; }
  .svc-cols { grid-template-columns: 1fr; }

  /* How steps */
  .steps-grid { grid-template-columns: 1fr; }

  /* FAQ */
  details summary { padding: 18px 20px; }
}

@media (max-width: 480px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  .services__cards-grid { grid-template-columns: 1fr; }
  .cert-img-row { gap: 12px; }
  .cert-img-row img { height: 40px; }
  .stat-item { padding: 32px 20px; }
  .stat-item__num { font-size: 48px; }
}

/* Svc who grid — dlaždice */
.svc-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.svc-who-card {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border: 1px solid rgba(37,89,100,0.08);
}
.svc-who-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.svc-who-card p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .svc-who-grid { grid-template-columns: 1fr; }
}

/* Svc who grid — dlaždice */
.svc-who-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 8px;
}
.svc-who-card {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 24px 22px;
  border: 1px solid rgba(37,89,100,0.08);
}
.svc-who-card strong {
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}
.svc-who-card p {
  font-size: 16px;
  color: var(--warm-gray);
  line-height: 1.65;
  margin: 0;
}
@media (max-width: 640px) {
  .svc-who-grid { grid-template-columns: 1fr; }
}

/* Odstup pred S čím vám může pomoci */
.svc-who-grid {
  margin-top: 48px;
}
p.svc-intro-label + .svc-who-grid {
  margin-top: 20px;
}

/* Logos carousel */
.logos__carousel {
  overflow: hidden;
  flex: 1;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}
.logos__track {
  display: flex;
  gap: 48px;
  align-items: center;
  width: max-content;
  animation: logos-scroll 20s linear infinite;
}
.logos__track:hover { animation-play-state: paused; }
@keyframes logos-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Fix — sipky v malych kartach */
.services__small-cards .svc-main-card__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 500;
  color: var(--terra);
  margin-top: 8px;
}
.services__small-cards .svc-main-card__link svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
}
.services__small-cards .svc-main-card {
  padding: 24px 24px;
}
.services__small-cards .svc-main-card h3 {
  font-size: 16px !important;
}

/* Fix sub-links layout */
.services__sub-links {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
  margin-top: 20px;
}
.services__sub-link {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 12px 16px !important;
  background: #fff !important;
  border-radius: 8px !important;
  border: 1px solid rgba(37,89,100,0.08) !important;
  text-decoration: none !important;
  font-size: 16px !important;
  font-weight: 500 !important;
  color: var(--charcoal) !important;
  transition: background 0.2s, transform 0.2s;
  white-space: nowrap;
}
.services__sub-link:hover {
  background: rgba(37,89,100,0.05) !important;
  transform: translateX(3px);
}
.services__sub-link svg {
  width: 14px !important;
  height: 14px !important;
  flex-shrink: 0;
  color: var(--terra);
}
/* Zmenši male karty */
.services__small-cards .svc-main-card {
  padding: 24px !important;
}
.services__small-cards .svc-main-card__icon {
  width: 36px !important;
  height: 36px !important;
  margin-bottom: 12px !important;
}
.services__small-cards .svc-main-card h3 {
  font-size: 16px !important;
  margin-bottom: 6px !important;
}
.services__small-cards .svc-main-card p {
  font-size: 16px !important;
  margin-bottom: 12px !important;
}

/* Featured layout — velka karta vlavo + 3 male vpravo */
.services__featured-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 20px;
  align-items: start;
}
.services__big-card {
  background: #F8F9FB;
  border-radius: var(--radius-md);
  padding: 36px 32px;
  border: 1px solid rgba(37,89,100,0.1);
  height: 100%;
}
.services__small-cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (max-width: 1024px) {
  .services__featured-layout { grid-template-columns: 1fr; }
}

/* === FIX: foto v sekcii Jak pracuji vyplni cely ram === */
.intro__image-wrap img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}








/* === TESTIMONIALS: oprava seamless loop === */
.testimonials__track {
  padding-left: 12px !important;
  padding-right: 12px !important;
}


/* === MARQUEE FRESH: bulletproof seamless infinite scroll === */
.marquee-fresh {
  display: flex;
  overflow: hidden;
  width: 100%;
  gap: 24px;
}
.marquee-fresh__inner {
  display: flex;
  gap: 24px;
  flex-shrink: 0;
  animation: marquee-fresh-scroll 40s linear infinite;
}
.marquee-fresh:hover .marquee-fresh__inner {
  animation-play-state: paused;
}
@keyframes marquee-fresh-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-100% - 24px)); }
}


/* === PRISM case study / pribeh === */
.prism-story {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 56px;
  background: #fff;
  border-radius: var(--radius-md, 14px);
  border-left: 4px solid var(--terra, #255964);
  box-shadow: 0 2px 12px rgba(0,0,0,0.04);
}
.prism-story__quote {
  font-family: var(--font-serif);
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.3;
  margin-bottom: 12px;
  font-style: italic;
  color: var(--charcoal);
}
.prism-story__attr {
  font-size: 16px;
  color: var(--warm-gray);
  margin-bottom: 32px;
  letter-spacing: 0.02em;
}
.prism-story__body p {
  font-size: 16px;
  line-height: 1.75;
  color: var(--charcoal);
  margin-bottom: 16px;
}
.prism-story__body p:last-child { margin-bottom: 0; }

@media (max-width: 640px) {
  .prism-story { padding: 32px 24px; }
}


/* === PRISM story v2: skenovatelna verzia === */
.prism-story__intro {
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  margin-bottom: 36px;
}
.prism-story__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.prism-story__block-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--terra, #255964);
  margin-bottom: 16px;
  font-weight: 500;
}
.prism-story__list { list-style: none; padding: 0; margin: 0; }
.prism-story__list li {
  position: relative;
  padding-left: 18px;
  margin-bottom: 12px;
  font-size: 16px;
  line-height: 1.6;
  color: var(--charcoal);
}
.prism-story__list li::before {
  content: '';
  position: absolute;
  left: 0; top: 9px;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--terra, #255964);
}
.prism-story__list strong { color: var(--charcoal); font-weight: 600; }
.prism-story__close {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 17px;
  line-height: 1.5;
  color: var(--warm-gray, #5C6370);
  padding-top: 24px;
  border-top: 1px solid rgba(35,38,43,0.08);
  margin: 0;
}
@media (max-width: 768px) {
  .prism-story__grid { grid-template-columns: 1fr; gap: 24px; }
}


/* === PRISM stories carousel === */
.prism-stories { position: relative; }
.prism-stories__track {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.prism-stories__track::-webkit-scrollbar { display: none; }
.prism-slide {
  flex: 0 0 100%;
  min-width: 0;
  scroll-snap-align: start;
  padding: 8px 0;
  box-sizing: border-box;
}
.prism-stories__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 28px;
}
.prism-stories__dots { display: flex; gap: 8px; align-items: center; }
.prism-stories__dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: rgba(35,38,43,0.2);
  border: none;
  padding: 0;
  cursor: pointer;
  transition: background 0.25s, width 0.25s;
}
.prism-stories__dot.active {
  background: var(--terra, #255964);
  width: 24px;
  border-radius: 4px;
}
.prism-stories__btn {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(35,38,43,0.1);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--charcoal, #2F343B);
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.prism-stories__btn:hover {
  background: var(--terra, #255964);
  border-color: var(--terra, #255964);
  color: white;
}


/* === GSAP opacity safety === */
.hero__image, .hero__overline, .hero__title,
.hero__typing, .hero__sub, .hero__ctas, .hero__meta, .hero__tags {
  opacity: 1 !important;
  transform: none !important;
}

/* hero gsap */
.hero__overline,.hero__title,.hero__typing,.hero__sub,.hero__tags,.hero__ctas,.hero__image{opacity:1!important;transform:none!important;}


/* === Service page hero spacing === */
.prism-hero__title {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.08;
  margin-bottom: 28px;
  max-width: 900px;
}
.prism-hero__lead {
  font-size: clamp(16px, 1.8vw, 19px);
  line-height: 1.75;
  color: var(--warm-gray);
  max-width: 680px;
  margin-bottom: 40px;
}
.prism-hero__ctas {
  display: flex;
  flex-wrap: nowrap;
  gap: 14px;
  margin-bottom: 40px;
}
.prism-hero__trust {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 16px;
  color: var(--warm-gray);
  flex-wrap: nowrap;
  white-space: nowrap;
}
.prism-hero__sep { opacity: 0.4; }


/* === Farebne linky na kartach === */







.card-border-both {
  background-image: linear-gradient(to right, #5C6370 50%, #255964 50%);
  background-size: 100% 5px;
  background-repeat: no-repeat;
  background-position: top;
  border-top: none !important;
}
.card-border-purple {
  border-top: 5px solid #5C6370 !important;
}
.card-border-green {
  border-top: 5px solid #255964 !important;
}

/* =============================================
   MOBILE — komplexné opravy pre podstránky
   ============================================= */
@media (max-width: 768px) {

  /* Hero sekcie na podstránkach */
  .container { padding: 0 20px; }

  /* Všetky inline gridy 1fr 1fr → 1 stĺpec */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:3fr 2fr"],
  [style*="grid-template-columns:2fr 3fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Hero obrázky na podstránkach — skryť na mobile */
  [style*="mix-blend-mode:multiply"] {
    display: none !important;
  }

  /* Padding na hero obsahu */
  [style*="padding-right:48px"] {
    padding-right: 0 !important;
  }

  /* Sekcie s background-image — zmenšiť výšku */
  [style*="background-image"][style*="min-height:520px"],
  [style*="background-image"][style*="min-height:560px"] {
    min-height: 280px !important;
  }

  /* Pravý stĺpec s padding 64px 48px */
  [style*="padding:64px 48px"] {
    padding: 36px 24px !important;
  }

  /* CTA buttony na mobile — pod sebou */
  [style*="flex-wrap:nowrap"] {
    flex-wrap: wrap !important;
  }

  /* Carousel karty */
  .testimonial-card { min-width: 280px !important; max-width: 280px !important; }

  /* Koučink/PRISM carousel grid */
  .prism-c-slide [style*="grid-template-columns:1fr 1fr"],
  .kouc-c-slide [style*="grid-template-columns:1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }

  /* Nadpisy na mobile */
  h1 { font-size: clamp(28px, 7vw, 40px) !important; }
  h2 { font-size: clamp(24px, 6vw, 34px) !important; }

  /* Hero padding na podstránkach */
  [style*="padding:100px 0 80px"] {
    padding: 80px 0 40px !important;
  }

  /* Meta/trust riadok — zalamovanie */
  [style*="white-space:nowrap"] {
    white-space: normal !important;
    flex-wrap: wrap !important;
  }
}

/* Services 4-stĺpcový grid — mobile */
@media (max-width: 768px) {
  .svc-main-grid {
    grid-template-columns: 1fr 1fr !important;
  }
}
@media (max-width: 480px) {
  .svc-main-grid {
    grid-template-columns: 1fr !important;
  }
}

/* =============================================
   PODSTRÁNKY — hero mobile
   ============================================= */
@media (max-width: 768px) {
  .svc-hero-section {
    padding: 80px 0 40px !important;
  }
  .svc-hero-section > div {
    padding: 0 20px !important;
  }
  .svc-hero-section > div > div {
    grid-template-columns: 1fr !important;
    display: block !important;
  }
  .svc-hero-section > div > div > div:first-child {
    padding-right: 0 !important;
  }
  .svc-hero-section > div > div > div:last-child {
    display: none !important;
  }
  .svc-hero-section [style*="flex-wrap:nowrap"] {
    flex-wrap: wrap !important;
  }
  .svc-hero-section [style*="white-space:nowrap"] {
    white-space: normal !important;
    flex-wrap: wrap !important;
  }
}
