:root {
  --primary: #0f2f4a;
  --primary-dark: #071d30;
  --accent: #c49a3a;
  --accent-soft: #f4ead2;
  --bg: #f7f8fb;
  --surface: #ffffff;
  --surface2: #edf3f7;
  --text: #1f2933;
  --muted: #64748b;
  --white: #ffffff;
  --border: #e5e7eb;
  --shadow: 0 18px 45px rgba(15, 47, 74, 0.12);
  --radius: 22px;
}

html[data-theme="dark"] {
  --bg: #070c18;
  --surface: #0b1630;
  --surface2: #0a1228;
  --primary: #9cc7ff;
  --primary-dark: rgba(234, 242, 255, 0.96);
  --accent-soft: rgba(196, 154, 58, 0.18);
  --text: rgba(234, 242, 255, 0.96);
  --muted: rgba(234, 242, 255, 0.72);
  --border: rgba(234, 242, 255, 0.12);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

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

body {
  font-family: 'Inter', system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

body.is-loading {
  overflow: hidden;
}

.reveal {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity 520ms ease, transform 520ms ease;
  will-change: opacity, transform;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

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

.container {
  width: min(1180px, 92%);
  margin: auto;
}

.container-wide {
  width: min(1560px, 96%);
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 10% 10%, rgba(196, 154, 58, 0.18), transparent 40%),
    radial-gradient(circle at 90% 20%, rgba(15, 47, 74, 0.16), transparent 45%),
    rgba(247, 248, 251, 0.96);
  backdrop-filter: blur(10px);
  opacity: 1;
  transition: opacity 380ms ease, visibility 380ms ease;
  visibility: visible;
}

html[data-theme="dark"] .loader {
  background:
    radial-gradient(circle at 10% 10%, rgba(196, 154, 58, 0.12), transparent 42%),
    radial-gradient(circle at 90% 20%, rgba(14, 165, 255, 0.10), transparent 48%),
    rgba(7, 12, 24, 0.96);
}

.loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-card {
  position: relative;
  width: min(520px, calc(100% - 48px));
  border-radius: 28px;
  background: transparent;
  border: none;
  box-shadow: none;
  padding: 0;
  display: grid;
  justify-items: center;
  gap: 14px;
}

.loader-logo {
  width: 270px;
  height: 270px;
  object-fit: contain;
  animation: loaderFloat 1.4s ease-in-out infinite;
}

.loader-ring {
  width: 56px;
  height: 56px;
  border-radius: 999px;
  border: 3px solid rgba(15, 47, 74, 0.16);
  border-top-color: rgba(196, 154, 58, 0.95);
  animation: loaderSpin 900ms linear infinite;
}

html[data-theme="dark"] .loader-ring {
  border-color: rgba(234, 242, 255, 0.14);
  border-top-color: rgba(196, 154, 58, 0.92);
}

.loader-text {
  font-weight: 700;
  color: rgba(15, 47, 74, 0.82);
  letter-spacing: -0.01em;
}

@keyframes loaderSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes loaderFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: color-mix(in srgb, var(--surface) 86%, transparent 14%);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.nav {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.04em;
  font-size: 1.35rem;
}

.logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--primary), var(--accent));
  display: grid;
  place-items: center;
  color: white;
  font-weight: 800;
}

.logo-img {
  width: 46px;
  height: 46px;
  object-fit: contain;
  filter: drop-shadow(0 10px 24px rgba(15, 47, 74, 0.18));
}

.menu {
  display: flex;
  gap: 28px;
  font-weight: 600;
  color: var(--muted);
  font-size: 0.95rem;
}

.menu a:hover {
  color: var(--primary);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 24px rgba(15, 47, 74, 0.08);
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0;
  cursor: pointer;
}

.menu-toggle-text{display:none}

html[data-theme="dark"] .menu-toggle {
  background: rgba(11, 22, 48, 0.75);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
}

.menu-toggle-icon{display:grid; place-items:center; color:var(--text)}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 13px 22px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 1px solid transparent;
}

.btn-primary {
  background: var(--accent);
  color: var(--primary-dark);
  box-shadow: 0 12px 30px rgba(196, 154, 58, 0.28);
}

html[data-theme="dark"] .btn-primary {
  color: rgba(7, 29, 48, 0.95);
}

.btn-primary:hover {
  transform: translateY(-2px);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.35);
  color: white;
}

html[data-theme="dark"] .btn-outline {
  border-color: rgba(234, 242, 255, 0.22);
  color: rgba(234, 242, 255, 0.96);
}

.hero {
  background: radial-gradient(circle at top right, rgba(196, 154, 58, 0.25), transparent 35%),
    linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: white;
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}

html[data-theme="dark"] .hero {
  background:
    radial-gradient(circle at top right, rgba(196, 154, 58, 0.14), transparent 40%),
    radial-gradient(circle at 20% 10%, rgba(14, 165, 255, 0.10), transparent 46%),
    linear-gradient(135deg, rgba(7, 12, 24, 1), rgba(11, 22, 48, 1));
}

.hero::before {
  content: '';
  position: absolute;
  inset: -40px;
  background-image: url('../img/04.jpg');
  background-size: cover;
  background-position: center;
  opacity: 0.36;
  filter: blur(3px);
  transform: scale(1.08);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(7, 29, 48, 0.34), rgba(15, 47, 74, 0.26));
  pointer-events: none;
}

html[data-theme="dark"] .hero::after {
  background: linear-gradient(135deg, rgba(7, 12, 24, 0.52), rgba(11, 22, 48, 0.36));
}

.hero > .container {
  position: relative;
  z-index: 1;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.hero-stats {
  margin-top: 26px;
}

.hero-stats .metrics-grid {
  grid-template-columns: repeat(3, 1fr);
}

.hero-video {
  border-radius: 32px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow);
  width: 75%;
  justify-self: end;
}

html[data-theme="dark"] .hero-video {
  border-color: rgba(234, 242, 255, 0.12);
  background: rgba(234, 242, 255, 0.06);
}

.hero-video-wrap {
  position: relative;
  width: 100%;
}

.hero-video-player {
  width: 100%;
  height: auto;
  display: block;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  background: rgba(0, 0, 0, 0.86);
}

.hero-video-play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 84px;
  height: 84px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 29, 48, 0.55);
  backdrop-filter: blur(10px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.32);
  display: grid;
  place-items: center;
  cursor: pointer;
}

.hero-video-play:hover {
  transform: translateY(-1px);
}

.hero-video-play-icon {
  width: 0;
  height: 0;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
  border-left: 18px solid rgba(255, 255, 255, 0.95);
  margin-left: 4px;
}

.hero-video-play.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.badge {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 14px;
  border-radius: 999px;
  color: #eaf3fb;
  font-size: 0.9rem;
  margin-bottom: 24px;
}

html[data-theme="dark"] .badge {
  background: rgba(234, 242, 255, 0.10);
  border-color: rgba(234, 242, 255, 0.14);
  color: rgba(234, 242, 255, 0.92);
}

h1 {
  font-size: clamp(2.5rem, 5vw, 5rem);
  line-height: 1;
  letter-spacing: -0.07em;
  margin-bottom: 24px;
}

.hero p {
  color: #d9e5ee;
  font-size: 1.15rem;
  max-width: 720px;
  margin-bottom: 32px;
}

html[data-theme="dark"] .hero p {
  color: rgba(234, 242, 255, 0.72);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 34px;
}

.hero-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  margin: 6px 0 14px;
  filter: drop-shadow(0 14px 34px rgba(0, 0, 0, 0.28));
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  color: #d9e5ee;
  font-size: 0.95rem;
}

.trust-row span {
  padding: 8px 12px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 999px;
}

html[data-theme="dark"] .trust-row span {
  background: rgba(234, 242, 255, 0.08);
}

.hero-card {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  max-width: 100%;
}

html[data-theme="dark"] .hero-card {
  background: rgba(234, 242, 255, 0.06);
  border-color: rgba(234, 242, 255, 0.12);
}

.hero-card-inner {
  background: var(--surface);
  color: var(--text);
  border-radius: 26px;
  padding: 28px;
}

.hero-card-logo {
  width: min(416px, 100%);
  height: auto;
  object-fit: contain;
  margin: 0 auto;
  filter: drop-shadow(0 16px 40px rgba(15, 47, 74, 0.18));
}

.metrics-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.metric {
  padding: 14px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(135deg, var(--surface), color-mix(in srgb, var(--surface2) 72%, var(--surface) 28%));
}

.metric strong {
  display: block;
  font-size: 1.75rem;
  color: var(--primary);
  letter-spacing: -0.04em;
}

html[data-theme="dark"] .metric strong {
  color: rgba(234, 242, 255, 0.96);
}

.metric span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.74rem;
}

section {
  padding: 86px 0;
}

.section-surface {
  background: var(--surface);
}

html[data-theme="dark"] .section-surface {
  background: rgba(7, 12, 24, 0.25);
}

.section-soft {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
}

html[data-theme="dark"] .section-soft {
  background: linear-gradient(135deg, rgba(11, 22, 48, 0.55), rgba(10, 18, 40, 0.25));
}

.mv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.mv-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 47, 74, 0.06);
  overflow: hidden;
}

.mv-img {
  display: block;
  width: calc(100% + 56px);
  margin: -28px -28px 16px;
  height: auto;
  aspect-ratio: 16 / 8;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.mv-title {
  margin: 0;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

html[data-theme="dark"] .mv-title {
  color: rgba(234, 242, 255, 0.96);
}

.mv-text {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 0.98rem;
}

.values {
  margin-top: 28px;
}


.media-collage {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 12px;
  align-items: stretch;
}

.media-card {
  margin: 0;
  border-radius: 28px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 47, 74, 0.06);
}

.media-card img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.media-card--main img {
  aspect-ratio: 4 / 3;
}

.media-card--side img {
  aspect-ratio: 3 / 4;
}

.section-media {
  margin: 0 0 22px;
  border-radius: 30px;
  border: 1px solid var(--border);
  background: var(--surface);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 47, 74, 0.06);
}

.section-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 6;
  object-fit: cover;
}

.section-media--compact {
  margin-top: 14px;
}

.section-media--compact img {
  aspect-ratio: 16 / 8;
}

.values-title {
  margin: 0 0 14px;
  color: var(--primary-dark);
  letter-spacing: -0.03em;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.value-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 18px;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 12px;
  align-items: start;
  box-shadow: 0 10px 30px rgba(15, 47, 74, 0.04);
}

.value-letter {
  width: 44px;
  height: 44px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-weight: 900;
  color: var(--primary-dark);
  background: var(--accent-soft);
}

.value-name {
  font-weight: 800;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

.value-text {
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.92rem;
}

.section-head {
  max-width: 780px;
  margin-bottom: 42px;
}

.eyebrow {
  color: var(--accent);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.78rem;
  margin-bottom: 10px;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.4rem);
  line-height: 1.05;
  letter-spacing: -0.06em;
  color: var(--primary-dark);
  margin-bottom: 16px;
}

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: 0 10px 30px rgba(15, 47, 74, 0.06);
  transition: 0.25s ease;
}

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

.icon {
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-size: 1.45rem;
  margin-bottom: 18px;
}

.card h3 {
  font-size: 1.18rem;
  margin-bottom: 10px;
  color: var(--primary-dark);
}

.card p {
  color: var(--muted);
  font-size: 0.96rem;
}

.split {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 44px;
  align-items: center;
}

.panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 30px;
  padding: 34px;
  box-shadow: var(--shadow);
}

.list {
  display: grid;
  gap: 16px;
  margin-top: 22px;
}

.list-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--muted);
}

.check {
  min-width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--accent-soft);
  color: var(--primary);
  display: grid;
  place-items: center;
  font-weight: 800;
}

.nom {
  background: linear-gradient(135deg, var(--surface), var(--surface2));
}

html[data-theme="dark"] .nom {
  background: linear-gradient(135deg, rgba(11, 22, 48, 0.30), rgba(10, 18, 40, 0.10));
}

.cta {
  background: var(--primary-dark);
  color: white;
  border-radius: 36px;
  padding: 54px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: center;
}

html[data-theme="dark"] .cta {
  background: rgba(5, 10, 20, 0.92);
  border: 1px solid rgba(234, 242, 255, 0.10);
}

.cta h2 {
  color: white;
}

.cta p {
  color: #d9e5ee;
  max-width: 760px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 26px;
}

.contact-shell {
  display: grid;
  gap: 18px;
}

.contact-cta {
  display: grid;
  gap: 12px;
  align-content: start;
}

.contact-social-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.video-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(15, 47, 74, 0.06);
}

.video-card video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  background: rgba(0, 0, 0, 0.9);
}

.video-meta {
  padding: 18px 20px 20px;
}

.video-meta h3 {
  margin: 0;
  font-size: 1.02rem;
  color: var(--primary-dark);
  letter-spacing: -0.02em;
}

html[data-theme="dark"] .video-meta h3 {
  color: rgba(234, 242, 255, 0.96);
}

.contact-info {
  display: grid;
  gap: 14px;
}

.info-box {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 20px;
  display: grid;
  grid-template-columns: 28px 1fr;
  gap: 12px;
  align-items: start;
}

.info-box--noicon {
  grid-template-columns: 1fr;
}

.info-box strong {
  display: block;
  color: var(--primary-dark);
  margin-bottom: 4px;
}

.info-icon {
  width: 28px;
  height: 28px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--accent-soft);
  color: var(--primary);
}

.info-box a {
  color: var(--text);
}

.info-box a:hover {
  color: var(--primary);
}

form {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 28px;
  box-shadow: var(--shadow);
}

input,
textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 14px 16px;
  font: inherit;
  margin-bottom: 14px;
  outline: none;
  background: color-mix(in srgb, var(--surface2) 70%, var(--surface) 30%);
  color: var(--text);
}

input:focus,
textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(196, 154, 58, 0.14);
}

textarea {
  min-height: 130px;
  resize: vertical;
}

footer {
  background: #071d30;
  color: #b8c7d3;
  padding: 34px 0;
  font-size: 0.92rem;
}

html[data-theme="dark"] footer {
  background: #050a14;
  color: rgba(234, 242, 255, 0.72);
}

html[data-theme="dark"] .footer-link:hover {
  color: rgba(234, 242, 255, 0.96);
}

.fab {
  position: fixed;
  z-index: 10001;
}

.fab-theme {
  right: 16px;
  bottom: 16px;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent 12%);
  color: var(--text);
  box-shadow: var(--shadow);
  cursor: pointer;
}

html[data-theme="dark"] .fab-theme {
  background: rgba(11, 22, 48, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.fab-social {
  right: 16px;
  bottom: 80px;
  display: grid;
  gap: 10px;
}

.fab-link {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: color-mix(in srgb, var(--surface) 88%, transparent 12%);
  color: var(--text);
  display: grid;
  place-items: center;
  box-shadow: 0 14px 34px rgba(15, 47, 74, 0.12);
}

html[data-theme="dark"] .fab-link {
  background: rgba(11, 22, 48, 0.72);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.40);
}

.fab-link:hover,
.fab-theme:hover {
  transform: translateY(-1px);
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero-grid,
  .split,
  .contact-grid,
  .cta {
    grid-template-columns: 1fr;
  }

  .contact-social-row {
    grid-template-columns: 1fr;
  }

  .hero-video {
    width: 100%;
    justify-self: stretch;
  }

  .hero-card,
  .hero-video {
    height: auto;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .video-grid {
    grid-template-columns: 1fr;
  }
  header {
    position: sticky;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .menu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 6px;
    padding: 12px;
    border-radius: 18px;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
  }

  html[data-theme="dark"] .menu {
    background: rgba(11, 22, 48, 0.96);
    border-color: rgba(234, 242, 255, 0.14);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
  }

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

  .menu a {
    padding: 12px 12px;
    border-radius: 14px;
  }

  .menu a:hover {
    background: rgba(15, 47, 74, 0.06);
  }

  html[data-theme="dark"] .menu a {
    color: rgba(234, 242, 255, 0.86);
  }

  html[data-theme="dark"] .menu a:hover {
    background: rgba(234, 242, 255, 0.08);
    color: rgba(234, 242, 255, 0.96);
  }

  .menu-toggle{
    width:auto;
    padding:0 12px;
  }

  .menu-toggle-text{
    display:inline;
    font-weight:800;
    font-size:13px;
    color:var(--text);
    margin-left:4px;
  }

  .hero {
    padding-top: 64px;
    padding-bottom: 54px;
  }

  .hero-card{padding:18px}
  .hero-card-inner{padding:18px}

  .hero-card-logo{
    width:min(280px, 100%);
  }

  h1 {
    font-size: clamp(2.1rem, 7vw, 3.2rem);
  }

  .hero p {
    font-size: 1.05rem;
  }



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

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

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

  .media-collage {
    grid-template-columns: 1fr;
  }

  .media-card--side img {
    aspect-ratio: 4 / 3;
  }

  .section-media img {
    aspect-ratio: 16 / 9;
  }

  .cta {
    padding: 34px;
    border-radius: 28px;
    gap: 18px;
  }
}

@media (max-width: 520px) {
  .nav {
    height: auto;
    padding: 12px 0;
  }

  .btn.btn-primary {
    padding: 12px 16px;
  }

  .hero-actions {
    gap: 10px;
  }

  .fab-theme{right:12px; bottom:12px; width:48px; height:48px}
  .fab-social{right:12px; bottom:72px}
  .fab-link{width:44px; height:44px}
}
