/* ============================================================
   AllFix Static Site - Complete Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Kalam:wght@400;700&display=swap');

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: system-ui, -apple-system, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  color: #404040;
  background: #fff;
  min-height: 100vh;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.2;
  color: #114B5F;
}

h1 { font-size: 2.25rem; font-weight: 700; line-height: 1.1; }
h2 { font-size: 1.875rem; font-weight: 700; color: #114B5F; }
h3 { font-size: 1.25rem; font-weight: 600; color: #114B5F; }

@media (min-width: 768px) {
  h1 { font-size: 3rem; }
  h2 { font-size: 2.25rem; }
}
@media (min-width: 1024px) {
  h1 { font-size: 3.75rem; }
}

/* --- Utility --- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.max-w-4xl {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.5rem;
}

/* ============================================================
   NAVIGATION — BEM variant (homepage): .nav__*
   ============================================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  background: rgba(250, 250, 248, 0.95);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

/* BEM variant */
.nav__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.nav__logo-text {
  font-size: 1.5rem;
  font-weight: 800;
  color: #114B5F;
}

.nav__logo-accent {
  color: #E66A1F;
}

.nav__logo-img {
  height: 2rem;
  width: auto;
  display: block;
}

.footer__logo-img {
  height: 2rem;
  width: auto;
  display: block;
  filter: brightness(0) invert(1);
  margin-bottom: 0.5rem;
}

.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background: #114B5F;
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav__link {
  font-size: 1.125rem;
  font-weight: 500;
  color: #114B5F;
  text-decoration: none;
  transition: color 0.2s;
}

.nav__link:hover,
.nav__link--active {
  color: #E66A1F;
}

@media (max-width: 767px) {
  .nav__hamburger {
    display: flex;
  }

  .nav__menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: rgba(250, 250, 248, 0.98);
    backdrop-filter: blur(8px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
  }

  .nav__menu--open {
    display: flex;
  }

  .nav__link {
    display: block;
    padding: 0.75rem 1.5rem;
    width: 100%;
  }
}

/* Dash variant (subpages): .nav-container, .nav-logo, .nav-links */
.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #114B5F;
  text-decoration: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 3rem;
  list-style: none;
}

.nav-links a {
  font-size: 1.125rem;
  font-weight: 500;
  color: #114B5F;
  text-decoration: none;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: #E66A1F;
}

@media (max-width: 767px) {
  .nav-links {
    display: none;
  }
}

/* ============================================================
   HERO SECTION (homepage)
   ============================================================ */
.hero {
  position: relative;
  padding-top: 8rem;
  padding-bottom: 5rem;
  background: linear-gradient(to bottom, rgb(255, 250, 248), #f5f2f0);
  overflow: hidden;
}

.hero-background {
  background: linear-gradient(to bottom, rgb(255, 250, 248), #f5f2f0);
}

.hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
  z-index: 1;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 768px) {
  .hero__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.hero__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero__title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.1;
  color: #030213;
}

@media (min-width: 768px) {
  .hero__title { font-size: 3rem; }
}
@media (min-width: 1024px) {
  .hero__title { font-size: 3.75rem; }
}

.hero__title--teal {
  color: #114B5F;
}

.hero__title--orange {
  color: #E66A1F;
}

.hero__text {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 32rem;
  line-height: 1.7;
}

.hero__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 0.5rem;
}

.hero__image {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero__blueprint {
  width: 100%;
  height: auto;
  opacity: 0.3;
  filter: sepia(0.15) contrast(1.1);
  transform: rotate(3deg);
  mix-blend-mode: multiply;
  border-radius: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  border: 2px solid transparent;
}

.btn--primary {
  background: #114B5F;
  color: #fff;
  border-color: #114B5F;
}

.btn--primary:hover {
  background: #0d3a47;
  border-color: #0d3a47;
}

.btn--outline {
  background: transparent;
  color: #114B5F;
  border: 2px solid #114B5F;
}

.btn--outline:hover {
  background: #114B5F;
  color: #fff;
}

.btn-peach {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: #F3C4A7;
  color: #114B5F;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-peach:hover {
  background: #E66A1F;
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.5rem;
  background: transparent;
  color: #114B5F;
  border: 2px solid #114B5F;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  background: #114B5F;
  color: #fff;
}

/* ============================================================
   PARTNERS SECTION
   ============================================================ */
.partners {
  padding: 8rem 0;
  background: #FAFAF8;
}

.partners__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.partners__title {
  text-align: center;
  margin-bottom: 1rem;
}

.partners__text {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  color: #6b7280;
}

.partners__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .partners__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.partners__card {
  aspect-ratio: 1;
  border-radius: 0.75rem;
  border: 1px solid rgba(0,0,0,0.08);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: #fff;
  transition: box-shadow 0.3s, transform 0.3s;
  overflow: hidden;
}

.partners__card--span-2 {
  grid-column: span 2;
  aspect-ratio: auto;
  min-height: 160px;
}

.partners__card:hover {
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.partners__card--offwhite {
  background: #FAFAF8;
  border-color: rgba(0,0,0,0.06);
}

.partners__card--orange-border {
  border: 2px solid rgba(230, 106, 31, 0.3);
}

.partners__card--black {
  background: #000;
}

.partners__card--teal {
  background: #114B5F;
}

.partners__logo {
  max-width: 80%;
  max-height: 60%;
  object-fit: contain;
}

.partners__logo--nussli {
  transform: rotate(90deg) scale(1.4);
  max-width: 100%;
  max-height: 200px;
}

.partners__logo-text {
  font-size: 1.25rem;
  font-weight: 700;
  color: #114B5F;
  text-align: center;
}

.partners__logo-text--white {
  color: #fff;
}

.partners__cta {
  text-align: center;
  margin-top: 3rem;
}

/* ============================================================
   SERVICES SECTION (homepage)
   ============================================================ */
.services {
  position: relative;
  padding: 5rem 0;
  background: linear-gradient(to bottom, #faf8f6, #f8f6f4);
}

.services-background {
  position: relative;
  background: linear-gradient(to bottom, #faf8f6, #f8f6f4);
}

.services__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.services__title {
  text-align: center;
  margin-bottom: 1rem;
}

.services__text {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  color: #6b7280;
}

.services__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 768px) {
  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.services__card {
  text-align: center;
  padding: 2rem;
  border-radius: 0.75rem;
  background: rgba(250, 250, 248, 0.4);
  border: 1px solid rgba(0,0,0,0.06);
  transition: box-shadow 0.3s, transform 0.3s;
}

.services__card:hover {
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  transform: translateY(-2px);
}

.services__card-icon {
  color: #E66A1F;
  font-size: 2rem;
  margin-bottom: 1rem;
  display: flex;
  justify-content: center;
}

.services__card-icon svg {
  width: 2.5rem;
  height: 2.5rem;
  color: #E66A1F;
  stroke: #E66A1F;
}

.services__card-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #114B5F;
  margin-bottom: 0.75rem;
}

.services__card-text {
  color: #6b7280;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.services__card-link {
  color: #E66A1F;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.services__card-link:hover {
  gap: 0.5rem;
}

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery {
  padding: 5rem 0;
  background: #FAFAF8;
}

.gallery__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.gallery__title {
  text-align: center;
  margin-bottom: 0.75rem;
}

.gallery__text {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  color: #6b7280;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}

@media (min-width: 768px) {
  .gallery__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
}

@media (min-width: 1024px) {
  .gallery__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  position: relative;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
  aspect-ratio: 1;
  margin: 0;
  background: #e5e5e3;
}

.gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
  display: block;
}

.gallery__item:hover img {
  transform: scale(1.1);
}

.gallery__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(17, 75, 95, 0.8), transparent);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.3s;
  color: #fff;
}

.gallery__item:hover .gallery__overlay {
  opacity: 1;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
  background: #114B5F;
  color: #fff;
  padding: 5rem 0;
}

.contact__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.contact__title {
  text-align: center;
  margin-bottom: 1rem;
  color: #fff;
}

.contact__text {
  text-align: center;
  max-width: 40rem;
  margin: 0 auto 3rem;
  color: rgba(255,255,255,0.8);
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 768px) {
  .contact__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

.contact__card {
  text-align: center;
  padding: 1.5rem;
  background: rgba(250, 250, 248, 0.1);
  border-radius: 0.75rem;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: transform 0.3s;
}

.contact__card:hover {
  transform: scale(1.05);
}

.contact__card-icon {
  color: #E66A1F;
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
  display: flex;
  justify-content: center;
}

.contact__card-icon svg {
  width: 1.5rem;
  height: 1.5rem;
  color: #E66A1F;
  stroke: #E66A1F;
}

.contact__card-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #fff;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.8;
}

.contact__card-value {
  color: #fff;
  font-size: 1rem;
}

.contact__card-value a {
  color: #fff;
  text-decoration: none;
  transition: color 0.2s;
}

.contact__card-value a:hover {
  color: #F3C4A7;
}

/* ============================================================
   FOOTER — BEM variant (homepage): .footer__*
   ============================================================ */
.footer {
  background: #111827;
  color: #fff;
  padding: 3rem 0;
}

.footer__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer__logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.footer__tagline {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer__bottom {
  display: flex;
  align-items: center;
  gap: 2rem;
  flex-wrap: wrap;
}

.footer__copyright {
  color: #9ca3af;
  font-size: 0.875rem;
}

.footer__services {
  color: #6b7280;
  font-size: 0.875rem;
}

/* Dash variant (subpages): .footer-* */
.footer-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  text-decoration: none;
}

.footer-nav {
  display: flex;
  gap: 2rem;
  list-style: none;
}

.footer-nav a {
  color: #9ca3af;
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
}

.footer-nav a:hover {
  color: #fff;
}

.footer-bottom {
  max-width: 1280px;
  margin: 1.5rem auto 0;
  padding: 1.5rem 1.5rem 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: #9ca3af;
  font-size: 0.875rem;
  text-align: center;
}

/* ============================================================
   SUBPAGE LAYOUT — full-width sections like homepage
   ============================================================ */
.subpage-hero {
  padding-top: 6rem;
  padding-bottom: 3rem;
  background: linear-gradient(to bottom, rgb(255, 250, 248), #f5f2f0);
}

@media (min-width: 768px) {
  .subpage-hero {
    padding-top: 7rem;
    padding-bottom: 4rem;
  }
}

.subpage-hero .container,
.subpage-hero .max-w-4xl {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.subpage-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .subpage-hero h1 {
    font-size: 3rem;
  }
}

.subpage-hero__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.subpage-hero__title {
  font-size: 2.5rem;
  color: #114B5F;
  margin-bottom: 1rem;
}

@media (min-width: 768px) {
  .subpage-hero__title {
    font-size: 3rem;
  }
}

.subpage-hero__text {
  font-size: 1.125rem;
  color: #6b7280;
  max-width: 48rem;
  line-height: 1.7;
}

.subpage-content {
  max-width: 1280px;
  margin: 0 auto;
  padding: 2rem 1.5rem 3rem;
}

@media (min-width: 768px) {
  .subpage-content {
    padding: 3rem 1.5rem 4rem;
  }
}

.intro {
  font-size: 1.125rem;
  color: #6b7280;
  margin-bottom: 2rem;
  line-height: 1.7;
}

/* ============================================================
   BREADCRUMBS — dash variant
   ============================================================ */
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: #114B5F;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs a:hover {
  color: #E66A1F;
}

.breadcrumb-separator {
  color: #9ca3af;
}

/* BEM variant */
.breadcrumbs__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.breadcrumbs__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: #6b7280;
  list-style: none;
  margin-bottom: 1rem;
}

.breadcrumbs__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.breadcrumbs__item--active {
  color: #E66A1F;
  font-weight: 500;
}

.breadcrumbs__link {
  color: #114B5F;
  text-decoration: none;
  transition: color 0.2s;
}

.breadcrumbs__link:hover {
  color: #E66A1F;
}

/* ============================================================
   CONTENT SECTIONS (subpages)
   ============================================================ */
.content-section {
  margin-bottom: 3rem;
}

.content-section--alt {
  background: rgba(250, 250, 248, 0.5);
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 3rem;
}

.content-section__container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.content-section__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #114B5F;
  margin-bottom: 1.5rem;
}

@media (min-width: 768px) {
  .content-section__title {
    font-size: 1.875rem;
  }
}

.content-section__subtitle {
  font-size: 1.125rem;
  font-weight: 600;
  color: #114B5F;
  margin-bottom: 1rem;
}

.content-section__text {
  color: #404040;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* ============================================================
   CARDS (generic subpage)
   ============================================================ */
.card {
  background: #fff;
  border: 1px solid rgba(0,0,0,0.06);
  border-radius: 0.75rem;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  transition: box-shadow 0.3s;
}

.card:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.card--border-left {
  border-left: 4px solid #E66A1F;
  background: rgba(249, 250, 251, 0.5);
  padding: 1.5rem;
  border-radius: 0 0.5rem 0.5rem 0;
}

.card__title {
  font-size: 1.125rem;
  font-weight: 600;
  color: #114B5F;
  margin-bottom: 0.5rem;
}

.card__text {
  color: #404040;
  line-height: 1.7;
}

/* Grid utilities */
.grid {
  display: grid;
  gap: 1.5rem;
}

.grid--2col {
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid--2col {
    grid-template-columns: repeat(2, 1fr);
  }
}

.hodnoty-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .hodnoty-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ============================================================
   PROCESS STEPS — dash variant
   ============================================================ */
.process-steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.process-step {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.step-number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #E66A1F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

/* BEM variant */
.steps {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.steps__item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.steps__number {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #E66A1F;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 0.875rem;
}

.steps__title {
  font-weight: 600;
  color: #114B5F;
  margin-bottom: 0.25rem;
}

.steps__content {
  flex: 1;
}

.steps__text {
  color: #404040;
  line-height: 1.7;
}

/* ============================================================
   BENEFITS / CHECKLISTS
   ============================================================ */
.benefits-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .benefits-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.5rem 0;
}

.benefit-check {
  color: #E66A1F;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 1.125rem;
  line-height: 1.5;
}

.checklist {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.checklist__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #404040;
  line-height: 1.6;
}

.checklist__item::before {
  content: "\2713";
  color: #E66A1F;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   FAQ — dash variant (details/summary)
   ============================================================ */
.faq-section {
  margin-bottom: 2rem;
}

.faq-item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.5rem;
  background: #FAFAF8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  margin-bottom: 1rem;
  overflow: hidden;
}

.faq-item summary {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #114B5F;
  cursor: pointer;
  transition: background 0.2s;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::marker {
  display: none;
  content: "";
}

.faq-item summary::after {
  content: "\25B8";
  color: #E66A1F;
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.faq-item[open] summary::after {
  transform: rotate(90deg);
}

.faq-item summary:hover {
  background: rgba(249, 250, 251, 1);
}

.faq-item > div,
.faq-item > p {
  padding: 0 1.5rem 1rem;
  color: #404040;
  line-height: 1.7;
}

/* BEM variant */
.faq {
  margin-bottom: 2rem;
}

.faq__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.faq__title {
  margin-bottom: 1.5rem;
}

.faq__list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq__item {
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.5rem;
  background: #FAFAF8;
  box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  overflow: hidden;
}

.faq__question {
  padding: 1rem 1.5rem;
  font-weight: 600;
  color: #114B5F;
  cursor: pointer;
  transition: background 0.2s;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__question::marker {
  display: none;
  content: "";
}

.faq__question::after {
  content: "\25B8";
  color: #E66A1F;
  font-size: 1.25rem;
  transition: transform 0.2s;
}

.faq__item[open] .faq__question::after,
details[open] .faq__question::after {
  transform: rotate(90deg);
}

.faq__question:hover {
  background: rgba(249, 250, 251, 1);
}

.faq__answer {
  padding: 0 1.5rem 1rem;
  color: #404040;
  line-height: 1.7;
}

/* ============================================================
   CTA SECTIONS
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, rgba(17, 75, 95, 0.05), rgba(230, 106, 31, 0.05));
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cta-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

.cta-link {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FAFAF8;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  color: #114B5F;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-link:hover {
  border-color: #E66A1F;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

.cta-phone,
.cta-email {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: #FAFAF8;
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  border: 2px solid transparent;
  color: #114B5F;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
}

.cta-phone:hover,
.cta-email:hover {
  border-color: #E66A1F;
  box-shadow: 0 4px 16px rgba(0,0,0,0.1);
}

/* BEM variant */
.cta {
  background: linear-gradient(135deg, rgba(17, 75, 95, 0.05), rgba(230, 106, 31, 0.05));
  padding: 2rem;
  border-radius: 0.75rem;
  margin-bottom: 2rem;
  text-align: center;
}

.cta__container {
  max-width: 56rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta__title {
  margin-bottom: 1.5rem;
}

.cta__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 1.5rem;
}

/* ============================================================
   RELATED SERVICES
   ============================================================ */
.related-services {
  margin-bottom: 2rem;
}

.related-service-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.5rem;
  color: #114B5F;
  text-decoration: none;
  transition: all 0.2s;
  background: #fff;
}

.related-service-card:hover {
  color: #E66A1F;
  border-color: #E66A1F;
}

.related-separator {
  color: #d1d5db;
  margin: 0 0.25rem;
}

.related-card {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 0.5rem;
  color: #114B5F;
  text-decoration: none;
  transition: all 0.2s;
  background: #fff;
}

.related-card:hover {
  color: #E66A1F;
  border-color: #E66A1F;
}

.related-card__title {
  font-weight: 500;
}

.related-card__link {
  color: #114B5F;
  text-decoration: underline;
  transition: color 0.2s;
}

.related-card__link:hover {
  color: #E66A1F;
}

/* ============================================================
   ARROW LISTS
   ============================================================ */
.arrow-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.arrow-list__item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  color: #404040;
  line-height: 1.6;
}

.arrow-list__item::before {
  content: "\2192";
  color: #E66A1F;
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================================
   INFO BOX
   ============================================================ */
.info-box {
  padding: 1.5rem;
  background: rgba(17, 75, 95, 0.05);
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}

.info-box__title {
  font-weight: 600;
  color: #114B5F;
  margin-bottom: 0.5rem;
}

.info-box__text {
  color: #404040;
  line-height: 1.7;
}

/* ============================================================
   PARTNER GRID (spoluprace page)
   ============================================================ */
.partner-grid,
.spoluprace-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .partner-grid,
  .spoluprace-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (min-width: 1024px) {
  .partner-grid,
  .spoluprace-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* ============================================================
   RESPONSIVE FINE-TUNING
   ============================================================ */
@media (max-width: 767px) {
  .footer__container,
  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .footer__bottom {
    flex-direction: column;
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }

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

  .hero__buttons {
    flex-direction: column;
  }

  .subpage-content {
    margin-left: 1rem;
    margin-right: 1rem;
  }

  .cta-contacts {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================================
   GENERAL CONTENT STYLING
   ============================================================ */
.subpage-content p,
.content-section p,
.content-section__text p {
  margin-bottom: 1rem;
}

.subpage-content ul,
.content-section ul {
  list-style: disc;
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.subpage-content ul li,
.content-section ul li {
  margin-bottom: 0.5rem;
  color: #404040;
}

.subpage-content h2 {
  font-size: 1.5rem;
  color: #114B5F;
  margin-bottom: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 768px) {
  .subpage-content h2 {
    font-size: 1.875rem;
  }
}

.subpage-content h3 {
  font-size: 1.25rem;
  color: #114B5F;
  margin-bottom: 1rem;
  margin-top: 1.5rem;
}

.subpage-content a {
  color: #114B5F;
  text-decoration: underline;
  transition: color 0.2s;
}

.subpage-content a:hover {
  color: #E66A1F;
}

/* ============================================================
   PRINT STYLES
   ============================================================ */
@media print {
  .nav, .footer, .cta-section, .cta {
    display: none;
  }

  body {
    color: #000;
    background: #fff;
  }

  .subpage-content {
    box-shadow: none;
    border: none;
  }
}
