* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
:root {
  --primary: #64004e;
  --primary-mid: #8b0064;
  --primary-dark: #3e0030;
  --accent: #ff8cfa;
  --accent-light: #ffe4fd;
  --accent-soft: #faf5ff;
  --border: #ece8f2;
  --gray-light: #f4f2f7;
  --gray: #aaa;
  --gray-dark: #666;
  --black: #1a1a1a;
  --white: #fff;
  --heading: 'League Spartan', sans-serif;
  --body: 'IBM Plex Serif', serif;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--white);
  color: var(--black);
  font-family: var(--body);
  font-weight: 400;
  overflow-x: hidden;
}

/* ───────────────────────────────────────────
   RESET
─────────────────────────────────────────── */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: 'IBM Plex Serif', serif;
  background: #fbf9f8;
}

/* ───────────────────────────────────────────
   MATERIAL SYMBOLS
─────────────────────────────────────────── */
.material-symbols-outlined {
  font-family: 'Material Symbols Outlined';
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  font-size: 24px;
  line-height: 1;
  display: inline-block;
  vertical-align: middle;
  user-select: none;
}

/* ───────────────────────────────────────────
   TOP NAV
─────────────────────────────────────────── */
.infosys-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 50;
  background: transparent;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.3s ease,
    box-shadow 0.3s ease,
    backdrop-filter 0.3s ease;
}
.infosys-nav-inner {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 92px;
  padding: 0 32px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
}
.infosys-nav.scrolled {
  background: rgba(255, 255, 255, 0.80);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.infosys-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}
.site-logo {
  display: block;
  width: 168px;
  height: auto;
  object-fit: contain;
  filter: brightness(0) invert(1);
  transition: filter 0.3s ease;
}
.infosys-nav.scrolled .site-logo {
  filter: none;
}
.nav-menu-button {
  width: 56px;
  height: 56px;
  border: 0;
  border-radius: 50%;
  background: #ffffff;
  color: #151841;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
  cursor: pointer;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.nav-menu-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.20);
}
.hbg-bars {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 22px;
  height: 16px;
}
.hbg-bar {
  display: block;
  width: 100%;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-menu-button.is-open .hbg-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav-menu-button.is-open .hbg-bar:nth-child(2) {
  opacity: 0;
}
.nav-menu-button.is-open .hbg-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
.nav-pill {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 4px;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease;
}
.infosys-nav.scrolled .nav-pill {
  background: rgba(0, 0, 0, 0.06);
}
.nav-pill a {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.2s ease, color 0.2s ease;
}
.nav-pill a:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #ffffff;
}
.infosys-nav.scrolled .nav-pill a {
  color: #121644;
}
.infosys-nav.scrolled .nav-pill a:hover {
  color: #64004e;
  background: rgba(100, 0, 78, 0.06);
}
.nav-action {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 24px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.10);
  color: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.18);
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.nav-action:hover {
  background: rgba(255, 255, 255, 0.20);
  color: #ffffff;
}
.infosys-nav.scrolled .nav-action {
  background: rgba(0, 0, 0, 0.06);
  color: #121644;
  border-color: rgba(0, 0, 0, 0.12);
}
.infosys-nav.scrolled .nav-action:hover {
  color: #64004e;
}

@media (max-width: 980px) {
  .infosys-nav-inner {
    min-height: 82px;
    padding: 0 20px;
    grid-template-columns: auto 1fr;
    gap: 16px;
  }
  .nav-pill,
  .nav-action {
    display: none;
  }
  .site-logo {
    width: 154px;
  }
}

/* ───────────────────────────────────────────
   HAMBURGER OVERLAY MENU
─────────────────────────────────────────── */
.hanvix-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  grid-template-columns: 320px 1fr;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hanvix-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}
.hanvix-menu-sidebar {
  position: relative;
  background: #f1f2f7;
  padding: 100px 32px 32px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.hanvix-menu-close {
  position: absolute;
  top: 28px;
  left: 18px;
  cursor: pointer;
  background: #ffffff;
  border-radius: 50%;
  border: none;
  z-index: 20;
  width: 56px;
  height: 56px;
  overflow: hidden;
  transition-duration: 500ms;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}
.hanvix-menu-close .close-text {
  font-size: 1.875rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
  line-height: 1;
  padding-bottom: 7px;
  transition-duration: 500ms;
  position: relative;
  z-index: 10;
}
.hanvix-menu-close:hover .close-text {
  transform: scale(0);
}
.hanvix-menu-close .close-span {
  position: absolute;
  width: 100%;
  height: 100%;
  transform: rotate(45deg);
  background-color: #64004e;
  transition-duration: 500ms;
}
.hanvix-menu-close .cs-t {
  top: 5rem;
  left: 0;
}
.hanvix-menu-close:hover .cs-t {
  top: 2.25rem;
}
.hanvix-menu-close .cs-l {
  top: 0;
  left: 5rem;
}
.hanvix-menu-close:hover .cs-l {
  left: 2.25rem;
}
.hanvix-menu-close .cs-r {
  top: 0;
  right: 5rem;
}
.hanvix-menu-close:hover .cs-r {
  right: 2.25rem;
}
.hanvix-menu-close .cs-b {
  bottom: 5rem;
  right: 0;
}
.hanvix-menu-close:hover .cs-b {
  bottom: 2.25rem;
}
.hanvix-menu-links {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hanvix-menu-links a {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 500;
  color: #4a4a68;
  padding: 14px 16px;
  border-radius: 10px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hanvix-menu-links a:hover {
  background: rgba(0, 0, 0, 0.04);
  color: #121644;
}
.hanvix-menu-link.active {
  background: #ffffff;
  color: #64004e;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  border-left: 4px solid #64004e;
  padding-left: 12px;
}
.hanvix-menu-links-simple {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  gap: 2px;
}
.hanvix-menu-links-simple a {
  font-size: 15px;
  font-weight: 400;
  color: #6a6a88;
  padding: 10px 16px;
}
.hanvix-menu-social {
  margin-top: auto;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  gap: 14px;
}
.hanvix-menu-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: #4a4a68;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}
.hanvix-menu-social a:hover {
  background: #64004e;
  color: #ffffff;
}
.hanvix-menu-panel {
  background: #ffffff;
  padding: 100px 56px 56px;
  overflow-y: auto;
}
.hanvix-card-section {
  display: none;
}
.hanvix-card-section.active {
  display: block;
  animation: scaleIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.hanvix-scale-out {
  display: block;
  position: absolute;
  inset: 0;
  animation: scaleOut 0.35s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes scaleOut {
  from {
    opacity: 1;
    transform: scale(1);
  }
  to {
    opacity: 0;
    transform: scale(0.96);
  }
}
.hanvix-menu-heading {
  font-family: 'League Spartan', sans-serif;
  font-size: 36px;
  font-weight: 700;
  color: #121644;
  margin-bottom: 32px;
}
.hanvix-card-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.hanvix-card {
  position: relative;
  display: block;
  height: 260px;
  border-radius: 18px;
  background-size: cover;
  background-position: center;
  background-color: #1a1a2e;
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.hanvix-card-tall {
  grid-row: span 2;
  height: 540px;
}
.hanvix-card:hover {
  transform: translateY(-4px);
}
.hanvix-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.75) 100%);
}
.hanvix-card-title {
  position: absolute;
  left: 22px;
  bottom: 50px;
  right: 22px;
  z-index: 2;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.3;
}
.hanvix-card-link {
  position: absolute;
  left: 22px;
  bottom: 18px;
  z-index: 2;
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-decoration: underline;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

@media (max-width: 980px) {
  .hanvix-menu-overlay {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }
  .hanvix-menu-sidebar {
    padding: 80px 24px 24px;
  }
  .hanvix-menu-panel {
    padding: 24px;
  }
  .hanvix-card-grid {
    grid-template-columns: 1fr;
  }
  .hanvix-card-tall {
    grid-row: span 1;
    height: 260px;
  }
}

/* ───────────────────────────────────────────
   HERO  (video, full-screen, centred — matches index.html)
─────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 60vh;
  overflow: hidden;
}
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(62, 0, 48, 0.82) 0%, rgba(0, 0, 0, 0.55) 60%, rgba(0, 0, 0, 0.30) 100%);
  z-index: 2;
}

.hero-inner {
  position: relative;
  z-index: 3;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 24px 80px;
}
.hero-content {
  width: 96%;
  max-width: 860px;
  text-align: center;
  color: #ffffff;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 24px;
  padding: 40px 64px;
  animation: fadeUp 1.4s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-tag {
  display: inline-block;
  margin-bottom: 14px;
  font-family: 'Sora', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.70);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  padding: 4px 14px;
}
.hero-legal-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Sora', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #ff8cfa;
  background: rgba(255, 140, 250, 0.12);
  border: 1px solid rgba(255, 140, 250, 0.30);
  border-radius: 999px;
  padding: 4px 14px;
  margin-bottom: 14px;
}
.hero-legal-badge::before {
  content: '⚖';
  font-size: 12px;
}
.hero h1 {
  font-family: 'League Spartan', sans-serif;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 700;
  line-height: 1.08;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}
.hero p {
  font-family: 'IBM Plex Serif', serif;
  font-size: 16px;
  line-height: 1.65;
  max-width: 680px;
  margin: 0 auto;
  opacity: 0.88;
}

@media (max-width: 768px) {
  .hero {
    min-height: 50vh;
  }
  .hero-inner {
    min-height: 50vh;
    padding: 120px 16px 56px;
  }
  .hero-content {
    padding: 28px 20px;
    border-radius: 18px;
  }
}

/* ── LAYOUT ── */
.layout {
  max-width: 760px;
  margin: 0 auto;
  padding: 3rem 2rem 6rem;
}

/* ── POLICY CONTENT ── */
.policy section {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
}
.policy section:last-child {
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}
.sec-num {
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.4rem;
  display: block;
}
.policy h2 {
  font-family: var(--heading);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 1.1rem;
  letter-spacing: -0.01em;
}
.policy h3 {
  font-family: var(--heading);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin: 1.4rem 0 0.55rem;
}
.policy p {
  font-size: 0.9rem;
  color: var(--gray-dark);
  line-height: 1.85;
  margin-bottom: 0.9rem;
  font-weight: 300;
}
.policy p:last-child {
  margin-bottom: 0;
}
.policy ul,
.policy ol {
  padding-left: 1.3rem;
  margin-bottom: 0.9rem;
}
.policy li {
  font-size: 0.88rem;
  color: var(--gray-dark);
  line-height: 1.8;
  margin-bottom: 0.3rem;
  font-weight: 300;
}
.policy li strong {
  color: var(--black);
  font-weight: 500;
}
.policy a {
  color: var(--primary);
  text-decoration: none;
}
.policy a:hover {
  text-decoration: underline;
}

/* Highlight box */
.highlight {
  background: var(--accent-soft);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 8px;
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}
.highlight p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--primary-dark);
}

/* Cookie category table */
.cookie-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  font-size: 0.82rem;
}
.cookie-table th {
  font-family: var(--heading);
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--gray-dark);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: left;
  padding: 0.6rem 0.8rem;
  border-bottom: 1px solid var(--border);
  background: var(--gray-light);
}
.cookie-table td {
  padding: 0.65rem 0.8rem;
  border-bottom: 1px solid var(--border);
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.55;
  vertical-align: top;
}
.cookie-table tr:last-child td {
  border-bottom: none;
}
.cookie-table tr:hover td {
  background: var(--accent-soft);
}
.badge-req {
  font-family: var(--heading);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--primary);
  background: var(--accent-light);
  border: 1px solid var(--accent);
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}
.badge-opt {
  font-family: var(--heading);
  font-size: 0.55rem;
  font-weight: 600;
  color: var(--gray-dark);
  background: var(--gray-light);
  border: 1px solid var(--border);
  padding: 2px 8px;
  border-radius: 50px;
  white-space: nowrap;
}

/* Rights grid */
.rights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.7rem;
  margin: 1rem 0;
}
.right-item {
  background: var(--gray-light);
  border-radius: 9px;
  padding: 0.9rem 1rem;
  border: 1px solid var(--border);
}
.right-item strong {
  font-family: var(--heading);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--black);
  display: block;
  margin-bottom: 0.3rem;
}
.right-item span {
  font-size: 0.78rem;
  color: var(--gray-dark);
  font-weight: 300;
  line-height: 1.6;
}

/* ═══════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════ */
footer {
  position: relative;
  background: linear-gradient(160deg, #4a0040 0%, #3f0030 45%, #2a0021 100%);
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
}
footer::before {
  content: '';
  position: absolute;
  top: -260px;
  right: -180px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 140, 250, 0.20), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
footer::after {
  content: '';
  position: absolute;
  bottom: -240px;
  left: -200px;
  width: 460px;
  height: 460px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 0, 100, 0.30), transparent 70%);
  pointer-events: none;
  z-index: 0;
}
.footer-top-line {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 140, 250, 0.55) 50%, transparent);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.7fr 1fr 1fr;
  gap: 48px;
  padding: 64px 0 48px;
}
.footer-brand-logo {
  display: block;
  width: 190px;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
  filter: brightness(0) invert(1);
}
.footer-col > p {
  opacity: 0.68;
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.9rem;
  line-height: 1.78;
  color: #ffffff;
  max-width: 260px;
}
.footer-socials {
  display: flex;
  gap: 10px;
  margin-top: 24px;
}
.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.footer-socials a:hover {
  background: #ff8cfa;
  border-color: #ff8cfa;
  color: #3f0030;
  transform: translateY(-3px);
  box-shadow: 0 10px 22px rgba(255, 140, 250, 0.35);
}
.footer-col h4 {
  font-family: 'Sora', sans-serif;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 14px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, #ff8cfa, rgba(255, 140, 250, 0));
}
.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.footer-col ul li a {
  color: rgba(255, 255, 255, 0.66);
  font-family: 'IBM Plex Serif', serif;
  font-size: 0.92rem;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0;
  transition: color 0.2s ease, gap 0.2s ease, padding-left 0.2s ease;
}
.footer-col ul li a::before {
  content: '→';
  display: inline-block;
  opacity: 0;
  width: 0;
  overflow: hidden;
  color: #ff8cfa;
  transition: opacity 0.2s ease, width 0.2s ease, margin-right 0.2s ease;
}
.footer-col ul li a:hover {
  color: #ffffff;
}
.footer-col ul li a:hover::before {
  opacity: 1;
  width: 14px;
  margin-right: 4px;
}
.footer-bottom {
  position: relative;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 22px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}
.footer-bottom-inner p {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
}
.footer-bottom-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom-links a {
  font-family: 'Sora', sans-serif;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.42);
  text-decoration: none;
  transition: color 0.2s ease;
}
.footer-bottom-links a:hover {
  color: #ffffff;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
}
@media (max-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 44px 0 36px;
  }
  .footer-col > p {
    max-width: 100%;
  }
  .footer-bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .container {
    padding: 0 20px;
  }
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .rights-grid {
    grid-template-columns: 1fr;
  }
  .cookie-table {
    font-size: 0.76rem;
  }
}
@media (max-width: 480px) {
  .layout {
    padding: 2rem 1.2rem 4rem;
  }
}