:root {
  --navy: #12153a;
  --navy-soft: #1c214e;
  --mint: #b9f1ef;
  --teal: #759a87;
  --teal-soft: #e7fbf8;
  --page: #f4f8fb;
  --ink: #17213d;
  --muted: #56627f;
  --line: rgba(18, 21, 58, 0.1);
  --white: #fff;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: var(--page);
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.container {
  width: min(1240px, calc(100% - 48px));
  margin: 0 auto;
}

.top-strip {
  background: var(--mint);
  color: #071532;
}
.top-strip-row {
  min-height: 34px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  font-size: 0.92rem;
  font-weight: 700;
}

.site-header {
  background: var(--navy);
  color: var(--white);
  position: sticky;
  top: 0;
  z-index: 1200;
}
.header-row {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
}
.brand img {
  width: 170px;
  max-width: 100%;
  height: auto;
  display: block;
}
.nav {
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 0.95rem;
  font-weight: 500;
}
.nav a { opacity: 0.96; }
.nav a:hover { color: var(--mint); }
.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.mobile-menu-toggle {
  display: none;
  position: relative;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  color: #111111;
  box-shadow: 0 10px 24px rgba(4, 8, 26, 0.24);
  cursor: pointer;
  z-index: 1201;
}
.mobile-menu-toggle span,
.mobile-menu-toggle::before,
.mobile-menu-toggle::after {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  width: 28px;
  height: 4px;
  background: currentColor;
  border-radius: 999px;
  transition: transform 0.24s ease, opacity 0.24s ease;
}
.mobile-menu-toggle::before { transform: translateX(-50%) translateY(-11px); }
.mobile-menu-toggle span { transform: translateX(-50%); }
.mobile-menu-toggle::after { transform: translateX(-50%) translateY(11px); }
.site-header.is-mobile-open .mobile-menu-toggle span { opacity: 0; }
.site-header.is-mobile-open .mobile-menu-toggle::before { transform: translateX(-50%) rotate(45deg); }
.site-header.is-mobile-open .mobile-menu-toggle::after { transform: translateX(-50%) rotate(-45deg); }
.mobile-menu-overlay {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--mobile-menu-top, 56px);
  bottom: 0;
  z-index: 1090;
  background: rgba(7, 11, 24, 0.34);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.26s ease, visibility 0.26s ease;
}
.mobile-menu-overlay.is-open {
  opacity: 1;
  visibility: visible;
}
.mobile-menu-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--mobile-menu-top, 56px);
  z-index: 1100;
  display: block;
  height: calc(100vh - var(--mobile-menu-top, 56px));
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  background:
    linear-gradient(180deg, rgba(18, 24, 42, 0.98), rgba(14, 20, 36, 0.99)),
    radial-gradient(circle at top right, rgba(117, 154, 135, 0.2), transparent 28%);
  border-top: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 26px 60px rgba(7, 12, 35, 0.28);
  backdrop-filter: blur(16px) saturate(1.1);
  transition: opacity 0.28s ease, transform 0.28s ease, visibility 0.28s ease;
}
.mobile-menu-panel.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.mobile-menu-inner {
  width: 100%;
  margin: 0;
  padding: 18px 22px 22px;
  height: 100%;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.mobile-menu-nav {
  display: grid;
  gap: 10px;
  align-content: start;
}
.mobile-menu-panel .mobile-menu-nav {
  display: grid !important;
}
.mobile-menu-nav a {
  padding: 18px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.08);
  background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
  color: rgba(255,255,255,0.96);
  font-size: 1.12rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  transition: color 0.22s ease, transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, box-shadow 0.22s ease;
}
.mobile-menu-nav a:hover,
.mobile-menu-nav a:focus-visible {
  background: linear-gradient(180deg, rgba(117, 154, 135, 0.18), rgba(117, 154, 135, 0.08));
  border-color: rgba(117, 154, 135, 0.24);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(117, 154, 135, 0.12);
}
.contact-chip {
  background: var(--mint);
  color: #0d1735;
  padding: 14px 34px;
  font-weight: 800;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.header-language {
  display: inline-flex;
  gap: 6px;
  padding: 5px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
}
.header-language button {
  border: 0;
  min-width: 48px;
  padding: 8px 12px;
  border-radius: 999px;
  background: transparent;
  color: rgba(255,255,255,0.78);
  font: inherit;
  font-size: 0.84rem;
  font-weight: 800;
}
.header-language .is-active {
  background: var(--mint);
  color: #0d1735;
}
.animate-in {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.985);
  filter: blur(8px);
  transition:
    opacity 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.82s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.82s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform, filter;
}
.animate-in.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  filter: blur(0);
}
.animate-in[data-delay="1"] { transition-delay: 0.08s; }
.animate-in[data-delay="2"] { transition-delay: 0.16s; }
.animate-in[data-delay="3"] { transition-delay: 0.24s; }

.internal-hero {
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(18, 21, 58, 0.74), rgba(18, 21, 58, 0.38)),
    url("https://images.unsplash.com/photo-1517048676732-d65bc937f952?auto=format&fit=crop&w=1800&q=80") center/cover no-repeat;
}
.internal-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(18, 21, 58, 0.18), transparent 55%),
    linear-gradient(180deg, rgba(116, 98, 164, 0.22), rgba(18, 21, 58, 0.18));
  pointer-events: none;
}
.internal-hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(420px, 0.95fr) minmax(260px, 0.9fr);
  gap: 32px;
  align-items: center;
  padding: 44px 0;
}
.internal-hero-copy {
  color: #fff;
  max-width: 700px;
}
.internal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: var(--mint);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.internal-kicker::before {
  content: "";
  width: 16px;
  height: 2px;
  background: var(--teal);
}
.internal-hero-copy h1 {
  margin: 0 0 14px;
  font-size: clamp(2.5rem, 4.5vw, 3.9rem);
  line-height: 0.98;
  letter-spacing: -0.06em;
}
.internal-hero-copy h1 .accent {
  color: var(--teal);
}
.internal-hero-copy p {
  margin: 0 0 20px;
  max-width: 560px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.7;
}
.internal-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-slash-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-slash {
  width: clamp(180px, 20vw, 280px);
  height: clamp(320px, 38vw, 420px);
  background: linear-gradient(180deg, #26b89f, #1da790);
  clip-path: polygon(56% 0, 100% 0, 44% 100%, 0 100%);
  box-shadow: 0 18px 44px rgba(117, 154, 135, 0.22);
}

.page-body {
  padding: 72px 0 92px;
  background: var(--page);
}
.page-hero {
  position: relative;
}
.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.88fr) minmax(360px, 1.12fr);
  gap: 42px;
  align-items: start;
}
.media-card {
  overflow: hidden;
  border-radius: 30px;
  background: var(--white);
  box-shadow: 0 24px 55px rgba(18,21,58,0.12);
}
.media-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}
.media-body {
  padding: 22px 22px 24px;
}
.media-body h3 {
  margin: 0 0 12px;
  font-size: 1.05rem;
  color: #0c1b4b;
}
.meta-stack {
  display: grid;
  gap: 12px;
  margin: 18px 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.satisfaction {
  padding: 14px 16px;
  border-radius: 22px;
  background: #dff2ff;
  margin: 20px 0;
}
.satisfaction strong {
  display: block;
  margin-bottom: 10px;
  color: #13214b;
  font-size: 0.95rem;
}
.progress {
  height: 14px;
  border-radius: 999px;
  background: rgba(29, 136, 255, 0.18);
  overflow: hidden;
}
.progress span {
  display: block;
  width: 78%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #1f8fff, #49b4ff);
}
.price-box {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  margin: 18px 0 12px;
  font-weight: 700;
}
.price-value {
  font-size: 1.55rem;
  color: #0b173d;
  font-weight: 800;
}
.primary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  padding: 15px 28px;
  background: var(--navy);
  color: #fff;
  font-size: 0.95rem;
  font-weight: 800;
  border-radius: 999px;
}
.secondary-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: #1f8fff;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 700;
}

.page-copy h1 {
  margin: 0 0 10px;
  color: #274b74;
  font-size: clamp(2.3rem, 4vw, 3.6rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
}
.page-copy .accent {
  display: block;
  color: #35a0ff;
}
.page-copy .quote {
  margin: 0 0 18px;
  color: #35a0ff;
  font-size: 1.12rem;
  font-weight: 800;
}
.page-copy p {
  margin: 0 0 14px;
  color: #4b5876;
  font-size: 1rem;
  line-height: 1.7;
}

.content-sections {
  display: grid;
  gap: 24px;
  margin-top: 28px;
}
.content-card {
  padding: 28px 30px;
  border-radius: 26px;
  background: #eaf7ff;
  border: 1px solid rgba(53,160,255,0.1);
  box-shadow: 0 18px 38px rgba(18, 21, 58, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.content-card:hover {
  transform: translateY(-6px);
  border-color: rgba(53,160,255,0.22);
  box-shadow: 0 26px 52px rgba(18, 21, 58, 0.09);
}
.content-card h2 {
  margin: 0 0 18px;
  color: #0f1b45;
  font-size: 1.85rem;
  line-height: 1.06;
  letter-spacing: -0.04em;
}
.content-card ul {
  margin: 0;
  padding-left: 20px;
  color: #30405e;
  line-height: 1.8;
}
.content-card p {
  margin: 0;
  color: #30405e;
  line-height: 1.72;
}
.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.outline-card {
  padding: 28px;
  border-radius: 22px;
  border: 2px solid #2a96ff;
  background: #fff;
  box-shadow: 0 18px 36px rgba(18, 21, 58, 0.04);
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.outline-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 46px rgba(18, 21, 58, 0.08);
}
.outline-card h3 {
  margin: 0 0 16px;
  color: #10204b;
  font-size: 1.15rem;
}

.accordion-group {
  display: grid;
  gap: 14px;
}
.accordion-item {
  padding: 22px 24px;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(18,21,58,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  font-weight: 800;
  color: #10204a;
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.accordion-item:hover {
  transform: translateY(-3px);
  border-color: rgba(18,21,58,0.14);
  box-shadow: 0 18px 36px rgba(18, 21, 58, 0.06);
}
.accordion-item span:last-child {
  font-size: 1.8rem;
  color: #32405e;
}

.contact-page {
  padding: 78px 0 88px;
  background: #fff;
}
.contact-panel {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(380px, 1.1fr);
  gap: 34px;
}
.contact-side {
  padding: 36px 34px 30px;
  border-radius: 30px;
  background: linear-gradient(180deg, #09183d 0%, #0b1d4c 100%);
  color: #fff;
  display: grid;
  gap: 22px;
  overflow: hidden;
}
.contact-side-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) 210px;
  gap: 26px;
  align-items: start;
}
.contact-side-copy {
  min-width: 0;
}
.contact-side-kicker {
  margin: 0 0 14px;
  color: #7fe3d8;
  font-size: 0.9rem;
  font-weight: 800;
}
.contact-side h1 {
  margin: 0 0 14px;
  font-size: clamp(2.7rem, 5vw, 4.35rem);
  line-height: 0.96;
  letter-spacing: -0.05em;
  max-width: 9ch;
}
.contact-side p {
  margin: 0 0 14px;
  color: rgba(255,255,255,0.78);
  line-height: 1.55;
  font-size: 1rem;
}
.contact-side p strong {
  color: #7fe3d8;
}
.contact-side-divider {
  width: 64px;
  height: 5px;
  border-radius: 999px;
  margin: 8px 0 20px;
  background: linear-gradient(90deg, #7fe3d8 0%, #4ec7c6 100%);
}
.contact-side-illustration {
  display: flex;
  justify-content: center;
  padding-top: 18px;
}
.contact-side-illustration svg {
  width: 100%;
  max-width: 210px;
  height: auto;
  fill: none;
  stroke: rgba(127, 227, 216, 0.9);
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-side-text {
  grid-column: 1 / -1;
  max-width: none;
}
.contact-side-text p {
  max-width: none;
}
.contact-side-card {
  margin-top: 8px;
  background: linear-gradient(180deg, rgba(255,255,255,0.98), rgba(249,252,255,0.98));
  border-radius: 28px;
  color: #13244d;
  box-shadow: 0 24px 48px rgba(3, 9, 31, 0.18);
  overflow: hidden;
}
.contact-side-info-item {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(18, 21, 58, 0.08);
}
.contact-side-info-item:last-child {
  border-bottom: 0;
}
.contact-side-info-icon {
  width: 52px;
  height: 52px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #eefefb 0%, #ddfbf7 100%);
  color: #102d58;
}
.contact-side-info-icon svg,
.contact-side-footnote svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-side-info-item strong {
  display: block;
  margin-bottom: 4px;
  color: #10204a;
  font-size: 0.98rem;
}
.contact-side-info-item span {
  display: block;
  color: #283657;
  line-height: 1.45;
}
.contact-side-info-item em {
  font-style: normal;
  color: #14aaa1;
  font-weight: 700;
}
.contact-side-footnotes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.contact-side-footnote {
  display: grid;
  grid-template-columns: 24px 1fr;
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.92);
  border: 1px solid rgba(127, 227, 216, 0.14);
}
.contact-side-footnote svg {
  color: #8fe9df;
}
.contact-side-footnote span {
  font-size: 0.93rem;
  line-height: 1.5;
}
.contact-form-card {
  padding: 30px 28px;
  border-radius: 28px;
  background: linear-gradient(180deg, #f9fdfd 0%, #f2fbfb 100%);
  border: 1px solid rgba(31,183,159,0.12);
  box-shadow: 0 18px 42px rgba(18,21,58,0.06);
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}
.contact-form-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 52px rgba(18,21,58,0.09);
}
.contact-request-card {
  background: linear-gradient(180deg, #ffffff 0%, #fbfefe 100%);
  border: 1px solid rgba(18, 21, 58, 0.06);
  border-radius: 30px;
  box-shadow: 0 20px 48px rgba(18,21,58,0.07);
}
.contact-request-head {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 16px;
  align-items: start;
  margin-bottom: 28px;
}
.contact-request-icon {
  width: 58px;
  height: 58px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f1fffb 0%, #e6fbf7 100%);
  color: #0ea79b;
  box-shadow: inset 0 0 0 1px rgba(14, 167, 155, 0.08);
}
.contact-request-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-request-head h2 {
  margin: 0 0 8px;
  color: #10204a;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  line-height: 1.08;
  letter-spacing: -0.04em;
}
.contact-request-head p {
  margin: 0;
  color: #52607c;
  line-height: 1.75;
}
.contact-form {
  display: grid;
  gap: 18px;
}
.contact-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field {
  display: grid;
  gap: 8px;
}
.field label {
  color: #0f1c49;
  font-size: 0.88rem;
  font-weight: 700;
}
.field label span,
.consent-check strong {
  color: #0ea79b;
}
.field label em {
  font-style: normal;
  color: #65738d;
  font-weight: 500;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid rgba(18,21,58,0.1);
  border-radius: 16px;
  background: #fff;
  color: #10204a;
  font: inherit;
  padding: 14px 16px;
  box-shadow: inset 0 1px 2px rgba(18,21,58,0.03);
}
.field input::placeholder,
.field textarea::placeholder {
  color: #99a3b7;
}
.field textarea {
  min-height: 96px;
  resize: vertical;
}
.choice-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.choice-row-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.choice-pill,
.subject-card,
.subject-other {
  position: relative;
}
.choice-pill input,
.subject-card input,
.subject-other input,
.consent-check input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.choice-pill span,
.subject-card span,
.subject-other span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 14px 16px;
  border: 1px solid rgba(18,21,58,0.1);
  border-radius: 18px;
  background: #fff;
  color: #10204a;
  text-align: center;
  font-weight: 700;
  line-height: 1.4;
  cursor: pointer;
  transition: border-color 0.22s ease, box-shadow 0.22s ease, transform 0.22s ease, background 0.22s ease;
}
.choice-pill span {
  gap: 10px;
}
.choice-pill svg,
.subject-card svg,
.subject-other svg,
.contact-form-foot svg {
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: #103d57;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.choice-pill input:checked + span,
.subject-card input:checked + span,
.subject-other input:checked + span {
  border-color: rgba(14, 167, 155, 0.7);
  background: linear-gradient(180deg, #f4fffd 0%, #ebfbf8 100%);
  box-shadow: 0 12px 26px rgba(14, 167, 155, 0.12);
  transform: translateY(-1px);
}
.subject-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.subject-card span {
  min-height: 112px;
  padding: 18px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 12px;
}
.subject-card strong {
  font-size: 0.95rem;
  line-height: 1.45;
}
.subject-other span {
  justify-content: flex-start;
  min-height: 58px;
  gap: 10px;
}
.contact-consent {
  margin-top: -4px;
}
.consent-check {
  position: relative;
  display: block;
  cursor: pointer;
}
.consent-check span {
  display: block;
  padding-left: 30px;
  color: #2f3c58;
  line-height: 1.6;
}
.consent-check span::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  border-radius: 5px;
  border: 1.5px solid rgba(18,21,58,0.18);
  background: #fff;
  position: absolute;
  left: 0;
  top: 2px;
}
.consent-check input:checked + span::before {
  background: #0ea79b;
  border-color: #0ea79b;
  box-shadow: inset 0 0 0 3px #fff;
}
.contact-submit {
  min-width: 320px;
  border-radius: 999px;
  background: linear-gradient(90deg, #111c4a 0%, #0ea79b 100%);
  box-shadow: 0 18px 34px rgba(16, 46, 85, 0.18);
}
.contact-submit:disabled,
.contact-status-modal__button:disabled {
  cursor: wait;
  opacity: 0.72;
}
.contact-form-foot {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  color: #3d4a65;
  font-size: 0.92rem;
  line-height: 1.6;
}
.contact-form-foot div {
  padding: 14px 16px;
  border-radius: 18px;
  background: #f5fbfb;
  border: 1px solid rgba(14, 167, 155, 0.08);
  display: grid;
  grid-template-columns: 22px 1fr;
  gap: 12px;
  align-items: start;
}
.contact-status-modal {
  border: 0;
  padding: 0;
  background: transparent;
  max-width: min(92vw, 540px);
}
.contact-status-modal::backdrop {
  background: rgba(9, 20, 52, 0.5);
  backdrop-filter: blur(6px);
}
.contact-status-modal__card {
  padding: 30px 28px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: 0 32px 72px rgba(12, 25, 58, 0.18);
  text-align: center;
}
.contact-status-modal__icon {
  width: 68px;
  height: 68px;
  margin: 0 auto 18px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  font-size: 2rem;
  font-weight: 800;
  color: #ffffff;
}
.contact-status-modal.is-success .contact-status-modal__icon {
  background: linear-gradient(180deg, #0ea79b 0%, #0b8d82 100%);
}
.contact-status-modal.is-error .contact-status-modal__icon {
  background: linear-gradient(180deg, #d45a67 0%, #c6454f 100%);
}
.contact-status-modal__title {
  margin: 0 0 10px;
  color: #10204a;
  font-size: 1.6rem;
}
.contact-status-modal__message {
  margin: 0 0 22px;
  color: #52607c;
  line-height: 1.7;
}
.contact-status-modal__button {
  min-width: 180px;
  border: 0;
}

.mini-faq {
  display: grid;
  gap: 14px;
}
.mini-faq-item {
  padding: 26px 28px;
  border-radius: 0;
  background: #edfafa;
  border: 0;
  transition: transform 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}
.mini-faq-item:hover {
  transform: translateY(-3px);
  background: #f3fcfc;
  box-shadow: 0 18px 34px rgba(18, 21, 58, 0.05);
}
.mini-faq-question {
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
  cursor: pointer;
}
.mini-faq-question h3 {
  margin: 0;
  color: #0f1c49;
  font-size: 1.18rem;
  font-weight: 800;
}
.mini-faq-icon {
  flex: 0 0 auto;
  color: #12204d;
  font-size: 2rem;
  line-height: 1;
  font-weight: 300;
}
.mini-faq-answer {
  display: none;
  padding-top: 14px;
}
.mini-faq-item.is-open .mini-faq-answer {
  display: block;
}
.mini-faq-answer p {
  margin: 0;
  color: #55627d;
  line-height: 1.7;
}

.dual-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 6px;
  justify-content: center;
}

.related-services {
  margin-top: 12px;
  display: grid;
  gap: 18px;
}
.related-services-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 18px;
}
.related-services-head h2 {
  margin: 0;
  color: #0f1c49;
  font-size: 1.7rem;
  letter-spacing: -0.04em;
}
.related-services-head p {
  margin: 0;
  max-width: 560px;
  color: #5a6782;
  line-height: 1.7;
}
.related-services-list {
  display: grid;
  gap: 14px;
}
.related-service-link {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 18px;
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(18, 21, 58, 0.08);
  border-radius: 20px;
  box-shadow: 0 14px 28px rgba(18, 21, 58, 0.05);
  transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
}
.related-service-link:hover {
  transform: translateY(-2px);
  border-color: rgba(117, 154, 135, 0.28);
  box-shadow: 0 18px 34px rgba(18, 21, 58, 0.08);
}
.related-service-link img {
  width: 140px;
  height: 104px;
  object-fit: cover;
  object-position: center;
  border-radius: 14px;
  box-shadow: 0 12px 24px rgba(18, 21, 58, 0.12);
  transition: transform 0.32s ease, box-shadow 0.32s ease, filter 0.32s ease;
}
.related-service-link:hover img {
  transform: scale(1.05);
  filter: saturate(1.04);
  box-shadow: 0 18px 34px rgba(18, 21, 58, 0.16);
}
.related-service-copy strong {
  display: block;
  margin-bottom: 6px;
  color: #0e1c47;
  font-size: 1.02rem;
}
.related-service-copy span {
  display: block;
  color: #62708c;
  font-size: 0.94rem;
  line-height: 1.55;
}
.related-service-arrow {
  color: #0f1c49;
  font-size: 1.2rem;
  font-weight: 800;
}

.site-footer {
  background: #0d1126;
  color: #ffffff;
  padding: 52px 0 24px;
}
.footer-row {
  padding: 0 28px 24px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.footer-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 40px;
  min-width: 0;
}
.footer-column {
  min-width: 0;
}
.footer-column h4 {
  margin: 0 0 18px;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.footer-links {
  display: grid;
  gap: 13px;
}
.footer-links a,
.footer-contact a {
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  line-height: 1.7;
  min-width: 0;
}
.footer-link-icon {
  width: 18px;
  height: 18px;
  color: #9ef1e7;
  margin-top: 2px;
}
.footer-link-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-services-links a {
  grid-template-columns: 20px minmax(0, 1fr);
}
.footer-services-links .footer-link-icon,
.footer-services-links .footer-link-icon svg {
  width: 20px;
  height: 20px;
}
.footer-links a:hover,
.footer-contact a:hover,
 .footer-contact a:focus-visible,
 .footer-links a:focus-visible {
  color: #ffffff;
}
.footer-column-contact {
  padding-left: 14px;
}
.footer-contact {
  margin-bottom: 28px;
}
.footer-bridge-links {
  gap: 14px;
}
.footer-services-links {
  gap: 14px;
}
.footer-cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 100%;
  padding: 14px 18px;
  border-radius: 999px;
  background: #e7eefb;
  color: #0c1330;
  font-size: 0.84rem;
  font-weight: 800;
  margin-bottom: 28px;
}
.footer-button-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1px solid rgba(12, 19, 48, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
}
.footer-button-icon svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.footer-cta-button:hover,
.footer-cta-button:focus-visible {
  color: #0c1330;
}
.footer-social-title {
  margin: 16px 0 14px;
  color: #ffffff;
  font-size: 0.8rem;
  font-weight: 600;
}
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  display: grid;
  place-items: center;
  color: #ffffff;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}
.footer-social:hover {
  background: rgba(185, 241, 239, 0.12);
  border-color: rgba(185, 241, 239, 0.32);
  transform: translateY(-2px);
}
.footer-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px 28px 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.76rem;
}
.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
}
.footer-bottom a:hover,
.footer-bottom a:focus-visible {
  color: rgba(255, 255, 255, 0.7);
}

@media (prefers-reduced-motion: reduce) {
  .animate-in,
  .content-card,
  .outline-card,
  .accordion-item,
  .contact-form-card,
  .mini-faq-item,
  .related-service-link,
  .related-service-link img,
  .footer-social {
    transition: none !important;
    animation: none !important;
    transform: none !important;
    filter: none !important;
  }

  .animate-in {
    opacity: 1 !important;
  }
}

@media (max-width: 1160px) {
  .nav { display: none; }
  .mobile-menu-toggle { display: inline-flex; }
  .header-actions .contact-chip { display: none; }
  .internal-hero-grid,
  .page-hero-grid,
  .split-grid,
  .contact-panel,
  .contact-form-grid,
  .footer-row,
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-tagline {
    max-width: 520px;
  }
  .related-services-head {
    flex-direction: column;
    align-items: start;
  }
  .contact-side-hero,
  .contact-side-footnotes {
    grid-template-columns: 1fr;
  }
  .contact-side-text {
    grid-column: auto;
  }
  .contact-side-illustration {
    justify-content: flex-start;
    padding-top: 0;
  }
  .choice-row,
  .choice-row-3,
  .subject-grid,
  .contact-form-foot {
    grid-template-columns: 1fr;
  }
  .hero-slash-wrap {
    display: none;
  }
}

@media (max-width: 720px) {
  .container { width: min(100% - 28px, 1240px); }
  .header-row {
    min-height: 56px;
    gap: 14px;
  }
  .mobile-menu-toggle {
    width: 52px;
    height: 52px;
    border-radius: 16px;
  }
  .brand img {
    width: 136px;
  }
  .header-language {
    padding: 4px;
  }
  .header-language button {
    min-width: 42px;
    padding: 7px 10px;
    font-size: 0.78rem;
  }
  .mobile-menu-inner {
    width: min(100% - 28px, 1240px);
  }
  .internal-hero { min-height: auto; }
  .internal-hero-grid { padding: 52px 0; }
  .internal-hero-copy h1 {
    font-size: clamp(2rem, 10vw, 2.85rem);
    line-height: 1.02;
  }
  .internal-hero-copy p {
    font-size: 0.96rem;
    line-height: 1.65;
  }
  .internal-hero-actions,
  .dual-cta {
    flex-direction: column;
    align-items: stretch;
  }
  .contact-chip,
  .primary-btn,
  .secondary-btn,
  .footer-cta-button {
    justify-content: center;
    width: 100%;
    text-align: center;
  }
  .page-body { padding: 52px 0 72px; }
  .media-card {
    border-radius: 24px;
  }
  .media-card img {
    height: 240px;
  }
  .page-copy h1 {
    font-size: clamp(1.9rem, 8vw, 2.5rem);
  }
  .content-card,
  .outline-card,
  .contact-form-card {
    padding: 22px 18px;
    border-radius: 22px;
  }
  .contact-request-head {
    grid-template-columns: 1fr;
  }
  .contact-side {
    padding: 26px 20px 22px;
  }
  .contact-side h1 {
    max-width: none;
    font-size: clamp(2.3rem, 10vw, 3.4rem);
  }
  .contact-request-icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
  }
  .contact-side-info-item {
    grid-template-columns: 48px 1fr;
    gap: 12px;
    padding: 16px 18px;
  }
  .contact-side-info-icon {
    width: 44px;
    height: 44px;
  }
  .subject-card span {
    min-height: 88px;
  }
  .choice-row-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .choice-row-3 .choice-pill span {
    min-height: 54px;
    padding: 12px;
    gap: 0;
    border-radius: 16px;
    font-size: 0;
  }
  .choice-row-3 .choice-pill svg {
    width: 24px;
    height: 24px;
  }
  .contact-submit {
    min-width: 0;
  }
  .related-service-link {
    grid-template-columns: 110px 1fr;
    gap: 14px;
    align-items: center;
  }
  .related-service-link img {
    width: 110px;
    height: 88px;
  }
  .related-service-arrow {
    display: none;
  }
  .footer-row {
    gap: 26px;
    padding: 0 0 26px;
  }
  .footer-columns {
    grid-template-columns: 1fr;
  }
  .footer-socials {
    justify-content: flex-start;
  }
  .footer-cta-button {
    width: 100%;
    min-width: 0;
  }
  .footer-bottom {
    flex-direction: column;
    padding: 22px 0 0;
  }
  .site-footer { padding: 58px 0 26px; }
}
