:root {
  --navy: #0d2a4a;
  --green: #2e8b4a;
  --green-dark: #236939;
  --bg-light: #edf4fb;
  --bg-green-light: #e8f5ee;
}

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

body {
  font-family: "Segoe UI", Arial, sans-serif;
  color: #222;
  line-height: 1.6;
}

/* ─── NAV ─────────────────────────────────────── */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e0e0e0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 48px;
  height: 68px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.nav-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -1px;
}

.nav-logo-text strong {
  display: block;
  font-size: 17px;
  font-weight: 900;
  color: var(--navy);
  letter-spacing: 1px;
}

.nav-logo-text span {
  font-size: 10px;
  color: #999;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 28px;
  align-items: center;
}

nav ul a {
  text-decoration: none;
  color: #333;
  font-size: 14px;
  font-weight: 500;
}

nav ul a:hover {
  color: var(--green);
}

.nav-cta {
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 10px 18px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

.nav-cta:hover {
  background: var(--green-dark);
}

/* ─── BUTTONS ─────────────────────────────────── */
.btn-green {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--green);
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-green:hover {
  background: var(--green-dark);
}

.btn-navy {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--navy);
  color: #fff;
  text-decoration: none;
  padding: 13px 22px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-navy:hover {
  opacity: 0.88;
}

.btn-outline-white {
  display: inline-block;
  border: 2px solid #fff;
  color: #fff;
  text-decoration: none;
  padding: 11px 24px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.12);
}

/* ─── PHOTO PLACEHOLDER ───────────────────────── */
.photo-placeholder {
  width: 100%;
  height: 100%;
  background: #b8cfe0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #789;
  font-size: 13px;
  text-align: center;
}

/* ─── HERO ────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 540px;
}

.hero-left {
  padding: 72px 64px 64px 80px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #fff;
}

.hero-left h1 {
  font-size: 38px;
  font-weight: 900;
  line-height: 1.15;
  color: var(--navy);
  text-transform: uppercase;
  margin-bottom: 20px;
}

.hero-left h1 .accent {
  color: var(--green);
}

.hero-left p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 32px;
  max-width: 440px;
}

.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-right {
  overflow: hidden;
  min-height: 400px;
}

.hero-right img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ─── O NÁS ───────────────────────────────────── */
#onas {
  padding: 72px 80px;
  scroll-margin-top: 68px;
}

.onas-inner {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 64px;
  margin-bottom: 52px;
  align-items: start;
}

.onas-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

.onas-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.onas-text h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 18px;
}

.onas-text p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 12px;
}

.onas-icons {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  padding-top: 44px;
  border-top: 1px solid #e8e8e8;
}

.onas-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
}

.onas-icon-item .icon-circle {
  width: 64px;
  height: 64px;
  background: var(--bg-green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}

.onas-icon-item span {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--navy);
}

/* ─── ČO ROBÍME ───────────────────────────────── */
#sluzby {
  padding: 72px 80px;
  background: #f8f9fa;
  scroll-margin-top: 68px;
}

#sluzby h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  text-align: center;
  margin-bottom: 48px;
}

.sluzby-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 32px;
}

.sluzby-card .card-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 14px;
}

.sluzby-card .card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sluzby-card h3 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.6px;
  color: var(--navy);
  margin-bottom: 6px;
}

.sluzby-card p {
  font-size: 13px;
  color: #666;
  line-height: 1.6;
}

.sluzby-chips {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-green-light);
  border-radius: 6px;
  padding: 20px 0;
}

.chip {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
  color: #2a5a38;
  font-weight: 500;
  padding: 8px 28px;
}

.chip + .chip {
  border-left: 1px solid #c5dfc9;
}

.chip-icon {
  width: 38px;
  height: 38px;
  background: var(--green);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 16px;
  flex-shrink: 0;
}

/* ─── ZAMESTNANIE ─────────────────────────────── */
#zamestnanie {
  padding: 72px 80px;
  background: var(--bg-light);
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 72px;
  align-items: center;
  scroll-margin-top: 68px;
}

.zamestnanie-photo {
  width: 100%;
  aspect-ratio: 3 / 4;
  border-radius: 6px;
  overflow: hidden;
}

.zamestnanie-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.zamestnanie-content h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.zamestnanie-content > p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 36px;
}

.steps {
  display: flex;
  align-items: flex-start;
  margin-bottom: 32px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
}

.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
  flex-shrink: 0;
}

.step-num--navy {
  background: var(--navy);
}

.step-label {
  font-size: 11px;
  color: var(--navy);
  font-weight: 600;
  max-width: 72px;
  line-height: 1.4;
}

.step-arrow {
  color: var(--green);
  font-size: 18px;
  margin-top: 13px;
  flex-shrink: 0;
  padding: 0 2px;
}

/* ─── SPOLUPRÁCA ──────────────────────────────── */
#spolupraca {
  scroll-margin-top: 68px;
}

.spolupraca-inner {
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}

.spolupraca-left h2 {
  font-size: 32px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 14px;
}

.spolupraca-left > p {
  font-size: 14px;
  color: #555;
  line-height: 1.75;
  margin-bottom: 36px;
}

.spolupraca-icons {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.spolupraca-icon-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 8px;
}

.spolupraca-icon-item .icon-circle {
  width: 56px;
  height: 56px;
  border: 2px solid var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 4px;
}

.spolupraca-icon-item strong {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--navy);
}

.spolupraca-icon-item p {
  font-size: 12px;
  color: #666;
  line-height: 1.5;
}

.spolupraca-photo {
  width: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 4px;
  overflow: hidden;
}

.spolupraca-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.spolupraca-bar {
  background: var(--navy);
  padding: 22px 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.spolupraca-bar-content {
  display: flex;
  align-items: center;
  gap: 16px;
}

.spolupraca-bar-content .bar-icon {
  font-size: 28px;
  flex-shrink: 0;
}

.spolupraca-bar-content p {
  color: #cde;
  font-size: 14px;
  line-height: 1.6;
}

/* ─── KONTAKT ─────────────────────────────────── */
#kontakt {
  background: var(--navy);
  padding: 72px 80px;
  display: grid;
  grid-template-columns: 1.1fr 1.2fr 1fr;
  gap: 48px;
  scroll-margin-top: 68px;
}

.kontakt-info h2 {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 12px;
}

.kontakt-info > p {
  font-size: 13px;
  color: #9ab8cc;
  line-height: 1.75;
  margin-bottom: 28px;
}

.kontakt-detail {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 13px;
  color: #cde;
  line-height: 1.55;
}

.kontakt-detail .d-icon {
  color: var(--green);
  font-size: 15px;
  flex-shrink: 0;
  margin-top: 2px;
}

.kontakt-detail a {
  color: #cde;
  text-decoration: none;
}

.kontakt-detail a:hover {
  color: #fff;
}

.kontakt-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.kontakt-form input,
.kontakt-form textarea {
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 13px;
  color: #fff;
  font-family: inherit;
  outline: none;
}

.kontakt-form input::placeholder,
.kontakt-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.35);
}

.kontakt-form input:focus,
.kontakt-form textarea:focus {
  border-color: var(--green);
}

.kontakt-form textarea {
  resize: vertical;
  min-height: 104px;
}

.kontakt-form button {
  background: var(--green);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  font-family: inherit;
}

.kontakt-form button:hover {
  background: var(--green-dark);
}

.kontakt-map {
  background: #1a3a5c;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  min-height: 220px;
}

/* ─── GENERIC SUB-PAGES ───────────────────────── */
.page-hero {
  background: var(--navy);
  padding: 72px 80px 56px;
}

.page-hero h1 {
  font-size: 40px;
  font-weight: 900;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 15px;
  color: #9ab8cc;
  max-width: 680px;
  line-height: 1.75;
}

.page-hero strong {
  color: #fff;
}

.page-content {
  padding: 56px 80px;
}

.page-content > p:first-child {
  font-size: 16px;
  color: #333;
}

.page-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
  margin-top: 48px;
  padding-left: 14px;
  border-left: 3px solid var(--green);
}

.page-content h2:first-child {
  margin-top: 0;
}

.page-content p {
  font-size: 15px;
  color: #444;
  margin-bottom: 16px;
  max-width: 720px;
  line-height: 1.75;
}

.values-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.values-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: #222;
}

.values-list .icon {
  font-size: 20px;
  width: 28px;
  text-align: center;
}

.cta-box {
  background: #f4f7fb;
  border-radius: 6px;
  padding: 40px;
  margin-top: 48px;
  max-width: 640px;
}

.cta-box h2 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--navy);
  margin-top: 0;
}

.cta-box p {
  font-size: 15px;
  color: #444;
  margin-bottom: 24px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.service-card {
  background: #f4f7fb;
  border-radius: 6px;
  padding: 32px 28px;
}

.service-card .service-icon {
  font-size: 32px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--navy);
}

.service-card p {
  font-size: 14px;
  color: #555;
}

/* ─── MOBILE / TABLET RESPONSIVE ─────────────── */
@media (max-width: 980px) {
  nav {
    padding: 16px 24px;
    height: auto;
    flex-wrap: wrap;
    gap: 12px;
  }

  nav ul {
    order: 3;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
  }

  .nav-cta {
    width: 100%;
    text-align: center;
  }

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

  .hero-left {
    padding: 56px 32px 48px;
  }

  .hero-right {
    min-height: 280px;
  }

  .onas-inner,
  #zamestnanie,
  .spolupraca-inner,
  #kontakt {
    grid-template-columns: 1fr;
  }

  #onas,
  #sluzby,
  #zamestnanie,
  .spolupraca-inner,
  .spolupraca-bar,
  #kontakt,
  .page-hero,
  .page-content {
    padding-left: 24px;
    padding-right: 24px;
  }

  .onas-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .sluzby-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .spolupraca-icons {
    grid-template-columns: repeat(2, 1fr);
  }

  .spolupraca-bar {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }

  .steps {
    flex-wrap: wrap;
    gap: 16px;
  }

  .step-arrow {
    display: none;
  }

  .step {
    flex: 1 1 110px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .hero-left h1,
  .onas-text h2,
  #sluzby h2,
  .zamestnanie-content h2,
  .spolupraca-left h2,
  .kontakt-info h2,
  .page-hero h1 {
    font-size: 28px;
  }

  .hero-btns,
  .btn-green,
  .btn-navy,
  .btn-outline-white {
    width: 100%;
  }

  .hero-btns {
    flex-direction: column;
  }

  .btn-green,
  .btn-navy,
  .btn-outline-white {
    justify-content: center;
    text-align: center;
  }

  .onas-icons,
  .sluzby-grid,
  .spolupraca-icons,
  .sluzby-chips {
    grid-template-columns: 1fr;
  }

  .chip + .chip {
    border-left: none;
    border-top: 1px solid #c5dfc9;
  }

  .chip {
    padding: 10px 18px;
  }

  .page-hero {
    padding-top: 48px;
    padding-bottom: 40px;
  }

  .page-content {
    padding-top: 40px;
    padding-bottom: 40px;
  }

  .cta-box {
    padding: 24px;
  }
}

@media (max-width: 560px) {
  nav {
    padding: 14px 16px;
  }

  nav ul {
    gap: 10px 14px;
  }

  nav ul a {
    font-size: 13px;
  }

  .hero-left,
  #onas,
  #sluzby,
  #zamestnanie,
  .spolupraca-inner,
  .spolupraca-bar,
  #kontakt,
  .page-hero,
  .page-content {
    padding-left: 16px;
    padding-right: 16px;
  }

  .hero-left h1 {
    font-size: 24px;
  }

  .hero-left p,
  .onas-text p,
  .sluzby-card p,
  .zamestnanie-content > p,
  .spolupraca-left > p,
  .spolupraca-bar-content p,
  .kontakt-info > p,
  .page-hero p,
  .page-content p {
    font-size: 14px;
  }

  .step-num {
    width: 40px;
    height: 40px;
    font-size: 15px;
  }

  .step-label {
    font-size: 10px;
  }

  .kontakt-form input,
  .kontakt-form textarea,
  .kontakt-form button {
    font-size: 14px;
  }

  .kontakt-map {
    min-height: 160px;
    font-size: 36px;
  }
}
