:root {
  --ink: #102a5b;
  --ink-strong: #071a3b;
  --blue: #1f7bff;
  --blue-strong: #0065f2;
  --blue-soft: #e9f3ff;
  --navy: #031b3f;
  --navy-deep: #01112a;
  --line: #dce8f7;
  --muted: #4f6285;
  --paper: #ffffff;
  --mist: #f6faff;
  --shadow: 0 1.5rem 3.75rem rgba(17, 52, 104, 0.13);
  --radius: 0.5rem;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 7.5rem;
}

body {
  margin: 0;
  min-width: 20rem;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 8%, rgba(31, 123, 255, 0.08), transparent 28rem),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

body.menu-open {
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 0.1875rem solid #9fceff;
  outline-offset: 0.25rem;
}

main:focus {
  outline: none;
}

.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;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 200;
  padding: 0.75rem 1rem;
  color: #ffffff;
  background: #075cff;
  border-radius: 0.5rem;
  box-shadow: 0 0.75rem 1.5rem rgba(0, 13, 35, 0.28);
  transform: translateY(-150%);
  transition: transform 180ms ease;
}

.skip-link:focus-visible {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  padding: 1.5rem clamp(1.25rem, 5vw, 4.375rem) 0;
  transition: padding 220ms ease;
}

.nav-shell {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  width: min(73.75rem, 100%);
  min-height: 4.875rem;
  margin: 0 auto;
  padding: 0.75rem 0.875rem 0.75rem 1.75rem;
  color: #f8fbff;
  background: #0f234f;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 2.125rem;
  box-shadow: 0 1.5rem 3.375rem rgba(0, 0, 0, 0.32);
  backdrop-filter: blur(1.125rem);
  transition:
    min-height 220ms ease,
    background 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.site-header.is-scrolled {
  padding-top: 0.75rem;
}

.site-header.is-scrolled .nav-shell {
  min-height: 4.125rem;
  background: #0f234f;
  border-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 1.125rem 2.75rem rgba(0, 13, 35, 0.38);
}

.site-header.is-scrolled .nav-menu a {
  min-height: 2.75rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: max-content;
}

.brand-copy {
  display: grid;
  line-height: 1.02;
}

.brand-copy img {
  width: 9.375rem;
  height: auto;
}

.brand-copy strong {
  color: #ffffff;
  font-size: 0.875rem;
  letter-spacing: 0.02em;
}

.brand-copy span {
  color: #ffffff;
  font-size: 0.875rem;
  font-weight: 700;
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.375rem;
  width: 100%;
}

.nav-menu a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.25rem;
  padding: 0 1.125rem;
  color: #dbe7ff;
  border-radius: 1.75rem;
  font-size: 0.875rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.nav-menu .active {
  color: #ffffff;
  background: rgba(0, 82, 204, 0.28);
  box-shadow: inset 0 0 0 1px rgba(31, 123, 255, 0.22);
}

.nav-menu .contact-button {
  min-height: 3.125rem;
  margin-left: 0.5rem;
  padding: 0 1.5rem;
  color: #ffffff;
  background: linear-gradient(135deg, #2f95ff 0%, #075cff 100%);
  border: 1px solid rgba(255, 255, 255, 0.24);
  box-shadow:
    0 0.875rem 1.875rem rgba(31, 123, 255, 0.38),
    inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.nav-menu .contact-button:hover,
.nav-menu .contact-button:focus-visible,
.nav-menu .contact-button.active {
  color: #ffffff;
  background: linear-gradient(135deg, #49a6ff 0%, #1268ff 100%);
  box-shadow:
    0 1.125rem 2.25rem rgba(31, 123, 255, 0.48),
    0 0 0 0.25rem rgba(47, 149, 255, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.26);
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 3rem;
  height: 3rem;
  place-items: center;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.25rem;
  height: 0.125rem;
  margin: 0.1875rem auto;
  background: currentColor;
  border-radius: 0.125rem;
}

.hero {
  position: relative;
  min-height: 47.5rem;
  overflow: hidden;
  isolation: isolate;
  color: #dce8f7;
  background:
    radial-gradient(circle at 78% 8%, rgba(26, 113, 255, 0.42), transparent 24rem),
    radial-gradient(circle at 18% 24%, rgba(255, 255, 255, 0.08), transparent 21rem),
    linear-gradient(110deg, rgba(4, 27, 65, 0.98) 0%, rgba(3, 27, 64, 0.94) 48%, rgba(2, 18, 45, 0.86) 100%),
    linear-gradient(135deg, #002a67 0%, #001c47 62%, #021226 100%);
}

.hero::after {
  content: "";
  position: absolute;
  z-index: 3;
  right: -8vw;
  bottom: -4.875rem;
  left: -8vw;
  height: 13.125rem;
  background: #ffffff;
  border-top: 1.125rem solid #1672ce;
  border-radius: 50% 50% 0 0 / 42% 42% 0 0;
  transform: rotate(-2deg);
  transform-origin: center;
}

.hero-inner {
  position: relative;
  z-index: auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(20rem, 0.95fr);
  align-items: center;
  gap: clamp(2.625rem, 7vw, 6rem);
  width: min(73.75rem, calc(100% - 3rem));
  min-height: 47.5rem;
  margin: 0 auto;
  padding: 7.125rem 0 8.125rem;
}

.hero-image-panel {
  position: absolute;
  z-index: 1;
  inset: 0 calc((100vw - 100%) / -2);
  height: auto;
  min-height: 0;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  transform: translateZ(0);
  margin-bottom: 0;
}

.hero-image-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(3, 27, 64, 1) 0%, rgba(3, 27, 64, 0.98) 26%, rgba(3, 27, 64, 0.74) 39%, rgba(3, 27, 64, 0.24) 56%, rgba(3, 27, 64, 0.02) 74%),
    linear-gradient(180deg, rgba(2, 18, 45, 0.08) 0%, transparent 48%, rgba(2, 18, 45, 0.44) 100%);
}

.hero-image-panel::after {
  content: none;
}

.hero-image-panel img {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: clamp(54rem, 64vw, 72rem);
  max-width: none;
  height: auto;
  object-fit: contain;
  object-position: right top;
  transform: scale(1.08);
  transform-origin: right top;
  filter: saturate(1.05) contrast(1.02);
  animation: heroImageDrift 14s ease-in-out infinite alternate;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.72) 30%, #000 52%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.08) 8%, rgba(0, 0, 0, 0.72) 30%, #000 52%, #000 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}

.hero-stat-card {
  position: absolute;
  z-index: 4;
  display: grid;
  gap: 0.25rem;
  min-width: 10.375rem;
  padding: 1.125rem 1.25rem;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 1rem;
  box-shadow: 0 1.125rem 2.25rem rgba(0, 10, 34, 0.28);
  backdrop-filter: blur(1rem);
}

.hero-stat-card.primary {
  left: 1.75rem;
  bottom: 1.75rem;
}

.hero-stat-card.secondary {
  top: 1.875rem;
  right: 1.75rem;
}

.hero-stat-card strong {
  color: #ffffff;
  font-size: 1.55rem;
  line-height: 1;
}

.hero-stat-card span {
  color: #cfe4ff;
  font-size: 0.875rem;
  font-weight: 800;
}

.hero-content {
  position: relative;
  z-index: 4;
  min-width: 0;
}

.eyebrow {
  width: fit-content;
  margin: 0 0 1.125rem;
  color: #80bdff;
  font-size: 0.813rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 33.75rem;
  margin: 0;
  color: #ffffff;
  font-size: clamp(3rem, 7vw, 4.625rem);
  line-height: 1.10;
  letter-spacing: 0;
}

.hero h1 span {
  display: block;
}

.hero-content p:not(.eyebrow) {
  max-width: 31.875rem;
  margin: 2.25rem 0 0;
  color: #d4e6ff;
  font-size: 1.125rem;
  line-height: 1.72;
}

.hero-content p:not(.eyebrow)::before {
  content: "";
  display: block;
  width: 3.375rem;
  height: 0.1875rem;
  margin-bottom: 1.75rem;
  background: #2d8cff;
  border-radius: 0.25rem;
}

@keyframes heroImageDrift {
  from {
    transform: scale(1.08) translate3d(-0.625rem, 0, 0);
  }

  to {
    transform: scale(1.14) translate3d(0.75rem, -0.5rem, 0);
  }
}

.hero-image-panel,
.hero-content > * {
  animation: heroReveal 780ms ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 120ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 220ms;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(1.75rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(2.125rem);
  transition:
    opacity 720ms ease,
    transform 720ms ease;
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-on-scroll.from-left {
  transform: translateX(-2.125rem);
}

.reveal-on-scroll.from-right {
  transform: translateX(2.125rem);
}

.reveal-on-scroll.is-visible {
  opacity: 1;
  transform: translate(0, 0);
}

.intro-panel,
.split-section,
.contact-section,
.footer {
  width: min(73.75rem, calc(100% - 3rem));
  margin-inline: auto;
}

.intro-panel {
  position: relative;
  z-index: 6;
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 1fr);
  gap: 0;
  margin-top: -1.125rem;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 1.125rem 3rem rgba(14, 63, 133, 0.07);
}

.intro-panel > * {
  padding: 2.375rem 2rem;
}

.intro-panel article {
  border-left: 1px solid var(--line);
}

.intro-copy p,
.intro-panel article p {
  margin: 0;
  color: #566c91;
  font-size: 0.938rem;
  line-height: 1.74;
  padding-top:5px;
}

.intro-copy strong {
  color: var(--blue);
}

.intro-panel article h2 {
  margin: 1.375rem 0 0.625rem;
  color: var(--blue);
  font-size: 1.125rem;
  line-height: 1.2;
}

.small-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
}

.small-icon {
  width: 2.875rem;
  height: 2.875rem;
  margin-right: 0.9375rem;
}

.small-icon::before {
  content: "";
  width: 1.625rem;
  height: 1.625rem;
  border: 0.1875rem solid currentColor;
}

.small-icon.team::before {
  width: 1.75rem;
  height: 1.1875rem;
  border-top: 0;
  border-radius: 0 0 1.25rem 1.25rem;
  box-shadow: -0.8125rem -0.5rem 0 -0.625rem currentColor, 0.8125rem -0.5rem 0 -0.625rem currentColor;
}

.small-icon.chat::before {
  border-radius: 0.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 72%, 58% 72%, 38% 100%, 38% 72%, 0 72%);
}

.small-icon.briefcase::before {
  width: 1.625rem;
  height: 1.25rem;
  border-radius: 0.375rem;
  box-shadow: inset 0 0.5rem 0 -0.3125rem currentColor;
}

.small-icon.gear::before {
  border-radius: 50%;
  box-shadow: 0 -0.625rem 0 -0.5rem currentColor, 0 0.625rem 0 -0.5rem currentColor, 0.625rem 0 0 -0.5rem currentColor, -0.625rem 0 0 -0.5rem currentColor;
}

.intro-panel .small-icon.briefcase::before {
  width: 1.75rem;
  height: 1.75rem;
  background: url("./assets/icon-globe-blue.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.intro-panel .small-icon.briefcase::after {
  content: none;
}

.intro-panel .small-icon.team::before {
  width: 1.75rem;
  height: 1.75rem;
  background: url("./assets/icon-lock-blue.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.intro-panel .small-icon.team::after {
  content: none;
}

.intro-panel .small-icon.gear::before {
  width: 1.75rem;
  height: 1.75rem;
  background: url("./assets/icon-people-blue.png") center / contain no-repeat;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  transform: none;
}

.intro-panel .small-icon.gear::after {
  content: none;
}

.small-icon.phone::before {
  width: 1.125rem;
  height: 1.625rem;
  border-radius: 0.4375rem;
  transform: rotate(-24deg);
}

.small-icon.mail::before {
  width: 1.625rem;
  height: 1.125rem;
  border-radius: 0.3125rem;
}

.small-icon.mail::after {
  content: "";
  position: absolute;
  width: 1.1875rem;
  height: 1.1875rem;
  border-right: 0.1875rem solid currentColor;
  border-bottom: 0.1875rem solid currentColor;
  transform: translateY(-0.25rem) rotate(45deg);
}

.small-icon.clock::before {
  border-radius: 50%;
}

.small-icon.clock::after {
  content: "";
  position: absolute;
  width: 0.625rem;
  height: 0.75rem;
  border-left: 0.1875rem solid currentColor;
  border-bottom: 0.1875rem solid currentColor;
  transform: translate(0.125rem, -0.125rem);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.18fr);
  align-items: center;
  gap: clamp(3rem, 7vw, 5.75rem);
  padding: clamp(4.375rem, 8vw, 6.25rem) 0 0;
}

.split-section.reverse {
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
}

.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.875rem;
  margin: 0 0 1.875rem;
  color: var(--blue);
  font-size: 0.813rem;
  font-weight: 900;
  text-transform: uppercase;
}

.section-kicker.centered {
  justify-content: center;
  width: 100%;
  margin-bottom: 1.125rem;
  color: #4d9dff;
  letter-spacing: 0.08em;
}

.contact-copy {
  align-self: start;
  max-width: 25.625rem;
  min-width: 0;
  padding-top: clamp(0.5rem, 3vw, 2.25rem);
}

.section-text h2,
.contact-copy h2,
.brands-band h2 {
  margin: 0;
  color: var(--ink-strong);
  font-size: clamp(2.125rem, 5vw, 3.375rem);
  line-height: 1.05;
  letter-spacing: 0;
}

.section-text h2 span,
.contact-copy h2 span,
.brands-band h2 span {
  color: var(--blue);
}

.tick-list,
.contact-list {
  display: grid;
  gap: 1.375rem;
  padding: 0;
  margin: 2.25rem 0;
  list-style: none;
}

.tick-list li {
  position: relative;
  padding-left: 3.625rem;
  color: #465f87;
  font-size: 1rem;
  font-weight: 650;
  line-height: 1.7;
}

.tick-list.compact {
  gap: 1.125rem;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.25rem;
  width: 2.125rem;
  height: 2.125rem;
  background: var(--blue-soft);
  border-radius: 50%;
}

.tick-list li::after {
  content: "";
  position: absolute;
  left: 0.75rem;
  top: 0.875rem;
  width: 0.625rem;
  height: 0.375rem;
  border-left: 0.1875rem solid var(--blue);
  border-bottom: 0.1875rem solid var(--blue);
  transform: rotate(-45deg);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: var(--blue);
  font-size: 1rem;
  font-weight: 900;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--blue-strong);
}

.photo-card {
  position: relative;
  min-height: 26.25rem;
  overflow: hidden;
  border-radius: 1.25rem;
  background-color: #d7e5f3;
  background-position: center;
  background-size: cover;
  box-shadow: 0 1.875rem 3.75rem rgba(20, 70, 130, 0.18);
}

.photo-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 48%, rgba(4, 26, 58, 0.14)),
    radial-gradient(circle at 28% 78%, rgba(255, 255, 255, 0.35), transparent 14rem);
}

.ocean {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(8, 39, 79, 0.04)),
    url("./assets/shoppingonline.png");
}

.team-photo {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 39, 79, 0.08)),
    url("./assets/team-experience.png");
}

.mountain {
  background-image:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(8, 39, 79, 0.08)),
    url("./assets/dedicated-support.webp");
}

.floating-badge {
  position: absolute;
  z-index: 2;
  left: 2.125rem;
  bottom: 2.125rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  max-width: min(20rem, calc(100% - 3rem));
  min-height: 5.125rem;
  padding: 1.125rem 1.5rem;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(210, 226, 247, 0.9);
  border-radius: 1.125rem;
  box-shadow: 0 1.125rem 2.75rem rgba(14, 45, 91, 0.18);
  font-size: 1.063rem;
  font-weight: 900;
}

.floating-badge::before {
  content: "";
  display: grid;
  place-items: center;
  width: 2.875rem;
  height: 2.875rem;
  flex: 0 0 auto;
  background: var(--blue-soft);
  border-radius: 50%;
}

.floating-badge::after {
  content: "";
  position: absolute;
  left: 5.625rem;
  bottom: 1.125rem;
  width: 3.875rem;
  height: 0.1875rem;
  background: var(--blue);
  border-radius: 0.1875rem;
}

.floating-badge.check::before {
  background:
    linear-gradient(135deg, transparent 44%, var(--blue) 45% 55%, transparent 56%) center / 0.9375rem 0.9375rem no-repeat,
    var(--blue-soft);
}

.floating-badge.team::before {
  background:
    url("./assets/icon-people-blue.png") center / 1.75rem 1.75rem no-repeat,
    var(--blue-soft);
}

.floating-badge.support::before {
  background:
    radial-gradient(circle at 50% 50%, transparent 0 0.5625rem, var(--blue) 0.625rem 0.75rem, transparent 0.8125rem),
    var(--blue-soft);
}

.brands-band {
  position: relative;
  margin-top: 5.625rem;
  padding: 9.5rem max(1.5rem, calc((100vw - 73.75rem) / 2)) 8.125rem;
  overflow: hidden;
  color: #fbfdff;
  background:
    linear-gradient(120deg, rgba(31, 123, 255, 0.08), transparent 34%),
    repeating-linear-gradient(162deg, rgba(65, 153, 255, 0.1) 0 1px, transparent 1px 0.75rem),
    linear-gradient(180deg, #022353 0%, #001a40 66%, #011636 100%);
  width: 100%;
}

.brands-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 12% 10%, rgba(47, 135, 255, 0.22), transparent 28rem);
}

.brands-band > *:not(.wave) {
  position: relative;
  z-index: 2;
  width: min(73.75rem, calc(100% - 3rem));
  margin-inline: auto;
}

.brands-band h2 {
  max-width: 39.375rem;
  margin-inline: auto;
  color: #ffffff;
  text-align: center;
}

.brand-intro {
  max-width: 36.25rem;
  margin: 1.5rem auto 3.5rem;
  color: #bcd4f6;
  font-size: 1rem;
  line-height: 1.7;
  text-align: center;
}

.brand-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.375rem;
}

.brand-grid article {
  min-height: 15.5rem;
  padding: 2.625rem 2.125rem 2.125rem;
  text-align: center;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  box-shadow: 0 1.375rem 2.875rem rgba(0, 0, 0, 0.16);
}

.brand-grid p {
  max-width: 17.5rem;
  margin: 2.75rem auto 0;
  color: #b8cff0;
  font-size: 0.9375rem;
  line-height: 1.56;
}

.brand-logo {
  display: inline-block;
  min-height: 3.25rem;
  color: #ffffff;
  font-size: 0.938rem;
  font-weight: 900;
}

.brand-logo::after {
  content: "";
  display: block;
  width: 2.125rem;
  height: 0.1875rem;
  margin: 1.75rem auto 0;
  background: var(--blue);
  border-radius: 0.1875rem;
}

.viatrumf {
  font-size: 1.938rem;
  font-weight: 400;
  margin-top: 1.25rem;
}

.brand-logo-img {
  width: 11.25rem;
  height: auto;
  margin-inline: auto;
}

.brand-logo-img-trumf {
  margin-top: 1.25rem;
  margin-bottom: 2.8125rem;
}

.viatrumf span {
  color: #1688ff;
  font-size: 2.625rem;
  font-weight: 900;
}

.rewards {
      margin-top: 1.25rem;
}

.rewards span {
  color: #f0e238;
}

.true {
  color: rgba(255, 255, 255, 0.76);
  font-weight: 500;
  margin-top: 1.25rem;
}

.wave {
  position: absolute;
  right: -6vw;
  left: -6vw;
  height: 9.375rem;
  background: #fbfdff;
  border-radius: 50% / 42%;
}

.wave-top {
  top: -5.5rem;
  border-bottom: 0.875rem solid #166bc6;
  transform: rotate(-2deg);
}

.wave-bottom {
  bottom: -5.375rem;
  border-top: 0.875rem solid #166bc6;
  transform: rotate(-1deg);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(21.625rem, 0.82fr) minmax(0, 1.50fr);
  align-items: start;
  gap: clamp(2.5rem, 6vw, 5.5rem);
  padding: clamp(5.75rem, 10vw, 9.0625rem) 0 4.5rem;
}

.contact-copy h2 {
  max-width: 22.5rem;
}

.contact-copy h2 span {
  font-style: italic;
}

.contact-copy > p {
  max-width: 24.375rem;
  margin: 2.375rem 0 0;
  color: #516b92;
  font-size: 1rem;
  line-height: 1.8;
}

.contact-list {
  gap: 0;
  max-width: 25.625rem;
  margin: 2.625rem 0 0;
}

.contact-list li {
  display: grid;
  grid-template-columns: 3.625rem minmax(0, 1fr);
  align-items: center;
  column-gap: 1.125rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--line);
}

.contact-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.contact-list .small-icon {
  grid-row: 1 / span 2;
}

.contact-list strong,
.contact-list a,
.contact-list li > span:not(.small-icon) {
  grid-column: 2;
  min-width: 0;
}

.contact-list strong {
  display: block;
  margin: 0 0 0.3125rem;
  color: var(--ink);
  font-size: 0.938rem;
}

.contact-list a,
.contact-list b {
  color: var(--blue);
  font-weight: 900;
  overflow-wrap: anywhere;
}

.contact-list li > span:not(.small-icon) {
  color: #5f7398;
  line-height: 1.55;
}

.contact-form {
  display: grid;
  gap: 1.375rem;
  width: 100%;
  min-width: 0;
  align-self: start;
  padding: clamp(1.75rem, 4vw, 2.625rem);
  background: #ffffff;
  border: 1px solid #e6eef8;
  border-radius: 0.75rem;
  box-shadow: 0 1.125rem 2.8125rem rgba(10, 45, 95, 0.08);
}

.form-heading {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 0.5rem;
}

.form-heading h3 {
  margin: 0 0 0.375rem;
  color: var(--ink);
  font-size: 1.375rem;
}

.form-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.875rem;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.375rem;
}

.field-group,
label {
  display: grid;
  gap: 0.625rem;
}

label {
  color: var(--ink);
  font-size: 0.875rem;
  font-weight: 800;
}

input,
textarea {
  width: 100%;
  min-width: 0;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #d7e3f2;
  border-radius: 0.4375rem;
  outline: none;
  transition:
    border-color 180ms ease,
    box-shadow 180ms ease;
}

input {
  min-height: 3.25rem;
  padding: 0 1.125rem;
}

textarea {
  min-height: 8.25rem;
  resize: vertical;
  padding: 1.125rem;
}

input::placeholder,
textarea::placeholder {
  color: #8ea0bc;
}

input:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 0.25rem rgba(31, 123, 255, 0.12);
}

[aria-invalid="true"] {
  border-color: #b42318;
  box-shadow: 0 0 0 0.25rem rgba(180, 35, 24, 0.12);
}

.field-error {
  min-height: 1.25rem;
  color: #b42318;
  font-size: 0.875rem;
  font-weight: 800;
}

.contact-form button {
  justify-self: start;
  min-height: 3.25rem;
  padding: 0 1.625rem;
  color: #ffffff;
  background: linear-gradient(135deg, #197bff, #075cff);
  border: 0;
  border-radius: 0.4375rem;
  box-shadow: 0 0.875rem 1.5rem rgba(31, 123, 255, 0.26);
  font-weight: 900;
  cursor: pointer;
}

.form-status {
  min-height: 1.25rem;
  margin: -0.5rem 0 0;
  color: var(--blue);
  font-size: 0.875rem;
  font-weight: 800;
}

.footer {
  padding: 0 0 1.875rem;
}

.footer h2 {
  margin: 0 0 1.125rem;
  color: var(--ink);
  font-size: 0.813rem;
  font-weight: 900;
  text-transform: uppercase;
}

.footer a {
  display: block;
  margin-top: 0.625rem;
  color: #5f7398;
  font-size: 0.813rem;
  font-weight: 650;
}

.footer a:hover,
.footer a:focus-visible {
  color: var(--blue);
}

.socials {
  display: flex;
  gap: 0.75rem;
}

.socials a {
  display: inline-grid;
  place-items: center;
  width: 2.125rem;
  height: 2.125rem;
  margin: 0;
  color: var(--blue);
  background: var(--blue-soft);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 900;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 3.375rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--line);
  color: #7284a4;
  font-size: 0.75rem;
  line-height: 1.6;
}

.footer-bottom p {
  margin: 0;
}

@media (max-width: 1120px) {
  .nav-shell {
    padding-left: 1.25rem;
  }

  .nav-menu a {
    padding-inline: 0.75rem;
    font-size: 0.813rem;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) minmax(17.5rem, 0.9fr);
    gap: 2.5rem;
    min-height: 44rem;
    padding-top: 8.625rem;
  }

  .hero-image-panel img {
    width: clamp(48rem, 70vw, 60rem);
  }

  .intro-panel {
    grid-template-columns: 1fr 1fr;
  }

  .intro-copy {
    grid-column: 1 / -1;
    border-bottom: 1px solid var(--line);
  }

  .intro-panel article:first-of-type {
    border-left: 0;
  }

  .intro-panel article:nth-of-type(3) {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .intro-panel article:nth-of-type(2) {
    border-top: 1px solid var(--line);
  }

  .split-section,
  .split-section.reverse {
    grid-template-columns: 1fr;
  }

  .split-section.reverse .photo-card {
    order: 2;
  }

  .split-section.reverse .section-text {
    order: 1;
  }

  .section-text {
    max-width: 42.5rem;
  }

  .photo-card {
    min-height: 31.25rem;
  }

  .brand-grid {
    grid-template-columns: 1fr;
    max-width: 45rem;
  }

  .brand-grid article {
    min-height: 13.125rem;
  }

}

@media (max-width: 860px) {
  .site-header {
    padding-top: 1.125rem;
  }

  .nav-shell {
    min-height: 4.25rem;
    border-radius: 1.625rem;
  }

  .nav-toggle {
    display: grid;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 0.75rem;
    background: rgba(7, 18, 39, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 1.5rem;
    box-shadow: 0 1.5rem 3.375rem rgba(0, 0, 0, 0.32);
  }

  .nav-menu.is-open {
    display: flex;
  }

  .nav-menu a {
    justify-content: flex-start;
    min-height: 3rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    width: min(100% - 2.375rem, 42.5rem);
    gap: 2.25rem;
    min-height: 40rem;
    padding: 7.875rem 0 7.375rem;
  }

  .hero-content {
    order: 1;
  }

  .hero h1 {
    max-width: 26.25rem;
  }

  .hero-content p:not(.eyebrow) {
    max-width: 26.25rem;
    font-size: 1rem;
  }

  .hero-image-panel {
    inset: 0 calc((100vw - 100%) / -2);
    height: auto;
    min-height: 0;
  }

  .hero-image-panel::before {
    background:
      linear-gradient(90deg, rgba(3, 27, 64, 1) 0%, rgba(3, 27, 64, 0.96) 42%, rgba(3, 27, 64, 0.54) 66%, rgba(3, 27, 64, 0.16) 100%),
      linear-gradient(180deg, rgba(2, 18, 45, 0.28) 0%, transparent 38%, rgba(2, 18, 45, 0.56) 100%);
  }

  .hero-image-panel img {
    opacity: 0.72;
    right: -11rem;
    width: clamp(42rem, 125vw, 54rem);
  }

  .intro-panel,
  .split-section,
  .contact-section,
  .footer {
    width: min(100% - 2.375rem, 42.5rem);
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 2.75rem;
    padding-top: 5.375rem;
  }

  .contact-copy {
    max-width: none;
    padding-top: 0;
  }

  .contact-copy > p,
  .contact-list {
    max-width: none;
  }

  .intro-panel {
    grid-template-columns: 1fr;
    margin-top: -0.5rem;
  }

  .intro-panel article {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .photo-card {
    min-height: 24.375rem;
    border-radius: 1rem;
  }

  .brands-band {
    padding-top: 7.75rem;
    padding-bottom: 6.75rem;
  }

  .brands-band > *:not(.wave) {
    width: min(100% - 2.375rem, 42.5rem);
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding-inline: 0.875rem;
  }

  .nav-shell {
    padding: 0.625rem 0.625rem 0.625rem 1rem;
  }

  .brand-copy span {
    font-size: 0.75rem;
  }

  .brand-copy strong {
    font-size: 0.75rem;
  }

  .hero {
    min-height: auto;
  }

  .hero::after {
    bottom: -6.125rem;
    height: 10.625rem;
  }

  .hero-inner {
    width: calc(100% - 2rem);
    min-height: 36rem;
    padding: 7rem 0 6.5rem;
    gap: 1.75rem;
  }

  .eyebrow {
    font-size: 0.688rem;
  }

  .hero h1 {
    font-size: clamp(2.625rem, 13vw, 3.5rem);
  }

  .hero-content p:not(.eyebrow) {
    margin-top: 1.75rem;
  }

  .hero-image-panel {
    height: auto;
    min-height: 0;
    border-radius: 0;
  }

  .hero-image-panel img {
    right: -15rem;
    width: clamp(38rem, 150vw, 44rem);
  }

  .hero-image-panel::after {
    content: none;
  }

  .hero-stat-card.secondary {
    display: none;
  }

  .hero-stat-card.primary {
    left: 1rem;
    bottom: 1rem;
    min-width: 8.75rem;
    padding: 0.875rem 1rem;
  }

  .hero-stat-card strong {
    font-size: 1.25rem;
  }

  .intro-panel,
  .split-section,
  .contact-section,
  .footer {
    width: calc(100% - 2rem);
  }

  .intro-panel > * {
    padding: 1.75rem 1.5rem;
  }

  .section-text h2,
  .contact-copy h2,
  .brands-band h2 {
    font-size: clamp(1.938rem, 10vw, 2.625rem);
  }

  .split-section {
    padding-top: 4rem;
  }

  .tick-list li {
    padding-left: 3rem;
    font-size: 0.938rem;
  }

  .photo-card {
    min-height: 20rem;
  }

  .floating-badge {
    left: 1.125rem;
    bottom: 1.125rem;
    min-height: 4.375rem;
    padding: 0.875rem 1rem;
    font-size: 0.875rem;
  }

  .floating-badge::before {
    width: 2.375rem;
    height: 2.375rem;
  }

  .floating-badge::after {
    left: 4.375rem;
    bottom: 0.8125rem;
  }

  .brand-grid article {
    padding: 2rem 1.375rem 1.75rem;
  }

  .contact-section {
    padding-top: 4.75rem;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form {
    padding: 1.5rem 1.125rem;
  }

  .form-heading {
    align-items: flex-start;
  }

}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

  .reveal-on-scroll {
    opacity: 1;
    transform: none;
  }
}
