:root {
  --blue-900: #0B1F3A;
  --blue-800: #102A4F;
  --gold: #C9A24B;
  --white: #FFFFFF;
  --gray-50: #F4F5F7;
  --gray-100: #E7EAF0;
  --text: #1A1F2B;
  --muted: #5B6472;
  --shadow: 0 18px 42px rgba(11, 31, 58, 0.12);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 1000;
  background: var(--gold);
  color: var(--blue-900);
  padding: 10px 14px;
  border-radius: var(--radius);
}

.skip-link:focus {
  top: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--gray-100);
}

.header-inner {
  min-height: 78px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  min-width: 220px;
}

.brand img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.1;
}

.brand-text strong {
  color: var(--blue-900);
  font-size: 1.05rem;
}

.brand-text small {
  color: var(--gold);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  justify-content: flex-end;
  gap: 6px;
  align-items: center;
}

.site-nav a,
.language-switcher a {
  text-decoration: none;
  padding: 10px 12px;
  border-radius: var(--radius);
  color: var(--blue-900);
  font-weight: 700;
  font-size: 0.94rem;
}

.site-nav a:hover,
.site-nav a[aria-current="page"],
.language-switcher a:hover,
.language-switcher a[aria-current="true"] {
  background: var(--gray-50);
  color: var(--blue-800);
}

.language-switcher {
  display: flex;
  gap: 2px;
  align-items: center;
}

.language-switcher a {
  font-size: 0.82rem;
  padding-inline: 9px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
}

.nav-toggle-lines,
.nav-toggle-lines::before,
.nav-toggle-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--blue-900);
  margin: 0 auto;
  content: "";
}

.nav-toggle-lines::before {
  transform: translateY(-7px);
}

.nav-toggle-lines::after {
  transform: translateY(5px);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
}

.hero {
  background: var(--blue-900);
  color: var(--white);
  padding: 86px 0 70px;
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 4px;
  background: var(--gold);
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 48px;
  align-items: center;
}

.hero h1,
.page-hero h1 {
  margin: 0;
  line-height: 1.08;
  letter-spacing: 0;
  font-size: clamp(2.25rem, 5vw, 4.8rem);
}

.hero .lead,
.page-hero .lead {
  font-size: 1.18rem;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
}

.hero-mark {
  display: grid;
  gap: 18px;
  justify-items: center;
}

.hero-mark img {
  width: min(360px, 100%);
  filter: drop-shadow(0 24px 36px rgba(0, 0, 0, 0.24));
}

.hero-panel {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
}

.hero-panel span,
.hero-panel strong {
  display: block;
}

.hero-panel strong {
  color: var(--gold);
  margin-top: 6px;
}

.eyebrow {
  color: var(--gold);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 12px;
  font-size: 0.82rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border: 1px solid var(--blue-900);
  border-radius: var(--radius);
  background: var(--blue-900);
  color: var(--white);
  text-decoration: none;
  font-weight: 800;
  cursor: pointer;
}

.button:hover {
  background: var(--blue-800);
}

.button-gold {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--blue-900);
}

.button-secondary {
  background: var(--white);
  color: var(--blue-900);
}

.button-ghost {
  background: transparent;
  color: var(--blue-900);
}

.trust-bar {
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding: 18px 0;
}

.trust-grid div {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--blue-900);
}

.home-partner {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 34px 0;
}

.partner-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.78fr);
  gap: 28px;
  align-items: center;
}

.partner-copy h2 {
  margin: 0 0 10px;
  color: var(--blue-900);
  font-size: 1.45rem;
  line-height: 1.2;
}

.partner-copy p:last-child {
  margin: 0;
  color: var(--muted);
}

.partner-logos {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 14px;
  align-items: center;
}

.partner-logos img {
  width: 100%;
  max-height: 112px;
  object-fit: contain;
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 12px;
}

.icon {
  width: 22px;
  height: 22px;
  color: var(--gold);
  flex: 0 0 auto;
}

.section,
.page-hero,
.cta-email,
.disclaimer-block {
  padding: 72px 0;
}

.section-muted,
.page-hero {
  background: var(--gray-50);
}

.page-hero h1 {
  color: var(--blue-900);
  max-width: 920px;
}

.page-hero .lead {
  color: var(--muted);
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 20px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb a {
  color: var(--blue-900);
  font-weight: 800;
  text-decoration: none;
}

.section-heading {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-heading h2,
.text-block h2,
.info-card h2,
.highlight h2,
.notice h2,
.cta-email h2,
.email-box h2 {
  margin: 0 0 12px;
  line-height: 1.18;
  color: var(--blue-900);
  font-size: 1.6rem;
  letter-spacing: 0;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-card,
.info-card,
.step-card,
.text-block,
.highlight,
.guide-item,
.email-box {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 24px;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(11, 31, 58, 0.04);
}

.feature-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 230px;
  text-decoration: none;
}

.feature-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-card h2,
.feature-card h3,
.guide-item h2 {
  margin: 0;
  color: var(--blue-900);
  font-size: 1.16rem;
  line-height: 1.25;
}

.feature-card p,
.text-block p,
.info-card p,
.highlight p,
.guide-item p,
.email-box p {
  color: var(--muted);
  margin: 0;
}

.feature-card span,
.text-link {
  color: var(--blue-900);
  font-weight: 800;
}

.two-col,
.service-grid,
.contact-layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 22px;
}

.service-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.content-stack {
  display: grid;
  gap: 18px;
  max-width: 920px;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.step-card h2 {
  font-size: 1.08rem;
  color: var(--blue-900);
}

.check-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
}

.check-list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.notice,
.cta-inner {
  border-radius: var(--radius);
  background: var(--blue-900);
  color: var(--white);
  padding: 28px;
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
}

.notice {
  align-items: flex-start;
  justify-content: flex-start;
}

.notice h2,
.notice p,
.cta-inner h2,
.cta-inner p {
  color: var(--white);
}

.cta-inner span {
  color: var(--gold);
  font-weight: 800;
}

.cta-inner p {
  margin: 0 0 8px;
  max-width: 720px;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  background: var(--white);
}

.faq-item h3 {
  margin: 0;
}

.faq-item button {
  width: 100%;
  border: 0;
  background: transparent;
  padding: 18px 20px;
  color: var(--blue-900);
  font-weight: 800;
  text-align: left;
  cursor: pointer;
}

.faq-item div {
  padding: 0 20px 18px;
  color: var(--muted);
}

.guide-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

.guide-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.guide-item span {
  background: var(--gray-50);
  color: var(--blue-900);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius);
  padding: 6px 10px;
  white-space: nowrap;
  font-weight: 800;
  font-size: 0.86rem;
}

.email-box {
  background: var(--gray-50);
}

.table-wrap {
  overflow-x: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

th,
td {
  border: 1px solid var(--gray-100);
  padding: 14px;
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--blue-900);
  color: var(--white);
}

.site-footer {
  background: var(--blue-900);
  color: rgba(255, 255, 255, 0.82);
  padding: 56px 0 26px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 32px;
}

.footer-logo {
  width: 170px;
  margin-bottom: 14px;
}

.site-footer h2 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 12px;
}

.site-footer a,
.footer-cookie-button {
  display: block;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  margin: 8px 0;
  background: transparent;
  border: 0;
  padding: 0;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.site-footer a:hover,
.footer-cookie-button:hover {
  color: var(--gold);
}

.footer-email {
  color: var(--gold) !important;
  font-weight: 800;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  margin-top: 36px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.9rem;
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto auto auto;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
  }

  .site-nav {
    position: absolute;
    left: 0;
    right: 0;
    top: 78px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--white);
    border-bottom: 1px solid var(--gray-100);
    padding: 12px 16px 18px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero-inner,
  .partner-inner,
  .two-col,
  .service-grid,
  .contact-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .partner-logos,
  .card-grid,
  .steps,
  .guide-list {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 58px;
  }
}

@media (max-width: 620px) {
  .container {
    width: min(100% - 24px, 1120px);
  }

  .brand {
    min-width: 0;
  }

  .brand img {
    width: 46px;
    height: 46px;
  }

  .brand-text small {
    display: none;
  }

  .header-inner {
    gap: 10px;
  }

  .language-switcher a {
    padding: 8px 6px;
  }

  .hero h1,
  .page-hero h1 {
    font-size: 2.18rem;
  }

  .hero .lead,
  .page-hero .lead {
    font-size: 1.04rem;
  }

  .section,
  .page-hero,
  .cta-email,
  .disclaimer-block {
    padding: 48px 0;
  }

  .notice,
  .cta-inner,
  .guide-item {
    align-items: flex-start;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }
}
