﻿.review-more-link {
  color: #0b1f8a;
  text-decoration: underline;
  cursor: pointer;
  font-weight: 600;
  margin-left: 4px;
  outline: none;
  transition: color 0.15s;
}
.review-more-link:hover, .review-more-link:focus {
  color: #27405f;
  text-decoration: underline;
}
.review-ellipsis {
  display: inline-block;
  vertical-align: bottom;
  margin-left: 2px;
}

.review-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 16, 24, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
}
.review-overlay-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(16, 16, 24, 0.32);
}
.review-overlay-modal {
  position: relative;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 8px 32px rgba(16, 16, 24, 0.18);
  padding: 32px 28px 24px;
  min-width: 320px;
  width: 90vw;
  max-width: 90vw;
  max-height: 90vh;
  overflow-y: auto;
  z-index: 2;
}
.review-overlay-close {
  position: absolute;
  top: 12px;
  right: 18px;
  background: none;
  border: none;
  font-size: 2.2rem;
  color: #222;
  cursor: pointer;
  z-index: 3;
}
.review-overlay-text {
  margin-top: 18px;
  font-size: var(--fs-logos-lead);
  color: #222;
  line-height: 1.7;
  white-space: pre-line;
  word-break: break-word;
  overflow-wrap: break-word;
}
/* Zarovnanie horného riadku recenzie: meno/avatar/kategória vľavo, hviezdičky vpravo */
.review-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
/* Upravíme .review-stars, aby sa zarovnávali vpravo hore a nemali margin-bottom */
.review-stars {
  color: #f5a623; /* zlaté hviezdičky */
  letter-spacing: 0.28em; /* väčší rozostup medzi hviezdami */
  font-size: clamp(24px, 2.2vw, 34px); /* väčšie hviezdy */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-bottom: 12px;
}
.review-stars-svg {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}
.review-star-svg {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 28px;
  max-height: 28px;
  box-sizing: content-box;
}

/* ===== Recenzie CTA OUTER (new container) ===== */
.reviews-cta-outer {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 44px;
  margin-bottom: 0;
  width: 100%;
}

.reviews-cta-block {
  display: flex;
  gap: 32px;
  width: 80%;
  min-height: 160px;
  margin: 0 auto;
  box-sizing: border-box;
}

.reviews-cta-text {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0b1f8a;
  text-align: center;
  line-height: 1.2;
  text-shadow: 0 2px 8px rgba(11, 31, 138, 0.08);
}
:root {
  --bg: #fff;
  --text: #101018;
  --muted: #6b6f7a;
  --hero: #cfcfcf;
  --brand: hsla(231, 85%, 29%, 0.1);
  --card-border: #d7d7db;
  --shadow: 0 18px 28px rgba(16, 16, 24, 0.12);

  /* Type scale */
  --fs-h1: clamp(28px, 6vw, 64px);
  --fs-h2: clamp(24px, 5vw, 56px);
  --fs-h3: clamp(34px, 3vw, 34px);
  --fs-h4: clamp(18px, 2vw, 32px);
  --fs-h5: clamp(16px, 2vw, 28px);
  --fs-h6: clamp(14px, 1.5vw, 22px);
  --fs-body-lg: clamp(13px, 2vw, 18px);
  --fs-body: clamp(11px, 1.2vw, 15px);
  --fs-body-sm: clamp(11px, 1vw, 15px);
  --fs-body-xs: clamp(10px, 0.9vw, 13px);
  --fs-nav: clamp(14px, 1.2vw, 18px);
  --fs-btn: clamp(13px, 1.1vw, 16px);
  --fs-hero-title: var(--fs-h1);
  --fs-hero-kicker: var(--fs-h4);
  --fs-hero-text: var(--fs-body-lg);
  --fs-hero-btn: var(--fs-btn);
  --fs-section-lead: var(--fs-body-lg);
  --fs-feature-title: var(--fs-h5);
  --fs-feature-text: var(--fs-body);
  --fs-feature-card: clamp(13px, 1vw, 13px);
  --fs-card-title: var(--fs-h6);
  --fs-card-text: var(--fs-body-sm);
  --fs-card-link: var(--fs-body-sm);
  --fs-logos-title: var(--fs-h3);
  --fs-logos-lead: var(--fs-body-lg);
  --fs-review-title: var(--fs-h3);
  --fs-review-stars: clamp(13px, 1.5vw, 20px);
  --fs-review-text: var(--fs-body-sm);
  --fs-review-name: var(--fs-body-sm);
  --fs-review-sub: var(--fs-body-xs);
  --fs-profiles-title: var(--fs-h2);
  --fs-profiles-subtitle: var(--fs-body-lg);
  --fs-profiles-link: clamp(12px, 1vw, 16px);
  --fs-modal-title: var(--fs-h5);
  --fs-footer-title: clamp(12px, 1vw, 18px);
  --fs-footer: clamp(11px, 1vw, 16px);
  --fs-footer-copy: clamp(12px, 0.95vw, 15px);
  --fs-icon-xl: clamp(34px, 4vw, 44px);
  --fs-icon-sm: clamp(16px, 1.4vw, 18px);
  --fs-icon-close: clamp(18px, 1.5vw, 20px);
  --fs-icon-nav: clamp(20px, 1.6vw, 22px);
  --fs-gallery-close: clamp(22px, 2vw, 22px);
  --fs-gallery-nav: clamp(20px, 1.6vw, 20px);
  --fs-caption: clamp(12px, 1vw, 14px);
}

* {
  box-sizing: border-box;
}
html,
body {
  height: 100%;
}
body {
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: var(--bg);
}

:root {
  --bg: #fff;
  --text: #101018;
  --muted: #6b6f7a;
  --brand: hsla(231, 85%, 29%, 0.1);
  --shadow: 0 18px 28px rgba(16, 16, 24, 0.12);
}

/* HEADER */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.headerwrap {
  display: flex;
  align-items: center;
  justify-content: space-around;
  padding: 15px 0;
}
.headerbrand {
  margin-left: 2rem;
}
.headerlogo {
  width: 150px;
  height: auto;
}
.headermenu {
  display: flex;
  align-items: center;
  gap: 34px;
  flex-wrap: wrap;
  justify-content: center;
}
.headermenuitem {
  font-size: var(--fs-nav);
  color: #222;
  opacity: 0.9;
  text-decoration: none;
}
.headermenuitem--mobile {
  display: none;
}
.headermenuitem:hover {
  opacity: 1;
  text-decoration: none;
}
.headertoggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  border: 0;
  padding: 8px;
  cursor: pointer;
}
.headertogglebar {
  width: 24px;
  height: 2px;
  background: #0b1f8a;
  display: block;
}
.headerkontakt {
  background: linear-gradient(135deg, #0b1f8a, #1f40d0);
  color: #fff;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(11, 31, 138, 0.34);
  padding: 12px 24px;
  text-decoration: none;
  font-size: var(--fs-btn);
}
.headerkontakt:hover {
  background: #07186f;
}

/* HERO */
.herosection {
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
  background:
    linear-gradient(
      90deg,
      rgba(11, 31, 138, 1) 0%,
      rgba(11, 31, 138, 0.2) 55%,
      rgba(255, 255, 255, 0) 80%
    ),
    var(--hero);
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}
.herowrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  margin: auto;
  padding: 0 100px;
}
.herocard {
  width: 50%;
  padding: 70px 64px;
  color: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
}
.herokicker {
  margin: 0 0 14px;
  font-weight: 700;
  opacity: 0.95;
  font-size: var(--fs-hero-kicker);
}
.herotitle {
  margin: 0 0 18px;
  font-size: var(--fs-hero-title);
  line-height: 1;
  letter-spacing: -1px;
}
.herotext {
  margin: 0 0 28px;
  max-width: 44ch;
  font-size: var(--fs-hero-text);
  line-height: 1.55;
  font-weight: 600;
  opacity: 0.95;
}
.herocta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}
.heroponuka {
  background: #fff;
  color: #111;
  border: 1px solid #fff;
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  font-size: var(--fs-hero-btn);
  position: relative;
  overflow: hidden;
}
.heroponuka:hover {
  background: #f4f4f4;
}
.herokonzultacia {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.65);
  padding: 14px 22px;
  font-weight: 700;
  text-decoration: none;
  font-size: var(--fs-hero-btn);
  position: relative;
  overflow: hidden;
}
.herokonzultacia:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}
.herogallery {
  width: 50%;
  padding: 70px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  transform: none;
  box-sizing: border-box;
}
.herogallerygrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}
.herogalleryimg {
  width: 100%;
  height: 170px;
  object-fit: cover;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  transition:
    box-shadow 0.18s,
    filter 0.18s,
    transform 0.18s;
}
.herogalleryimg:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(5, 10, 45, 0.35);
  filter: saturate(1.08);
}
.herogallerymore {
  width: fit-content;
  align-self: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0b1f8a, #1f40d0);
  color: #fff;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(11, 31, 138, 0.34);
  text-decoration: none;
  font-size: var(--fs-btn);
}
.herogallerymore:hover {
  background: #07186f;
}

/* FEATURES */
.featuressection {
  padding: 70px 0;
}
.featureswrap {
  width: 100%;
}
.featureslead {
  margin: 0 auto 54px;
  text-align: center;
  max-width: 76ch;
  line-height: 1.8;
  font-weight: 600;
  color: #1a1a1f;
  font-size: var(--fs-section-lead);
}
.featuresgrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
  align-items: stretch;
  margin-bottom: 54px;
  width: 95%;
  margin: auto;
}
.featurecard {
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow);
  padding: 32px 26px;
  text-align: center;
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.featurecard:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(16, 16, 24, 0.22);
}
.featureicon {
  font-size: var(--fs-icon-xl);
  margin-bottom: 12px;
}
.featuretitle {
  margin: 0 0 10px;
  font-size: var(--fs-feature-title);
  font-weight: 800;
}
.featuretext {
  margin: 0 auto;
  max-width: 30ch;
  font-size: var(--fs-feature-text);
  font-weight: 700;
  color: #2a2a33;
  line-height: 1.5;
}
.featurescta {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.featuresbtn {
  min-width: 240px;
  padding: 16px 30px;
  background: linear-gradient(135deg, #0b1f8a, #1f40d0);
  color: #fff;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(11, 31, 138, 0.34);
  text-decoration: none;
  font-size: var(--fs-btn);
  text-align: center;
}
.featuresbtn:hover {
  background: #07186f;
}
.big-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.big-card:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.big-card-media {
  height: 170px;
  background: #cfcfcf;
  margin-bottom: 16px;
}

.big-card-title {
  margin: 0 0 10px;
  font-size: var(--fs-card-title);
  font-weight: 800;
}

.big-card-text {
  margin: 0 0 18px;
  color: rgba(0, 0, 0, 0.68);
  font-size: var(--fs-card-text);
  line-height: 1.6;
  font-weight: 600;
}

.big-card-link {
  font-weight: 800;
  font-size: var(--fs-card-link);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}

/* ===== Recenzie CTA ===== */
.reviews-cta-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 26px 18px 8px;
}

.reviews-cta-text {
  margin: 0;
  font-size: clamp(18px, 2vw, 28px);
  font-weight: 800;
  letter-spacing: -0.4px;
  color: #0b1f8a;
  text-align: center;
  line-height: 1.2;
}

.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 240px;
  padding: 15px 30px;
  text-decoration: none;
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #0b1f8a, #1f40d0);
  border: 1px solid rgba(11, 31, 138, 0.15);
  box-shadow: 0 10px 22px rgba(11, 31, 138, 0.22);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.reviews-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(11, 31, 138, 0.3);
  background: linear-gradient(135deg, #07186f, #1736bb);
}

.reviews-cta-btn:active {
  transform: translateY(0);
}

@media (max-width: 560px) {
  .reviews-cta-outer {
    margin-top: 24px;
  }
  .reviews-cta-block {
    padding: 38px 4vw 28px 4vw;
    min-width: 260px;
    max-width: 98vw;
    min-height: 160px;
    /* border-radius removed */
    margin-top: 0;
    margin-left: auto;
    margin-right: auto;
    gap: 18px;
  }
  .reviews-cta-text {
    font-size: clamp(16px, 3vw, 22px);
  }
  .reviews-cta-btn {
    min-width: 180px;
    padding: 12px 18px;
    font-size: clamp(13px, 2vw, 15px);
    width: 90%;
  }
}

/* Footer */

.footer {
  background: linear-gradient(135deg, #0b1f8a 80%, #1f40d0 100%);
  color: #fff;
  padding: 54px 0 22px;
  font-family: inherit;
  box-shadow: 0 -8px 32px rgba(11, 31, 138, 0.08);
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 44px;
  align-items: start;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 24px;
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: center;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 14px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.08));
  background-color: #fff;
  padding: 5px;
}

.footer-text {
  margin: 0 0 18px;
  text-align: center;
  font-size: var(--fs-footer);
  line-height: 1.7;
  opacity: 0.92;
  max-width: 48ch;
}

.social {
  display: flex;
  gap: 12px;
  margin-top: 8px;
  margin: auto;
}
.social-btn {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.14);
  border: 1.5px solid rgba(255, 255, 255, 0.22);
  font-weight: 800;
  font-size: var(--fs-icon-sm);
  color: #fff;
  transition:
    background 0.18s,
    color 0.18s,
    border-color 0.18s;
  box-shadow: 0 2px 8px rgba(11, 31, 138, 0.08);
  text-decoration: none;
}
.social-btn:hover {
  background: #fff;
  color: #0b1f8a;
  border-color: #fff;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.footer-links-split {
  display: contents;
}

.footer-split-col {
  width: auto;
}

.footer-title {
  margin: 0 0 14px;
  font-size: var(--fs-footer-title);
  font-weight: 900;
  letter-spacing: 0.5px;
  color: #fff;
  text-shadow: 0 2px 8px rgba(11, 31, 138, 0.08);
}

.footer-link {
  display: block;
  padding: 6px 0;
  font-size: var(--fs-footer);
  opacity: 0.92;
  color: #fff;
  text-decoration: none;
  border-radius: 3px;
  transition:
    background 0.16s,
    color 0.16s,
    opacity 0.16s;
}
.footer-link:hover {
  opacity: 1;
  background: rgba(255, 255, 255, 0.1);
  color: #ffe600;
  text-decoration: underline;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: var(--fs-footer);
  opacity: 0.97;
  color: #fff;
}
.footer-meta a {
  color: #fff !important;
  text-decoration: underline;
  transition: color 0.18s;
}
.footer-meta a:hover {
  color: #ffe600 !important;
}
.footer-contact-address {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.meta-row {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  letter-spacing: 0.1px;
}

.footer-address-meta {
  margin-top: 10px;
}

.working-hours-status {
  font-weight: 800;
}

.working-hours-status.is-open {
  color: #8ef7b2;
}

.working-hours-status.is-closed {
  color: #ffd0d0;
}

.footer-bottom {
  margin-top: 28px;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 24px;
}

.footer-sep {
  height: 1.5px;
  width: 100%;
  background: rgba(255, 255, 255, 0.22);
  margin: 18px 0 12px;
  border-radius: 1px;
}

.footer-copy {
  display: block;
  text-align: center;
  font-size: var(--fs-footer-copy);
  opacity: 0.95;
  color: #fff;
  letter-spacing: 0.2px;
}

@media (max-width: 980px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    justify-content: center;
    text-align: center;
  }
  .footer-col {
    margin-bottom: 18px;
    align-items: center;
  }
  .footer-meta {
    align-items: center;
  }
  .meta-row {
    justify-content: center;
  }
  .working-hours-status {
    margin: auto;
  }
}

@media (max-width: 720px) {
  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
    padding: 0 8px;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-text,
  .footer-meta,
  .footer-link {
    text-align: center;
  }
  .footer-col {
    align-items: center;
  }
  .footer-links-split {
    display: flex;
    width: 100%;
    gap: 12px;
  }
  .footer-split-col {
    width: 50%;
    align-items: center;
  }
  .footer-split-col .footer-title,
  .footer-split-col .footer-link {
    text-align: left;
  }
  .footer-split-col .footer-meta {
    text-align: left;
    align-items: flex-start;
  }
  .footer-split-col .meta-row {
    justify-content: flex-start;
  }

  .footer-links-split:last-of-type {
    align-items: flex-start;
  }
  .footer-links-split:last-of-type .footer-split-col {
    width: 100%;
  }
  .footer-links-split:last-of-type .footer-contact-address {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 20px;
    row-gap: 0;
    align-items: start;
    width: 100%;
  }
  .footer-links-split:last-of-type .footer-contact-col,
  .footer-links-split:last-of-type .footer-address-col {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-links-split:last-of-type .footer-address-meta {
    margin-top: 0;
  }
  .footer-links-split:last-of-type .footer-contact-col .footer-title,
  .footer-links-split:last-of-type .footer-address-col .footer-title {
    margin-top: 0;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .footer {
    padding: 28px 0 12px;
  }
  .footer-bottom {
    margin-top: 18px;
    padding: 0 4px;
  }
  .footer-logo {
    width: 140px;
  }
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(8, 10, 18, 0.85);
  z-index: 100;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-content {
  position: relative;
  width: min(1080px, 92vw);
  height: min(680px, 86vh);
  display: flex;
  flex-direction: column;
  padding-bottom: 64px;
}

.lightbox-image {
  width: 100%;
  height: calc(100% - 64px);
  flex: 1 1 auto;
  object-fit: contain;
  display: block;
  box-shadow: var(--shadow);
}

.lightbox-close {
  position: absolute;
  top: -18px;
  right: -18px;
  width: 36px;
  height: 36px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: var(--fs-icon-close);
  cursor: pointer;
}

.lightbox-caption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.8);
  text-align: center;
  font-size: var(--fs-caption);
}

.lightbox-nav {
  position: absolute;
  bottom: 12px;
  top: auto;
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: var(--fs-icon-nav);
  cursor: pointer;
}

.lightbox-nav.prev {
  left: 50%;
  transform: translateX(-60px);
}

.lightbox-nav.next {
  left: 50%;
  transform: translateX(18px);
}

/* ===== Recenzie (3 karty ako na obrázku) ===== */
.reviews-container {
  width: 90%;
  margin: auto;
}

.reviews {
  padding: 0 0 70px 0;
  background: #f4f4f4; /* jemne sivé pozadie ako na náhľade */
}

.reviews-title {
  margin: 0 0 26px;
  text-align: center;
  font-size: var(--fs-review-title);
  letter-spacing: -1px;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.review-card {
  background: #f7f7f7;
  border: 1px solid rgba(0, 0, 0, 0.2);
  padding: 18px 18px 16px;
  box-shadow: 0 10px 18px rgba(16, 16, 24, 0.08);
  display: flex;
  flex-direction: column;
  min-height: 260px;
  word-break: break-word;
  overflow-wrap: break-word;
}

.review-stars {
  color: #f5a623; /* zlaté hviezdičky */
  letter-spacing: 0.28em; /* väčší rozostup medzi hviezdami */
  font-size: clamp(28px, 2.8vw, 38px); /* väčšie hviezdy */
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  margin-bottom: 12px;
}
.review-stars-svg {
  display: flex;
  flex-direction: row;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.review-text {
  margin: 0 0 18px;
  font-size: var(--fs-review-text);
  line-height: 1.75;
  color: #222;
  font-weight: 600;
  flex: 1;
  word-break: break-word;
  overflow-wrap: break-word;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 10px;
}

.review-avatar {
  width: 42px;
  height: 42px;
  background: #bfbfbf;
  flex: 0 0 42px;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  user-select: none;
  box-shadow: 0 2px 8px 0 #0001;
}

.review-author-name {
  font-weight: 900;
  font-size: var(--fs-review-name);
  line-height: 1.2;
}

.review-author-sub {
  font-size: var(--fs-review-sub);
  opacity: 0.75;
  font-weight: 700;
}

/* ===== Profilové systémy (modrá sekcia podľa screenshotu) ===== */
.profiles2 {
  min-height: 520px;
  background:
    linear-gradient(
      90deg,
      rgba(11, 31, 138, 1) 0%,
      rgba(11, 31, 138, 0.2) 55%,
      rgba(255, 255, 255, 0) 80%
    ),
    #cfcfcf;
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
}

.profiles2-inner {
  text-align: center;
  width: 90%;
  margin: auto;
}

.profiles2-title {
  margin: 0 0 18px;
  font-size: var(--fs-profiles-title);
  font-weight: 900;
  letter-spacing: -1px;
  color: #ffffff;
}

.profiles2-subtitle {
  margin: 0 0 56px;
  font-size: var(--fs-profiles-subtitle);
  font-weight: 700;
  color: rgba(255, 255, 255, 0.92);
}

.profiles2-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: stretch;
  justify-items: stretch;
}

.profiles2-card {
  background: #ffffff;
  padding: 28px 24px;
  min-height: 210px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;

  text-decoration: none;
  color: #101018;

  box-shadow: 0 18px 28px rgba(16, 16, 24, 0.18);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease;
}

.profiles2-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 22px 36px rgba(16, 16, 24, 0.22);
}

.profiles2-card-title {
  font-size: var(--fs-card-title);
  font-weight: 900;
  letter-spacing: 0.8px;
}

.profiles2-logo {
  width: min(260px, 90%);
  height: 70px;
  object-fit: contain;
}

.profiles2-link {
  font-size: var(--fs-profiles-link);
  font-weight: 800;
  text-decoration: underline;
  color: #111;
}

/* Partneri section (moved from o-nas) */
.section-logos {
  background: #f4f4f4;
  padding: 70px 0;
}

.section-logos-container {
  width: 95%;
  margin: 0 auto;
}

.section-title-logos {
  margin: 0 0 14px;
  text-align: center;
  font-size: var(--fs-logos-title);
  font-weight: 900;
  letter-spacing: -0.6px;
}

.section-lead-logos {
  margin: 0 auto 46px;
  text-align: center;
  max-width: 80ch;
  line-height: 1.8;
  font-weight: 600;
  color: #1a1a1f;
  font-size: var(--fs-logos-lead);
}

.logo-wall-main {
  margin-top: 22px;
  display: grid;
  grid-template-columns: repeat(5, minmax(160px, 1fr));
  gap: 16px;
  align-items: center;
  justify-items: center;
  padding: 20px 0 8px;
}

.logo-tile {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 96px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid rgba(11, 31, 138, 0.12);
  box-shadow: 0 10px 18px rgba(16, 16, 24, 0.08);
}

.logo-img {
  width: 170px;
  height: 60px;
  display: block;
  object-fit: contain;
  filter: saturate(0.98);
}

/* ===== HERO: 2 stĺpce (text + galéria) ===== */
.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: stretch;
}

/* pravá strana hero */
.hero-gallery {
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 520px;
  margin-left: 0;
  transform: translateX(-80px);
}

.hero-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.hero-gallery-img {
  width: 100%;
  height: 170px;
  object-fit: cover;
  cursor: zoom-in;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.12);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    filter 0.2s ease;
}

.hero-gallery-img:hover {
  transform: translateY(-2px) scale(1.01);
  box-shadow: 0 12px 24px rgba(5, 10, 45, 0.35);
  filter: saturate(1.08);
}

.hero-gallery-more {
  width: fit-content;
  align-self: center;
  padding: 12px 24px;
  background: linear-gradient(135deg, #0b1f8a, #1f40d0);
  color: #fff;
  border: 0;
  font-weight: 900;
  cursor: pointer;
  letter-spacing: 0.2px;
  box-shadow: 0 10px 22px rgba(11, 31, 138, 0.34);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    filter 0.15s ease;
}

.hero-gallery-more:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(11, 31, 138, 0.4);
  filter: brightness(1.04);
}

/* ===== MODÁLNA GALÉRIA ===== */
.modal-open {
  overflow: hidden;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 1000;
}
.gallery-modal.is-open {
  display: block;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
}

.gallery-modal-dialog {
  position: relative;
  width: min(1100px, calc(100% - 32px));
  margin: 40px auto;
  background: linear-gradient(180deg, #ffffff, #f8f9ff);
  padding: 20px;
  max-height: calc(100vh - 80px);
  overflow: auto;
  border: 1px solid rgba(11, 31, 138, 0.14);
  box-shadow: 0 30px 60px rgba(8, 13, 43, 0.45);
  animation: galleryDialogIn 0.22s ease;
}

.gallery-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  margin-bottom: 16px;
}

.gallery-modal-title {
  margin: 0;
  font-size: var(--fs-modal-title);
  font-weight: 900;
  letter-spacing: -0.2px;
}

.gallery-modal-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: #f4f6ff;
  font-size: var(--fs-gallery-close);
  cursor: pointer;
  transition:
    transform 0.14s ease,
    background 0.14s ease,
    border-color 0.14s ease;
}

.gallery-modal-close:hover {
  transform: scale(1.04);
  background: #e9eeff;
  border-color: rgba(11, 31, 138, 0.28);
}

.gallery-viewer {
  position: relative;
  margin-bottom: 16px;
  background:
    radial-gradient(circle at 20% 20%, rgba(63, 90, 221, 0.3), transparent 48%),
    #11131a;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.06),
    0 18px 32px rgba(9, 13, 40, 0.34);
}

.gallery-active-img {
  width: 100%;
  max-height: 62vh;
  object-fit: contain;
  transition: opacity 0.18s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border: 0;
  background: rgba(255, 255, 255, 0.94);
  color: #0b1f8a;
  font-size: var(--fs-gallery-nav);
  font-weight: 900;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(9, 13, 40, 0.3);
  transition:
    transform 0.14s ease,
    background 0.14s ease,
    color 0.14s ease;
}

.gallery-nav:hover {
  transform: translateY(-50%) scale(1.05);
  background: #ffffff;
  color: #1f40d0;
}

.gallery-nav-prev {
  left: 14px;
}

.gallery-nav-next {
  right: 14px;
}

@keyframes galleryDialogIn {
  from {
    opacity: 0;
    transform: translateY(10px) scale(0.985);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* ======= BREAKPOINTS PRE TVOJE ÚPRAVY ======= */
@media (max-width: 1440px) {
  /* ... */
}
@media (max-width: 1100px) {
  .herowrap {
    padding: 0;
  }
}
@media (max-width: 980px) {
  .herowrap {
    flex-direction: column;
    gap: 0;
  }
  .herocard {
    width: 100%;
    padding-bottom: 0;
  }
  .herogallery {
    width: 92%;
    margin: auto;
    padding: 28px;
    transform: translateX(0);
  }
  .featureswrap {
    width: 92%;
    margin: auto;
  }
  .featuresgrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .logo-wall-main {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 720px) {
  :root {
    --fs-nav: clamp(18px, 2vw, 18px);
    --fs-logos-title: clamp(28px, 3vw, 28px);
    --fs-logos-lead: clamp(14px, 2vw, 14px);
  }

  .headerkontakt {
    display: none;
  }
  .herogallery {
    padding: 0;
  }

  .footer-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    text-align: center;
  }
  .footer-logo {
    margin-left: auto;
    margin-right: auto;
  }
  .footer-text,
  .footer-meta,
  .footer-link {
    text-align: center;
  }
  .headermenu {
    display: none;
    flex-direction: column;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100vw;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    z-index: 100;
  }
  .headermenu.open {
    display: flex;
  }
  .headertoggle {
    display: flex;
    position: absolute;
    right: 18px;
    top: 18px;
    z-index: 101;
  }
  .headerwrap {
    position: relative;
    flex-direction: row;
    padding: 15px 0;
  }
  .headerbrand {
    margin-left: 0;
  }
  .headermenuitem {
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    text-align: center;
    font-size: var(--fs-nav);
  }
  .headermenuitem--mobile {
    display: inline-flex;
  }
  .section-logos {
    padding: 48px 0;
  }
  .section-title-logos {
    font-size: var(--fs-logos-title);
  }
  .section-lead-logos {
    margin-bottom: 32px;
    font-size: var(--fs-logos-lead);
    line-height: 1.7;
  }
  .logo-wall-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  :root {
    --fs-hero-kicker: clamp(20px, 2vw, 20px);
    --fs-hero-title: clamp(32px, 5vw, 32px);
    --fs-hero-text: clamp(15px, 2vw, 15px);
    --fs-hero-btn: clamp(15px, 2vw, 15px);
    --fs-feature-title: clamp(18px, 2vw, 18px);
    --fs-review-title: clamp(24px, 3vw, 24px);
    --fs-logos-title: clamp(24px, 3vw, 24px);
  }

  .featuresgrid {
    gap: 10px;
  }
  .featurecard {
    padding: 16px 8px;
    max-width: 98%;
    min-width: 0;
    margin: 0 auto;
    font-size: var(--fs-feature-card);
    border-radius: 0;
    box-shadow: 0 4px 10px rgba(16, 16, 24, 0.07);
  }
  .featuretitle {
    font-size: var(--fs-feature-title);
    margin-bottom: 6px;
  }
  .featuretext {
    font-size: var(--fs-feature-text);
    max-width: 90%;
    margin: 0 auto;
  }
  .featureslead {
    margin: 0 auto 35px;
  }
  .herocta.mobile-moved {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    align-items: center;
    margin-top: 10px;
  }
  .herocard {
    padding: 28px 18px;
  }
  .herogallerygrid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    width: 80%;
    margin: auto;
  }
  .featuresgrid {
    width: 92%;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
  .profiles2 {
    padding: 30px 0;
  }
  .profiles2-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 20px;
  }
  .profiles2-subtitle {
    margin: 0 0 30px;
  }

  .reviews-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
  .reviews {
    padding: 0 0 30px 0;
  }
  .reviews-title {
    font-size: var(--fs-review-title);
    margin-bottom: 20px;
  }
  .featuressection {
    padding: 35px 0;
  }
  .herosection {
    padding: 0;
    background: linear-gradient(180deg, #0b1f8a 0%, #1f40d0 100%);
    box-shadow: 0 8px 32px rgba(11, 31, 138, 0.1);
    min-height: unset;
  }
  .herowrap {
    flex-direction: column;
    padding: 0 0 18px 0;
    gap: 0;
    align-items: stretch;
    max-width: 100vw;
  }
  .herocard {
    width: 100%;
    background: transparent;
    color: #fff;
    box-shadow: none;
    margin: 0;
    padding: 32px 10vw 18px 10vw;
    text-align: center;
  }
  .herokicker {
    font-size: var(--fs-hero-kicker);
    margin-bottom: 10px;
    letter-spacing: 1px;
  }
  .herotitle {
    font-size: var(--fs-hero-title);
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.1;
  }
  .herotext {
    font-size: var(--fs-hero-text);
    margin-bottom: 0;
    opacity: 0.96;
    max-width: 100%;
    text-align: center;
  }
  .herocta {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .heroponuka,
  .herokonzultacia {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    font-size: var(--fs-hero-btn);
    padding: 14px 0;
    display: block;
    text-align: center;
  }
  .herokonzultacia {
    order: 1;
  }
  .heroponuka {
    order: 2;
  }
  .herogallery {
    width: 100%;
    min-height: unset;
    padding: 0;
    margin: 0;
    box-shadow: none;
    background: transparent;
    align-items: center;
  }
  .herogallerygrid {
    width: 92vw;
    gap: 10px;
    margin-bottom: 10px;
  }
  .herogalleryimg {
    min-height: 200px;
    box-shadow: 0 2px 8px rgba(11, 31, 138, 0.1);
  }

  .herogallerymore {
    display: none;
    width: 90%;
    margin-left: auto;
    margin-right: auto;
  }

  .herogallerygrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  .herogalleryimg {
    min-height: 80px;
    max-height: 150px;
  }
  .section-title-logos {
    font-size: var(--fs-logos-title);
  }
  .logo-wall-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 0;
    margin: 0;
  }
  .logo-tile {
    min-height: 74px;
    padding: 8px 10px;
  }
  .logo-img {
    width: 130px;
    height: 44px;
  }
}
@media (max-width: 400px) {
  /* ... */
}
