:root {
  --ink: #0b1324;
  --ink-soft: #334155;
  --muted: #64748b;
  --line: rgba(15, 23, 42, 0.12);
  --paper: #ffffff;
  --paper-soft: #f4f7fb;
  --navy: #0b1324;
  --navy-2: #111f36;
  --blue: #4ea8de;
  --mint: #71d6b0;
  --accent: #8bd3ff;
  --radius: 24px;
  --shadow: 0 24px 70px rgba(3, 15, 33, 0.12);
  --container: min(1180px, calc(100% - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: #fff;
  color: #000;
  border-radius: 8px;
  transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.container { width: var(--container); margin-inline: auto; }

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  border-bottom: 1px solid transparent;
  transition: background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(18px);
  border-color: var(--line);
  box-shadow: 0 12px 30px rgba(15,23,42,.06);
}
.header-inner {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: #fff;
  min-width: 0;
}
.site-header.scrolled .brand { color: var(--ink); }
.brand img {
  width: 56px;
  height: 60px;
  object-fit: contain;
  filter: invert(1);
  transition: filter .25s ease;
}
.site-header.scrolled .brand img { filter: none; }
.brand-text { display: grid; line-height: 1.15; }
.brand-text strong { font-size: 15px; letter-spacing: .02em; }
.brand-text small { margin-top: 4px; font-size: 12px; opacity: .7; }

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  color: rgba(255,255,255,.82);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
  transition: color .2s ease, background .2s ease;
}
.site-header.scrolled .main-nav a { color: var(--ink-soft); }
.main-nav a:hover { color: #fff; }
.site-header.scrolled .main-nav a:hover { color: var(--ink); }
.main-nav .nav-action {
  padding: 11px 17px;
  color: var(--ink);
  background: #fff;
  border-radius: 999px;
}
.site-header.scrolled .main-nav .nav-action {
  color: #fff;
  background: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: #fff;
  transition: transform .2s ease, opacity .2s ease;
}
.site-header.scrolled .menu-toggle { background: var(--paper-soft); }
.site-header.scrolled .menu-toggle span { background: var(--ink); }

.hero {
  position: relative;
  overflow: hidden;
  min-height: 810px;
  display: grid;
  align-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 75% 32%, rgba(78,168,222,.30), transparent 33%),
    radial-gradient(circle at 25% 90%, rgba(113,214,176,.13), transparent 35%),
    linear-gradient(135deg, #07101f 0%, #0c1930 55%, #102743 100%);
}
.hero::before {
  content: "";
  position: absolute;
  width: 560px;
  height: 560px;
  right: -220px;
  top: 70px;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(255,255,255,.02), 0 0 0 140px rgba(255,255,255,.015);
}
.hero-grid {
  position: absolute;
  inset: 0;
  opacity: .28;
  background-image: linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
}
.hero-layout {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: 70px;
  padding-top: 130px;
  padding-bottom: 90px;
}
.eyebrow {
  margin: 0 0 18px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.hero .eyebrow { color: var(--accent); }
.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.02;
  letter-spacing: -.045em;
}
.hero-lead {
  max-width: 650px;
  margin: 28px 0 0;
  color: rgba(255,255,255,.72);
  font-size: 19px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 13px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 750;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary {
  color: #07101f;
  background: linear-gradient(120deg, var(--accent), var(--mint));
  box-shadow: 0 12px 34px rgba(113,214,176,.18);
}
.button-secondary {
  color: #fff;
  border-color: rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
}
.trust-line {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 38px;
  color: rgba(255,255,255,.58);
  font-size: 13px;
}
.trust-line span { display: inline-flex; align-items: center; gap: 9px; }
.trust-line span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--mint);
  box-shadow: 0 0 0 5px rgba(113,214,176,.1);
}

.hero-visual { position: relative; min-height: 490px; display: grid; place-items: center; }
.hero-card {
  position: relative;
  z-index: 3;
  width: min(100%, 520px);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 30px;
  background: linear-gradient(145deg, rgba(255,255,255,.12), rgba(255,255,255,.035));
  box-shadow: 0 32px 100px rgba(0,0,0,.35);
  backdrop-filter: blur(18px);
  overflow: hidden;
}
.hero-card-top {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 19px 22px;
  color: rgba(255,255,255,.76);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.status-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 16px var(--mint); }
.route-map { padding: 20px 18px 8px; }
.route-map svg { width: 100%; }
.world-line { fill: none; stroke: rgba(255,255,255,.09); stroke-width: 1.5; }
.trade-route { fill: none; stroke: url(#routeGradient); stroke-width: 2.4; stroke-linecap: round; stroke-dasharray: 7 8; filter: url(#glow); animation: dash 12s linear infinite; }
.trade-route-two { opacity: .65; animation-duration: 16s; animation-direction: reverse; }
.node { fill: #8ef2c4; stroke: rgba(255,255,255,.9); stroke-width: 2; filter: url(#glow); }
.node-small { fill: #8bd3ff; }
@keyframes dash { to { stroke-dashoffset: -180; } }
.hero-card-bottom {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  border-top: 1px solid rgba(255,255,255,.10);
}
.hero-card-bottom div { padding: 18px; border-right: 1px solid rgba(255,255,255,.10); }
.hero-card-bottom div:last-child { border-right: 0; }
.hero-card-bottom strong, .hero-card-bottom span { display: block; }
.hero-card-bottom strong { font-size: 13px; }
.hero-card-bottom span { margin-top: 3px; color: rgba(255,255,255,.48); font-size: 11px; }
.orbital {
  position: absolute;
  border: 1px solid rgba(139,211,255,.18);
  border-radius: 50%;
  animation: rotate 28s linear infinite;
}
.orbital::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 20px var(--accent);
}
.orbital-one { width: 440px; height: 440px; }
.orbital-two { width: 540px; height: 300px; transform: rotate(25deg); animation-duration: 36s; }
@keyframes rotate { to { transform: rotate(360deg); } }

.company-strip { background: #fff; border-bottom: 1px solid var(--line); }
.company-strip-grid { display: grid; grid-template-columns: 1.35fr .8fr 1fr; }
.company-strip-grid > div { padding: 28px 24px; border-right: 1px solid var(--line); }
.company-strip-grid > div:first-child { padding-left: 0; }
.company-strip-grid > div:last-child { padding-right: 0; border-right: 0; }
.company-strip span, .contact-details span {
  display: block;
  margin-bottom: 5px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.company-strip strong { font-size: 14px; }
.company-strip a { text-decoration: none; }

.section { padding: 118px 0; }
.section-light { background: var(--paper-soft); }
.section-heading h2 {
  margin: 0;
  max-width: 760px;
  font-size: clamp(36px, 4.5vw, 58px);
  line-height: 1.08;
  letter-spacing: -.04em;
}
.section-heading > p:last-child { max-width: 680px; color: var(--muted); font-size: 17px; }
.section-heading.centered { text-align: center; display: grid; justify-items: center; }
.split-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.about-content { color: var(--ink-soft); }
.large-copy { margin-top: 0; color: var(--ink); font-size: 25px; line-height: 1.45; letter-spacing: -.015em; }
.values-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; margin-top: 42px; }
.values-grid article { padding-top: 20px; border-top: 1px solid var(--line); }
.value-number { color: var(--blue); font-size: 12px; font-weight: 800; }
.values-grid h3 { margin: 12px 0 7px; font-size: 17px; }
.values-grid p { margin: 0; color: var(--muted); font-size: 14px; }

.services-section { background: #fff; }
.services-grid { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; margin-top: 58px; }
.service-card {
  position: relative;
  overflow: hidden;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 1px 0 rgba(15,23,42,.02);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.service-card::after {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  right: -100px;
  bottom: -120px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(78,168,222,.11), transparent 68%);
}
.service-card:hover { transform: translateY(-5px); border-color: rgba(78,168,222,.3); box-shadow: var(--shadow); }
.service-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(145deg, rgba(78,168,222,.16), rgba(113,214,176,.16));
}
.service-icon svg { width: 26px; fill: none; stroke: var(--ink); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.service-card h3 { margin: 24px 0 10px; font-size: 23px; letter-spacing: -.02em; }
.service-card p { color: var(--muted); }
.service-card ul { margin: 22px 0 0; padding: 0; list-style: none; }
.service-card li { position: relative; padding: 8px 0 8px 24px; color: var(--ink-soft); border-top: 1px solid var(--line); font-size: 14px; }
.service-card li::before { content: ""; position: absolute; left: 2px; top: 15px; width: 7px; height: 7px; border-radius: 50%; background: var(--mint); }

.process-section { color: #fff; background: var(--navy); }
.process-section .eyebrow { color: var(--accent); }
.process-list { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; margin: 60px 0 0; padding: 0; list-style: none; border-top: 1px solid rgba(255,255,255,.12); }
.process-list li { position: relative; padding: 28px 28px 0 0; }
.process-list li::before { content: ""; position: absolute; top: -5px; left: 0; width: 9px; height: 9px; border-radius: 50%; background: var(--mint); box-shadow: 0 0 0 6px rgba(113,214,176,.1); }
.process-list > li > span { color: rgba(255,255,255,.35); font-size: 12px; font-weight: 800; }
.process-list h3 { margin: 18px 0 8px; font-size: 21px; }
.process-list p { margin: 0; color: rgba(255,255,255,.58); font-size: 14px; }

.faq-layout { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; align-items: start; }
.faq-list { border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary { position: relative; padding: 24px 52px 24px 0; font-size: 18px; font-weight: 750; cursor: pointer; list-style: none; }
summary::-webkit-details-marker { display: none; }
summary::before, summary::after { content: ""; position: absolute; right: 4px; top: 50%; width: 17px; height: 1.5px; background: var(--ink); transition: transform .2s ease; }
summary::after { transform: rotate(90deg); }
details[open] summary::after { transform: rotate(0); }
details p { margin: -5px 0 24px; padding-right: 50px; color: var(--muted); }

.contact-section { padding: 120px 0; color: #fff; background: linear-gradient(135deg, #0b1324, #122945); }
.contact-section .eyebrow { color: var(--accent); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 90px; align-items: start; }
.contact-copy h2 { margin: 0; font-size: clamp(42px, 5vw, 64px); line-height: 1.05; letter-spacing: -.04em; }
.contact-copy > p { color: rgba(255,255,255,.66); font-size: 17px; }
.contact-details { display: grid; gap: 26px; margin-top: 48px; }
.contact-details span { color: rgba(255,255,255,.38); }
.contact-details a { color: #fff; font-size: 18px; font-weight: 700; text-decoration: none; }
.contact-details p { margin: 0; color: rgba(255,255,255,.72); }
.contact-form {
  padding: 34px;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 28px;
  background: rgba(255,255,255,.07);
  box-shadow: 0 30px 90px rgba(0,0,0,.24);
  backdrop-filter: blur(14px);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 17px; }
.contact-form label > span:first-child { display: block; margin-bottom: 7px; color: rgba(255,255,255,.68); font-size: 12px; font-weight: 750; }
.contact-form input, .contact-form textarea, .contact-form select {
  width: 100%;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 13px;
  outline: none;
  color: #fff;
  background: rgba(255,255,255,.07);
  transition: border-color .2s ease, background .2s ease, box-shadow .2s ease;
}
.contact-form input, .contact-form select { height: 50px; padding: 0 15px; }
.contact-form textarea { min-height: 160px; padding: 14px 15px; resize: vertical; }
.contact-form select option { color: #0b1324; background: #fff; }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: rgba(255,255,255,.32); }
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--accent); background: rgba(255,255,255,.1); box-shadow: 0 0 0 4px rgba(139,211,255,.08); }
.consent-label { display: flex !important; gap: 10px; align-items: flex-start; }
.consent-label input { width: 18px; height: 18px; margin: 3px 0 0; accent-color: var(--mint); }
.consent-label span { color: rgba(255,255,255,.56) !important; font-weight: 400 !important; font-size: 12px !important; }
.submit-button { border: 0; }
.form-note { margin: 14px 0 0; color: rgba(255,255,255,.38); font-size: 11px; }
.honeypot { display: none !important; }

.site-footer { color: #fff; background: #060c16; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; padding: 48px 0; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand { display: flex; align-items: center; gap: 15px; }
.footer-brand img { width: 58px; height: 63px; object-fit: contain; filter: invert(1); }
.footer-brand strong, .footer-brand span { display: block; }
.footer-brand span { margin-top: 5px; color: rgba(255,255,255,.45); font-size: 12px; }
.footer-links { display: flex; align-items: center; gap: 26px; }
.footer-links a { color: rgba(255,255,255,.62); text-decoration: none; font-size: 14px; }
.footer-links a:hover { color: #fff; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding: 24px 0; color: rgba(255,255,255,.38); font-size: 12px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(18px); transition: opacity .65s ease, transform .65s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

@media (max-width: 980px) {
  :root { --container: min(100% - 32px, 860px); }
  .hero { min-height: auto; }
  .hero-layout { grid-template-columns: 1fr; gap: 30px; padding-top: 150px; }
  .hero-copy { max-width: 780px; }
  .hero-visual { min-height: 420px; }
  .company-strip-grid { grid-template-columns: 1fr; }
  .company-strip-grid > div { padding: 18px 0; border-right: 0; border-bottom: 1px solid var(--line); }
  .company-strip-grid > div:last-child { border-bottom: 0; }
  .split-layout, .faq-layout, .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .process-list { grid-template-columns: 1fr 1fr; gap: 34px 0; }
  .footer-top, .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 760px) {
  .header-inner { min-height: 74px; }
  .brand img { width: 48px; height: 52px; }
  .brand-text strong { font-size: 13px; }
  .brand-text small { font-size: 10px; }
  .menu-toggle { display: block; position: relative; z-index: 103; }
  .menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .main-nav {
    position: fixed;
    z-index: 102;
    inset: 84px 14px auto;
    display: grid;
    gap: 0;
    padding: 14px;
    border: 1px solid rgba(15,23,42,.12);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 30px 80px rgba(3,15,33,.28);
    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;
    transition: opacity .2s ease, transform .2s ease;
  }
  .main-nav.open { opacity: 1; transform: translateY(0); pointer-events: auto; }
  .main-nav a, .site-header.scrolled .main-nav a {
    padding: 14px 14px;
    color: var(--ink-soft);
    border-bottom: 1px solid rgba(15,23,42,.08);
  }
  .main-nav a:nth-child(4) { border-bottom: 0; }
  .main-nav .nav-action, .site-header.scrolled .main-nav .nav-action {
    margin-top: 12px;
    padding: 15px 16px;
    color: #fff;
    background: var(--ink);
    border-bottom: 0;
    border-radius: 999px;
    text-align: center;
  }
  .hero-layout { padding-top: 118px; padding-bottom: 70px; }
  .hero h1 { font-size: clamp(36px, 10.5vw, 48px); line-height: 1.03; letter-spacing: -.035em; }
  .hero-lead { margin-top: 22px; font-size: 16px; }
  .hero-visual { min-height: 340px; }
  .orbital-one { width: 330px; height: 330px; }
  .orbital-two { width: 390px; height: 250px; }
  .hero-card-bottom { grid-template-columns: 1fr; }
  .hero-card-bottom div { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.10); }
  .hero-card-bottom div:last-child { border-bottom: 0; }
  .section { padding: 86px 0; }
  .large-copy { font-size: 21px; }
  .service-card { padding: 26px; }
  .process-list { grid-template-columns: 1fr; gap: 30px; }
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 23px; }
  .footer-links { flex-wrap: wrap; gap: 14px 22px; }
}

/* Three principal service areas, matching the approved site structure */
.services-grid-three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.footer-brand p {
  max-width: 520px;
  margin: 8px 0 0;
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.55;
}
@media (max-width: 980px) {
  .services-grid-three { grid-template-columns: 1fr; }
}


/* Privacy links and standalone information pages */
.consent-label a, .form-note a {
  color: var(--accent);
  text-underline-offset: 3px;
}
.consent-label a:hover, .form-note a:hover { color: #fff; }

.info-page {
  min-height: 100vh;
  color: #fff;
  background:
    radial-gradient(circle at 80% 20%, rgba(78,168,222,.24), transparent 34%),
    linear-gradient(135deg, #07101f 0%, #0c1930 58%, #102743 100%);
}
.info-page .site-header { background: rgba(7,16,31,.88); border-bottom-color: rgba(255,255,255,.08); backdrop-filter: blur(18px); }
.info-main { padding: 150px 0 90px; }
.info-card {
  max-width: 900px;
  margin: 0 auto;
  padding: 46px;
  color: var(--ink);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 30px 100px rgba(0,0,0,.28);
}
.info-card h1 { margin: 0 0 12px; font-size: clamp(38px, 6vw, 64px); line-height: 1.02; letter-spacing: -.04em; }
.info-card h2 { margin: 34px 0 10px; font-size: 23px; letter-spacing: -.02em; }
.info-card p, .info-card li { color: var(--ink-soft); }
.info-card ul { padding-left: 22px; }
.info-meta { margin: 0 0 30px; color: var(--muted) !important; font-size: 14px; }
.info-card a { color: #126ca5; }
.info-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.info-actions .button-secondary { color: var(--ink); border-color: var(--line); background: var(--paper-soft); }
.thank-you-card { text-align: center; }
.success-mark {
  display: grid;
  place-items: center;
  width: 76px;
  height: 76px;
  margin: 0 auto 26px;
  border-radius: 50%;
  color: #07101f;
  background: linear-gradient(120deg, var(--accent), var(--mint));
  font-size: 40px;
  font-weight: 800;
}
.thank-you-card p { max-width: 650px; margin-left: auto; margin-right: auto; font-size: 18px; }

@media (max-width: 760px) {
  .info-main { padding: 112px 0 60px; }
  .info-card { padding: 28px 22px; border-radius: 22px; }
  .info-card h1 { font-size: 38px; }
  .info-card h2 { font-size: 21px; }
  .info-actions { display: grid; }
}


/* v3: tighter mobile hero for improved first-screen readability */
@media (max-width: 760px) {
  .hero-layout { padding-top: 108px; padding-bottom: 58px; }
  .hero .eyebrow {
    max-width: 320px;
    margin-bottom: 15px;
    font-size: 10px;
    line-height: 1.55;
    letter-spacing: .15em;
  }
  .hero h1 {
    max-width: 620px;
    font-size: clamp(32px, 9vw, 40px);
    line-height: 1.06;
    letter-spacing: -.03em;
  }
  .hero-lead {
    margin-top: 19px;
    font-size: 15px;
    line-height: 1.65;
  }
  .hero-actions { margin-top: 26px; }
}
@media (max-width: 430px) {
  :root { --container: min(100% - 28px, 860px); }
  .hero h1 { font-size: clamp(30px, 8.7vw, 36px); }
  .hero-lead { font-size: 14.5px; }
}


/* v4: robust standalone Privacy and Thank-you page layout */
body.info-page {
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  padding-top: 84px;
  color: var(--ink);
  background: #f4f7fb;
}
body.info-page .site-header,
body.info-page .site-header.scrolled {
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  color: #fff;
  background: rgba(7, 16, 31, .97) !important;
  border-bottom: 1px solid rgba(255,255,255,.10) !important;
  box-shadow: 0 10px 30px rgba(2,8,23,.18);
  backdrop-filter: blur(18px);
}
body.info-page .site-header .brand,
body.info-page .site-header.scrolled .brand { color: #fff !important; }
body.info-page .site-header .brand img,
body.info-page .site-header.scrolled .brand img { filter: invert(1) !important; }
body.info-page .site-header .menu-toggle { background: rgba(255,255,255,.10) !important; }
body.info-page .site-header .menu-toggle span { background: #fff !important; }
body.info-page .site-header .main-nav a { color: rgba(255,255,255,.80); }
body.info-page .site-header .main-nav .nav-action {
  color: #07101f;
  background: #fff;
}
body.info-page .info-main {
  flex: 1 0 auto;
  width: 100%;
  padding: 54px 0 72px;
  background:
    radial-gradient(circle at 82% 10%, rgba(78,168,222,.12), transparent 30%),
    #f4f7fb;
}
body.info-page .info-card {
  position: relative;
  isolation: isolate;
  max-width: 920px;
  margin: 0 auto;
  padding: 50px;
  overflow: hidden;
  color: var(--ink);
  border: 1px solid rgba(15,23,42,.08);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 24px 70px rgba(15,23,42,.12);
}
body.info-page .info-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 260px;
  height: 260px;
  right: -125px;
  top: -150px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,211,255,.20), transparent 68%);
  pointer-events: none;
}
body.info-page .info-card .eyebrow {
  display: block;
  margin: 0 0 18px;
  color: #2787bd;
  line-height: 1.5;
  text-rendering: geometricPrecision;
}
body.info-page .info-card h1 {
  position: relative;
  margin: 0 0 18px;
  padding: 0;
  color: var(--ink);
  background: transparent;
  font-size: clamp(42px, 6vw, 66px);
  line-height: 1.04;
  letter-spacing: -.04em;
  text-rendering: optimizeLegibility;
}
body.info-page .info-card h2 { color: var(--ink); }
body.info-page .info-card p,
body.info-page .info-card li { color: var(--ink-soft); }
body.info-page .site-footer {
  flex: 0 0 auto;
  color: #fff;
  background: #060c16;
}
body.info-page .footer-bottom {
  color: rgba(255,255,255,.68);
  font-size: 13px;
  line-height: 1.6;
}
body.thank-page .info-main {
  display: grid;
  align-items: center;
}
body.thank-page .info-card {
  max-width: 780px;
  padding: 58px 50px;
  text-align: center;
}
body.thank-page .success-mark {
  display: grid;
  place-items: center;
  width: 78px;
  height: 78px;
  margin: 0 auto 24px;
  color: #07101f;
  border-radius: 50%;
  background: linear-gradient(120deg, var(--accent), var(--mint));
  box-shadow: 0 16px 42px rgba(78,168,222,.22);
  font-size: 39px;
  font-weight: 850;
  line-height: 1;
}
body.thank-page .thank-you-card > p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.75;
}
body.thank-page .info-actions {
  justify-content: center;
  margin-top: 32px;
}

@media (max-width: 760px) {
  body.info-page { padding-top: 74px; }
  body.info-page .info-main { padding: 28px 0 42px; }
  body.info-page .info-card {
    padding: 32px 22px;
    border-radius: 22px;
  }
  body.info-page .info-card .eyebrow {
    margin-bottom: 14px;
    font-size: 10px;
    letter-spacing: .15em;
  }
  body.info-page .info-card h1 {
    font-size: clamp(36px, 10vw, 44px);
    line-height: 1.07;
  }
  body.info-page .info-card h2 {
    margin-top: 31px;
    font-size: 22px;
    line-height: 1.25;
  }
  body.info-page .info-card p,
  body.info-page .info-card li { font-size: 16px; line-height: 1.72; }
  body.info-page .footer-bottom { gap: 12px; padding: 23px 0; }
  body.thank-page .info-main { align-items: start; }
  body.thank-page .info-card { padding: 38px 22px; }
  body.thank-page .success-mark {
    width: 68px;
    height: 68px;
    margin-bottom: 20px;
    font-size: 34px;
  }
  body.thank-page .thank-you-card > p:not(.eyebrow) {
    margin-top: 18px;
    font-size: 16px;
  }
  body.thank-page .info-actions { display: grid; width: 100%; }
  body.thank-page .info-actions .button { width: 100%; }
  body.info-page .main-nav {
    background: rgba(255,255,255,.99);
  }
  body.info-page .site-header .main-nav a,
  body.info-page .site-header.scrolled .main-nav a { color: var(--ink-soft); }
  body.info-page .site-header .main-nav .nav-action,
  body.info-page .site-header.scrolled .main-nav .nav-action {
    color: #fff;
    background: var(--ink);
  }
}


@media (max-width: 760px) {
  body.nav-open { overflow: hidden; }
  body.nav-open::before {
    content: "";
    position: fixed;
    z-index: 99;
    inset: 0;
    background: rgba(3, 10, 22, .58);
  }
}
