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

/* ===== ZMIENNE ===== */
:root {
  --color-primary: #2563eb;
  --color-bg: #ffffff;
  --color-text: #1f2937;
  --font-main: "Segoe UI", system-ui, -apple-system, sans-serif;
  color-scheme: light only;
}

/* ===== BAZOWE ===== */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: linear-gradient(
    to bottom,
    rgba(6, 13, 32, 0.85) 0%,
    rgba(6, 13, 32, 0.55) 70%,
    rgba(6, 13, 32, 0) 100%
  );
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}

.site-header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 0.85rem 2rem;
}

.site-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-logo img {
  height: 56px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
  flex: 1;
  flex-wrap: wrap;
}

.site-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #ffffff;
  text-decoration: none;
  opacity: 0.85;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.site-nav a:hover {
  opacity: 1;
  text-decoration: none;
}

.site-nav a.is-active {
  position: relative;
  opacity: 1;
  color: #ffffff;
}

.site-nav a.is-active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -6px;
  height: 2px;
  background: #c2410c;
  border-radius: 2px;
}

.site-header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-shrink: 0;
  margin-left: auto;
}

/* Bardzo wyraźny przycisk Facebook */
.fb-button {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #1877f2;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  padding: 0.65rem 1.3rem;
  border-radius: 999px;
  box-shadow:
    0 4px 14px rgba(24, 119, 242, 0.55),
    0 0 0 2px rgba(255, 255, 255, 0.15) inset;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  white-space: nowrap;
  animation: fb-pulse 2.6s ease-in-out infinite;
}

.fb-button:hover {
  background: #1565d8;
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 20px rgba(24, 119, 242, 0.7),
    0 0 0 2px rgba(255, 255, 255, 0.25) inset;
  text-decoration: none;
}

.fb-button svg {
  flex-shrink: 0;
}

@keyframes fb-pulse {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(24, 119, 242, 0.55),
      0 0 0 2px rgba(255, 255, 255, 0.15) inset;
  }
  50% {
    box-shadow:
      0 4px 22px rgba(24, 119, 242, 0.85),
      0 0 0 2px rgba(255, 255, 255, 0.3) inset;
  }
}

/* Bardzo wyraźny przycisk Contact (inna kolorystyka niż Facebook) */
.contact-button {
  display: flex !important;
  align-items: center;
  gap: 0.55rem;
  background: linear-gradient(135deg, #f59e0b, #c2410c);
  color: #ffffff !important;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: none;
  letter-spacing: normal;
  text-decoration: none;
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  opacity: 1 !important;
  box-shadow:
    0 4px 14px rgba(194, 65, 12, 0.55),
    0 0 0 2px rgba(255, 255, 255, 0.15) inset;
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
  white-space: nowrap;
  animation: contact-pulse 2.6s ease-in-out infinite;
}

.contact-button:hover {
  background: linear-gradient(135deg, #fbbf24, #c2410c);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    0 8px 20px rgba(194, 65, 12, 0.75),
    0 0 0 2px rgba(255, 255, 255, 0.25) inset;
  text-decoration: none;
}

.contact-button svg {
  flex-shrink: 0;
}

.contact-button.is-active {
  box-shadow:
    0 4px 14px rgba(194, 65, 12, 0.55),
    0 0 0 2px #ffffff inset;
  animation: none;
}

@keyframes contact-pulse {
  0%,
  100% {
    box-shadow:
      0 4px 14px rgba(194, 65, 12, 0.55),
      0 0 0 2px rgba(255, 255, 255, 0.15) inset;
  }
  50% {
    box-shadow:
      0 4px 22px rgba(194, 65, 12, 0.85),
      0 0 0 2px rgba(255, 255, 255, 0.3) inset;
  }
}

/* Hamburger (mobile) */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  transition:
    transform 0.25s,
    opacity 0.25s;
}

.nav-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 1100px) {
  body.nav-open {
    overflow: hidden;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: -100%;
    bottom: 0;
    width: min(320px, 80vw);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1.75rem;
    background: #0b1730;
    padding: 2rem;
    transition: right 0.3s ease;
    box-shadow: -8px 0 24px rgba(0, 0, 0, 0.35);
    z-index: 250;
  }

  .site-nav.is-open {
    right: 0;
  }

  .site-nav.is-open::before {
    content: "";
    position: fixed;
    inset: 0;
    right: min(320px, 80vw);
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
  }

  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 260;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 8px;
  }

  .fb-button span,
  .contact-button span {
    display: none;
  }

  .fb-button,
  .contact-button {
    padding: 0.65rem;
  }
}

@media (min-width: 1101px) {
  .nav-toggle {
    display: none;
  }
}

@media (max-width: 480px) {
  .site-header-inner {
    padding: 0.7rem 1.25rem;
  }

  .site-logo img {
    height: 44px;
  }
}

/* ===== SLOGAN ===== */
.slogan-bar {
  position: relative;
  background: linear-gradient(135deg, #0f172a 0%, #1d3f7a 100%);
  padding: 4.5rem 2rem;
  text-align: center;
  overflow: hidden;
}

.slogan-bar::before,
.slogan-bar::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 120px;
  height: 1px;
  background: rgba(245, 166, 35, 0.5);
  transform: translateY(-50%);
}

.slogan-bar::before {
  left: calc(50% - 260px);
}

.slogan-bar::after {
  right: calc(50% - 260px);
}

.slogan-text {
  font-size: clamp(1.4rem, 3.4vw, 2.4rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #ffffff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.4;
}

.slogan-text .slogan-accent {
  color: #f5a623;
}

@media (max-width: 700px) {
  .slogan-bar {
    padding: 3rem 1.5rem;
  }

  .slogan-bar::before,
  .slogan-bar::after {
    display: none;
  }
}

/* ===== HERO ===== */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-title {
  font-size: clamp(2.2rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 2rem;
}

.hero-btn {
  display: inline-block;
  padding: 0.75rem 2.5rem;
  border: 2px solid #ffffff;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition:
    background 0.3s,
    color 0.3s;
}

.hero-btn:hover {
  background: #ffffff;
  color: #000000;
  text-decoration: none;
}

/* ===== PARTNERS ===== */
.partners {
  background: #ffffff;
  padding: 5rem 2rem;
}

.partners-inner {
  display: flex;
  align-items: center;
  gap: 4rem;
  max-width: 1200px;
  margin: 0 auto;
}

.partners-left {
  flex: 0 0 340px;
}

.partners-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 1.5rem;
}

.partners-text {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.partners-logos {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.partner-logo {
  background: #f8f9fb;
  border: 1px solid #e7eaf0;
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(15, 23, 42, 0.05);
  padding: 1.5rem 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.partner-logo:hover {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.1);
  transform: translateY(-3px);
}

.partner-logo svg,
.partner-logo img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 900px) {
  .partners-inner {
    flex-direction: column;
    gap: 2.5rem;
  }

  .partners-left {
    flex: none;
    width: 100%;
    text-align: center;
  }

  .partners-logos {
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .partners-logos {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
  }
}

/* ===== NEWS ===== */
.news {
  background: #f5f6f8;
  padding: 5rem 2rem;
}

.news-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.news-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 2.5rem;
}

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

.news-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.09);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.news-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
  transform: translateY(-4px);
}

.news-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.news-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.news-card:hover .news-card-img img {
  transform: scale(1.05);
}

.news-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.news-date {
  font-size: 0.8rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.news-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d3f7a;
  line-height: 1.4;
  margin-bottom: 0.75rem;
}

.news-excerpt {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.75;
  flex: 1;
  margin-bottom: 1.25rem;
}

.news-btn {
  display: inline-block;
  align-self: flex-start;
  padding: 0.55rem 1.4rem;
  border: 2px solid #1d3f7a;
  color: #1d3f7a;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 4px;
  transition:
    background 0.25s,
    color 0.25s;
}

.news-btn:hover {
  background: #1d3f7a;
  color: #ffffff;
  text-decoration: none;
}

.news-footer {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.news-view-all {
  display: inline-block;
  background: #1d3f7a;
  color: #ffffff;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  padding: 0.85rem 2.5rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(29, 63, 122, 0.25);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.news-view-all:hover {
  background: #15315f;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(29, 63, 122, 0.35);
  text-decoration: none;
}

@media (max-width: 960px) {
  .news-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== WORLDWIDE ===== */
.world {
  background: #060d20;
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

.world-bg-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.world-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(
    160deg,
    rgba(6, 13, 32, 0.55) 0%,
    rgba(6, 13, 32, 0.42) 45%,
    rgba(6, 13, 32, 0.62) 100%
  );
}

.world-inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.world-header {
  margin-bottom: 3rem;
}

.world-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 0.75rem;
}

.world-subheading {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.78);
  max-width: 650px;
  line-height: 1.7;
}

.world-stats {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-top: 2.25rem;
}

.world-stat {
  display: flex;
  flex-direction: column;
}

.world-stat-number {
  font-size: clamp(2.75rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1;
  color: #ffffff;
  letter-spacing: -0.02em;
}

.world-stat-plus {
  font-size: 0.5em;
  font-weight: 700;
  color: #6ea0ff;
  vertical-align: top;
  margin-left: 0.1em;
}

.world-stat-label {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: rgba(255, 255, 255, 0.6);
}

.world-stat-divider {
  width: 1px;
  height: 56px;
  background: linear-gradient(
    to bottom,
    transparent,
    rgba(255, 255, 255, 0.35),
    transparent
  );
}

@media (max-width: 480px) {
  .world-stats {
    gap: 1.5rem;
  }

  .world-stat-divider {
    height: 44px;
  }
}

.world-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1.25rem;
}

.country-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  will-change: transform;
  background: linear-gradient(
    160deg,
    rgba(255, 255, 255, 0.12) 0%,
    rgba(255, 255, 255, 0.04) 55%,
    rgba(255, 255, 255, 0.01) 100%
  );
  backdrop-filter: blur(5px) saturate(115%);
  -webkit-backdrop-filter: blur(5px) saturate(115%);
  border-radius: 14px;
  padding: 1.75rem 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.45);
  transition:
    transform 0.25s,
    box-shadow 0.25s,
    border-color 0.25s;
}

.country-card::before {
  content: "";
  position: absolute;
  top: -60%;
  left: -25%;
  width: 55%;
  height: 220%;
  background: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0.3) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  transform: rotate(20deg);
  pointer-events: none;
}

.country-card:hover {
  transform: translateY(-4px) translateZ(0);
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 14px 32px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.country-card-flag {
  position: relative;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow:
    0 2px 6px rgba(0, 0, 0, 0.35),
    0 0 0 2px rgba(255, 255, 255, 0.25);
}

.country-card-name {
  position: relative;
  font-size: 0.9rem;
  font-weight: 600;
  color: #ffffff;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
}

@media (max-width: 900px) {
  .world-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 560px) {
  .world-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
  }

  .country-card {
    padding: 1.25rem 0.5rem;
  }

  .country-card-flag {
    width: 2.25rem;
    height: 2.25rem;
  }
}

/* ===== PROCESS ===== */
.process {
  background: #ffffff;
  padding: 5rem 2rem;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.process-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 2.75rem;
}

.process-heading-accent {
  color: #c2410c;
}

.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
}

.process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #c2410c;
  flex-shrink: 0;
}

.process-arrow svg {
  width: 28px;
  height: 28px;
}

.process-card {
  position: relative;
  background: #ffffff;
  border-radius: 14px;
  padding: 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #eef1f5;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.process-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(29, 63, 122, 0.14);
}

.process-number {
  font-size: 2.75rem;
  font-weight: 800;
  line-height: 1;
  color: #1d3f7a;
  opacity: 0.9;
}

.process-card-title {
  font-size: 0.98rem;
  font-weight: 700;
  color: #1d3f7a;
  line-height: 1.4;
  margin-top: 0.4rem;
}

.process-card-text {
  font-size: 0.88rem;
  color: #4b5563;
  line-height: 1.65;
}

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

  .process-arrow svg {
    transform: rotate(90deg);
  }
}

@media (max-width: 560px) {
  .process {
    padding: 3.5rem 1.5rem;
  }
}

/* ===== VIDEO ===== */
.video-section {
  background: #f0f2f5;
  padding: 5rem 2rem;
}

.video-inner {
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.video-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 1rem;
}

.video-subheading {
  font-size: 1rem;
  color: #4b5563;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  line-height: 1.7;
}

.video-frame {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.18);
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

@media (max-width: 560px) {
  .video-section {
    padding: 3.5rem 1.25rem;
  }
}

/* ===== FOOTER ===== */
.footer {
  background: #060d20;
  padding: 2.25rem 2rem 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-brand {
  flex: 0 0 260px;
}

.footer-logo-img {
  display: block;
  height: 63px;
  width: auto;
}

.footer-tagline {
  margin-top: 0.6rem;
  font-size: 0.8rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.55);
  max-width: 260px;
}

.footer-slogan {
  margin-top: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.7);
}

.footer-slogan .slogan-accent {
  color: #f5a623;
}

.footer-address {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  font-style: normal;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.5);
}

.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 0.85rem;
}

.footer-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition:
    background 0.25s,
    transform 0.25s;
}

.footer-social-link:hover {
  background: var(--color-primary);
  transform: translateY(-2px);
  text-decoration: none;
}

.footer-links {
  display: flex;
  gap: 2.25rem;
  flex: 1;
  justify-content: flex-end;
}

.footer-col-title {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0.6rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer-col a {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col a:hover {
  color: #ffffff;
  text-decoration: underline;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  padding: 0.9rem 0;
}

.footer-copyright {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
}

.footer-legal {
  list-style: none;
  display: flex;
  gap: 1.5rem;
}

.footer-legal a {
  font-size: 0.74rem;
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-legal a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 800px) {
  .footer-top {
    flex-direction: column;
    gap: 1.5rem;
  }

  .footer-brand {
    flex: none;
  }

  .footer-links {
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 1.75rem;
  }
}

@media (max-width: 480px) {
  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ===== RIDE PAGE (np. Autoscooter) ===== */

/* Photo gallery (grid + lightbox) — used on Dark Ride */
.ride-gallery {
  background: #f8f9fb;
  padding: 4.5rem 2rem;
}

.ride-gallery-inner {
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

.ride-gallery-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.75rem;
}

.ride-gallery-subheading {
  font-size: 0.95rem;
  color: #6b7280;
  margin-bottom: 2.5rem;
}

.ride-gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.9rem;
}

.ride-gallery-item {
  position: relative;
  aspect-ratio: 4 / 3;
  border: none;
  border-radius: 10px;
  overflow: hidden;
  padding: 0;
  cursor: pointer;
  background: #e5e7eb;
}

.ride-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.35s ease;
}

.ride-gallery-item:hover img {
  transform: scale(1.06);
}

@media (max-width: 900px) {
  .ride-gallery-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .ride-gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
  }

  .ride-gallery {
    padding: 3rem 1.25rem;
  }
}

/* Lightbox */
.ride-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(5, 8, 16, 0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}

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

.ride-lightbox-img {
  max-width: 88vw;
  max-height: 84vh;
  border-radius: 6px;
  box-shadow: 0 12px 48px rgba(0, 0, 0, 0.5);
}

.ride-lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ride-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ride-lightbox-close svg {
  width: 22px;
  height: 22px;
}

.ride-lightbox-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
}

.ride-lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.2);
}

.ride-lightbox-arrow svg {
  width: 26px;
  height: 26px;
}

.ride-lightbox-arrow--prev {
  left: 1.25rem;
}

.ride-lightbox-arrow--next {
  right: 1.25rem;
}

.ride-lightbox-counter {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

@media (max-width: 600px) {
  .ride-lightbox-arrow {
    width: 42px;
    height: 42px;
  }

  .ride-lightbox-arrow--prev {
    left: 0.5rem;
  }

  .ride-lightbox-arrow--next {
    right: 0.5rem;
  }
}

.ride-slider {
  position: relative;
  width: 100%;
  height: 90vh;
  min-height: 560px;
  max-height: 980px;
  overflow: hidden;
  background: #0f1320;
}

.ride-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.ride-slide.is-active {
  opacity: 1;
}

.ride-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.ride-slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(6, 13, 32, 0.55);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 5;
  transition:
    background 0.2s,
    transform 0.2s;
}

.ride-slider-arrow svg {
  width: 20px;
  height: 20px;
}

.ride-slider-arrow:hover {
  background: rgba(194, 65, 12, 0.85);
}

.ride-slider-arrow--prev {
  left: 1.25rem;
}

.ride-slider-arrow--next {
  right: 1.25rem;
}

.ride-slider-dots {
  position: absolute;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.6rem;
  z-index: 5;
}

.ride-slider-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  padding: 0;
  transition:
    background 0.2s,
    transform 0.2s;
}

.ride-slider-dot.is-active {
  background: #ffffff;
  transform: scale(1.25);
}

.ride-intro {
  background: #ffffff;
  padding: 9rem 2rem 1rem;
}

.ride-intro-inner {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.ride-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.ride-subtitle {
  margin-top: 0.6rem;
  font-size: 1rem;
  font-weight: 600;
  color: #6b7280;
  letter-spacing: 0.06em;
}

.ride-about {
  background: #ffffff;
  padding: 2rem 2rem 5rem;
}

.ride-about-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ride-about-heading {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
}

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

.ride-about-text {
  display: flex;
  flex-direction: column;
}

.ride-description {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2rem;
}

.ride-about-image {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.ride-about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.ride-cta {
  display: inline-block;
  align-self: flex-start;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  padding: 0.85rem 2.25rem;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(37, 99, 235, 0.35);
  transition:
    transform 0.2s,
    box-shadow 0.2s,
    background 0.2s;
}

.ride-cta:hover {
  background: #1d4fd1;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(37, 99, 235, 0.45);
  text-decoration: none;
}

@media (max-width: 800px) {
  .ride-about-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .ride-about-text {
    align-items: center;
    text-align: center;
  }

  .ride-cta {
    align-self: center;
  }
}

.ride-highlights {
  background: #ffffff;
  padding: 3rem 2rem 5rem;
}

.ride-specs {
  background: #f8fafc;
  padding: 1rem 2rem 4rem;
}

.ride-specs-inner {
  max-width: 760px;
  margin: 0 auto;
}

.ride-specs-heading {
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 2rem;
  text-align: center;
}

.specs-table {
  width: 100%;
  border-collapse: collapse;
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.07);
}

.specs-table tr {
  border-bottom: 1px solid #eef1f5;
}

.specs-table tr:last-child {
  border-bottom: none;
}

.specs-table th {
  width: 42%;
  text-align: left;
  vertical-align: top;
  padding: 1rem 1.5rem;
  background: #f3f6fb;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #1d3f7a;
}

.specs-table td {
  padding: 1rem 1.5rem;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.5;
}

.specs-note {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.78rem;
  color: #9ca3af;
}

@media (max-width: 600px) {
  .specs-table,
  .specs-table tbody,
  .specs-table tr,
  .specs-table th,
  .specs-table td {
    display: block;
    width: 100%;
  }

  .specs-table th {
    padding-bottom: 0.35rem;
  }

  .specs-table td {
    padding-top: 0;
    padding-bottom: 1.1rem;
  }
}

.ride-highlights-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ride-highlight-card {
  background: #ffffff;
  border-radius: 12px;
  padding: 1.5rem 1rem;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  border: 1px solid #e7ebf2;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.ride-highlight-label {
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #9ca3af;
}

.ride-highlight-value {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1d3f7a;
}

@media (max-width: 900px) {
  .ride-highlights-inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .ride-slider {
    height: 60vh;
    min-height: 380px;
  }

  .ride-slider-arrow {
    width: 38px;
    height: 38px;
  }
}

/* ===== RIDE FEATURES (zdjęcia + tekst na przemian) ===== */
.ride-features {
  background: #f8fafc;
  padding: 5rem 2rem;
}

.ride-features-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.ride-features-heading {
  font-size: clamp(1.75rem, 3vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: center;
  margin-bottom: 3.5rem;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 4rem;
}

.feature-row:last-child {
  margin-bottom: 0;
}

.feature-row:nth-child(odd) {
  flex-direction: row-reverse;
}

.feature-media {
  flex: 1 1 50%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  aspect-ratio: 16 / 10;
}

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

.feature-row:hover .feature-media img {
  transform: scale(1.04);
}

.feature-text {
  flex: 1 1 50%;
}

.feature-text h3 {
  font-size: 1.3rem;
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-bottom: 0.75rem;
}

.feature-text p {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.75;
}

@media (max-width: 800px) {
  .feature-row,
  .feature-row:nth-child(odd) {
    flex-direction: column;
  }

  .feature-row {
    gap: 1.25rem;
    margin-bottom: 3rem;
  }

  .feature-media {
    width: 100%;
  }
}

/* ===== CONTACT PAGE ===== */
.contact-intro {
  background: #ffffff;
  padding: 9rem 2rem 1rem;
  text-align: center;
}

.contact-intro-inner {
  max-width: 700px;
  margin: 0 auto;
}

.contact-title {
  font-size: clamp(2.25rem, 5vw, 3.25rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1rem;
}

.contact-subtitle {
  font-size: 1rem;
  color: #4b5563;
  line-height: 1.7;
}

.contact-main {
  background: #ffffff;
  padding: 2.5rem 2rem 5rem;
}

.contact-main-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.contact-card {
  background: #f8fafc;
  border: 1px solid #e7ebf2;
  border-radius: 14px;
  padding: 2rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(29, 63, 122, 0.1);
}

.contact-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(29, 63, 122, 0.08);
  color: #1d3f7a;
  margin-bottom: 0.5rem;
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
}

.contact-card-title {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: #9ca3af;
}

.contact-card-text {
  font-size: 1rem;
  font-weight: 600;
  font-style: normal;
  color: #1d3f7a;
  line-height: 1.6;
}

.contact-card-text a {
  color: #1d3f7a;
  text-decoration: none;
}

.contact-card-text a:hover {
  text-decoration: underline;
}

.contact-phone-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  width: 100%;
}

.contact-phone-list li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  row-gap: 0.35rem;
  font-size: 0.95rem;
  font-weight: 600;
}

.contact-phone-list a {
  color: #1d3f7a;
  text-decoration: none;
}

.contact-phone-list a:hover {
  text-decoration: underline;
}

.contact-phone-flag {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
}

.contact-phone-flags {
  display: inline-flex;
  gap: 0.3rem;
  flex-shrink: 0;
}

.contact-phone-flag-icon {
  width: 1.3rem;
  height: 1.3rem;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.1);
  display: block;
}

.whatsapp-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.whatsapp-link svg {
  width: 22px;
  height: 22px;
  display: block;
}

.contact-map {
  width: 100%;
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

@media (max-width: 800px) {
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .contact-map {
    height: 320px;
  }
}

/* ===== ARTICLE PAGE ===== */
.article {
  background: #ffffff;
  padding: 8.5rem 2rem 5rem;
}

.article-inner {
  max-width: 760px;
  margin: 0 auto;
}

.article-back {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #1d3f7a;
  text-decoration: none;
  margin-bottom: 1.5rem;
}

.article-back:hover {
  text-decoration: underline;
}

.article-back--bottom {
  margin-top: 2.5rem;
  margin-bottom: 0;
}

.article-date {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: #9ca3af;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 0.6rem;
}

.article-title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: #1d3f7a;
  line-height: 1.3;
  margin-bottom: 2rem;
}

.article-image {
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  margin-bottom: 2.25rem;
}

.article-image img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  max-height: 460px;
}

.article-body p {
  font-size: 1rem;
  color: #374151;
  line-height: 1.85;
  margin-bottom: 1.4rem;
}

.article-body p:last-child {
  margin-bottom: 0;
}

.article-body .ride-gallery-grid {
  margin: 0.5rem 0 1.75rem;
}

.article-video {
  position: relative;
  width: 100%;
  max-width: 360px;
  margin: 0.5rem auto 1.75rem;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  background: #000;
}

.article-video video {
  display: block;
  width: 100%;
  height: auto;
  max-height: 640px;
}

/* ===== OTHER PRODUCTS PAGE ===== */
.products-section {
  background: #f8fafc;
  padding: 1rem 2rem 5rem;
}

.products-inner {
  max-width: 1200px;
  margin: 0 auto;
}

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

.product-card {
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}

.product-card:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.14);
  transform: translateY(-4px);
}

.product-card-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #1d3f7a;
  margin-bottom: 0.6rem;
}

.product-card-text {
  font-size: 0.9rem;
  color: #4b5563;
  line-height: 1.7;
  flex: 1;
  margin-bottom: 1.25rem;
}

@media (max-width: 960px) {
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===== LEGAL PAGES (Privacy Policy itp.) ===== */
.legal-page {
  background: #ffffff;
  padding: 3.5rem 2rem 5rem;
}

.legal-inner {
  max-width: 780px;
  margin: 0 auto;
}

.legal-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #1d3f7a;
  margin-bottom: 0.4rem;
}

.legal-updated {
  font-size: 0.82rem;
  color: #9ca3af;
  margin-bottom: 2rem;
}

.legal-lead {
  font-size: 1rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #eef1f5;
}

.legal-inner h2 {
  font-size: 1.15rem;
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-top: 2.25rem;
  margin-bottom: 0.75rem;
}

.legal-inner p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.legal-inner ul {
  padding-left: 1.5rem;
  margin-bottom: 1rem;
}

.legal-inner ul li {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.5rem;
}

.legal-inner a {
  color: #1d3f7a;
  text-decoration: underline;
}

.legal-inner a:hover {
  color: #c2410c;
}

.legal-address {
  font-style: normal;
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.8;
  background: #f8fafc;
  border-left: 3px solid #1d3f7a;
  padding: 1rem 1.25rem;
  border-radius: 0 8px 8px 0;
  margin: 1rem 0 1.5rem;
}

.legal-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0 1.5rem;
  font-size: 0.88rem;
}

.legal-table th {
  background: #1d3f7a;
  color: #ffffff;
  text-align: left;
  padding: 0.75rem 1rem;
  font-weight: 700;
}

.legal-table td {
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #eef1f5;
  color: #374151;
  line-height: 1.6;
  vertical-align: top;
}

.legal-table tr:nth-child(even) td {
  background: #f8fafc;
}

@media (max-width: 600px) {
  .legal-table,
  .legal-table thead,
  .legal-table tbody,
  .legal-table th,
  .legal-table td,
  .legal-table tr {
    display: block;
  }

  .legal-table th:first-child {
    border-radius: 8px 8px 0 0;
  }

  .legal-table td {
    border-bottom: none;
    padding: 0.5rem 1rem;
  }

  .legal-table tr {
    border-bottom: 1px solid #eef1f5;
    margin-bottom: 0.5rem;
  }
}

/* ===== PRIVACY POLICY PAGE ===== */
.policy {
  background: #ffffff;
  padding: 9.5rem 2rem 6rem;
}

.policy-inner {
  max-width: 820px;
  margin: 0 auto;
}

.policy-title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 800;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 1.5rem;
}

.policy-intro {
  font-size: 0.95rem;
  color: #4b5563;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid #e7ebf2;
}

.policy-section {
  margin-bottom: 2.25rem;
  padding-bottom: 2.25rem;
  border-bottom: 1px solid #f3f4f6;
}

.policy-section:last-child {
  border-bottom: none;
}

.policy-section h2 {
  font-size: 1rem;
  font-weight: 700;
  color: #1d3f7a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.85rem;
}

.policy-section p {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 0.75rem;
}

.policy-section p:last-child {
  margin-bottom: 0;
}

.policy-section ul {
  margin: 0.75rem 0 0.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.policy-section ul li {
  font-size: 0.95rem;
  color: #374151;
  line-height: 1.7;
}

.policy-section a {
  color: #1d3f7a;
  font-weight: 600;
}

.policy-section a:hover {
  text-decoration: underline;
}

.policy-section--meta p {
  font-size: 0.82rem;
  color: #9ca3af;
}
