@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&display=swap");

:root {
  --font-scale: 1.12;
  --bg: #f3f8fd;
  --bg-alt: #e9f2fb;
  --surface: #ffffff;
  --surface-strong: #dcedfb;
  --text: #11263a;
  --muted: #506377;
  --border: #c8dced;
  --primary: #1d8ed1;
  --primary-strong: #0f5f9b;
  --accent: #44b8d8;
  --shadow: 0 10px 30px rgba(10, 40, 66, 0.09);
  --radius: 1rem;
  --radius-lg: 1.4rem;
  --header-offset: 5rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: calc(15px * var(--font-scale));
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Avenir Next", "Segoe UI", "Helvetica Neue", sans-serif;
  background: radial-gradient(circle at top right, #d9ecff 0%, #f3f8fd 38%, #f7fbff 100%);
  color: var(--text);
  line-height: 1.55;
}

body.a11y-readable-font {
  font-family: Verdana, Tahoma, sans-serif;
}

body.a11y-grayscale .site-shell {
  filter: grayscale(1);
}

body.a11y-high-contrast {
  --bg: #ffffff;
  --bg-alt: #ffffff;
  --surface: #ffffff;
  --surface-strong: #f3f3f3;
  --text: #000000;
  --muted: #1a1a1a;
  --border: #000000;
  --primary: #003cff;
  --primary-strong: #001f8f;
  --accent: #0057ff;
  background: #ffffff;
}

body.a11y-underline-links a {
  text-decoration: underline !important;
  text-decoration-thickness: 2px;
}

body.a11y-reduce-motion *,
body.a11y-reduce-motion *::before,
body.a11y-reduce-motion *::after {
  animation: none !important;
  transition-duration: 0.01ms !important;
  scroll-behavior: auto !important;
}

a {
  color: var(--primary-strong);
}

a:hover,
a:focus-visible {
  color: var(--primary);
}

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

:focus-visible {
  outline: 3px solid #ff9d00;
  outline-offset: 2px;
}

.skip-link {
  position: absolute;
  left: 0.75rem;
  top: -3rem;
  background: #101820;
  color: #ffffff;
  padding: 0.65rem 0.8rem;
  border-radius: 0.5rem;
  z-index: 1000;
  text-decoration: none;
}

.skip-link:focus {
  top: 0.75rem;
}

.container {
  width: min(70rem, calc(100% - 2rem));
  margin-inline: auto;
}

.site-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1;
}

.top-bar {
  background: #dff0ff;
  border-bottom: 1px solid #bcd8ef;
  font-size: 0.78rem;
}

.top-bar__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.9rem;
  align-items: center;
  justify-content: space-between;
  padding: 0.28rem 0;
}

.top-bar__contacts {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.9rem;
}

.top-bar__item {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.top-bar__item a {
  text-decoration: none;
  font-weight: 600;
}

.top-bar__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  border: 1px solid #b5d3ea;
  background: #f8fcff;
  color: #24384d;
  font-weight: 700;
  font-size: 0.8rem;
  white-space: nowrap;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(200, 220, 237, 0.85);
}

.site-header__inner {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0.7rem 0.95rem;
  justify-content: space-between;
  padding: 0.62rem 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  color: inherit;
  text-decoration: none;
  min-width: 0;
  flex: 1 1 18rem;
}

.brand::after {
  content: none;
  display: none;
}

.brand__logo {
  width: 3.1rem;
  height: 3.1rem;
  border-radius: 0.75rem;
  background: #ffffff;
  border: 1px solid var(--border);
  display: grid;
  place-items: center;
  overflow: hidden;
  flex-shrink: 0;
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #ffffff;
}

.brand__logo-fallback {
  font-weight: 800;
  font-size: 0.72rem;
  color: var(--primary-strong);
  letter-spacing: 0.06em;
}

.brand__text {
  display: grid;
  gap: 0.1rem;
}

.brand__name {
  font-weight: 650;
  font-size: clamp(1.42rem, 2.05vw, 1.76rem);
  line-height: 1;
  letter-spacing: -0.006em;
}

.brand__legal {
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  min-width: 0;
  flex: 1 1 auto;
}

.site-nav a {
  text-decoration: none;
  color: var(--text);
  padding: 0.4rem 0.65rem;
  border-radius: 0.55rem;
  font-weight: 600;
  font-size: 0.94rem;
  white-space: nowrap;
}

.site-nav a:not(.button):hover,
.site-nav a:not(.button):focus-visible {
  background: #eaf4fd;
}

.site-nav a[aria-current="page"]:not(.button) {
  background: #eaf4fd;
  color: var(--primary-strong);
}

.site-nav a.site-nav__cta {
  margin-left: 0.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 0.62rem 1.35rem;
  border-radius: 999px;
  white-space: nowrap;
  color: #ffffff;
  background: linear-gradient(135deg, #4dbfe0, #218fce);
  box-shadow: 0 8px 18px rgba(29, 142, 209, 0.26);
}

.site-nav a.site-nav__cta:hover,
.site-nav a.site-nav__cta:focus-visible {
  color: #ffffff;
  background: linear-gradient(135deg, #40b7db, #1684c7);
}

.site-nav a.site-nav__cta[aria-current="page"] {
  color: #ffffff;
  background: linear-gradient(135deg, #40b7db, #1684c7);
}

.site-nav__referral {
  display: none;
}

.language-switcher {
  position: relative;
  display: flex;
  align-items: center;
}

.language-switcher__toggle {
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 0.55rem;
  padding: 0.42rem 0.45rem;
  font: inherit;
  font-weight: 600;
  font-size: 0.86rem;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.22rem;
  min-width: 2.5rem;
}

.language-switcher__toggle:hover,
.language-switcher__toggle:focus-visible {
  background: #eaf4fd;
}

.language-switcher.is-loading .language-switcher__toggle {
  opacity: 0.72;
  cursor: progress;
}

.language-switcher__flag-image {
  width: 1.28rem;
  height: 0.92rem;
  object-fit: contain;
  border-radius: 0.15rem;
  flex: 0 0 auto;
}

.language-switcher__chevron {
  font-size: 0.65rem;
  line-height: 1;
  transition: transform 120ms ease;
}

.language-switcher.is-open .language-switcher__chevron {
  transform: rotate(180deg);
}

.language-switcher__menu {
  position: absolute;
  top: calc(100% + 0.35rem);
  right: 0;
  margin: 0;
  padding: 0.45rem;
  min-width: 12.6rem;
  list-style: none;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 0.7rem;
  box-shadow: var(--shadow);
  display: grid;
  grid-template-columns: repeat(5, 2rem);
  justify-content: center;
  gap: 0.35rem;
  z-index: 40;
}

.language-switcher__menu[hidden] {
  display: none;
}

.language-switcher__option {
  width: 2.1rem;
  height: 2.1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: #ffffff;
  color: var(--text);
  border-radius: 0.45rem;
  padding: 0;
  font: inherit;
  cursor: pointer;
}

.language-switcher__option .language-switcher__flag-image {
  width: 1.5rem;
  height: 1rem;
}

.language-switcher__option:hover,
.language-switcher__option:focus-visible {
  background: #eaf4fd;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.header-right {
  display: none;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  border: 1px solid var(--border);
  background: #ffffff;
  color: var(--text);
  border-radius: 0.55rem;
  padding: 0.5rem 0.75rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  background: #eaf4fd;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  background: linear-gradient(135deg, var(--accent), var(--primary));
  color: #ffffff;
  border: 0;
  border-radius: 999px;
  padding: 0.62rem 1rem;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 6px 18px rgba(29, 142, 209, 0.25);
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, filter 120ms ease;
}

.button:hover,
.button:focus-visible {
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(29, 142, 209, 0.3);
}

.button--ghost {
  background: #ffffff;
  color: var(--primary-strong);
  border: 1px solid var(--border);
  box-shadow: none;
}

.button--ghost:hover,
.button--ghost:focus-visible {
  color: var(--primary-strong);
}

.button--small {
  padding: 0.42rem 0.75rem;
  font-size: 0.86rem;
}

.hero {
  padding: 1.5rem 0 2rem;
}

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

.hero__inner {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.15rem;
  align-items: start;
}

.hero__inner--home {
  grid-template-columns: 1fr;
}

.hero__content,
.hero__card {
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(200, 220, 237, 0.85);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 1.15rem;
}

.home-hero-main {
  position: relative;
  isolation: isolate;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  min-height: clamp(34rem, 72vh, 50rem);
  padding: clamp(2.5rem, 7vw, 4.8rem) 0;
}

.home-hero-slider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  overflow: hidden;
  pointer-events: none;
  z-index: -2;
}

.home-hero-slider__track {
  display: flex;
  width: auto;
  height: 100%;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  animation: homeHeroImageScroll 8.4s linear infinite;
}

.home-hero-slider__slide {
  flex: 0 0 100vw;
  width: 100vw;
  min-width: 100vw;
}

.home-hero-slider__slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.home-hero-slider__slide--1 img {
  object-position: 64% 44%;
}

.home-hero-slider__slide--2 img {
  object-position: 52% 38%;
}

.home-hero-slider__slide--3 img {
  object-position: 52% 42%;
}

@keyframes homeHeroImageScroll {
  0%,
  29.762% {
    transform: translate3d(0, 0, 0);
  }
  33.333%,
  63.095% {
    transform: translate3d(-100vw, 0, 0);
  }
  66.667%,
  96.429% {
    transform: translate3d(-200vw, 0, 0);
  }
  100% {
    transform: translate3d(-300vw, 0, 0);
  }
}

.home-hero-main::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 50vw);
  width: 100vw;
  background: linear-gradient(118deg, rgba(7, 26, 44, 0.84) 0%, rgba(7, 29, 48, 0.68) 48%, rgba(8, 33, 54, 0.62) 100%);
  border-top: 1px solid rgba(193, 222, 245, 0.36);
  border-bottom: 1px solid rgba(193, 222, 245, 0.36);
  z-index: -1;
}

body.a11y-reduce-motion .home-hero-slider__track {
  animation: none;
  transform: translate3d(0, 0, 0);
}

.home-hero-main .eyebrow,
.home-hero-main h1,
.home-hero-main .hero__lead,
.home-hero-main .hero__highlights {
  color: #ffffff;
}

.home-hero-main .hero__lead {
  max-width: 56ch;
  color: rgba(243, 250, 255, 0.94);
  line-height: 1.74;
  margin: 0.6rem 0 0;
}

.home-hero-main .hero__highlights {
  color: rgba(240, 248, 255, 0.95);
  gap: 0.52rem;
}

.home-hero-main .hero__highlights li {
  line-height: 1.68;
}

.home-hero-main h1 {
  line-height: 1.16;
  margin-bottom: 1.15rem;
}

.home-hero-main.is-intro-pending [data-hero-intro] {
  opacity: 0;
  transform: translateY(1rem);
}

.home-hero-main.is-intro-ready [data-hero-intro] {
  animation: heroIntroIn 1050ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--hero-intro-delay, 0ms);
}

@keyframes heroIntroIn {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-hero-main .button--ghost {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.62);
  color: #ffffff;
}

.home-hero-main .button--ghost:hover,
.home-hero-main .button--ghost:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
}

.hero__card {
  padding: 1.05rem;
  max-width: 38rem;
}

.hero__card h2 {
  margin-top: 0;
}

.home-explore {
  margin-top: 0.9rem;
}

.hero__lead {
  font-size: 1rem;
  color: #27435d;
  max-width: 60ch;
}

.hero h1 {
  font-size: clamp(1.65rem, 3.2vw, 2.45rem);
  line-height: 1.1;
  margin: 0.35rem 0 0.8rem;
  letter-spacing: -0.02em;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin: 1rem 0 0.85rem;
}

.hero__highlights {
  margin: 0.75rem 0 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.25rem;
}

.eyebrow {
  margin: 0;
  color: var(--primary-strong);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.muted {
  color: var(--muted);
}

.section {
  padding: 2.7rem 0;
  scroll-margin-top: calc(var(--header-offset) + 1rem);
}

.section--alt {
  background: linear-gradient(180deg, rgba(233, 242, 251, 0.65), rgba(233, 242, 251, 0.2));
  border-top: 1px solid rgba(200, 220, 237, 0.45);
  border-bottom: 1px solid rgba(200, 220, 237, 0.45);
}

.section--contact {
  padding-bottom: 4rem;
}

.section--explore {
  padding-bottom: 1.4rem;
}

.section__heading {
  max-width: 70ch;
  margin-bottom: 1.35rem;
}

.section__heading h2 {
  margin: 0.3rem 0 0.55rem;
  font-size: clamp(1.55rem, 2.7vw, 2.2rem);
  line-height: 1.15;
}

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

.section__heading--secondary {
  margin-top: 1.35rem;
  margin-bottom: 0.9rem;
}

.explore-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
  gap: 0.9rem;
}

.explore-card {
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.05rem;
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 15.8rem;
}

.explore-card h3 {
  margin-top: 0;
  margin-bottom: 0.45rem;
}

.explore-card p {
  margin: 0 0 0.65rem;
}

.explore-card p:last-child {
  margin-top: auto;
  margin-bottom: 0;
}

.home-explore.is-intro-pending .explore-card {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(2.2rem);
}

.home-explore.is-intro-ready .explore-card {
  visibility: visible;
  pointer-events: auto;
  animation: exploreCardIn 1280ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: var(--explore-delay, 0ms);
}

@keyframes exploreCardIn {
  from {
    opacity: 0;
    transform: translateY(2.2rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1rem;
  padding: 1rem;
  box-shadow: 0 6px 16px rgba(17, 38, 58, 0.05);
}

.service-card h3 {
  margin: 0;
  color: #111111;
  font-size: 1.02rem;
  line-height: 1.25;
  font-weight: 700;
}

.service-card p {
  margin: 0.35rem 0 0;
  color: #24425d;
}

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

.about-grid--balanced,
.complaints-grid {
  align-items: stretch;
}

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

.info-panel h3 {
  margin-top: 0;
}

.info-panel--tight,
.complaints-panel {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1.2rem 1.25rem;
}

.info-panel--tight h2,
.complaints-panel h2 {
  margin: 0;
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  line-height: 1.2;
}

.info-panel--tight p,
.complaints-panel p {
  margin: 0;
  line-height: 1.45;
}

.info-panel--tight ul,
.complaints-panel ul {
  margin: 0;
  padding-left: 1.2rem;
  display: grid;
  gap: 0.45rem;
}

.info-panel--tight p:last-child,
.complaints-panel p:last-child {
  margin-bottom: 0;
}

.info-panel__cta-bottom {
  margin-top: auto !important;
  padding-top: 0.45rem;
}

.info-panel--tight .tick-list {
  gap: 0.45rem;
}

.tick-list {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.35rem;
}

.referral-form {
  display: grid;
  gap: 1rem;
}

.form-card {
  margin: 0;
  padding: 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.form-card legend {
  font-weight: 800;
  padding: 0 0.4rem;
  color: var(--text);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.form-field {
  display: grid;
  gap: 0.35rem;
}

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

.form-field label {
  font-weight: 700;
  color: #24384d;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #8bcaf1;
  background: #fbfdff;
  color: var(--text);
  border-radius: 0.7rem;
  padding: 0.85rem 0.9rem;
  font: inherit;
  transition: border-color 120ms ease, box-shadow 120ms ease;
}

.form-field input:focus-visible,
.form-field textarea:focus-visible {
  outline: none;
  border-color: var(--primary-strong);
  box-shadow: 0 0 0 3px rgba(29, 142, 209, 0.18);
}

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  align-items: center;
  justify-content: space-between;
}

.form-actions .muted {
  margin: 0;
  max-width: 56ch;
}

.form-status {
  min-height: 1.2em;
  margin: 0;
  color: var(--primary-strong);
  font-weight: 600;
}

.thanks-actions {
  margin: 1.25rem 0 1.7rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.checklist-grid {
  display: grid;
  gap: 0.7rem;
}

.check-item {
  display: flex;
  align-items: flex-start;
  gap: 0.55rem;
  color: #24384d;
  line-height: 1.4;
}

.check-item input {
  margin-top: 0.2rem;
  width: 1.05rem;
  height: 1.05rem;
  accent-color: var(--primary);
}

.file-help {
  margin: 0 0 0.5rem;
  color: var(--muted);
}

.email-fallback {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #f8fbff;
  padding: 0.95rem;
}

.email-fallback summary {
  cursor: pointer;
  font-weight: 700;
}

.email-fallback p {
  margin: 0.75rem 0;
}

.email-fallback textarea {
  width: 100%;
  min-height: 11rem;
  border: 1px solid #8bcaf1;
  background: #ffffff;
  border-radius: 0.7rem;
  padding: 0.8rem;
  font: inherit;
  color: var(--text);
  margin-bottom: 0.7rem;
  resize: vertical;
}

.accordion-group {
  display: grid;
  gap: 0.75rem;
}

.accordion {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
  overflow: clip;
}

.accordion summary {
  cursor: pointer;
  padding: 0.95rem 1rem;
  font-weight: 800;
  list-style: none;
}

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

.accordion summary::after {
  content: "+";
  float: right;
  font-weight: 900;
  color: var(--primary-strong);
}

.accordion[open] summary::after {
  content: "−";
}

.accordion__content {
  padding: 0 1rem 1rem;
}

.accordion__content ul {
  margin: 0;
  padding-left: 1.1rem;
  display: grid;
  gap: 0.4rem;
}

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

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

.contact-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.15rem;
  box-shadow: var(--shadow);
}

.contact-card h3 {
  margin-top: 0;
  margin-bottom: 0.35rem;
}

.contact-card__value {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.contact-card__value a {
  text-decoration: none;
}

.site-footer {
  background: #081b2b;
  color: #e6f4ff;
  padding: 1.25rem 0 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer a {
  color: #9cd8ff;
}

.country-acknowledgement {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
}

.country-acknowledgement h2 {
  margin-top: 0;
  margin-bottom: 0.35rem;
  font-size: 1.02rem;
}

.country-acknowledgement p {
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.45;
}

.footer-bottom {
  margin-top: 0.7rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  column-gap: 1rem;
  row-gap: 0.18rem;
  font-size: 0.95rem;
}

.footer-bottom p {
  margin: 0;
  grid-column: 1;
}

.footer-bottom::after {
  content: "";
  grid-column: 2;
  grid-row: 1 / -1;
  align-self: center;
  width: clamp(7.8rem, 17vw, 11rem);
  aspect-ratio: 1418 / 592;
  background: url("assets/registered ndis provider.png") right bottom / contain no-repeat;
  transform: translateY(1.15rem);
}

.footer-attribution {
  font-size: 0.8rem;
  opacity: 0.95;
  color: #b7e5ff;
}

.footer-provider-badge {
  margin-top: 0.5rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  max-width: 20rem;
}

.footer-provider-badge img {
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 5px 12px rgba(0, 0, 0, 0.2));
}

.a11y-toggle,
.scroll-top-toggle {
  position: fixed;
  right: 1rem;
  width: 3.35rem;
  height: 3.35rem;
  display: grid;
  place-items: center;
  padding: 0;
  border-radius: 50%;
  border: 2px solid #ffffff;
  background: linear-gradient(180deg, #ffb43a, #f28c00);
  color: #ffffff;
  font-size: 1.25rem;
  box-shadow: 0 12px 25px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.a11y-toggle {
  bottom: 1rem;
  z-index: 60;
}

.a11y-toggle:hover,
.a11y-toggle:focus-visible,
.scroll-top-toggle:hover,
.scroll-top-toggle:focus-visible {
  filter: brightness(1.03);
}

.scroll-top-toggle {
  bottom: 5rem;
  z-index: 59;
}

.scroll-top-toggle__caret {
  display: block;
  width: 0.95rem;
  height: 0.95rem;
  border-top: 3px solid #ffffff;
  border-left: 3px solid #ffffff;
  transform: rotate(45deg);
}

.a11y-panel {
  position: fixed;
  right: 1rem;
  bottom: 5.15rem;
  width: min(22rem, calc(100% - 1.2rem));
  max-height: min(75vh, 34rem);
  overflow: auto;
  background: #ffffff;
  border: 2px solid #f29a18;
  border-radius: 1rem;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  z-index: 65;
}

.a11y-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 1rem 0.25rem;
}

.a11y-panel__header h2 {
  margin: 0;
  font-size: 1.25rem;
}

.a11y-close {
  border: 1px solid var(--border);
  background: #ffffff;
  border-radius: 0.5rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
}

.a11y-panel__intro {
  padding: 0 1rem;
  margin: 0.2rem 0 0.8rem;
}

.a11y-actions {
  display: grid;
  gap: 0.45rem;
  padding: 0 1rem 1rem;
}

.a11y-actions button {
  text-align: left;
  border: 1px solid var(--border);
  background: #f9fbff;
  border-radius: 0.65rem;
  padding: 0.65rem 0.75rem;
  font: inherit;
  font-weight: 700;
  color: #203243;
  cursor: pointer;
  transition: background-color 120ms ease, border-color 120ms ease;
}

.a11y-actions button[aria-pressed="true"] {
  background: #e6f4ff;
  border-color: #7dbde9;
  color: var(--primary-strong);
}

.a11y-actions button:hover,
.a11y-actions button:focus-visible {
  background: #eef6ff;
}

@media (max-width: 70rem) {
  .hero__inner {
    grid-template-columns: 1fr;
  }

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

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

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

@media (max-width: 62rem) {
  :root {
    --header-offset: 5.8rem;
  }
}

@media (max-width: 70rem) {
  .brand__legal {
    font-size: 0.84rem;
  }

  .site-nav {
    gap: 0.08rem;
  }

  .site-nav a {
    padding: 0.35rem 0.52rem;
    font-size: 0.88rem;
  }

  .site-nav a.site-nav__cta {
    padding: 0.48rem 0.85rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 700px) {
  :root {
    --font-scale: 1.12;
    --header-offset: 7.2rem;
  }

  .top-bar__inner {
    align-items: center;
    justify-content: center;
    padding: 0.34rem 0;
  }

  .top-bar__contacts {
    flex: 0 1 auto;
    min-width: 0;
    width: 100%;
    justify-content: center;
    gap: 0;
  }

  .top-bar__badge {
    display: none;
  }

  .top-bar__item {
    gap: 0;
    white-space: nowrap;
  }

  .top-bar__item > span[aria-hidden="true"] {
    display: none;
  }

  .top-bar__item + .top-bar__item {
    margin-left: 0.45rem;
  }

  .top-bar__item + .top-bar__item::before {
    content: "|";
    color: #6e8aa2;
    margin-right: 0.45rem;
    font-weight: 500;
  }

  .site-header__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: start;
    row-gap: 0.56rem;
  }

  .brand {
    flex: 1 1 0;
    min-width: 0;
  }

  .brand__name {
    font-size: clamp(1.2rem, 5.2vw, 1.46rem);
  }

  .brand__legal {
    font-size: 0.92rem;
  }

  .header-right {
    display: flex;
    width: auto;
    margin-left: 0;
    justify-content: flex-end;
    align-self: start;
    grid-column: 2;
    grid-row: 1;
  }

  .nav-toggle {
    display: inline-flex;
    position: relative;
    width: 2.66rem;
    height: 2.66rem;
    padding: 0;
    border-radius: 0.72rem;
    font-size: 0;
    color: transparent;
    overflow: hidden;
  }

  .nav-toggle::before,
  .nav-toggle::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 1.22rem;
    height: 2.5px;
    border-radius: 999px;
    background: #17324b;
    transition: transform 180ms ease, box-shadow 180ms ease, opacity 180ms ease;
    transform-origin: center;
    transform: translate(-50%, -50%);
  }

  .nav-toggle::before {
    box-shadow: 0 -0.38rem 0 #17324b, 0 0.38rem 0 #17324b;
  }

  .nav-toggle::after {
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"]::before {
    box-shadow: none;
    transform: translate(-50%, -50%) rotate(45deg);
  }

  .nav-toggle[aria-expanded="true"]::after {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(-45deg);
  }

  .site-nav {
    grid-column: 1 / -1;
    width: 100%;
    overflow: visible;
    flex-direction: column;
    align-items: stretch;
    gap: 0.45rem;
    flex-basis: 100%;
  }

  .has-js .site-nav {
    display: none;
  }

  .has-js .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    white-space: normal;
    border: 1px solid var(--border);
    background: #ffffff;
    font-size: 1rem;
    padding: 0.68rem 0.84rem;
  }

  .language-switcher {
    width: 100%;
    display: grid;
    gap: 0.35rem;
  }

  .language-switcher__toggle {
    width: 100%;
    justify-content: center;
    padding: 0.62rem 0.82rem;
    border-radius: 0.65rem;
    font-size: 0.98rem;
  }

  .language-switcher__menu {
    position: static;
    min-width: 0;
    width: 100%;
    box-shadow: none;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }

  .language-switcher__option {
    width: 100%;
    min-height: 2.3rem;
  }

  .site-nav a.site-nav__cta {
    display: none;
  }

  .site-nav a.site-nav__referral {
    display: inline-flex;
    border: 0;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    color: #ffffff;
    justify-content: center;
    text-align: center;
    box-shadow: 0 8px 18px rgba(29, 142, 209, 0.22);
  }

  .site-nav a.site-nav__referral:hover,
  .site-nav a.site-nav__referral:focus-visible {
    color: #ffffff;
    background: linear-gradient(135deg, #35b3db, #1482c8);
  }

  .explore-card {
    min-height: auto;
    padding: 0.95rem;
  }

  .explore-card h3 {
    margin-bottom: 0.3rem;
  }

  .explore-card p {
    margin: 0;
  }

  .explore-card p:last-child {
    margin-top: 0.5rem;
    margin-bottom: 0;
  }

  .home-explore.is-mobile-intro .explore-card {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(1.4rem);
  }

  .home-explore.is-mobile-intro .explore-card.is-card-ready {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    animation: exploreCardIn 940ms cubic-bezier(0.2, 0.8, 0.2, 1) both;
  }
}

@media (max-width: 50rem) {
  :root {
    --font-scale: 1.12;
    --header-offset: 6.8rem;
  }

  .top-bar__inner {
    justify-content: center;
  }

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

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

  .form-actions {
    align-items: flex-start;
    flex-direction: column;
  }

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

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

  .hero__content,
  .hero__card,
  .form-card,
  .info-panel,
  .contact-card {
    border-radius: 0.9rem;
  }

  .home-hero-main {
    min-height: clamp(27rem, 66vh, 38rem);
    padding: 1.9rem 0;
  }

  .home-hero-main::before {
    background: linear-gradient(126deg, rgba(7, 26, 44, 0.86) 0%, rgba(7, 29, 48, 0.7) 55%, rgba(8, 33, 54, 0.66) 100%);
  }

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

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

  .home-hero-slider__slide--2 img {
    object-position: 50% center;
  }

  .home-hero-slider__slide--3 img {
    object-position: 50% center;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    row-gap: 0.22rem;
  }

  .footer-bottom::after {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
    width: 8.8rem;
    margin-top: 0.35rem;
    transform: none;
  }

  .a11y-panel {
    right: 0.6rem;
    bottom: 4.8rem;
    width: calc(100% - 1.2rem);
  }

  .a11y-toggle {
    right: 0.75rem;
    bottom: 0.75rem;
  }

  .scroll-top-toggle {
    right: 0.75rem;
    bottom: 4.75rem;
  }
}

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

  .home-hero-slider__track {
    animation: none;
    transform: translate3d(0, 0, 0);
  }

  * {
    transition: none !important;
    animation: none !important;
  }
}
