:root {
  --bg: #ffffff;
  --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);
  --container: 1120px;

  --surface: #ffffff;
  --ink: #111320;
  --ink-muted: #4a5164;
  --line: rgba(17, 19, 32, 0.1);
  --brand-1: #0b1f8a;
  --brand-2: #1f40d0;
  --radius-lg: 18px;
  --radius-md: 14px;
  --shadow-soft: 0 10px 26px rgba(12, 20, 52, 0.08);
  --shadow-hover: 0 18px 36px rgba(12, 20, 52, 0.14);
  --section-pad: 56px;

  /* Type scale */
  --fs-h1: clamp(26px, 2.8vw, 36px);
  --fs-h2: clamp(24px, 2.6vw, 34px);
  --fs-h3: clamp(22px, 2.2vw, 30px);
  --fs-h4: clamp(24px, 2.1vw, 28px);
  --fs-h5: clamp(15px, 1.4vw, 18px);
  --fs-h6: clamp(12px, 1vw, 14px);
  --fs-body-lg: clamp(14px, 1.2vw, 16px);
  --fs-body: clamp(13px, 1.1vw, 14px);
  --fs-body-sm: clamp(12px, 1vw, 13px);
  --fs-body-xs: clamp(11px, 0.95vw, 13px);
  --fs-lead: clamp(12px, 1.1vw, 14px);
  --fs-nav: clamp(14px, 1.2vw, 18px);
  --fs-btn: clamp(13px, 1.1vw, 16px);
  --fs-icon-lg: clamp(24px, 2vw, 30px);
  --fs-icon-sm: clamp(16px, 1.4vw, 18px);
  --fs-footer-title: clamp(12px, 1vw, 18px);
  --fs-footer: clamp(11px, 1vw, 16px);
  --fs-footer-copy: clamp(12px, 0.95vw, 15px);
}

/* Globalne pre celu stranku (reset, zakladne elementy) */
* {
  box-sizing: border-box;
  border-radius: 0 !important;
}

html {
  height: 100%;
}

body {
  height: 100%;
  margin: 0;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  color: var(--text);
  background: #eceef2;
}

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

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

.section {
  padding: var(--section-pad) 0;
}

.btn-primary-sm {
  border-radius: 0;
}

/* Header + navigacia (NAV) */
.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 {
  display: inline;
  vertical-align: baseline;
  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;
}

/* Header + navigacia - responsive */
@media (max-width: 720px) {
  .headerkontakt {
    display: none;
  }

  .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: 18px;
  }

  .headermenuitem--mobile {
    display: inline-flex;
  }
}

/* Page hero (UVOD) */
.page-hero {
  margin-bottom: 10px;
}

.page-hero-inner-container {
  min-height: 140px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px;
  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;
}

.page-title {
  margin: 0;
  color: #fff;
  font-weight: 800;
  letter-spacing: -0.7px;
  font-size: var(--fs-h1);
}

/* Page hero (UVOD) - responsive */
@media (max-width: 720px) {
  .page-hero-inner-container {
    padding: 30px 16px;
    min-height: 90px;
  }
}

@media (max-width: 560px) {
}

@media (max-width: 400px) {
}

/* Stripe-a: Kto sme + Historia firmy + FAQ + CTA */
.stripe-a {
  padding: var(--section-pad) 0;
  background: #eceef2;
}

.stripe-a-container {
  width: min(var(--container), calc(100% - 48px));
  margin-inline: auto;
}

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

.about-duo .float-card,
.about-duo .history-block-collapsed,
.about-duo .history-block {
  max-width: none;
  margin: 0;
}

.float-card {
  max-width: 940px;
  margin: 0 auto 20px;
  padding: 24px 24px 22px;
  background:
    linear-gradient(155deg, rgba(11, 31, 138, 0.12), rgba(11, 31, 138, 0.03)),
    #ffffff;
  border: 1px solid rgba(11, 31, 138, 0.16);
  text-align: left;
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.float-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #0b1f8a, #1f40d0);
}

.float-card-title {
  margin: 0 0 12px;
  font-size: var(--fs-h3);
  line-height: 1.05;
  letter-spacing: -0.7px;
  font-weight: 800;
  color: #101018;
}

.float-card-text {
  margin: 0;
  color: #212133;
  line-height: 1.7;
  font-size: var(--fs-body);
  font-weight: 600;
  max-width: 92ch;
}

.history-block-collapsed {
  max-width: 940px;
  margin: 18px auto 0;
  padding: 24px 24px 22px;
  background:
    linear-gradient(155deg, rgba(11, 31, 138, 0.12), rgba(11, 31, 138, 0.03)),
    #ffffff;
  border: 1px solid rgba(11, 31, 138, 0.16);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.history-block-collapsed::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #0b1f8a, #1f40d0);
}

.history-block-collapsed .history-text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: #212133;
  max-width: 92ch;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.history-block {
  max-width: 940px;
  margin: 18px auto 0;
  padding: 24px 24px 22px;
  background:
    linear-gradient(155deg, rgba(11, 31, 138, 0.12), rgba(11, 31, 138, 0.03)),
    #ffffff;
  border: 1px solid rgba(11, 31, 138, 0.16);
  box-shadow: var(--shadow-soft);
  position: relative;
  overflow: hidden;
}

.history-block::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 8px;
  background: linear-gradient(180deg, #0b1f8a, #1f40d0);
}

.history-kicker {
  margin: 0 0 6px;
  font-size: var(--fs-h6);
  font-weight: 800;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #0b1f8a;
}

.history-title {
  margin: 0 0 12px;
  font-size: var(--fs-h3);
  line-height: 1.05;
  letter-spacing: -0.7px;
  font-weight: 800;
  color: #101018;
}

.history-text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.7;
  color: #212133;
  max-width: 92ch;
}

.history-block.is-collapsed .history-text {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.history-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  border: 0;
  background: transparent;
  color: #0b1f8a;
  padding: 0;
  font-size: var(--fs-body);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  cursor: pointer;
}

.history-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 6px;
  border: 0;
  background: transparent;
  color: #0b1f8a;
  padding: 0;
  font-size: var(--fs-body);
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-thickness: 1.5px;
  cursor: pointer;
}

.history-toggle-icon {
  display: inline-block;
  transition: transform 0.2s ease;
}

.history-toggle-btn[aria-expanded="true"] .history-toggle-icon {
  transform: rotate(180deg);
}

.faq-block-main {
  margin: 50px auto 0;
  max-width: 900px;
}

.faq-block {
  margin: 18px auto 0;
  max-width: 900px;
}

.faq-title {
  margin: 0 0 18px;
  text-align: center;
  font-size: var(--fs-h4);
  font-weight: 800;
  color: #111;
  letter-spacing: -0.4px;
}

.faq-item {
  background: linear-gradient(180deg, #ffffff, #fcfdff);
  border: 1px solid var(--line);
  border-left: 6px solid #6d7486;
  box-shadow: var(--shadow-soft);
  padding: 16px 18px;
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-question {
  margin: 0 0 8px;
  font-size: var(--fs-h5);
  font-weight: 800;
  color: #101018;
}

.faq-answer {
  margin: 0;
  font-size: var(--fs-body-sm);
  line-height: 1.6;
  color: #2a2a33;
}

.cta-band-main {
  max-width: 640px;
  margin: 34px auto 0;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  padding: 36px 22px 26px;
  text-align: center;
  box-shadow: 0 18px 30px rgba(7, 20, 79, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-band {
  max-width: 640px;
  margin: 34px auto 0;
  background: linear-gradient(135deg, var(--brand-1), var(--brand-2));
  color: #fff;
  padding: 36px 22px 26px;
  text-align: center;
  box-shadow: 0 18px 30px rgba(7, 20, 79, 0.28);
  border: 1px solid rgba(255, 255, 255, 0.22);
}

.cta-band-inner-main {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: var(--fs-h3);
  letter-spacing: -0.5px;
  color: #ffffff;
}

.cta-band-title {
  margin: 0 0 10px;
  font-weight: 800;
  font-size: var(--fs-h3);
  letter-spacing: -0.5px;
  color: #ffffff;
}

.cta-band-text {
  margin: 0;
  font-size: var(--fs-body);
  line-height: 1.55;
  opacity: 0.96;
  color: #ffffff;
}

.cta-link-btn-main {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0b1f8a;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 900;
  font-size: var(--fs-btn);
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(7, 20, 79, 0.24);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.cta-link-btn {
  margin-top: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: #0b1f8a;
  padding: 12px 22px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  font-weight: 900;
  font-size: var(--fs-btn);
  letter-spacing: 0.2px;
  cursor: pointer;
  box-shadow: 0 12px 22px rgba(7, 20, 79, 0.24);
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease;
}

.cta-link-btn-main:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 25px rgba(7, 20, 79, 0.3);
  background: #f4f6ff;
  color: #0b1f8a;
}

.cta-link-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 15px 25px rgba(7, 20, 79, 0.3);
  background: #f4f6ff;
  color: #0b1f8a;
}

/* Stripe-a: Kto sme + Historia firmy + FAQ + CTA - responsive */
@media (max-width: 1440px) {
  .stripe-a-container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
  }
}

@media (max-width: 980px) {
  :root {
    --section-pad: 48px;
  }

  .about-duo {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  :root {
    --section-pad: 40px;
  }

  .float-card {
    padding: 20px 16px 18px;
  }

  .history-block-collapsed {
    padding: 20px 16px 18px;
  }

  .cta-band-main {
    padding: 28px 16px 22px;
    margin-top: 28px;
  }

  .cta-band {
    padding: 28px 16px 22px;
  }

  .faq-block-main {
    margin-top: 40px;
  }
}

@media (max-width: 560px) {
  :root {
    --section-pad: 32px;
  }

  .cta-link-btn-main {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .stripe-a-container {
    width: calc(100% - 20px);
  }
}

/* Sekcia Preco s nami (features) */
.section-features {
  padding: var(--section-pad) 0;
  background:
    radial-gradient(
      140% 110% at 8% 0%,
      rgba(31, 64, 208, 0.14) 0%,
      rgba(31, 64, 208, 0.02) 46%,
      rgba(255, 255, 255, 0) 72%
    ),
    linear-gradient(180deg, #eef2f9 0%, #e6ecf7 100%);
}

.section-features-container {
  width: 100%;
}

.section-title {
  margin: 0 0 16px;
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
}

.section-title-features {
  margin: 0 0 16px;
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
}

.section-lead {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 80ch;
  line-height: 1.8;
  font-weight: 600;
  color: var(--ink-muted);
  font-size: var(--fs-lead);
}

.section-lead-features {
  margin: 0 auto 40px;
  text-align: center;
  max-width: 76ch;
  line-height: 1.8;
  font-weight: 600;
  color: var(--ink-muted);
  font-size: var(--fs-lead);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
}

.feature-grid-main {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 18px;
  width: 95%;
  margin: auto;
  row-gap: 18px;
  column-gap: 18px;
}

.feature-card {
  background: linear-gradient(180deg, #ffffff, #fbfcff);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  padding: 28px 22px;
  text-align: center;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.feature-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.feature-icon {
  font-size: var(--fs-icon-lg);
  margin-bottom: 10px;
}

.feature-title {
  margin: 0 0 8px;
  font-size: var(--fs-h5);
  font-weight: 900;
}

.feature-text {
  margin: 0 auto;
  max-width: 30ch;
  font-size: var(--fs-body-xs);
  font-weight: 700;
  color: #2a2a33;
  line-height: 1.5;
}

/* Zachovane pomocne styles pre logo wall blok */
.section-logos {
  background: #f4f4f4;
}

.section-logos-container {
  width: 100%;
}

.logo-wall {
  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);
}

/* Sekcia Preco s nami (features) - responsive */
@media (max-width: 1440px) {
  .section-features-container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
  }

  .section-logos-container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
  }
}

@media (max-width: 1100px) {
  .feature-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    margin-bottom: 40px;
  }
}

@media (max-width: 980px) {
  .section-features {
    padding: var(--section-pad) 0;
  }

  .section-team {
    padding: var(--section-pad) 0;
  }
}

@media (max-width: 720px) {
  .section-features {
    padding: var(--section-pad) 0;
  }

  .section-lead-features {
    margin-bottom: 28px;
    line-height: 1.7;
  }

  .feature-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .feature-card {
    padding: 10px;
  }
}

@media (max-width: 560px) {
  .feature-card {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .section-features-container {
    width: calc(100% - 20px);
  }

  .section-logos-container {
    width: calc(100% - 20px);
  }
}

/* Sekcia Nas tim */
.section-team {
  padding: var(--section-pad) 0;
  background: #fff;
}

.section-team-container {
  width: 100%;
}

.section-title-team {
  margin: 0 0 16px;
  text-align: center;
  font-size: var(--fs-h2);
  font-weight: 800;
  letter-spacing: -0.6px;
  color: var(--ink);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 30px;
}

.team-grid-main {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px 20px;
  margin-top: 30px;
}

.team-card {
  text-align: center;
}

.avatar {
  width: 140px;
  height: 140px;
  margin: 0 auto 12px;
  background: linear-gradient(145deg, #d9dce6, #c6cad7);
  border: 1px solid rgba(15, 23, 54, 0.12);
}

.team-title {
  margin: 0 0 8px;
  font-size: var(--fs-h6);
  font-weight: 900;
}

.team-text {
  margin: 0 auto;
  max-width: 34ch;
  font-size: var(--fs-body-xs);
  line-height: 1.55;
  color: #2a2a33;
  font-weight: 600;
}

/* Sekcia Nas tim - responsive */
@media (max-width: 1440px) {
  .section-team-container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto;
  }
}

@media (max-width: 1100px) {
  .team-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .section-team {
    padding: var(--section-pad) 0;
  }
}

@media (max-width: 720px) {
  .section-team {
    padding: var(--section-pad) 0;
  }

  .team-grid-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 24px;
  }
}

@media (max-width: 560px) {
  .team-text {
    line-height: 1.65;
  }
}

@media (max-width: 400px) {
  .section-team-container {
    width: calc(100% - 20px);
  }
}

/* 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);
  border-radius: 50%;
  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);
}
.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;
  }
}
