:root {
  --teal: #07b3d3;
  --magenta: #d91e73;
  --navy: #022e68;
  --ink: #10213f;
  --muted: #5c6b82;
  --line: #dce7ee;
  --soft: #f3f9fb;
  --rose-soft: #fff3f8;
  --white: #ffffff;
  --shadow: 0 18px 48px rgba(2, 46, 104, 0.13);
  --shadow-soft: 0 14px 34px rgba(2, 46, 104, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

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

.icon-sprite {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon,
.button-icon,
.heading-icon,
.footer-link-icon,
.bottom-icon {
  flex: 0 0 auto;
  width: 1em;
  height: 1em;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-icon {
  width: 1.12rem;
  height: 1.12rem;
  stroke-width: 2.2;
}

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -100px;
  z-index: 100;
  padding: 10px 14px;
  background: var(--navy);
  color: var(--white);
  border-radius: 6px;
  text-decoration: none;
}

.skip-link:focus {
  top: 16px;
}

.topbar {
  background: var(--navy);
  color: var(--white);
  font-size: 0.92rem;
}

.topbar-inner,
.nav-inner,
.section-inner,
.footer-inner {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  min-width: 0;
}

.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 9px 0;
}

.topbar a {
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(220, 231, 238, 0.85);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, border-color 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(255, 255, 255, 0.2);
  box-shadow: 0 16px 34px rgba(2, 46, 104, 0.1);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 112px;
  padding: 10px 0;
  transition: min-height 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled .nav-inner {
  min-height: 88px;
  padding: 8px 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 1 auto;
  min-width: 0;
  padding: 6px 0;
  text-decoration: none;
}

.brand img {
  width: auto;
  height: 90px;
  max-width: 210px;
  object-fit: contain;
  transition: height 180ms ease, max-width 180ms ease, transform 180ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  transform: translateY(-1px);
}

.site-header.is-scrolled .brand img {
  height: 72px;
  max-width: 178px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  box-shadow: none;
}

.nav-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 0;
  color: #263856;
  font-size: 0.96rem;
  font-weight: 800;
  text-decoration: none;
  border-radius: 0;
  transition: color 160ms ease, transform 160ms ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 3px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible,
.nav-links a[aria-current="location"] {
  color: var(--navy);
  outline: none;
}

.nav-links a:hover {
  transform: translateY(-1px);
}

.nav-links a:hover::after,
.nav-links a:focus-visible::after,
.nav-links a[aria-current="location"]::after {
  transform: scaleX(1);
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 9px 14px;
  color: var(--navy);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(7, 179, 211, 0.55), rgba(217, 30, 115, 0.45)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.lang-switch:hover,
.lang-switch:focus-visible {
  border-color: rgba(7, 179, 211, 0.55);
  box-shadow: var(--shadow-soft);
  outline: none;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--navy);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(7, 179, 211, 0.55), rgba(2, 46, 104, 0.32)) border-box;
  border: 1px solid transparent;
  border-radius: 8px;
  font: inherit;
  font-weight: 800;
  box-shadow: 0 8px 20px rgba(2, 46, 104, 0.06);
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 13px 18px;
  border: 0;
  border-radius: 8px;
  font-weight: 800;
  text-decoration: none;
  overflow: hidden;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, background-position 320ms ease, border-color 220ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-3px) scale(1.01);
  outline: none;
}

.button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 90ms;
}

.button .button-icon {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.button:hover .button-icon,
.button:focus-visible .button-icon {
  transform: translateX(2px) scale(1.08);
}

.button-primary {
  color: var(--white);
  background: linear-gradient(110deg, var(--magenta) 0%, var(--magenta) 45%, #c31966 55%, #b71760 100%);
  background-position: 0 0;
  background-size: 220% 100%;
  box-shadow: 0 14px 30px rgba(217, 30, 115, 0.22);
}

.button-primary:hover,
.button-primary:focus-visible {
  background-position: 100% 0;
  box-shadow: 0 18px 36px rgba(217, 30, 115, 0.28);
}

.button-secondary {
  color: var(--navy);
  background: var(--white);
  border: 1px solid rgba(2, 46, 104, 0.18);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--soft);
  box-shadow: 0 12px 26px rgba(2, 46, 104, 0.1);
}

.hero {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, #ffffff 0%, #f7fbfd 46%, #edf7fa 100%);
  border-bottom: 1px solid var(--line);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: 680px;
  margin: 0;
  padding: 46px 0 52px;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 48fr) minmax(0, 52fr);
  grid-template-rows: auto auto;
  align-items: center;
  gap: 0 28px;
  width: min(1160px, calc(100% - 40px));
  min-height: 582px;
  margin: 0 auto;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
  padding-top: 18px;
}

.hero-conversion {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: #f7fbfd;
}

.hero-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 34%, rgba(255, 255, 255, 0.54) 48%, rgba(255, 255, 255, 0) 66%);
  pointer-events: none;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: linear-gradient(90deg, var(--teal), var(--magenta), var(--navy));
  opacity: 0.82;
  z-index: 3;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 12%, rgba(7, 179, 211, 0.08), transparent 30%),
    radial-gradient(circle at 94% 84%, rgba(217, 30, 115, 0.045), transparent 26%);
  z-index: 0;
  pointer-events: none;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 17px;
  color: #018eab;
  font-size: 0.96rem;
  font-weight: 900;
}

.eyebrow::before {
  content: "";
  width: 34px;
  height: 3px;
  background: var(--teal);
  border-radius: 999px;
}

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

h1 {
  max-width: 570px;
  margin-bottom: 20px;
  color: var(--navy);
  font-size: clamp(3rem, 4.7vw, 4.5rem);
  line-height: 1.02;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

.lead {
  max-width: 560px;
  color: #25395a;
  font-size: clamp(1.06rem, 1.5vw, 1.18rem);
  line-height: 1.65;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 28px 0 27px;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 560px;
  margin: 0;
  padding: 18px 0 0;
  list-style: none;
  border-top: 1px solid rgba(2, 46, 104, 0.12);
}

.hero-trust li {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: #324866;
  font-size: 0.78rem;
  font-weight: 750;
  line-height: 1.25;
  white-space: nowrap;
}

.hero-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  color: #018eab;
  background: rgba(7, 179, 211, 0.08);
  border: 1px solid rgba(7, 179, 211, 0.14);
  border-radius: 50%;
}

.hero-trust-icon .icon {
  width: 16px;
  height: 16px;
}

html[lang="en"] .hero-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 14px;
}

html[lang="en"] .hero-trust li {
  white-space: normal;
}

.section {
  scroll-margin-top: 126px;
  padding: 88px 0;
}

.section-soft {
  background:
    linear-gradient(180deg, #f4fafc 0%, #eef8fb 52%, #ffffff 100%);
}

.section-rose {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #fff8fb 46%, #ffffff 100%);
}

.section-kicker {
  margin-bottom: 10px;
  color: var(--magenta);
  font-weight: 900;
}

.section h2 {
  max-width: 760px;
  color: var(--navy);
  font-size: clamp(2rem, 3.2vw, 3.3rem);
  line-height: 1.08;
  letter-spacing: 0;
}

.section-intro {
  max-width: 780px;
  color: var(--muted);
  font-size: 1.08rem;
}

.service-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
  gap: 34px;
  align-items: end;
}

.service-highlights {
  padding: 18px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(220, 231, 238, 0.96);
  border-left: 4px solid var(--teal);
  border-radius: 8px;
  box-shadow: 0 16px 34px rgba(2, 46, 104, 0.07);
}

.service-highlights div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-top: 1px solid rgba(220, 231, 238, 0.82);
}

.service-highlights div:first-child {
  padding-top: 0;
  border-top: 0;
}

.service-highlights div:last-child {
  padding-bottom: 0;
}

.service-highlights span {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 800;
}

.service-highlights strong {
  color: var(--navy);
  font-size: 0.98rem;
  text-align: right;
}

.service-layout {
  margin-top: 42px;
}

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

.service-card,
.info-card,
.notice-card,
.contact-panel,
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.service-card,
.info-card,
.credential,
.faq-item,
.contact-panel {
  transition: border-color 260ms ease, box-shadow 260ms ease, transform 260ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover,
.credential:hover,
.faq-item:hover {
  border-color: rgba(7, 179, 211, 0.32);
  box-shadow: var(--shadow-soft);
  transform: translateY(-2px);
}

.service-card:hover,
.info-card:hover {
  border-color: rgba(7, 179, 211, 0.42);
  box-shadow: 0 22px 44px rgba(2, 46, 104, 0.13);
  transform: translateY(-7px);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 214px;
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 254, 255, 0.98)),
    var(--white);
  box-shadow: 0 12px 28px rgba(2, 46, 104, 0.06);
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--teal), var(--magenta));
  transform: scaleX(0.38);
  transform-origin: left center;
  transition: transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
  margin-bottom: 24px;
}

.service-icon,
.advanced-icon,
.contact-icon {
  display: grid;
  place-items: center;
  color: var(--navy);
  background:
    linear-gradient(135deg, rgba(7, 179, 211, 0.14), rgba(217, 30, 115, 0.08)),
    #ffffff;
  border: 1px solid rgba(7, 179, 211, 0.24);
  border-radius: 8px;
}

.service-icon {
  width: 44px;
  height: 44px;
  transition: color 240ms ease, background 240ms ease, border-color 240ms ease, box-shadow 240ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.service-card:hover .service-icon {
  color: var(--magenta);
  background: linear-gradient(135deg, rgba(7, 179, 211, 0.18), rgba(217, 30, 115, 0.13)), #ffffff;
  border-color: rgba(217, 30, 115, 0.25);
  box-shadow: 0 10px 22px rgba(2, 46, 104, 0.1);
  transform: translateY(-2px) rotate(-3deg) scale(1.06);
}

.service-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.16rem;
  line-height: 1.22;
}

.service-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.advanced-panel {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) repeat(2, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  margin-top: 24px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(220, 231, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 18px 44px rgba(2, 46, 104, 0.07);
}

.advanced-heading {
  align-self: center;
  padding: 4px 0 4px 18px;
  border-left: 4px solid var(--magenta);
}

.advanced-heading span {
  display: block;
  margin-bottom: 8px;
  color: var(--magenta);
  font-size: 0.88rem;
  font-weight: 900;
}

.advanced-heading h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.35rem;
  line-height: 1.15;
}

.advanced-heading p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.info-card {
  padding: 24px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  box-shadow: 0 12px 28px rgba(2, 46, 104, 0.06);
}

.info-card-head {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}

.advanced-icon {
  width: 42px;
  height: 42px;
  color: var(--teal);
  transition: color 240ms ease, box-shadow 240ms ease, transform 280ms cubic-bezier(0.22, 1, 0.36, 1);
}

.info-card:hover .advanced-icon {
  color: var(--magenta);
  box-shadow: 0 10px 22px rgba(2, 46, 104, 0.1);
  transform: translateY(-2px) scale(1.07);
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  color: var(--navy);
  background: rgba(7, 179, 211, 0.12);
  border: 1px solid rgba(7, 179, 211, 0.25);
  border-radius: 8px;
  font-size: 0.86rem;
  font-weight: 900;
}

.info-card h3 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.38rem;
}

.info-card p {
  color: var(--muted);
}

.mini-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mini-list li {
  position: relative;
  padding: 10px 0 10px 28px;
  color: var(--ink);
  border-top: 1px solid var(--line);
}

.mini-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18px;
  width: 10px;
  height: 10px;
  background: var(--teal);
  border-radius: 50%;
}

.provider-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 42px;
  align-items: center;
}

.provider-photo {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  min-height: 420px;
  background:
    linear-gradient(135deg, rgba(7, 179, 211, 0.12), rgba(217, 30, 115, 0.1)),
    #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.provider-photo img {
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  object-position: center 14%;
}

.provider-name {
  margin: -2px 0 10px;
  color: #047fa1;
  font-size: 1.08rem;
  font-weight: 900;
}

.provider-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 22px 0 0;
}

.provider-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  color: var(--navy);
  background: #f4fafc;
  border: 1px solid rgba(7, 179, 211, 0.22);
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 900;
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 28px 0;
}

.credential {
  min-height: 110px;
  padding: 16px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.credential strong {
  display: block;
  color: var(--navy);
  font-size: 1.1rem;
}

.credential span {
  color: var(--muted);
  font-size: 0.94rem;
}

.notice-card {
  padding: 20px;
  color: #31415b;
  background: #fffdf9;
  border-color: #f1dec4;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  margin-top: 36px;
}

.contact-panel {
  padding: 28px;
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%);
  box-shadow: 0 20px 46px rgba(2, 46, 104, 0.1);
}

.contact-panel h3 {
  color: var(--navy);
  font-size: 1.45rem;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 24px 0;
}

.contact-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 22px;
  padding: 0;
  list-style: none;
  counter-reset: contact-step;
}

.contact-steps li {
  position: relative;
  min-height: 86px;
  padding: 14px 14px 14px 46px;
  color: var(--navy);
  background: #f7fbfd;
  border: 1px solid rgba(7, 179, 211, 0.2);
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 800;
  line-height: 1.35;
}

.contact-steps li::before {
  counter-increment: contact-step;
  content: counter(contact-step);
  position: absolute;
  left: 14px;
  top: 14px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), var(--magenta));
  border-radius: 50%;
  font-size: 0.78rem;
  font-weight: 900;
}

.contact-list {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-list div {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  column-gap: 12px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
}

.contact-icon {
  grid-row: 1 / span 2;
  width: 36px;
  height: 36px;
  color: var(--teal);
}

.contact-list dt {
  color: var(--muted);
  font-weight: 800;
}

.contact-list dd {
  margin: 3px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.faq-stack {
  display: grid;
  gap: 12px;
}

.faq-item {
  padding: 20px;
}

.faq-item h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.02rem;
}

.faq-item p {
  margin: 0;
  color: var(--muted);
}

.emergency {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 12px;
  margin-top: 18px;
  padding: 18px;
  color: #4b2334;
  background: #fff3f8;
  border: 1px solid rgba(217, 30, 115, 0.22);
  border-radius: 8px;
}

.emergency-icon {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  color: var(--magenta);
  background: #ffffff;
  border: 1px solid rgba(217, 30, 115, 0.22);
  border-radius: 8px;
}

.site-footer {
  color: var(--ink);
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fbfd 34%, #f1f7fa 100%);
  border-top: 1px solid var(--line);
}

.footer-cta-wrap {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 54px 0 58px;
}

.footer-cta-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 28px 32px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(220, 231, 238, 0.95);
  border-radius: 8px;
  box-shadow: 0 22px 54px rgba(2, 46, 104, 0.08);
}

.footer-cta-copy {
  display: flex;
  align-items: center;
  gap: 22px;
  min-width: 0;
}

.footer-cta-mark {
  position: relative;
  flex: 0 0 58px;
  width: 58px;
  height: 58px;
  border: 3px solid var(--magenta);
  border-radius: 22px 22px 22px 8px;
}

.footer-cta-mark::before,
.footer-cta-mark::after {
  content: "";
  position: absolute;
  border-radius: 50%;
}

.footer-cta-mark::before {
  right: -6px;
  bottom: -6px;
  width: 35px;
  height: 33px;
  border: 3px solid var(--teal);
  border-radius: 18px 18px 8px 18px;
  background: #ffffff;
}

.footer-cta-mark::after {
  right: 7px;
  bottom: 8px;
  width: 10px;
  height: 10px;
  background: var(--navy);
  transform: rotate(-45deg);
}

.footer-cta-card h2 {
  margin-bottom: 4px;
  color: var(--navy);
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1.15;
}

.footer-cta-card p {
  margin: 0;
  color: var(--muted);
  font-size: 1.04rem;
}

.footer-cta-actions {
  display: flex;
  flex: 0 0 auto;
  gap: 14px;
}

.footer-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 50px;
  min-width: 164px;
  padding: 13px 20px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 900;
  letter-spacing: 0;
  text-decoration: none;
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1), box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
}

.footer-button:hover,
.footer-button:focus-visible {
  outline: none;
  transform: translateY(-3px) scale(1.01);
}

.footer-button:active {
  transform: translateY(0) scale(0.98);
  transition-duration: 90ms;
}

.footer-button .button-icon {
  transition: transform 220ms cubic-bezier(0.22, 1, 0.36, 1);
}

.footer-button:hover .button-icon,
.footer-button:focus-visible .button-icon {
  transform: translateY(-1px) scale(1.09);
}

.footer-button-primary {
  color: #ffffff;
  background: linear-gradient(135deg, var(--teal), #078fb7);
  box-shadow: 0 16px 30px rgba(7, 179, 211, 0.2);
}

.footer-button-primary:hover,
.footer-button-primary:focus-visible {
  box-shadow: 0 18px 36px rgba(7, 179, 211, 0.28);
}

.footer-button-secondary {
  color: #07863a;
  background: #ffffff;
  border: 1px solid rgba(7, 143, 64, 0.55);
}

.footer-button-secondary:hover,
.footer-button-secondary:focus-visible {
  background: #f3fff8;
  border-color: rgba(7, 143, 64, 0.82);
  box-shadow: 0 14px 28px rgba(7, 143, 64, 0.1);
}

.footer-accent {
  height: 4px;
  background: linear-gradient(90deg, rgba(7, 179, 211, 0.88), rgba(2, 46, 104, 0.72), rgba(217, 30, 115, 0.86));
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(160px, 0.65fr));
  gap: 56px;
  align-items: start;
  padding: 64px 0 52px;
}

.footer-about {
  max-width: 390px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.footer-brand img {
  width: min(310px, 100%);
  height: auto;
  object-fit: contain;
  background: transparent;
  border-radius: 0;
}

.footer-about > p {
  margin: 22px 0 0;
  color: var(--muted);
}

.footer-column h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 22px;
  color: var(--navy);
  font-size: 1.05rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.footer-column a {
  display: flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  min-height: 32px;
  margin: 0 0 10px;
  color: #047fa1;
  font-weight: 800;
  text-decoration: none;
  text-underline-offset: 4px;
}

.heading-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--teal);
  stroke-width: 2.2;
}

.footer-link-icon {
  width: 1.05rem;
  height: 1.05rem;
  stroke-width: 2.2;
}

.footer-column a:hover,
.footer-column a:focus-visible {
  color: var(--magenta);
  outline: none;
}

.footer-column p {
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.65;
}

.footer-legal {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(220, 231, 238, 0.95);
  font-size: 0.88rem;
  line-height: 1.6;
}

.footer-language {
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(220, 231, 238, 0.95);
}

.footer-language h4 {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 0.95rem;
  font-weight: 900;
  letter-spacing: 0;
}

.footer-language p {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0;
  color: var(--muted);
}

.footer-language span[aria-current="page"] {
  color: #047fa1;
  font-weight: 900;
}

.footer-language a {
  min-height: 0;
  margin: 0;
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(240px, 1fr) auto minmax(280px, 1fr);
  align-items: center;
  gap: 28px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0 34px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.footer-company,
.footer-emergency {
  display: grid;
  gap: 2px;
}

.footer-company strong,
.footer-emergency strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--navy);
}

.bottom-icon {
  width: 1.15rem;
  height: 1.15rem;
  color: var(--teal);
  stroke-width: 2.2;
}

.footer-policy {
  display: flex;
  justify-content: center;
  gap: 20px;
  color: #50627b;
  white-space: nowrap;
}

.footer-policy a {
  position: relative;
  color: inherit;
  min-height: 32px;
  text-decoration: none;
}

.footer-policy a:hover,
.footer-policy a:focus-visible {
  color: var(--magenta);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-policy a + a::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 50%;
  width: 1px;
  height: 14px;
  background: rgba(92, 107, 130, 0.45);
  transform: translateY(-50%);
}

.footer-emergency {
  justify-self: end;
}

.footer-emergency strong {
  color: var(--magenta);
}

.footer-emergency .bottom-icon {
  color: var(--magenta);
}

.footer-emergency a {
  color: var(--magenta);
  font-weight: 900;
  text-decoration: none;
}

.footer-emergency a:hover,
.footer-emergency a:focus-visible {
  color: var(--navy);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-main {
  background:
    linear-gradient(180deg, #f7fbfd 0%, #ffffff 38%, #ffffff 100%);
}

.legal-page {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 72px 0 88px;
}

.legal-page > a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  margin-bottom: 26px;
  color: #047fa1;
  font-weight: 900;
  text-decoration: none;
}

.legal-page > a:hover,
.legal-page > a:focus-visible,
.legal-content a:hover,
.legal-content a:focus-visible,
.legal-footer a:hover,
.legal-footer a:focus-visible {
  color: var(--magenta);
  outline: none;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal-page h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.35rem, 5vw, 4.4rem);
}

.legal-updated {
  margin-bottom: 36px;
  color: var(--muted);
  font-weight: 800;
}

.legal-content {
  display: grid;
  gap: 18px;
}

.legal-card {
  padding: 28px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: 0 14px 34px rgba(2, 46, 104, 0.06);
}

.legal-card h2 {
  margin-bottom: 10px;
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.2;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card p:last-child {
  margin-bottom: 0;
}

.legal-card ul {
  margin: 0;
  padding-left: 20px;
}

.legal-content a {
  color: #047fa1;
  font-weight: 900;
  text-decoration: none;
}

.legal-footer {
  background: #f1f7fa;
  border-top: 1px solid var(--line);
}

.legal-footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
  padding: 26px 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.legal-footer strong {
  color: var(--navy);
}

.legal-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.legal-footer a {
  color: #50627b;
  font-weight: 800;
  text-decoration: none;
}

@media (prefers-reduced-motion: no-preference) {
  .reveal-on-scroll {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 640ms ease, transform 640ms ease;
    transition-delay: var(--reveal-delay, 0ms);
  }

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

  .service-card.reveal-on-scroll .service-icon,
  .info-card.reveal-on-scroll .advanced-icon {
    opacity: 0;
    transform: translateY(6px) scale(0.82) rotate(-5deg);
    transition-delay: calc(var(--reveal-delay, 0ms) + 120ms);
  }

  .service-card.reveal-on-scroll.is-visible .service-icon,
  .info-card.reveal-on-scroll.is-visible .advanced-icon {
    opacity: 1;
    transform: translateY(0) scale(1) rotate(0);
  }

  .service-card.reveal-on-scroll.is-visible:hover .service-icon {
    transition-delay: 0ms;
    transform: translateY(-2px) rotate(-3deg) scale(1.06);
  }

  .info-card.reveal-on-scroll.is-visible:hover .advanced-icon {
    transition-delay: 0ms;
    transform: translateY(-2px) scale(1.07);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

@media (max-width: 1100px) {
  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 14px;
  }

  .hero-trust li {
    white-space: normal;
  }
}

@media (max-width: 980px) {
  .hero-shell {
    min-height: 620px;
    padding: 38px 0 44px;
  }

  .hero-content {
    grid-template-columns: minmax(0, 46fr) minmax(0, 54fr);
    gap: 0 18px;
    min-height: 538px;
  }

  .hero-copy {
    padding-top: 0;
  }

  .hero h1 {
    font-size: clamp(3rem, 5vw, 3.45rem);
  }

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

  .hero-trust li {
    white-space: normal;
  }

  .service-header,
  .provider-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

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

  .advanced-panel {
    grid-template-columns: 1fr 1fr;
  }

  .advanced-heading {
    grid-column: 1 / -1;
    align-self: start;
  }

  .service-highlights {
    max-width: 560px;
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

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

  .footer-cta-card {
    align-items: flex-start;
  }

  .footer-cta-actions {
    flex-wrap: wrap;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-policy {
    justify-content: flex-start;
  }

  .footer-emergency {
    justify-self: start;
  }
}

@media (max-width: 860px) {
  .hero {
    background: linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
  }

  .hero-shell {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    gap: 22px;
    width: min(1160px, calc(100% - 40px));
    min-height: auto;
    margin: 0 auto;
    padding: 48px 0 54px;
  }

  .hero-content {
    display: contents;
  }

  .hero-copy {
    grid-column: 1;
    grid-row: 1;
  }

  .hero-media {
    position: relative;
    inset: auto;
    grid-column: 1;
    grid-row: 2;
    width: 100vw;
    min-height: 0;
    margin-left: calc(50% - 50vw);
    aspect-ratio: 4 / 3;
  }

  .hero-media::before {
    display: none;
  }

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

  .hero-conversion {
    grid-column: 1;
    grid-row: 3;
  }

  .hero h1,
  .lead,
  .hero-trust {
    max-width: 720px;
  }

  .hero-actions {
    margin-top: 0;
  }
}

@media (max-width: 760px) {
  .topbar-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 3px;
  }

  .nav-inner {
    min-height: 96px;
    gap: 10px;
    padding: 8px 0;
  }

  .site-header.is-scrolled .nav-inner {
    min-height: 86px;
    padding: 7px 0;
  }

  .brand img {
    width: auto;
    height: 70px;
    max-width: 150px;
  }

  .site-header.is-scrolled .brand img {
    height: 62px;
    max-width: 138px;
  }

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

  .nav-actions {
    gap: 6px;
  }

  .lang-switch,
  .menu-toggle {
    min-height: 38px;
    padding: 8px 11px;
    font-size: 0.94rem;
  }

  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: calc(100% + 8px);
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .hero-shell {
    gap: 20px;
    padding: 42px 0 48px;
  }

  .hero-media {
    aspect-ratio: 4 / 5;
  }

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

  .hero-actions,
  .contact-actions {
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

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

  .hero-trust li {
    white-space: normal;
  }

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

  .advanced-panel,
  .contact-steps {
    grid-template-columns: 1fr;
  }

  .service-layout {
    gap: 28px;
    margin-top: 34px;
  }

  .service-card {
    min-height: auto;
  }

  .section {
    padding: 68px 0;
  }

  .footer-cta-card {
    flex-direction: column;
    align-items: stretch;
    padding: 24px;
  }

  .footer-cta-copy {
    align-items: flex-start;
  }

  .footer-cta-actions {
    width: 100%;
  }

  .footer-button {
    flex: 1 1 0;
    min-width: 0;
  }
}

@media (max-width: 520px) {
  .topbar-inner,
  .nav-inner,
  .section-inner,
  .footer-cta-wrap,
  .footer-inner,
  .footer-bottom,
  .hero-shell,
  .legal-page,
  .legal-footer-inner {
    width: min(100% - 28px, 1160px);
  }

  h1 {
    max-width: 100%;
    font-size: 2.25rem;
    line-height: 1.08;
  }

  .lead {
    font-size: 1.06rem;
  }

  .hero {
    background: #ffffff;
  }

  .hero-shell {
    padding: 36px 0 44px;
  }

  .service-header {
    gap: 24px;
  }

  .service-highlights {
    padding: 16px;
  }

  .service-highlights div {
    display: block;
  }

  .service-highlights strong {
    display: block;
    margin-top: 2px;
    text-align: left;
  }

  .service-card,
  .info-card {
    padding: 20px;
  }

  .service-card-top {
    margin-bottom: 20px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 42px 0 34px;
  }

  .footer-brand img {
    width: min(260px, 100%);
  }

  .footer-cta-wrap {
    padding: 44px 0 42px;
  }

  .footer-cta-card {
    padding: 22px;
  }

  .footer-cta-copy {
    flex-direction: column;
    gap: 16px;
  }

  .footer-cta-mark {
    flex-basis: 52px;
    width: 52px;
    height: 52px;
  }

  .footer-cta-actions {
    flex-direction: column;
  }

  .footer-button {
    width: 100%;
    min-width: 0;
  }

  .footer-column h3 {
    margin-bottom: 14px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0 30px;
  }

  .footer-policy {
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 14px;
    white-space: normal;
  }

  .footer-policy a + a::before {
    display: none;
  }

  .footer-emergency {
    justify-self: start;
  }
}

@media print {
  .hero,
  .site-header,
  .topbar,
  .site-footer {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }

  .hero {
    background: #ffffff !important;
  }

  .hero::before {
    display: none;
  }

  .hero-shell {
    display: block;
    width: auto;
    margin: 0 auto;
    padding: 52px 28px 46px;
  }

  .hero-content {
    display: block;
  }

  .hero-media {
    display: block;
    position: relative;
    inset: auto;
    width: 100%;
    height: 280px;
    margin: 24px 0;
    min-height: 0;
    aspect-ratio: auto;
    border: 1px solid var(--line);
    border-radius: 8px;
    box-shadow: none;
  }

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

@media (max-width: 380px) {
  .brand img {
    height: 60px;
    max-width: 130px;
  }

  .site-header.is-scrolled .brand img {
    height: 56px;
    max-width: 122px;
  }

  .lang-switch,
  .menu-toggle {
    padding: 7px 8px;
    font-size: 0.88rem;
  }
}
