:root {
  --blue-980: #031226;
  --blue-950: #061b3a;
  --blue-900: #08285a;
  --blue-800: #0b3d91;
  --blue-700: #1157b8;
  --blue-600: #1769d1;
  --cyan-500: #24c6dc;
  --green-700: #11824f;
  --green-600: #20a464;
  --green-500: #34c77b;
  --gold-400: #ffd66e;
  --slate-950: #020617;
  --slate-900: #111827;
  --slate-800: #1f2937;
  --slate-700: #334155;
  --slate-600: #475569;
  --slate-500: #64748b;
  --slate-200: #e5e7eb;
  --slate-100: #f1f5f9;
  --slate-50: #f8fafc;
  --white: #ffffff;
  --border: #e2e8f0;
  --shadow: 0 18px 50px rgba(15, 23, 42, 0.10);
  --shadow-lg: 0 28px 70px rgba(2, 18, 38, 0.18);
  --radius: 18px;
  --radius-lg: 30px;
  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
  color: var(--slate-700);
  background: var(--white);
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button, input, textarea { font: inherit; }
.container { width: min(var(--container), calc(100% - 48px)); margin: 0 auto; }

.topbar {
  background: var(--blue-980);
  color: rgba(255,255,255,.78);
  font-size: 13px;
}
.topbar-inner {
  min-height: 38px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topbar strong { color: #fff; }
.topbar i { display: inline-block; width: 16px; }

.navbar {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,.94);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(226,232,240,.9);
  transition: box-shadow .25s ease, background .25s ease;
}
.navbar.scrolled { box-shadow: 0 12px 30px rgba(15,23,42,.08); }
.nav-inner {
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.brand { display: inline-flex; align-items: center; min-width: 180px; }
.brand img { height: 58px; width: auto; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: 23px;
  font-size: 15px;
  font-weight: 700;
  color: var(--slate-700);
}
.nav-menu a { position: relative; padding: 28px 0; }
.nav-menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 20px;
  width: 0;
  height: 3px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-800), var(--green-600));
  transition: width .22s ease;
}
.nav-menu a:hover { color: var(--blue-800); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 18px;
  border-radius: 999px;
  color: #fff;
  font-weight: 850;
  background: linear-gradient(135deg, var(--blue-800), var(--green-600));
  box-shadow: 0 12px 24px rgba(32,164,100,.18);
  white-space: nowrap;
}
.menu-btn {
  display: none;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--blue-800);
  padding: 10px 14px;
  border-radius: 10px;
  font-weight: 800;
  cursor: pointer;
}

.hero {
  position: relative;
  min-height: 750px;
  color: #fff;
  overflow: hidden;
  background: var(--blue-950);
}
.hero-bg, .hero-bg img, .hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-bg img { object-fit: cover; object-position: center; }
.hero-shade {
  z-index: 1;
  background:
    radial-gradient(circle at 77% 30%, rgba(36,198,220,.25), transparent 34%),
    linear-gradient(90deg, rgba(3,18,38,.94) 0%, rgba(3,18,38,.74) 37%, rgba(3,18,38,.38) 68%, rgba(3,18,38,.2) 100%),
    linear-gradient(180deg, rgba(3,18,38,.14), rgba(3,18,38,.55));
}
.hero::after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 220px;
  background: linear-gradient(180deg, rgba(3,18,38,0), rgba(3,18,38,.78));
  pointer-events: none;
}
.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 750px;
  display: grid;
  grid-template-columns: 1.02fr .98fr;
  gap: 54px;
  align-items: center;
  padding: 94px 0 92px;
}
.eyebrow, .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 16px;
  color: var(--green-500);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.eyebrow::before, .section-kicker::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(52,199,123,.16);
}
.hero h1 {
  margin: 0;
  font-size: clamp(42px, 5.4vw, 72px);
  line-height: 1.12;
  letter-spacing: -.04em;
}
.hero h2 {
  margin: 18px 0 24px;
  font-size: clamp(24px, 3vw, 38px);
  line-height: 1.25;
  font-weight: 650;
  color: #e1fff0;
}
.hero p:not(.eyebrow) {
  max-width: 820px;
  margin: 0 0 34px;
  color: rgba(255,255,255,.9);
  font-size: 18px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 26px;
  border-radius: 999px;
  font-weight: 850;
  transition: transform .22s ease, box-shadow .22s ease, background .22s ease, border-color .22s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--green-600), var(--green-500));
  box-shadow: 0 14px 26px rgba(32,164,100,.30);
}
.btn-ghost {
  color: #fff;
  border: 1px solid rgba(255,255,255,.46);
  background: rgba(255,255,255,.10);
}
.btn-ghost.dark { color: var(--blue-950); background: rgba(255,255,255,.9); border-color: #fff; }
.hero-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.hero-card {
  min-height: 164px;
  padding: 24px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 24px;
  background: linear-gradient(145deg, rgba(255,255,255,.14), rgba(255,255,255,.07));
  backdrop-filter: blur(16px);
  box-shadow: 0 24px 58px rgba(0,0,0,.18);
}
.hero-card span {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-600), var(--green-600));
  font-weight: 900;
}
.hero-card strong { display: block; font-size: 22px; line-height: 1.25; }
.hero-card em { display: block; margin-top: 8px; color: rgba(255,255,255,.72); font-style: normal; font-size: 14px; }

.section { padding: 94px 0; }
.section-soft { background: var(--slate-50); }
.section-head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}
.section-head h2, .section-copy h2, .contact-box h2 {
  margin: 0 0 14px;
  color: var(--blue-950);
  font-size: clamp(30px, 4vw, 44px);
  line-height: 1.2;
  letter-spacing: -.025em;
}
.section-head p { margin: 0; color: var(--slate-500); font-size: 17px; }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 56px;
  align-items: center;
}
.section-copy p { margin: 0 0 16px; color: var(--slate-600); font-size: 16.5px; }
.about-points { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.about-points span {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  color: var(--blue-800);
  background: #eef6ff;
  border: 1px solid #dbeafe;
  font-weight: 800;
}
.position-card {
  padding: 38px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #ffffff, #f3fbf7);
  box-shadow: var(--shadow);
}
.position-card h3 { margin: 0 0 20px; color: var(--blue-800); font-size: 24px; }
.check-list { margin: 0; padding: 0; list-style: none; }
.check-list li {
  position: relative;
  padding: 12px 0 12px 30px;
  border-bottom: 1px solid #edf2f7;
  color: var(--slate-700);
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 11px;
  color: var(--green-600);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card, .insight-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  box-shadow: 0 12px 32px rgba(15,23,42,.07);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
  overflow: hidden;
}
.service-card:hover, .insight-card:hover {
  transform: translateY(-7px);
  border-color: rgba(32,164,100,.34);
  box-shadow: 0 24px 56px rgba(15,23,42,.12);
}
.service-img {
  position: relative;
  display: block;
  height: 190px;
  overflow: hidden;
  background: var(--blue-950);
}
.service-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(3,18,38,0), rgba(3,18,38,.42));
}
.service-img img { width: 100%; height: 190px; object-fit: cover; transition: transform .35s ease; }
.service-card:hover .service-img img { transform: scale(1.06); }
.service-index {
  position: absolute;
  z-index: 2;
  left: 18px;
  bottom: 16px;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  color: #fff;
  font-weight: 950;
  background: linear-gradient(135deg, var(--blue-800), var(--green-600));
  box-shadow: 0 12px 26px rgba(0,0,0,.22);
}
.service-body { padding: 24px 22px 28px; }
.service-body h3, .insight-card h3 {
  margin: 0 0 12px;
  color: var(--blue-950);
  font-size: 20px;
  line-height: 1.34;
}
.service-body p, .insight-card p { margin: 0; color: #526173; font-size: 15.2px; }

.solution-row {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: 38px;
  align-items: center;
  padding: 24px;
  margin-bottom: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
}
.solution-row.reverse { grid-template-columns: 1.05fr .95fr; }
.solution-row.reverse .solution-copy { order: 2; }
.solution-row.reverse .solution-picture { order: 1; }
.solution-copy { padding: 18px 20px; }
.solution-label {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--green-700);
  background: rgba(32,164,100,.10);
  font-weight: 850;
  font-size: 13px;
}
.solution-copy h3 { margin: 0 0 12px; color: var(--blue-950); font-size: clamp(24px, 3vw, 34px); line-height: 1.2; }
.solution-copy p { margin: 0 0 16px; color: var(--slate-600); font-size: 16px; }
.solution-copy ul { margin: 0; padding: 0; list-style: none; }
.solution-copy li {
  position: relative;
  padding: 8px 0 8px 24px;
  color: var(--slate-700);
}
.solution-copy li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-700), var(--green-500));
}
.solution-picture {
  display: block;
  min-height: 340px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--blue-950);
}
.solution-picture img { width: 100%; height: 100%; min-height: 340px; object-fit: cover; }

.section-blue {
  position: relative;
  color: #fff;
  overflow: hidden;
  background: var(--blue-950);
}
.blue-bg, .blue-bg img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.blue-bg img { object-fit: cover; object-position: center; opacity: .42; }
.section-blue::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(3,18,38,.96), rgba(8,40,90,.84) 48%, rgba(17,130,79,.72));
}
.section-blue .container { position: relative; z-index: 2; }
.section-head.light h2 { color: #fff; }
.section-head.light p { color: rgba(255,255,255,.74); }
.advantage-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.advantage-item {
  padding: 26px;
  border-radius: 18px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
  box-shadow: 0 14px 40px rgba(0,0,0,.12);
  backdrop-filter: blur(12px);
}
.advantage-item strong { display: block; margin-bottom: 8px; color: #fff; font-size: 18px; }
.advantage-item span { color: rgba(255,255,255,.72); font-size: 14.5px; }
.compliance-note {
  margin-top: 32px;
  padding: 20px 22px;
  border-radius: 16px;
  color: rgba(255,255,255,.78);
  background: rgba(255,255,255,.10);
  border: 1px dashed rgba(255,255,255,.28);
  font-size: 14px;
}

.client-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}
.client-tags span {
  padding: 14px 22px;
  border-radius: 999px;
  background: #fff;
  color: var(--blue-800);
  border: 1px solid var(--border);
  font-weight: 850;
  box-shadow: 0 8px 22px rgba(15,23,42,.05);
}

.insight-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.insight-card { padding: 30px; min-height: 240px; }
.tag {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 6px 12px;
  border-radius: 999px;
  color: var(--green-600);
  background: rgba(32,164,100,.10);
  font-weight: 850;
  font-size: 12px;
}

.contact-section { padding: 50px 0 96px; background: #fff; }
.contact-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
  padding: 54px;
  border-radius: 30px;
  color: #fff;
  background:
    radial-gradient(circle at 90% 18%, rgba(52,199,123,.28), transparent 30%),
    linear-gradient(135deg, var(--blue-950), var(--blue-800) 56%, #08745d);
  box-shadow: 0 24px 62px rgba(11,61,145,.22);
}
.contact-box .section-kicker { color: var(--green-500); }
.contact-box h2 { color: #fff; }
.contact-box p { color: rgba(255,255,255,.84); margin: 0 0 12px; }
.contact-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.contact-info {
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,255,255,.11);
  border: 1px solid rgba(255,255,255,.18);
}
.contact-info strong { color: #fff; font-size: 20px; }

.footer {
  background: #071a36;
  color: rgba(255,255,255,.74);
  padding: 44px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.25fr .85fr .85fr 1fr;
  gap: 32px;
  margin-bottom: 30px;
}

.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.96);
  box-shadow: 0 14px 34px rgba(0,0,0,.12);
}
.footer-logo-box img {
  width: min(100%, 320px);
  height: auto;
  display: block;
}

.footer h3, .footer h4 { color: #fff; margin: 0 0 14px; }
.footer p, .footer li { margin: 0 0 10px; font-size: 14px; }
.footer ul { list-style: none; padding: 0; margin: 0; }
.footer a:hover { color: #fff; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}
.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1000;
  width: 46px;
  height: 46px;
  display: none;
  border: none;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--green-600));
  box-shadow: 0 12px 26px rgba(15,23,42,.22);
  cursor: pointer;
  font-size: 20px;
  font-weight: 900;
}
.back-to-top.show { display: block; }

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

@media (max-width: 1120px) {
  .hero-inner, .split { grid-template-columns: 1fr; }
  .hero-panel { max-width: 760px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .topbar { display: none; }
  .nav-inner { height: 68px; }
  .brand img { height: 50px; }
  .menu-btn { display: inline-flex; }
  .nav-cta { display: none; }
  .nav-menu {
    position: fixed;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 14px;
    border-radius: 16px;
    background: #fff;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
  }
  .nav-menu.open { display: flex; }
  .nav-menu a { width: 100%; padding: 13px 10px; }
  .nav-menu a::after { display: none; }
  .hero, .hero-inner { min-height: auto; }
  .hero-inner { padding: 86px 0 72px; }
  .solution-row, .solution-row.reverse, .advantage-grid, .insight-grid, .contact-box { grid-template-columns: 1fr; }
  .solution-row.reverse .solution-copy, .solution-row.reverse .solution-picture { order: initial; }
  .section { padding: 76px 0; }
}
@media (max-width: 680px) {
  .container { width: min(100% - 32px, var(--container)); }
  .brand { min-width: 0; }
  .brand img { width: 192px; height: auto; }
  .hero-panel, .service-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero p:not(.eyebrow), .section-head p { font-size: 16px; }
  .hero-card { min-height: 134px; }
  .service-img, .service-img img { height: 220px; }
  .section { padding: 66px 0; }
  .position-card, .solution-row, .contact-box { padding: 28px 22px; }
  .solution-picture, .solution-picture img { min-height: 230px; }
  .footer-bottom { flex-direction: column; }
}

/* Premium corporate refinements */
.topbar {
  background: linear-gradient(90deg, #02142c, #061b3a 48%, #08285a);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner { min-height: 40px; letter-spacing: .01em; }
.navbar {
  background: rgba(255,255,255,.97);
  border-bottom: 1px solid rgba(203,213,225,.92);
}
.nav-inner { height: 84px; }
.brand {
  min-width: 202px;
  align-self: stretch;
  display: inline-flex;
  align-items: center;
  padding: 8px 0;
}
.brand picture { display: inline-flex; align-items: center; }
.brand img {
  height: 66px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 5px 10px rgba(15,23,42,.08));
}
.nav-menu {
  gap: 25px;
  font-size: 15px;
  color: #1f2937;
}
.nav-menu a { padding: 31px 0; }
.nav-menu a::after { bottom: 24px; height: 2px; }
.nav-cta {
  min-height: 44px;
  padding: 0 22px;
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(11,61,145,.16);
}
.hero-copy { max-width: 760px; }
.hero h1 {
  max-width: 820px;
  font-size: clamp(46px, 5.1vw, 72px);
  line-height: 1.08;
  letter-spacing: -.045em;
}
.hero h2 {
  max-width: 780px;
  margin-top: 18px;
  color: #e6fbf4;
  font-weight: 720;
}
.hero p:not(.eyebrow) {
  max-width: 800px;
  font-size: 18px;
  line-height: 1.9;
  color: rgba(255,255,255,.9);
}
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}
.hero-trust span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255,255,255,.88);
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(10px);
  font-size: 13px;
  font-weight: 750;
}
.hero-trust span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 5px rgba(52,199,123,.12);
}
.hero-panel { transform: translateY(12px); }
.hero-card {
  border-color: rgba(255,255,255,.20);
  background: linear-gradient(160deg, rgba(255,255,255,.16), rgba(255,255,255,.07));
}

.footer {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 10%, rgba(36,198,220,.12), transparent 28%),
    linear-gradient(135deg, #031226 0%, #061b3a 56%, #08285a 100%);
  color: rgba(255,255,255,.75);
  padding: 58px 0 30px;
}
.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: .08;
  background-image: linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);
  background-size: 56px 56px;
  pointer-events: none;
}
.footer .container { position: relative; z-index: 1; }
.footer-main {
  display: grid;
  grid-template-columns: 1.08fr 1.42fr;
  gap: 48px;
  align-items: start;
  margin-bottom: 28px;
}
.footer-brand p {
  max-width: 510px;
  margin: 0 0 16px;
  color: rgba(255,255,255,.76);
  font-size: 14.5px;
}
.footer-logo-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 360px);
  margin-bottom: 18px;
  padding: 14px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.97);
  box-shadow: 0 18px 42px rgba(0,0,0,.18);
}
.footer-logo-box picture { display: block; width: 100%; }
.footer-logo-box img {
  width: 100%;
  height: auto;
  display: block;
}
.footer-slogan {
  display: inline-flex;
  padding: 8px 13px;
  border-radius: 999px;
  color: #dff7ec;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
  font-weight: 750;
}
.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 26px;
  padding-top: 8px;
}
.footer h4 {
  position: relative;
  color: #fff;
  margin: 0 0 18px;
  padding-bottom: 12px;
  font-size: 16px;
}
.footer h4::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 32px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-600), var(--green-500));
}
.footer p, .footer li { font-size: 14px; }
.footer li { margin: 0 0 11px; color: rgba(255,255,255,.72); }
.footer a { transition: color .18s ease; }
.footer a:hover { color: #fff; }
.footer-compliance {
  margin: 4px 0 24px;
  padding: 16px 18px;
  border-radius: 16px;
  color: rgba(255,255,255,.70);
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.12);
  font-size: 13px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.64);
  font-size: 13px;
}

@media (max-width: 1080px) {
  .brand { min-width: 178px; }
  .brand img { height: 60px; }
  .footer-main { grid-template-columns: 1fr; }
}
@media (max-width: 880px) {
  .nav-inner { height: 72px; }
  .brand { min-width: auto; padding: 7px 0; }
  .brand img { height: 54px; }
  .nav-menu { top: 80px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .brand img { height: 48px; }
  .hero h1 { font-size: clamp(34px, 11vw, 46px); }
  .hero p:not(.eyebrow) { font-size: 16px; }
  .hero-trust { gap: 8px; }
  .footer { padding-top: 44px; }
  .footer-links { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; }
}
