@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/inter-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("fonts/manrope-latin.woff2") format("woff2");
}

:root {
  --font-inter: "Inter";
  --font-manrope: "Manrope";
  --navy: #101b3b;
  --navy-2: #16264e;
  --blue: #00a3e0;
  --coral: #e43d4f;
  --ink: #0c1734;
  --muted: #64708a;
  --surface: #f4f7fb;
  --line: #dfe6ef;
  --white: #ffffff;
  --radius: 20px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--font-inter), Inter, Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
textarea,
select {
  font: inherit;
}

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

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

::selection {
  background: rgba(0, 163, 224, 0.25);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  min-height: 82px;
  padding: 12px max(24px, calc((100vw - 1240px) / 2));
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: rgba(255, 255, 255, 0.92);
  border-bottom: 1px solid rgba(16, 27, 59, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  width: 190px;
  display: grid;
  gap: 1px;
}

.brand img {
  width: 100%;
  height: 38px;
  object-fit: contain;
  object-position: left center;
}

.brand span {
  padding-left: 46px;
  color: var(--navy);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  color: #24304b;
  font-size: 13px;
  font-weight: 600;
}

.main-nav > a:not(.nav-cta) {
  position: relative;
}

.main-nav > a:not(.nav-cta)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -8px;
  height: 2px;
  background: var(--blue);
  transition: right 180ms ease;
}

.main-nav > a:not(.nav-cta):hover::after {
  right: 0;
}

.nav-cta {
  padding: 13px 18px;
  border-radius: 12px;
  background: var(--navy);
  color: white;
}

.language-switch {
  display: flex;
  gap: 4px;
  align-items: center;
  color: #98a1b3;
}

.language-switch button {
  padding: 4px 2px;
  border: 0;
  background: transparent;
  color: #98a1b3;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
}

.language-switch button.active {
  color: var(--blue);
}

.menu-button {
  display: none;
  width: 42px;
  height: 42px;
  padding: 11px;
  border: 0;
  border-radius: 12px;
  background: var(--navy);
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: white;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 7% 24%, rgba(0, 163, 224, 0.08), transparent 28%),
    linear-gradient(180deg, #fff 0%, #f6f9fd 100%);
}

.hero-grid {
  min-height: 670px;
  display: grid;
  grid-template-columns: 1.03fr 0.97fr;
  align-items: center;
  gap: 70px;
  padding-block: 80px 76px;
}

.eyebrow,
.section-label {
  margin: 0 0 20px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 750;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--navy);
}

.pulse-dot {
  position: relative;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--coral);
}

.pulse-dot::after {
  content: "";
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(228, 61, 79, 0.35);
  border-radius: inherit;
  animation: pulse 2.2s infinite;
}

@keyframes pulse {
  70%, 100% { transform: scale(1.7); opacity: 0; }
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: var(--font-manrope), Manrope, Arial, sans-serif;
}

h1 {
  max-width: 720px;
  margin-bottom: 26px;
  color: var(--navy);
  font-size: clamp(58px, 5.6vw, 86px);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

h1::after {
  content: "";
  display: block;
  width: 72px;
  height: 6px;
  margin-top: 28px;
  background: linear-gradient(90deg, var(--blue) 0 72%, var(--coral) 72%);
  clip-path: polygon(0 28%, 100% 0, 100% 72%, 0 100%);
}

.hero-subhead {
  max-width: 660px;
  margin: 0;
  color: #536078;
  font-size: 19px;
  line-height: 1.7;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 35px;
}

.button {
  min-height: 50px;
  padding: 14px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  border: 1px solid transparent;
  border-radius: 13px;
  font-size: 14px;
  font-weight: 700;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.button.primary {
  background: var(--blue);
  color: white;
  box-shadow: 0 14px 30px rgba(0, 163, 224, 0.22);
}

.button.primary:hover {
  box-shadow: 0 18px 38px rgba(0, 163, 224, 0.32);
}

.button.secondary {
  border-color: var(--navy);
  color: var(--navy);
}

.hero-visual {
  position: relative;
  height: 510px;
}

.hero-image {
  position: absolute;
  inset: 0 0 46px 40px;
  overflow: hidden;
  border-radius: 160px 20px 20px 20px;
  background:
    linear-gradient(160deg, rgba(16, 27, 59, 0.08), rgba(16, 27, 59, 0.46)),
    url("luxembourg.webp") center / cover;
  box-shadow: 0 30px 75px rgba(16, 27, 59, 0.18);
}

.hero-image::after {
  content: "";
  position: absolute;
  left: -5%;
  right: -5%;
  bottom: -28px;
  height: 92px;
  background: linear-gradient(95deg, var(--navy) 0 48%, var(--blue) 48% 84%, var(--coral) 84%);
  clip-path: polygon(0 76%, 100% 0, 100% 35%, 0 100%);
}

.hero-card {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 250px;
  padding: 22px;
  display: grid;
  gap: 5px;
  border-radius: 18px;
  background: white;
  box-shadow: 0 20px 50px rgba(16, 27, 59, 0.16);
}

.hero-card p {
  margin: 0;
  color: var(--blue);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-card strong {
  font-family: var(--font-manrope), Manrope, sans-serif;
  color: var(--navy);
  font-size: 27px;
}

.hero-card span {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}

.route-line {
  position: absolute;
  width: 74px;
  height: 74px;
  border-top: 1px solid rgba(255, 255, 255, 0.68);
  border-right: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 0 50% 0 0;
}

.route-one { right: 18px; top: 60px; }
.route-two { right: 62px; top: 108px; transform: scale(0.6); }

.trust-bar {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,0.72);
}

.trust-grid {
  min-height: 92px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-grid div {
  padding: 26px 18px;
  display: flex;
  align-items: center;
  gap: 12px;
  border-right: 1px solid var(--line);
  font-size: 13px;
  font-weight: 700;
}

.trust-grid div:first-child { border-left: 1px solid var(--line); }
.trust-grid span { color: var(--blue); font-size: 10px; }

.context-section {
  padding: 120px 0;
}

.split-intro {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 12%;
  align-items: end;
}

.split-intro h2,
.section-heading h2,
.method-header h2,
.ecosystem-panel h2,
.audience-copy h2,
.contact-copy h2 {
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(38px, 4.3vw, 62px);
  line-height: 1.06;
  letter-spacing: -0.04em;
}

.split-intro > p {
  margin: 0;
  padding-bottom: 4px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}

.data-section {
  position: relative;
  overflow: hidden;
  padding: 118px 0;
  background: var(--navy);
  color: white;
}

.data-section::before {
  content: "";
  position: absolute;
  width: 620px;
  height: 620px;
  right: -260px;
  top: -260px;
  border: 1px solid rgba(0, 163, 224, 0.22);
  border-radius: 50%;
  box-shadow: 0 0 0 80px rgba(0, 163, 224, 0.03), 0 0 0 160px rgba(0, 163, 224, 0.025);
}

.section-heading {
  max-width: 720px;
  margin-bottom: 52px;
}

.section-heading > p:last-child {
  max-width: 620px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.section-heading.light h2,
.section-heading.light > p:last-child {
  color: white;
}

.section-heading.light > p:last-child { color: #b9c5dc; }

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.stat-card {
  min-height: 350px;
  padding: 27px;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.045);
  backdrop-filter: blur(10px);
}

.stat-card > p {
  margin: 24px 0 18px;
  color: #d6ddec;
  font-size: 14px;
  line-height: 1.65;
}

.stat-card > a {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.stat-orbit {
  position: relative;
  width: 145px;
  height: 145px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
}

.stat-orbit::before {
  content: "";
  position: absolute;
  inset: 8px;
  border: 6px solid rgba(255, 255, 255, 0.08);
  border-top-color: var(--blue);
  border-right-color: var(--blue);
  border-radius: 50%;
  transform: rotate(35deg);
}

.orbit-2::before { border-right-color: rgba(255,255,255,.08); transform: rotate(12deg); }
.orbit-3::before { border-top-color: var(--coral); border-right-color: var(--coral); border-bottom-color: var(--coral); transform: rotate(68deg); }
.orbit-4::before { border-top-color: white; border-right-color: rgba(255,255,255,.08); transform: rotate(-30deg); }

.stat-orbit span {
  position: relative;
  z-index: 1;
  font-family: var(--font-manrope), Manrope, sans-serif;
  font-size: 32px;
  font-weight: 700;
  letter-spacing: -0.04em;
}

.data-note {
  margin-top: 28px;
  padding: 20px 25px;
  display: flex;
  align-items: center;
  gap: 17px;
  border-left: 3px solid var(--coral);
  background: rgba(255, 255, 255, 0.06);
}

.data-note span { color: var(--coral); }
.data-note p { margin: 0; color: #dce4f4; font-size: 14px; line-height: 1.6; }

.services-section {
  padding: 120px 0;
  background: var(--surface);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 315px;
  padding: 29px;
  grid-column: span 2;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  transition: transform 180ms ease, box-shadow 180ms ease, border 180ms ease;
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(0, 163, 224, 0.4);
  box-shadow: 0 22px 45px rgba(16, 27, 59, 0.09);
}

.service-4,
.service-5 {
  grid-column: span 3;
}

.service-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #8b95a8;
  font-size: 11px;
}

.service-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: #eef8fc;
  color: var(--blue);
  font-size: 22px;
}

.service-card h3 {
  margin: auto 0 14px;
  color: var(--navy);
  font-size: 22px;
  line-height: 1.16;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.method-section {
  padding: 120px 0;
}

.method-header {
  margin-bottom: 74px;
  display: grid;
  grid-template-columns: 1fr 0.75fr;
  gap: 11%;
  align-items: end;
}

.method-header > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.method-grid article {
  position: relative;
  min-height: 280px;
  padding: 0 52px 0 0;
}

.method-grid article:not(:last-child) {
  border-right: 1px solid var(--line);
  margin-right: 48px;
}

.method-number {
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid var(--blue);
  border-radius: 50%;
  color: var(--blue);
  font-family: var(--font-manrope), Manrope, sans-serif;
  font-weight: 700;
}

.method-connector {
  width: calc(100% - 88px);
  height: 1px;
  margin: -34px 0 66px 88px;
  background: linear-gradient(90deg, var(--blue), transparent);
}

.method-grid h3 {
  margin-bottom: 15px;
  color: var(--navy);
  font-size: 28px;
}

.method-grid p {
  max-width: 300px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
}

.ecosystem-section {
  min-height: 680px;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  background: var(--navy);
}

.ecosystem-photo {
  min-height: 680px;
  background:
    linear-gradient(90deg, rgba(16, 27, 59, 0.08), rgba(16, 27, 59, 0.42)),
    url("luxembourg.webp") center / cover;
}

.ecosystem-panel {
  padding: 100px clamp(44px, 7vw, 110px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: white;
}

.ecosystem-panel h2 {
  color: white;
}

.ecosystem-panel > p:not(.section-label) {
  max-width: 620px;
  margin: 26px 0 0;
  color: #c3cce0;
  font-size: 16px;
  line-height: 1.8;
}

.ecosystem-network {
  margin-top: 44px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.network-node {
  padding: 17px 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 12px;
  color: #dfe6f4;
  font-size: 13px;
  font-weight: 650;
}

.network-node span { color: var(--blue); }
.network-node.hub { border-color: var(--blue); background: rgba(0,163,224,.11); color: white; }
.network-node.hub span { color: var(--coral); }

.audience-section {
  padding: 120px 0;
  background: white;
}

.audience-layout {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  gap: 10%;
}

.audience-copy h2 {
  max-width: 720px;
}

.audience-list {
  margin-top: 46px;
  border-top: 1px solid var(--line);
}

.audience-list div {
  padding: 19px 0;
  display: flex;
  gap: 20px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  font-weight: 650;
}

.audience-list span { color: var(--blue); font-size: 11px; }

.principles-column {
  display: grid;
  align-content: center;
  gap: 16px;
}

.principles-column article {
  padding: 25px;
  display: flex;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: 16px;
}

.principle-mark {
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  background: var(--navy);
  color: white;
}

.principles-column h3 {
  margin: 0 0 7px;
  color: var(--navy);
  font-size: 18px;
}

.principles-column p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.contact-section {
  padding: 120px 0;
  background:
    linear-gradient(135deg, rgba(0,163,224,.07), transparent 42%),
    var(--surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 10%;
  align-items: start;
}

.contact-copy {
  position: sticky;
  top: 130px;
}

.contact-copy > p:not(.section-label) {
  margin: 27px 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.contact-brand {
  width: 220px;
  margin-top: 45px;
}

.contact-brand img { width: 100%; }
.contact-brand span {
  display: block;
  padding-left: 4px;
  color: #8993a7;
  font-size: 10px;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.contact-form {
  padding: 38px;
  display: grid;
  gap: 20px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: white;
  box-shadow: 0 20px 60px rgba(16, 27, 59, 0.08);
}

.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form label:not(.checkbox-label) {
  display: grid;
  gap: 8px;
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid #d8e0eb;
  border-radius: 11px;
  outline: 0;
  background: #fbfcfe;
  color: var(--ink);
  transition: border 160ms ease, box-shadow 160ms ease;
}

.contact-form input,
.contact-form select { height: 48px; padding: 0 14px; }
.contact-form textarea { padding: 14px; resize: vertical; }

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(0,163,224,.13);
}

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.checkbox-label input {
  width: 16px;
  height: 16px;
  margin-top: 1px;
  accent-color: var(--blue);
}

.submit-button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

.privacy-note,
.form-status {
  margin: -8px 0 0;
  color: #8892a5;
  font-size: 10px;
  line-height: 1.5;
  text-align: center;
}

.form-status {
  padding: 10px;
  border-radius: 8px;
  background: #eaf8f0;
  color: #18794e;
  font-size: 12px;
}

.site-footer {
  padding-top: 72px;
  background: #0a1330;
  color: white;
}

.footer-grid {
  padding-bottom: 58px;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  gap: 9%;
}

.footer-brand {
  display: inline-block;
  font-family: var(--font-manrope), Manrope, sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .06em;
}

.footer-brand span { font-weight: 300; }

.footer-grid p {
  max-width: 380px;
  margin: 16px 0 0;
  color: #9ba8c2;
  font-size: 13px;
  line-height: 1.7;
}

.footer-grid strong { color: var(--blue); font-size: 12px; text-transform: uppercase; letter-spacing: .12em; }
.footer-grid a { display: block; margin-top: 12px; color: #c7d0e2; font-size: 12px; }
.footer-grid a:hover { color: var(--blue); }

.footer-bottom {
  padding-block: 22px;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid rgba(255,255,255,.1);
  color: #7f8ca7;
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid rgba(0, 163, 224, 0.55);
  outline-offset: 3px;
}

@media (max-width: 1080px) {
  .main-nav { gap: 14px; font-size: 12px; }
  .hero-grid { gap: 35px; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .service-card { grid-column: span 3; }
  .service-5 { grid-column: 2 / span 4; }
}

@media (max-width: 820px) {
  .container { width: min(100% - 32px, 680px); }
  .site-header { min-height: 72px; padding-inline: 16px; }
  .brand { width: 170px; }
  .menu-button { display: block; }
  .main-nav {
    position: absolute;
    left: 16px;
    right: 16px;
    top: 72px;
    padding: 24px;
    display: none;
    align-items: stretch;
    gap: 18px;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: white;
    box-shadow: 0 20px 50px rgba(16,27,59,.15);
  }
  .main-nav.open { display: flex; flex-direction: column; }
  .nav-cta { text-align: center; }
  .language-switch { order: 5; }
  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    padding-block: 68px 52px;
  }
  h1 { max-width: 650px; font-size: clamp(48px, 11vw, 72px); }
  .hero-visual { height: 420px; }
  .hero-image { left: 28px; }
  .trust-grid { grid-template-columns: 1fr 1fr; }
  .trust-grid div { border-bottom: 1px solid var(--line); }
  .split-intro,
  .method-header,
  .audience-layout,
  .contact-grid { grid-template-columns: 1fr; gap: 42px; }
  .context-section,
  .services-section,
  .method-section,
  .audience-section,
  .contact-section { padding: 88px 0; }
  .data-section { padding: 88px 0; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card,
  .service-4,
  .service-5 { grid-column: auto; }
  .method-grid { grid-template-columns: 1fr; gap: 36px; }
  .method-grid article { min-height: 220px; padding: 0; }
  .method-grid article:not(:last-child) { margin-right: 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .ecosystem-section { grid-template-columns: 1fr; }
  .ecosystem-photo { min-height: 440px; }
  .ecosystem-panel { padding: 76px 32px; }
  .contact-copy { position: static; }
}

@media (max-width: 560px) {
  .container { width: calc(100% - 28px); }
  .brand span { padding-left: 35px; }
  .hero-grid { padding-top: 52px; }
  h1 { font-size: clamp(44px, 13vw, 60px); }
  .hero-subhead { font-size: 17px; }
  .button-row,
  .button { width: 100%; }
  .hero-visual { height: 360px; }
  .hero-image { inset: 0 0 38px 12px; border-radius: 90px 18px 18px 18px; }
  .hero-card { width: 210px; padding: 17px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-grid div { border-left: 1px solid var(--line); }
  .stats-grid,
  .services-grid,
  .ecosystem-network,
  .field-row,
  .footer-grid { grid-template-columns: 1fr; }
  .stat-card { min-height: 315px; }
  .stat-orbit { width: 130px; height: 130px; }
  .section-heading h2,
  .split-intro h2,
  .method-header h2,
  .ecosystem-panel h2,
  .audience-copy h2,
  .contact-copy h2 { font-size: 40px; }
  .ecosystem-photo { min-height: 330px; }
  .ecosystem-panel { padding: 68px 20px; }
  .contact-form { padding: 24px 18px; }
  .footer-bottom { display: grid; gap: 8px; }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
