:root {
  --navy-950: #061729;
  --navy-900: #0a2440;
  --navy-800: #0e355f;
  --blue-700: #075ea8;
  --blue-500: #1592d0;
  --red-700: #c5272d;
  --red-600: #e33b2f;
  --orange-500: #f47721;
  --gold-500: #f3b31b;
  --gold-300: #ffd568;
  --ink: #17202b;
  --muted: #5e6a79;
  --line: #dbe3ec;
  --surface: #f5f8fb;
  --white: #ffffff;
  --shadow-sm: 0 10px 30px rgba(6, 23, 41, .08);
  --shadow-lg: 0 24px 65px rgba(6, 23, 41, .16);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }
button { cursor: pointer; }
section { scroll-margin-top: 110px; }
.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}
.skip-link {
  position: fixed;
  left: 12px;
  top: -80px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy-950);
  border-radius: 8px;
}
.skip-link:focus { top: 12px; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 14px;
  color: var(--red-700);
  font-size: .78rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red-600), var(--gold-500));
}
h1, h2, h3, h4 {
  margin: 0 0 18px;
  color: var(--navy-950);
  font-weight: 850;
  line-height: 1.12;
  letter-spacing: -.025em;
}
h1 { font-size: clamp(2.5rem, 5.6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.55rem); }
p { margin: 0 0 18px; }
.lead {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.08rem, 1.8vw, 1.28rem);
}
.section { padding: 96px 0; }
.section-sm { padding: 68px 0; }
.section-dark {
  color: rgba(255,255,255,.84);
  background:
    radial-gradient(circle at 9% 12%, rgba(21,146,208,.2), transparent 28%),
    radial-gradient(circle at 92% 78%, rgba(244,119,33,.16), transparent 28%),
    var(--navy-950);
}
.section-dark h2,
.section-dark h3,
.section-dark h4 { color: var(--white); }
.section-dark .lead,
.section-dark p { color: rgba(255,255,255,.72); }
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 30px;
  margin-bottom: 42px;
}
.section-header > :first-child { max-width: 800px; }
.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--blue-700);
  font-weight: 800;
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }

.topbar {
  color: rgba(255,255,255,.86);
  background: var(--navy-950);
  font-size: .84rem;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.topbar p { margin: 0; }
.topbar-links { display: flex; gap: 18px; align-items: center; }
.topbar a { color: var(--white); text-decoration: none; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid rgba(10,36,64,.08);
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(16px);
}
.header-inner {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 260px;
  text-decoration: none;
}
.brand img {
  width: 64px;
  height: 60px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-copy {
  display: grid;
  gap: 1px;
}
.brand-copy strong {
  color: var(--navy-950);
  font-size: 1.24rem;
  line-height: 1;
  letter-spacing: .04em;
}
.brand-copy span {
  max-width: 260px;
  color: var(--muted);
  font-size: .68rem;
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}
.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.site-nav a {
  padding: 12px 11px;
  color: var(--navy-900);
  border-radius: 9px;
  font-size: .92rem;
  font-weight: 750;
  text-decoration: none;
  white-space: nowrap;
}
.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--red-700);
  background: #fff4ee;
}
.site-nav .nav-cta {
  margin-left: 8px;
  padding: 12px 18px;
  color: var(--white);
  background: linear-gradient(135deg, var(--red-700), var(--orange-500));
  box-shadow: 0 10px 22px rgba(197,39,45,.22);
}
.site-nav .nav-cta:hover {
  color: var(--white);
  background: linear-gradient(135deg, #ad1e25, #e96716);
}
.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 12px;
  color: var(--white);
  background: var(--navy-950);
}
.menu-toggle span,
.menu-toggle::before,
.menu-toggle::after {
  content: "";
  display: block;
  width: 24px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
  transition: .2s ease;
}
body.nav-open .menu-toggle span { opacity: 0; }
body.nav-open .menu-toggle::before { transform: translateY(7px) rotate(45deg); }
body.nav-open .menu-toggle::after { transform: translateY(-7px) rotate(-45deg); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 690px;
  display: flex;
  align-items: center;
  color: var(--white);
  background:
    radial-gradient(circle at 18% 10%, rgba(21,146,208,.32), transparent 31%),
    radial-gradient(circle at 86% 74%, rgba(244,119,33,.3), transparent 28%),
    linear-gradient(128deg, #061729 0%, #0a2d50 58%, #0c406f 100%);
}
.hero::before,
.hero::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 50%;
}
.hero::before {
  width: 620px;
  height: 620px;
  right: -270px;
  top: -210px;
}
.hero::after {
  width: 420px;
  height: 420px;
  right: -80px;
  bottom: -260px;
}
.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, .84fr);
  align-items: center;
  gap: 72px;
  padding: 86px 0;
}
.hero .eyebrow { color: var(--gold-300); }
.hero h1 { max-width: 800px; color: var(--white); }
.hero .lead {
  max-width: 720px;
  color: rgba(255,255,255,.78);
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin: 34px 0 28px;
}
.btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  min-height: 50px;
  padding: 13px 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 850;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-600), var(--orange-500));
  box-shadow: 0 15px 32px rgba(227,59,47,.25);
}
.btn-secondary {
  color: var(--navy-950);
  background: var(--white);
  box-shadow: 0 15px 32px rgba(0,0,0,.12);
}
.btn-outline {
  color: var(--navy-950);
  border-color: var(--navy-900);
  background: transparent;
}
.btn-outline:hover { color: var(--white); background: var(--navy-950); }
.btn-light-outline {
  color: var(--white);
  border-color: rgba(255,255,255,.45);
  background: rgba(255,255,255,.04);
}
.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  color: rgba(255,255,255,.68);
  font-size: .92rem;
}
.hero-notes span::before {
  content: "✓";
  margin-right: 7px;
  color: var(--gold-300);
  font-weight: 900;
}
.hero-panel {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.1);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(18px);
}
.hero-logo {
  width: 176px;
  margin: 0 auto 22px;
  padding: 14px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 16px 38px rgba(0,0,0,.22);
}
.hero-panel h2 {
  color: var(--white);
  font-size: 1.55rem;
  text-align: center;
}
.hero-panel > p {
  color: rgba(255,255,255,.7);
  text-align: center;
}
.bridge {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 64px 1fr;
  align-items: center;
  margin-top: 26px;
}
.bridge-country {
  min-height: 95px;
  display: grid;
  place-items: center;
  padding: 16px 10px;
  border-radius: 18px;
  background: rgba(255,255,255,.09);
  text-align: center;
}
.bridge-country strong { display: block; color: var(--white); }
.bridge-country small { color: rgba(255,255,255,.58); }
.bridge-line {
  position: relative;
  height: 2px;
  background: linear-gradient(90deg, var(--blue-500), var(--gold-500), var(--red-600));
}
.bridge-line::after {
  content: "↔";
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%,-50%);
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  color: var(--navy-950);
  border-radius: 50%;
  background: var(--white);
  font-weight: 900;
}
.hero-badge {
  position: absolute;
  right: -18px;
  bottom: 24px;
  padding: 12px 16px;
  color: var(--navy-950);
  border-radius: 14px;
  background: var(--gold-300);
  box-shadow: var(--shadow-sm);
  font-size: .82rem;
  font-weight: 900;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -38px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  border-radius: 22px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.trust-item {
  min-height: 122px;
  padding: 26px;
  border-right: 1px solid var(--line);
}
.trust-item:last-child { border-right: 0; }
.trust-item strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy-950);
  font-size: 1.05rem;
}
.trust-item span { color: var(--muted); font-size: .9rem; }

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

.card {
  position: relative;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.card h3 { margin-bottom: 12px; }
.card p:last-child { margin-bottom: 0; }
.card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: 22px;
  color: var(--white);
  border-radius: 17px;
  background: linear-gradient(135deg, var(--blue-700), var(--blue-500));
  font-size: 1.4rem;
  font-weight: 900;
}
.card:nth-child(2) .card-icon { background: linear-gradient(135deg, var(--red-700), var(--orange-500)); }
.card:nth-child(3) .card-icon { color: var(--navy-950); background: linear-gradient(135deg, var(--gold-500), var(--gold-300)); }
.card:nth-child(4) .card-icon { background: linear-gradient(135deg, #276749, #38a169); }
.card-list {
  padding: 0;
  margin: 18px 0 0;
  list-style: none;
}
.card-list li {
  position: relative;
  margin: 8px 0;
  padding-left: 24px;
  color: var(--muted);
}
.card-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--red-700);
  font-weight: 900;
}
.feature-panel {
  display: grid;
  grid-template-columns: minmax(0,.94fr) minmax(0,1.06fr);
  align-items: stretch;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: var(--surface);
}
.feature-visual {
  min-height: 520px;
  padding: 48px;
  color: var(--white);
  background:
    radial-gradient(circle at 12% 18%, rgba(255,213,104,.24), transparent 25%),
    radial-gradient(circle at 86% 72%, rgba(21,146,208,.26), transparent 30%),
    linear-gradient(140deg, var(--navy-950), var(--navy-800));
}
.feature-visual h2 { color: var(--white); }
.feature-visual .lead { color: rgba(255,255,255,.75); }
.feature-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 54px;
}
.step-list {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.step {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 15px;
  align-items: start;
}
.step-number {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--white);
  border-radius: 14px;
  background: var(--red-700);
  font-weight: 900;
}
.step h3 { margin: 2px 0 5px; font-size: 1.05rem; }
.step p { margin: 0; color: var(--muted); }

.quote-block {
  padding: 34px;
  border-left: 5px solid var(--gold-500);
  border-radius: 0 18px 18px 0;
  background: #fff9e8;
}
.quote-block p { margin: 0; color: var(--navy-900); font-size: 1.2rem; font-weight: 750; }

.leader-card {
  display: flex;
  align-items: center;
  gap: 18px;
}
.avatar {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: 74px;
  height: 74px;
  color: var(--white);
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-800), var(--blue-500));
  font-size: 1.3rem;
  font-weight: 900;
}
.leader-card h3 { margin: 0 0 4px; }
.leader-card p { margin: 0; color: var(--red-700); font-weight: 800; }

.cta-panel {
  position: relative;
  overflow: hidden;
  padding: 56px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: linear-gradient(125deg, var(--red-700), var(--orange-500));
  box-shadow: var(--shadow-lg);
}
.cta-panel::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 340px;
  right: -170px;
  top: -170px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
}
.cta-panel h2 { color: var(--white); max-width: 760px; }
.cta-panel p { max-width: 760px; color: rgba(255,255,255,.82); }
.cta-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 28px; }

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 84px;
  color: var(--white);
  background:
    radial-gradient(circle at 85% 20%, rgba(244,119,33,.25), transparent 30%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
}
.page-hero h1 { max-width: 900px; color: var(--white); font-size: clamp(2.4rem, 5vw, 4.5rem); }
.page-hero .lead { color: rgba(255,255,255,.75); }
.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
  color: rgba(255,255,255,.58);
  font-size: .88rem;
}
.breadcrumbs a { color: var(--gold-300); text-decoration: none; }
.breadcrumbs span::before { content: "/"; margin-right: 8px; }

.check-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 14px;
  padding: 0;
  list-style: none;
}
.check-grid li {
  position: relative;
  padding: 15px 16px 15px 43px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: var(--white);
  color: var(--navy-900);
  font-weight: 700;
}
.check-grid li::before {
  content: "✓";
  position: absolute;
  left: 16px;
  color: var(--red-700);
  font-weight: 950;
}
.notice {
  padding: 22px 24px;
  border: 1px solid #f0d180;
  border-radius: 16px;
  background: #fff9e8;
}
.notice strong { display: block; margin-bottom: 4px; color: var(--navy-950); }
.notice p { margin: 0; color: #66551f; }

.contact-grid {
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  gap: 34px;
  align-items: start;
}
.contact-card {
  padding: 34px;
  border-radius: var(--radius-md);
  color: var(--white);
  background: var(--navy-950);
}
.contact-card h2, .contact-card h3 { color: var(--white); }
.contact-card p { color: rgba(255,255,255,.7); }
.contact-list {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}
.contact-line {
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,.12);
}
.contact-line:last-child { border: 0; padding-bottom: 0; }
.contact-line span { display: block; color: rgba(255,255,255,.55); font-size: .78rem; text-transform: uppercase; letter-spacing: .12em; }
.contact-line a, .contact-line strong { color: var(--white); font-size: 1.08rem; text-decoration: none; }
.form-card {
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 18px;
}
.field { display: grid; gap: 7px; margin-bottom: 18px; }
.field label { color: var(--navy-950); font-weight: 800; }
.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 12px;
  padding: 13px 14px;
  color: var(--ink);
  background: var(--white);
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: 3px solid rgba(21,146,208,.18);
  border-color: var(--blue-500);
}
.field textarea { min-height: 150px; resize: vertical; }
.honeypot { position: absolute !important; left: -9999px !important; }
.form-note { color: var(--muted); font-size: .84rem; }

.site-footer {
  color: rgba(255,255,255,.7);
  background: #04111f;
}
.footer-main { padding: 66px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr .8fr .9fr 1fr;
  gap: 42px;
}
.footer-brand .brand-copy strong { color: var(--white); }
.footer-brand .brand-copy span { color: rgba(255,255,255,.54); }
.footer-brand p { max-width: 430px; margin-top: 20px; }
.footer-title {
  margin: 0 0 16px;
  color: var(--white);
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.footer-links { display: grid; gap: 9px; }
.footer-links a { color: rgba(255,255,255,.7); text-decoration: none; }
.footer-links a:hover { color: var(--gold-300); }
.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,.09);
  font-size: .82rem;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p { margin: 0; }

.floating-contact {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.floating-contact a {
  min-width: 132px;
  padding: 12px 16px;
  color: var(--white);
  border-radius: 999px;
  background: var(--red-700);
  box-shadow: 0 12px 28px rgba(6,23,41,.25);
  font-size: .88rem;
  font-weight: 850;
  text-align: center;
  text-decoration: none;
}
.floating-contact a:first-child { background: var(--navy-900); }

.prose { max-width: 850px; }
.prose h2 { margin-top: 42px; font-size: 2rem; }
.prose h3 { margin-top: 30px; font-size: 1.3rem; }
.prose ul { padding-left: 22px; }
.prose li { margin-bottom: 9px; }

@media (max-width: 1100px) {
  .site-nav a { padding-inline: 8px; font-size: .85rem; }
  .brand-copy span { max-width: 210px; }
  .hero-grid { gap: 40px; }
  .footer-grid { grid-template-columns: 1.25fr .75fr .9fr; }
  .footer-grid > :last-child { grid-column: 2 / 4; }
}
@media (max-width: 920px) {
  .topbar { display: none; }
  .header-inner { min-height: 76px; }
  .menu-toggle { display: block; }
  .site-nav {
    position: fixed;
    inset: 76px 0 auto 0;
    display: grid;
    align-content: start;
    gap: 4px;
    max-height: calc(100vh - 76px);
    padding: 22px;
    overflow: auto;
    border-top: 1px solid var(--line);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transform: translateY(-130%);
    transition: transform .25s ease;
  }
  body.nav-open .site-nav { transform: translateY(0); }
  .site-nav a { padding: 14px 16px; font-size: 1rem; }
  .site-nav .nav-cta { margin: 8px 0 0; text-align: center; }
  .hero { min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; padding: 76px 0 110px; }
  .hero-copy { max-width: 760px; }
  .hero-panel { max-width: 640px; }
  .hero-badge { right: 20px; }
  .trust-grid { grid-template-columns: repeat(2,1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .grid-4 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .grid-3 { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .feature-panel { grid-template-columns: 1fr; }
  .feature-visual { min-height: auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
  .footer-grid > :last-child { grid-column: auto; }
}
@media (max-width: 680px) {
  .container { width: min(var(--container), calc(100% - 28px)); }
  .section { padding: 72px 0; }
  .section-sm { padding: 54px 0; }
  .brand { min-width: 0; gap: 10px; }
  .brand img { width: 54px; height: 50px; }
  .brand-copy strong { font-size: 1.08rem; }
  .brand-copy span { max-width: 184px; font-size: .58rem; }
  .hero-grid { padding: 60px 0 96px; }
  .hero-actions { display: grid; }
  .btn { width: 100%; }
  .hero-panel { padding: 26px 20px; }
  .hero-logo { width: 142px; }
  .hero-badge { position: static; margin: 20px auto 0; width: fit-content; }
  .trust-strip { margin-top: -26px; }
  .trust-grid { grid-template-columns: 1fr; }
  .trust-item { min-height: auto; border-right: 0; border-bottom: 1px solid var(--line); }
  .trust-item:last-child { border-bottom: 0; }
  .section-header { display: block; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .card { padding: 25px; }
  .feature-visual, .feature-content { padding: 32px 24px; }
  .check-grid { grid-template-columns: 1fr; }
  .cta-panel { padding: 36px 24px; }
  .cta-actions { display: grid; }
  .page-hero { padding: 78px 0 64px; }
  .form-card, .contact-card { padding: 28px 22px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-bottom-inner { display: grid; }
  .floating-contact {
    right: 12px;
    left: 12px;
    bottom: 12px;
    flex-direction: row;
  }
  .floating-contact a { flex: 1; min-width: 0; padding-inline: 10px; }
}


/* ===== BILINGUAL LANGUAGE SWITCH ===== */
.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-left: 8px;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--surface);
  white-space: nowrap;
}
.language-switch a,
.language-switch span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  padding: 7px 10px;
  border-radius: 999px;
  color: var(--navy-900);
  font-size: .78rem;
  font-weight: 850;
  line-height: 1;
  text-decoration: none;
}
.language-switch a:hover { color: var(--red-700); background: #fff4ee; }
.language-switch .active { color: var(--white); background: var(--navy-900); }

/* Keep white cards readable when used inside dark content sections. */
.section-dark .card { color: var(--ink); }
.section-dark .card h2,
.section-dark .card h3,
.section-dark .card h4 { color: var(--navy-950); }
.section-dark .card p,
.section-dark .card li { color: var(--muted); }

/* High-contrast content-page call-to-action panels. */
.cta-panel {
  color: var(--navy-950);
  border: 1px solid #efc46f;
  background-color: #fff5df;
  background-image:
    radial-gradient(circle at 92% 10%, rgba(244,119,33,.16), transparent 34%),
    linear-gradient(135deg, #fff9e8 0%, #fff0e4 100%);
}
.cta-panel::after { border-color: rgba(197,39,45,.15); }
.cta-panel h2 { color: var(--navy-950); }
.cta-panel p { color: #465466; }
.cta-panel .btn-outline { color: var(--navy-950); border-color: var(--navy-900); background: var(--white); }
.cta-panel .btn-outline:hover { color: var(--white); background: var(--navy-950); }

html[lang="zh-CN"] body {
  font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", "Heiti SC", Arial, sans-serif;
  line-height: 1.72;
}
html[lang="zh-CN"] .brand-copy span { text-transform: none; letter-spacing: 0; }
html[lang="zh-CN"] .eyebrow,
html[lang="zh-CN"] .footer-title { letter-spacing: .05em; }

@media (max-width: 1100px) {
  .language-switch { margin-left: 2px; }
  .language-switch a, .language-switch span { min-width: 38px; padding-inline: 8px; }
}
@media (max-width: 920px) {
  .language-switch {
    margin: 10px 0 0;
    justify-self: start;
  }
  .site-nav .language-switch a { padding: 9px 14px; font-size: .88rem; }
}

/* ==============================================================
   CONTRAST SAFEGUARDS — CTA AND LIGHT CARDS
   These rules intentionally use stronger specificity so headings and
   paragraphs remain readable even when a CTA is placed in a dark section.
================================================================= */
.cta-panel,
.section-dark .cta-panel {
  color: var(--navy-950) !important;
  background-color: #fff5df !important;
}
.cta-panel > * {
  position: relative;
  z-index: 1;
}
.cta-panel h1,
.cta-panel h2,
.cta-panel h3,
.cta-panel h4,
.cta-panel strong,
.section-dark .cta-panel h1,
.section-dark .cta-panel h2,
.section-dark .cta-panel h3,
.section-dark .cta-panel h4,
.section-dark .cta-panel strong {
  color: var(--navy-950) !important;
}
.cta-panel p,
.cta-panel .lead,
.cta-panel li,
.section-dark .cta-panel p,
.section-dark .cta-panel .lead,
.section-dark .cta-panel li {
  color: #3f4d60 !important;
}
.cta-panel .btn-primary,
.section-dark .cta-panel .btn-primary {
  color: var(--white) !important;
}
.cta-panel .btn-secondary,
.cta-panel .btn-outline,
.section-dark .cta-panel .btn-secondary,
.section-dark .cta-panel .btn-outline {
  color: var(--navy-950) !important;
}
.cta-panel .btn-outline:hover,
.section-dark .cta-panel .btn-outline:hover {
  color: var(--white) !important;
}

/* White content cards remain dark-text cards wherever they are used. */
.section-dark .card {
  color: var(--ink) !important;
  background: var(--white) !important;
}
.section-dark .card h1,
.section-dark .card h2,
.section-dark .card h3,
.section-dark .card h4,
.section-dark .card strong {
  color: var(--navy-950) !important;
}
.section-dark .card p,
.section-dark .card li,
.section-dark .card .card-list li,
.section-dark .card span:not(.card-icon) {
  color: var(--muted) !important;
}
.section-dark .card .card-icon {
  color: var(--white) !important;
}
.section-dark .card:nth-child(3) .card-icon {
  color: var(--navy-950) !important;
}


/* ==============================
   ABOUT PAGE — HISTORY & BIOS
============================== */
.about-hero {
  background:
    radial-gradient(circle at 86% 24%, rgba(244,119,33,.28), transparent 31%),
    radial-gradient(circle at 16% 86%, rgba(21,146,208,.18), transparent 29%),
    linear-gradient(125deg, var(--navy-950), var(--navy-800));
}
.about-intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, .88fr);
  align-items: center;
  gap: 64px;
}
.about-intro-copy p:not(.eyebrow) { max-width: 760px; }
.about-pill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.about-pill-row span {
  padding: 9px 14px;
  color: var(--navy-900);
  border: 1px solid #cbd8e6;
  border-radius: 999px;
  background: var(--surface);
  font-size: .86rem;
  font-weight: 800;
}
.certificate-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.certificate-card img {
  width: 100%;
  max-height: 560px;
  object-fit: contain;
  object-position: center top;
  background: #f3f3f0;
}
.certificate-card figcaption,
.history-card figcaption {
  display: grid;
  gap: 3px;
  padding: 20px 22px;
}
.certificate-card figcaption strong,
.history-card figcaption strong {
  color: var(--navy-950);
  font-size: 1rem;
}
.certificate-card figcaption span,
.history-card figcaption span {
  color: var(--muted);
  font-size: .88rem;
}
.history-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
}
.history-card {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 18px 45px rgba(0,0,0,.2);
}
.history-card img {
  width: 100%;
  height: 340px;
  object-fit: cover;
}
.history-card:first-child img { object-position: center center; }
.history-card:nth-child(2) img { object-position: center 44%; }
.leadership-intro { margin-bottom: 38px; }
.leadership-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 26px;
  align-items: start;
}
.bio-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.bio-heading {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-bottom: 22px;
  margin-bottom: 22px;
  border-bottom: 1px solid var(--line);
}
.bio-heading h3 { margin: 0 0 5px; }
.bio-role {
  margin: 0;
  color: var(--red-700);
  font-weight: 850;
}
.bio-copy p { color: var(--muted); }
.bio-copy p:last-child { margin-bottom: 0; }
.bio-copy strong { color: var(--navy-950); }
.bio-copy a {
  color: var(--blue-700);
  font-weight: 800;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}
.bio-copy a:hover { color: var(--red-700); }

@media (max-width: 920px) {
  .about-intro-grid { grid-template-columns: 1fr; gap: 38px; }
  .certificate-card { max-width: 640px; }
  .history-card img { height: 290px; }
  .leadership-grid { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .history-gallery { grid-template-columns: 1fr; }
  .history-card img { height: 235px; }
  .bio-card { padding: 25px; }
  .bio-heading { align-items: flex-start; }
  .certificate-card img { max-height: 480px; }
}


/* =============================================
   INLINE ENGLISH / CHINESE LANGUAGE SYSTEM
   Both translations are maintained in each page.
============================================= */
[data-language-content][hidden] { display: none !important; }
.language-content { min-height: 100vh; }
.language-switch button {
  min-width: 40px;
  padding: 8px 10px;
  border: 0;
  border-radius: 8px;
  color: var(--navy-900);
  background: transparent;
  font: inherit;
  font-size: .82rem;
  font-weight: 850;
  line-height: 1;
  cursor: pointer;
}
.language-switch button:hover { color: var(--red-700); background: #fff4ee; }
.language-switch button.active,
.language-switch button[aria-pressed="true"] { color: var(--white); background: var(--navy-900); }
html[lang="zh-CN"] body { font-family: "Noto Sans SC", "Microsoft YaHei", "PingFang SC", Arial, sans-serif; }
html[lang="zh-CN"] .brand-copy span { text-transform: none; letter-spacing: 0; }

/* Ensure CTA and white cards always retain readable dark copy. */
.cta-panel,
.cta-panel h1,
.cta-panel h2,
.cta-panel h3,
.cta-panel h4 { color: var(--navy-950) !important; }
.cta-panel p,
.cta-panel li { color: var(--muted) !important; }
.section-dark .cta-panel,
.section-dark .cta-panel h2,
.section-dark .cta-panel h3 { color: var(--navy-950) !important; }
.section-dark .cta-panel p,
.section-dark .cta-panel li { color: var(--muted) !important; }
.section-dark .card,
.section-dark .card h3,
.section-dark .feature-card,
.section-dark .feature-card h3,
.section-dark .service-card,
.section-dark .service-card h3,
.section-dark .process-card,
.section-dark .process-card h3,
.section-dark .bio-card,
.section-dark .bio-card h3 { color: var(--navy-950); }
.section-dark .card p,
.section-dark .feature-card p,
.section-dark .service-card p,
.section-dark .process-card p,
.section-dark .bio-card p { color: var(--muted); }

@media (max-width: 920px) {
  .language-switch button { min-width: 44px; padding: 9px 12px; }
}


/* ==============================================================
   QHITPA INLINE BILINGUAL V4 — ONE DOM PER PAGE
   Complete English and Simplified Chinese content is switched in place.
================================================================= */
html[lang="zh-CN"] body {
  word-break: normal;
  overflow-wrap: anywhere;
}
html[lang="zh-CN"] .site-nav a,
html[lang="zh-CN"] .btn,
html[lang="zh-CN"] .language-switch button {
  letter-spacing: 0;
}
.language-switch button {
  appearance: none;
  -webkit-appearance: none;
}
.language-switch button:focus-visible {
  outline: 3px solid rgba(21, 146, 208, .35);
  outline-offset: 2px;
}
/* Strong final contrast rules for every CTA and dark-section card. */
.cta-panel,
.section-dark .cta-panel {
  color: var(--navy-950) !important;
  background: linear-gradient(135deg, #fff9e8 0%, #fff0e4 100%) !important;
}
.cta-panel :is(h1,h2,h3,h4,strong),
.section-dark .cta-panel :is(h1,h2,h3,h4,strong) {
  color: var(--navy-950) !important;
}
.cta-panel :is(p,li,.lead),
.section-dark .cta-panel :is(p,li,.lead) {
  color: #3f4d60 !important;
}
