:root {
  --ink: #061f37;
  --navy: #001f3c;
  --navy-soft: #073150;
  --cyan: #42cfe0;
  --cyan-deep: #219ed4;
  --muted: #5d6a73;
  --line: #dce8ed;
  --paper: #f5f8fa;
  --white: #ffffff;
  --shadow: 0 22px 58px rgba(0, 31, 60, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(18px, 4vw, 56px);
  color: var(--white);
  background: linear-gradient(180deg, rgba(0, 31, 60, 0.42), rgba(0, 31, 60, 0));
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 250px;
}

.brand img {
  width: 270px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(10px, 2vw, 26px);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.94rem;
  font-weight: 800;
  text-shadow: 0 2px 16px rgba(0, 31, 60, 0.42);
}

.nav-cta {
  padding: 10px 16px;
  border-radius: 8px;
  color: var(--navy);
  background: var(--cyan);
  text-shadow: none;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: clamp(122px, 12vw, 170px) clamp(18px, 5vw, 72px) clamp(46px, 8vw, 86px);
}

.hero picture,
.hero img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero img {
  object-fit: cover;
  object-position: 66% center;
}

.hero-home img {
  object-position: 60% center;
}

.hero-home .hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 20, 39, 0.96) 0%, rgba(0, 31, 60, 0.84) 38%, rgba(0, 31, 60, 0.28) 72%, rgba(0, 31, 60, 0.06) 100%),
    linear-gradient(0deg, rgba(0, 31, 60, 0.18), rgba(0, 31, 60, 0.02));
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 20, 39, 0.92) 0%, rgba(0, 31, 60, 0.74) 44%, rgba(0, 31, 60, 0.18) 100%),
    linear-gradient(0deg, rgba(0, 31, 60, 0.22), rgba(0, 31, 60, 0.08));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 690px;
  color: var(--white);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(2.45rem, 6vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
  max-width: 790px;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-content p:not(.eyebrow) {
  max-width: 610px;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1rem, 2vw, 1.2rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.button-primary {
  color: var(--navy);
  background: var(--cyan);
}

.button-secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.46);
  background: rgba(255, 255, 255, 0.1);
}

.trust-band {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-band div {
  padding: 28px clamp(18px, 4vw, 56px);
  background: var(--white);
}

.trust-band strong,
.trust-band span {
  display: block;
}

.trust-band strong {
  font-size: 1.35rem;
  color: var(--navy);
}

.trust-band span {
  color: var(--muted);
}

.section {
  padding: clamp(48px, 6vw, 82px) clamp(18px, 5vw, 72px);
}

.intro,
.split,
.highlight,
.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.section-copy,
.split > div,
.highlight-copy,
.contact-copy {
  max-width: 650px;
}

.section-copy p,
.split p,
.highlight p,
.contact-copy p,
.faq p {
  color: var(--muted);
}

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

.signal-grid article,
.approach-tab,
.team-grid article,
.intervention-grid article {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 8px 24px rgba(0, 31, 60, 0.06);
}

.signal-grid article {
  min-height: 230px;
  padding: 24px;
}

.approach-widget {
  display: grid;
  gap: 16px;
}

.approach-tab {
  min-height: 230px;
  padding: 24px;
  color: var(--ink);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: transform 220ms ease, border-color 220ms ease, background 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.approach-tab:hover,
.approach-tab:focus-visible,
.approach-tab.is-active {
  color: var(--white);
  border-color: rgba(66, 207, 224, 0.56);
  background: var(--navy);
  box-shadow: 0 20px 48px rgba(0, 31, 60, 0.16);
  transform: translateY(-6px);
}

.approach-tab:focus-visible {
  outline: 3px solid rgba(66, 207, 224, 0.58);
  outline-offset: 3px;
}

.approach-tab .tab-title,
.approach-tab > span:last-child {
  display: block;
}

.approach-tab .tab-title {
  margin: 0 0 12px;
  color: inherit;
  font-size: 1.12rem;
  font-weight: 900;
}

.approach-tab > span:last-child {
  color: var(--muted);
}

.approach-tab:hover > span:last-child,
.approach-tab:focus-visible > span:last-child,
.approach-tab.is-active > span:last-child {
  color: rgba(255, 255, 255, 0.82);
}

.signal-icon {
  display: block;
  width: 54px;
  height: 54px;
  margin-bottom: 34px;
  color: var(--cyan-deep);
}

.signal-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}

.approach-tab:hover .signal-icon,
.approach-tab:focus-visible .signal-icon,
.approach-tab.is-active .signal-icon {
  color: var(--cyan);
}

.approach-panel {
  position: relative;
  overflow: hidden;
  padding: 24px 28px;
  border-radius: 8px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 31, 60, 0.96), rgba(7, 49, 80, 0.92)),
    var(--navy);
  box-shadow: 0 18px 42px rgba(0, 31, 60, 0.16);
}

.approach-panel::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 170px;
  height: 170px;
  border: 1px solid rgba(66, 207, 224, 0.22);
  border-radius: 50%;
}

.approach-panel span,
.approach-panel strong,
.approach-panel p {
  position: relative;
  z-index: 1;
  display: block;
}

.approach-panel span {
  margin-bottom: 10px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.approach-panel strong {
  margin-bottom: 8px;
  font-size: 1.24rem;
}

.approach-panel p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
}

.need-section {
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  background: var(--white);
}

.need-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.need-card {
  border-color: rgba(33, 158, 212, 0.22);
  background: #f8fcfd;
}

.need-card:hover {
  border-color: rgba(33, 158, 212, 0.52);
  box-shadow: 0 16px 34px rgba(0, 31, 60, 0.08);
}

.need-card summary {
  min-height: 86px;
  color: var(--navy);
  transition: color 200ms ease, background 200ms ease;
}

.need-card[open] summary {
  color: var(--white);
  background: var(--navy);
}

.need-card[open] summary::after {
  border-color: var(--cyan);
}

.need-panel p {
  margin: 0;
  padding: 20px 24px 24px;
  color: var(--muted);
}

.process-list {
  counter-reset: process-step;
  margin: 0;
  padding: 0;
  list-style: none;
}

.process-list li {
  counter-increment: process-step;
  position: relative;
  display: grid;
  grid-template-columns: 76px minmax(190px, 0.65fr) minmax(260px, 1.35fr);
  gap: 20px;
  align-items: center;
  min-height: 122px;
  padding: 22px 22px 22px 0;
  border-bottom: 1px solid var(--line);
  border-radius: 8px;
  cursor: pointer;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    box-shadow 240ms ease,
    transform 240ms ease;
}

.process-list li::before {
  position: absolute;
  inset: 16px auto 16px 0;
  width: 3px;
  border-radius: 999px;
  background: var(--cyan);
  content: "";
  opacity: 0;
  transform: scaleY(0.42);
  transform-origin: center;
  transition: opacity 220ms ease, transform 220ms ease;
}

.process-list li::after {
  position: absolute;
  top: 16px;
  right: 18px;
  color: rgba(0, 31, 60, 0.16);
  font-size: 0.76rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  content: "0" counter(process-step);
  opacity: 0;
  transform: translateY(4px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.process-list li:hover,
.process-list li:focus-visible,
.process-list li.is-active {
  background: rgba(255, 255, 255, 0.82);
  border-color: rgba(33, 158, 212, 0.2);
  box-shadow: 0 18px 42px rgba(0, 31, 60, 0.08);
  transform: translateX(-8px);
}

.process-list li:hover::before,
.process-list li:focus-visible::before,
.process-list li.is-active::before,
.process-list li:hover::after,
.process-list li:focus-visible::after,
.process-list li.is-active::after {
  opacity: 1;
  transform: none;
}

.process-list li:focus-visible {
  outline: 2px solid rgba(66, 207, 224, 0.52);
  outline-offset: 4px;
}

.process-icon {
  display: grid;
  place-items: center;
  grid-column: 1;
  width: 48px;
  height: 48px;
  margin-left: 18px;
  border: 1px solid rgba(33, 158, 212, 0.22);
  border-radius: 50%;
  color: var(--cyan-deep);
  background: rgba(255, 255, 255, 0.44);
  transition: background 240ms ease, border-color 240ms ease, color 240ms ease, transform 240ms ease;
}

.process-icon svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.process-list strong {
  display: block;
  grid-column: 2;
  transition: color 220ms ease, transform 220ms ease;
}

.process-list li > span:not(.process-icon) {
  display: block;
  grid-column: 3;
  color: var(--muted);
  transition: color 220ms ease, transform 220ms ease;
}

.process-list li:hover .process-icon,
.process-list li:focus-visible .process-icon,
.process-list li.is-active .process-icon {
  border-color: rgba(66, 207, 224, 0.58);
  color: var(--white);
  background: var(--cyan-deep);
  transform: scale(1.04);
}

.process-list li:hover strong,
.process-list li:focus-visible strong,
.process-list li.is-active strong {
  color: var(--cyan-deep);
  transform: translateX(4px);
}

.process-list li:hover > span:not(.process-icon),
.process-list li:focus-visible > span:not(.process-icon),
.process-list li.is-active > span:not(.process-icon) {
  color: var(--ink);
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .process-list li,
  .process-list li::before,
  .process-list li::after,
  .process-icon,
  .process-list strong,
  .process-list li > span:not(.process-icon) {
    transition: none;
  }

  .process-list li:hover,
  .process-list li:focus-visible,
  .process-list li.is-active,
  .process-list li:hover .process-icon,
  .process-list li:focus-visible .process-icon,
  .process-list li.is-active .process-icon,
  .process-list li:hover strong,
  .process-list li:focus-visible strong,
  .process-list li.is-active strong,
  .process-list li:hover > span:not(.process-icon),
  .process-list li:focus-visible > span:not(.process-icon),
  .process-list li.is-active > span:not(.process-icon) {
    transform: none;
  }
}

.text-link {
  display: inline-flex;
  margin-top: 10px;
  color: var(--cyan-deep);
  font-weight: 900;
  border-bottom: 2px solid currentColor;
}

.section-button {
  width: fit-content;
  margin-top: 12px;
}

.intervention {
  background: #edf6f9;
}

.intervention .section-heading {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  max-width: none;
  text-align: center;
}

.intervention .section-heading > * {
  grid-column: 2 / 5;
}

.intervention-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1320px;
  margin: 0 auto;
  background: rgba(0, 31, 60, 0.1);
  border: 1px solid rgba(0, 31, 60, 0.1);
  border-radius: 8px;
  overflow: hidden;
}

.intervention-grid article {
  min-height: 270px;
  padding: 42px 34px;
  text-align: center;
  box-shadow: none;
  border: 0;
  border-radius: 0;
}

.intervention-grid strong,
.intervention-grid span:not(.key-icon) {
  display: block;
}

.intervention-grid strong {
  margin: 22px 0 10px;
  color: var(--navy);
  font-size: 1.08rem;
}

.intervention-grid span:not(.key-icon) {
  color: var(--muted);
  font-size: 1rem;
}

.key-icon {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto;
  border-radius: 8px;
  color: var(--cyan-deep);
  background: transparent;
}

.key-icon svg {
  width: 72px;
  height: 72px;
  fill: none;
  stroke: currentColor;
  stroke-width: 0.95;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.highlight {
  color: var(--white);
  background: var(--navy);
}

.highlight .eyebrow {
  color: var(--cyan);
}

.highlight p {
  color: rgba(255, 255, 255, 0.78);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-list div {
  min-height: 116px;
  padding: 22px;
  border: 1px solid rgba(66, 207, 224, 0.24);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  font-weight: 900;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading .section-lead {
  max-width: 760px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.05rem;
}

.units-section .section-heading {
  max-width: 1320px;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.units-section .section-heading h2 {
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.units-section .section-heading .section-lead {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.unit-grid article {
  min-height: 340px;
  transition: transform 220ms ease, background 220ms ease, box-shadow 220ms ease;
}

.unit-grid article:hover {
  background: #f8fcfd;
  box-shadow: 0 18px 42px rgba(0, 31, 60, 0.1);
  transform: translateY(-6px);
}

.unit-icon {
  width: 132px;
  height: 132px;
  margin-bottom: 12px;
}

.unit-icon svg {
  width: 88px;
  height: 88px;
  stroke-width: 1.15;
}

.unit-icon img {
  width: 124px;
  height: 124px;
  object-fit: contain;
}

.team {
  background: var(--white);
}

.team .section-heading {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.team-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  max-width: 1480px;
  margin: 0 auto;
}

.team-grid article {
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.team-grid h3,
.team-grid p {
  padding: 0 24px;
}

.team-grid h3 {
  margin-top: 24px;
  line-height: 1.15;
}

.team-grid p {
  margin-top: auto;
  padding-bottom: 26px;
  color: var(--muted);
}

.team-photo {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  background: #edf4f7;
}

.team-photo > img:first-child {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-photo-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 32% 26%, rgba(66, 207, 224, 0.22), transparent 34%),
    linear-gradient(135deg, #eef7fa 0%, #dfeef3 100%);
}

.team-photo-placeholder span {
  display: grid;
  place-items: center;
  width: 86px;
  height: 86px;
  border: 1px solid rgba(33, 158, 212, 0.28);
  border-radius: 50%;
  color: var(--navy);
  background: rgba(255, 255, 255, 0.72);
  font-size: 1.5rem;
  font-weight: 900;
}

.insurance-section {
  padding: clamp(48px, 6vw, 86px) 0;
  overflow: hidden;
  background: #edf6f9;
}

.insurance-section .section-heading {
  max-width: 760px;
  margin-right: auto;
  margin-left: auto;
  padding: 0 clamp(18px, 5vw, 72px);
  text-align: center;
}

.logo-ticker {
  position: relative;
  margin-top: 30px;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0, #000 14%, #000 86%, transparent 100%);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 24px;
  padding: 4px 0;
  animation: logo-scroll 64s linear infinite;
  will-change: transform;
}

.logo-track img {
  width: 260px;
  height: 136px;
  object-fit: contain;
  padding: 12px 16px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 24px rgba(0, 31, 60, 0.05);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.logo-track img:hover {
  border-color: rgba(33, 158, 212, 0.36);
  box-shadow: 0 16px 36px rgba(0, 31, 60, 0.1);
  transform: translateY(-4px);
}

@keyframes logo-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(calc(-50% - 12px), 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .logo-track {
    animation: none;
  }
}

.traffic-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1.18fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(58px, 7vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(0, 31, 60, 0.98) 0%, rgba(7, 49, 80, 0.96) 56%, rgba(33, 158, 212, 0.88) 100%);
}

.traffic-copy {
  max-width: 690px;
}

.traffic-copy .eyebrow {
  color: var(--cyan);
}

.traffic-copy h2 {
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.2rem, 5vw, 4.7rem);
}

.traffic-copy p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.traffic-button {
  margin-top: 20px;
}

.traffic-visual {
  position: relative;
  margin: 0;
  min-height: clamp(380px, 42vw, 560px);
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 28px 70px rgba(0, 10, 24, 0.32);
}

.traffic-visual img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  object-position: center;
}

.faq {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.9fr);
  gap: clamp(34px, 6vw, 74px);
  align-items: stretch;
}

.faq-list {
  display: grid;
  gap: 12px;
  max-width: 960px;
}

details {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

summary {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 24px;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border-right: 2px solid var(--cyan-deep);
  border-bottom: 2px solid var(--cyan-deep);
  transform: rotate(45deg) translateY(-3px);
  transition: transform 220ms ease;
}

details[open] {
  border-color: rgba(33, 158, 212, 0.38);
  box-shadow: 0 12px 26px rgba(0, 31, 60, 0.06);
}

details[open] summary::after {
  transform: rotate(225deg) translate(-2px, -1px);
}

details p {
  padding: 0 24px 22px;
}

@media (prefers-reduced-motion: reduce) {
  details,
  summary::after {
    transition: none;
  }
}

.faq-visual {
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  margin: 0;
}

.faq-visual img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  max-height: none;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.faq-visual figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-section {
  padding: clamp(64px, 9vw, 118px) clamp(18px, 5vw, 72px);
  background: #e8f4f7;
}

.contact-copy small {
  display: block;
  max-width: 560px;
  color: var(--muted);
}

.contact-details {
  display: grid;
  gap: 16px;
  max-width: 650px;
  margin: 28px 0 0;
  padding: 22px;
  border: 1px solid rgba(0, 31, 60, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 36px rgba(0, 31, 60, 0.07);
  font-style: normal;
}

.contact-details div {
  display: grid;
  gap: 5px;
}

.contact-details strong {
  color: var(--navy);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.contact-details span,
.contact-details a {
  color: var(--muted);
}

.contact-details a {
  font-weight: 900;
  text-decoration: none;
}

.contact-details a:hover {
  color: var(--cyan-deep);
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

label {
  display: grid;
  gap: 8px;
  color: var(--navy-soft);
  font-size: 0.92rem;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  border: 1px solid #cbdbe2;
  border-radius: 8px;
  padding: 12px 13px;
  color: var(--ink);
  background: #fbfcfd;
  font: inherit;
}

textarea {
  resize: vertical;
}

.form-result {
  min-height: 100vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 18px;
  padding: clamp(32px, 8vw, 80px);
  text-align: center;
  background: #e8f4f7;
}

.form-result img {
  width: min(260px, 70vw);
}

.form-result h1 {
  max-width: 720px;
  margin: 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.8rem);
}

.form-result p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
}

.full {
  grid-column: 1 / -1;
}

.privacy {
  grid-template-columns: 18px 1fr;
  align-items: start;
  color: var(--muted);
  font-weight: 600;
}

.privacy input {
  min-height: auto;
  margin-top: 4px;
}

.whatsapp-float {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 30;
  display: grid;
  place-items: center;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  color: var(--white);
  background: #25d366;
  box-shadow: 0 20px 46px rgba(0, 31, 60, 0.3);
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(37, 211, 102, 0.22);
  filter: blur(18px);
}

.whatsapp-float::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: -10px;
  width: 18px;
  height: 18px;
  border-right: 3px solid #ffffff;
  border-bottom: 3px solid #ffffff;
  transform: rotate(45deg);
}

.whatsapp-float svg {
  width: 42px;
  height: 42px;
  fill: currentColor;
}

.site-footer {
  padding: 64px clamp(28px, 7vw, 116px);
  color: rgba(255, 255, 255, 0.9);
  background: var(--navy);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(300px, 1.35fr) minmax(150px, 0.72fr) minmax(160px, 0.72fr) minmax(280px, 1fr);
  gap: clamp(28px, 4vw, 70px);
  max-width: 1480px;
  margin: 0 auto;
  align-items: start;
}

.footer-brand {
  display: grid;
  gap: 20px;
  align-content: start;
}

.footer-logos {
  display: grid;
  justify-items: center;
}

.footer-logos img {
  width: 230px;
  max-height: 112px;
  object-fit: contain;
  object-position: center;
}

.footer-brand p {
  max-width: 520px;
  margin: 4px 0 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.02rem;
  line-height: 1.75;
  text-align: justify;
}

.footer-contact {
  display: grid;
  gap: 16px;
  align-content: start;
}

.footer-viamed-logo {
  justify-self: start;
  width: 238px;
  max-height: 100px;
  margin-top: 10px;
  object-fit: contain;
  object-position: left center;
}

address {
  font-style: normal;
}

.footer-contact span {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: center;
  font-weight: 800;
}

.footer-contact svg {
  width: 24px;
  height: 24px;
  fill: var(--white);
}

.footer-nav,
.footer-links {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 12px;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
}

.footer-nav a,
.footer-links a,
.footer-contact span,
.footer-contact a {
  font-weight: 500;
}

.footer-nav h3,
.footer-links h3,
.footer-contact h3 {
  margin: 0 0 16px;
  color: var(--white);
  font-size: 1.28rem;
  line-height: 1.1;
}

.legal-shell {
  min-height: 100vh;
  color: var(--ink);
  background: #f3f8fa;
}

.legal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 26px clamp(20px, 5vw, 76px);
  background: var(--navy);
}

.legal-header img {
  width: min(260px, 58vw);
  max-height: 92px;
  object-fit: contain;
  object-position: left center;
}

.legal-header nav {
  gap: 18px;
  font-weight: 600;
  text-shadow: none;
}

.legal-main {
  max-width: 980px;
  margin: 0 auto;
  padding: clamp(46px, 8vw, 90px) clamp(20px, 5vw, 48px);
}

.legal-main h1 {
  margin: 0;
  color: var(--navy);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.98;
}

.legal-main h2 {
  margin: 42px 0 14px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.9rem);
}

.legal-main h3 {
  margin: 28px 0 10px;
  color: var(--navy-soft);
  font-size: 1.1rem;
}

.legal-main p,
.legal-main li {
  color: #385265;
  font-size: 1.02rem;
  line-height: 1.75;
}

.legal-main ul {
  padding-left: 1.25rem;
}

.legal-meta {
  margin: 18px 0 0;
  color: var(--muted);
}

.legal-panel {
  margin-top: 34px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.legal-data {
  display: grid;
  grid-template-columns: minmax(150px, 0.45fr) 1fr;
  gap: 10px 18px;
  margin: 22px 0;
  color: #385265;
}

.legal-data dt {
  color: var(--navy-soft);
  font-weight: 800;
}

.legal-data dd {
  margin: 0;
}

.legal-table {
  width: 100%;
  margin: 22px 0;
  border-collapse: collapse;
  color: #385265;
  font-size: 0.98rem;
}

.legal-table th,
.legal-table td {
  padding: 13px 12px;
  border: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.legal-table th {
  color: var(--navy);
  background: #e8f4f7;
}

.legal-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.legal-footer {
  padding: 28px clamp(20px, 5vw, 76px);
  color: rgba(255, 255, 255, 0.82);
  background: var(--navy);
}

.legal-footer a {
  color: var(--white);
}

@media (max-width: 1180px) {
  .intervention-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    padding: 18px clamp(18px, 4vw, 32px);
    background: linear-gradient(180deg, rgba(0, 31, 60, 0.72), rgba(0, 31, 60, 0));
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .legal-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .legal-header nav {
    flex-wrap: wrap;
    font-size: 0.9rem;
  }

  .hero {
    min-height: 720px;
  }

  .trust-band,
  .intro,
  .split,
  .highlight,
  .contact-section,
  .need-section,
  .traffic-section,
  .signal-grid,
  .unit-grid,
  .faq,
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .unit-grid {
    max-width: 760px;
  }

  .intervention .section-heading > * {
    grid-column: 1 / -1;
  }

  .feature-list {
    grid-template-columns: 1fr 1fr;
  }

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

  .faq-visual img {
    min-height: 420px;
    max-height: 420px;
  }

  .traffic-visual {
    min-height: 430px;
  }
}

@media (max-width: 640px) {
  .brand {
    min-width: 0;
  }

  .brand img {
    width: 190px;
    height: 62px;
  }

  nav {
    gap: 12px;
    font-size: 0.84rem;
    flex-wrap: wrap;
    overflow: visible;
  }

  .nav-cta {
    padding: 9px 12px;
    white-space: normal;
  }

  .hero {
    min-height: 760px;
    align-items: end;
    padding-top: 258px;
    padding-bottom: 42px;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(0, 20, 39, 0.98) 0%, rgba(0, 31, 60, 0.86) 56%, rgba(0, 31, 60, 0.34) 100%),
      linear-gradient(90deg, rgba(0, 20, 39, 0.74) 0%, rgba(0, 31, 60, 0.38) 48%, rgba(0, 31, 60, 0.12) 100%);
  }

  .hero img {
    object-position: 78% center;
  }

  .hero-home img {
    object-position: 56% center;
  }

  .hero-content {
    max-width: 100%;
  }

  h1 {
    font-size: clamp(2.2rem, 12vw, 3.25rem);
  }

  .button,
  .hero-actions {
    width: 100%;
  }

  .trust-band div {
    padding: 22px 18px;
  }

  .section,
  .contact-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .traffic-section {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .traffic-visual {
    min-height: 300px;
  }

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

  .process-list li {
    grid-template-columns: 72px 1fr;
    min-height: auto;
    padding: 18px 14px 18px 0;
  }

  .process-list li:hover,
  .process-list li:focus-visible,
  .process-list li.is-active {
    transform: none;
  }

  .process-list li::after {
    display: none;
  }

  .process-icon {
    grid-row: 1 / span 2;
    margin-left: 12px;
  }

  .process-list strong,
  .process-list li > span:not(.process-icon) {
    grid-column: 2;
  }

  .intervention-grid,
  .feature-list,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 62px;
    height: 62px;
  }
}
