@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;700;800&display=swap");

:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel2: #f5f8fc;
  --text: #0f172a;
  --muted: rgba(15, 23, 42, 0.74);
  --faint: rgba(15, 23, 42, 0.56);
  --line: rgba(15, 23, 42, 0.14);
  --brand1: #1d4ed8;
  --brand2: #0ea5e9;
  --brand3: #2563eb;
  --shadow: 0 16px 40px rgba(15, 23, 42, 0.10);
  --radius: 12px;
  --radius-sm: 10px;
  --container: 1140px;
  --font: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  --font-heading: Poppins, Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(var(--container), calc(100% - 40px));
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 12px;
  padding: 10px 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid var(--line);
}
.skip-link:focus {
  left: 12px;
  z-index: 9999;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  transition: border-color 260ms ease, background 260ms ease, box-shadow 260ms ease;
}
.site-header[data-scrolled="true"] {
  background: rgba(255, 255, 255, 0.98);
  border-bottom-color: rgba(11, 18, 32, 0.12);
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-inner {
  height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  transition: height 240ms ease;
}
.site-header[data-scrolled="true"] .header-inner {
  height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.brand:not(.brand--wordmark) {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.brand--wordmark {
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.brand-wordmark {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  font-size: 20px;
  line-height: 1;
  color: #0f172a;
}
.brand-wordmark-sub {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: 0.22em;
  font-size: 11px;
  line-height: 1;
  color: #64748b;
}
.brand-wordmark,
.brand-wordmark-sub {
  display: inline-flex;
  align-items: center;
  padding: 2px 0;
}
.brand-mark {
  filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.55));
  width: auto;
  height: 56px;
  border-radius: 0;
  background: transparent;
  padding: 0;
}

.nav {
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.nav-toggle {
  display: none;
  background: rgba(11, 18, 32, 0.04);
  border: 1px solid var(--line);
  color: var(--text);
  border-radius: 999px;
  padding: 10px 12px;
  gap: 10px;
  align-items: center;
  cursor: pointer;
}
.nav-toggle-label {
  font-size: 14px;
  font-weight: 600;
}
.nav-toggle-icon {
  width: 18px;
  height: 2px;
  background: var(--text);
  position: relative;
  border-radius: 2px;
}
.nav-toggle-icon::before,
.nav-toggle-icon::after {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
}
.nav-toggle-icon::before {
  top: -6px;
}
.nav-toggle-icon::after {
  top: 6px;
}

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0;
  margin: 0;
}
.nav-item {
  position: relative;
  display: flex;
  align-items: center;
  padding-bottom: 12px;
  margin-bottom: -12px;
}
.nav-item::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  height: 14px;
}
.nav-item > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.nav-caret {
  width: 10px;
  height: 10px;
  display: inline-block;
  border-right: 2px solid rgba(11, 18, 32, 0.55);
  border-bottom: 2px solid rgba(11, 18, 32, 0.55);
  transform: rotate(45deg) translateY(-1px);
  margin-left: 2px;
}
.mega {
  position: fixed;
  top: 84px;
  left: 50%;
  transform: translateX(-50%);
  width: min(980px, calc(100vw - 40px));
  display: none;
  padding: 14px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(11, 18, 32, 0.12);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.13);
  z-index: 80;
}
.nav-item.mega-right .mega {
  left: 50%;
  right: auto;
}
.nav-item:hover .mega,
.nav-item:focus-within .mega,
.nav-item.open .mega {
  display: block;
}
.mega-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 14px;
}
.mega-col {
  border-radius: 14px;
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(2, 6, 23, 0.01);
  padding: 12px;
}
.mega-title {
  margin: 0 0 8px;
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(11, 18, 32, 0.62);
  font-weight: 900;
}
.mega-links {
  display: grid;
  gap: 8px;
}
.mega-link {
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.94);
  padding: 10px 10px;
  transition: transform 120ms ease, background 150ms ease, border-color 150ms ease;
}
.mega-link:hover {
  transform: translateY(-1px);
  border-color: rgba(45, 212, 191, 0.26);
  background: rgba(45, 212, 191, 0.06);
}
.mega-link strong {
  display: block;
  font-size: 13px;
}
.mega-link span {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.nav-links a {
  font-size: 15px;
  color: #334155;
  font-weight: 500;
  letter-spacing: 0.01em;
  padding: 10px 8px;
  border-radius: 999px;
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease;
  position: relative;
}
.nav-links a[aria-current="page"] {
  color: var(--text);
  background: rgba(11, 18, 32, 0.05);
  border: 1px solid rgba(125, 255, 95, 0.18);
}
.nav-links a:hover {
  color: #0f766e;
  background: rgba(11, 18, 32, 0.04);
}
.nav-links > li > a::after {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #0f766e, #14b8a6);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 240ms ease;
}
.nav-links > li > a:hover::after,
.nav-links > li > a:focus-visible::after {
  transform: scaleX(1);
}
.nav-links > li:last-child > a::after {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 16px;
  font-weight: 700;
  font-size: 14px;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: transform 100ms ease, background 150ms ease, border-color 150ms ease, color 150ms ease;
  text-align: center;
}
.btn:active {
  transform: translateY(1px);
}
.btn-primary {
  background: linear-gradient(135deg, var(--brand1), var(--brand2));
  color: #ffffff;
  box-shadow: 0 12px 30px rgba(29, 78, 216, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #1e40af, #0284c7);
}
.btn-ghost {
  background: rgba(11, 18, 32, 0.04);
  border-color: var(--line);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(11, 18, 32, 0.06);
  border-color: rgba(11, 18, 32, 0.18);
}
.btn-sm {
  padding: 10px 12px;
}
.nav-links a.btn.btn-sm {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  border-color: #0d9488;
  background: linear-gradient(135deg, #0d9488, #14b8a6);
  box-shadow: 0 8px 22px rgba(13, 148, 136, 0.25);
  padding: 10px 14px;
}
.nav-links a.btn.btn-sm:hover {
  color: #ffffff;
  border-color: #0f766e;
  background: linear-gradient(135deg, #0f766e, #0d9488);
  box-shadow: 0 10px 26px rgba(15, 118, 110, 0.30);
}
.btn-block {
  width: 100%;
}

.hero {
  position: relative;
  padding: 66px 0 44px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: -1;
}
.hero-bg img {
  position: absolute;
  inset: -20px;
  width: calc(100% + 40px);
  height: calc(100% + 40px);
  object-fit: cover;
  opacity: 0.10;
  filter: saturate(1.05) contrast(1.02);
}
.hero-sheen {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(245, 248, 252, 0.95), rgba(255, 255, 255, 1));
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(11, 18, 32, 0.06) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(11, 18, 32, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  mask-image: radial-gradient(500px 340px at 40% 30%, black 30%, transparent 70%);
  opacity: 0.18;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.25fr 0.85fr;
  gap: 34px;
  align-items: start;
}

.hero-company {
  margin: 0 0 10px;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4.1vw, 48px);
  line-height: 1.08;
  letter-spacing: 0.03em;
  font-weight: 700;
  text-transform: uppercase;
}
.hero-copy h1 {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.5vw, 40px);
  line-height: 1.15;
  margin: 10px 0 14px;
  letter-spacing: -0.015em;
  max-width: 20ch;
}
.home-page h2,
.home-page h3 {
  font-family: var(--font-heading);
}
.home-page .section-head h2 {
  font-size: clamp(28px, 3vw, 38px);
  line-height: 1.18;
}
.home-page .card h3 {
  font-size: 18px;
  line-height: 1.3;
}
.home-page .section-head p {
  max-width: 64ch;
}
.home-page .card p {
  color: rgba(15, 23, 42, 0.8);
}
.lead {
  margin: 0 0 20px;
  font-size: clamp(16px, 1.45vw, 18px);
  color: var(--muted);
  max-width: 66ch;
}
.hero-keyword {
  font-weight: 700;
  color: #1d4ed8;
}
.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 24px;
}
.trust-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.trust-item {
  padding: 14px 14px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.88);
}
.trust-kpi {
  font-weight: 800;
  letter-spacing: -0.02em;
}
.trust-label {
  font-size: 13px;
  color: var(--faint);
  margin-top: 3px;
}

.hero-card {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.86));
  box-shadow: var(--shadow);
  overflow: hidden;
}
.hero-card-header {
  padding: 18px 18px 6px;
}
.pill {
  display: inline-flex;
  align-items: center;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(125, 255, 95, 0.16);
  border: 1px solid rgba(125, 255, 95, 0.26);
  color: rgba(11, 18, 32, 0.86);
  font-size: 12px;
  font-weight: 800;
}
.hero-card h2 {
  font-size: 20px;
  margin: 12px 0 6px;
}
.hero-card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
}

label {
  display: grid;
  gap: 6px;
}
label > span {
  font-size: 12px;
  color: rgba(11, 18, 32, 0.78);
  font-weight: 700;
}
input,
textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(11, 18, 32, 0.14);
  background: rgba(255, 255, 255, 0.92);
  color: var(--text);
  padding: 11px 12px;
  font-family: inherit;
  outline: none;
}
input:focus,
textarea:focus {
  border-color: rgba(125, 255, 95, 0.40);
  box-shadow: 0 0 0 4px rgba(125, 255, 95, 0.10);
}
textarea {
  resize: vertical;
  min-height: 84px;
}

.mini-form {
  padding: 0 18px 18px;
  display: grid;
  gap: 12px;
}
.form-note {
  margin: 0;
  font-size: 12px;
  color: var(--faint);
}

.news-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}
.news-badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.01em;
  border: 1px solid rgba(11, 18, 32, 0.12);
  background: rgba(2, 6, 23, 0.02);
}
.news-badge--news {
  border-color: rgba(45, 212, 191, 0.30);
  background: rgba(45, 212, 191, 0.10);
}
.news-badge--announce {
  border-color: rgba(125, 255, 95, 0.30);
  background: rgba(125, 255, 95, 0.14);
}
.news-date {
  font-size: 12px;
  color: var(--faint);
  font-weight: 700;
}

.news-link {
  color: inherit;
  text-decoration: none;
}
.news-link:hover {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.news-more {
  display: inline-flex;
  margin-top: 10px;
  font-weight: 800;
  font-size: 13px;
  color: rgba(11, 18, 32, 0.86);
  text-decoration: none;
}
.news-more:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

.section {
  padding: 68px 0;
}
.section-alt {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  border-bottom: 1px solid rgba(11, 18, 32, 0.08);
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.02), transparent 35%, rgba(15, 23, 42, 0.02));
}

.section-head {
  display: grid;
  gap: 10px;
  margin-bottom: 22px;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(26px, 3.2vw, 34px);
  letter-spacing: -0.02em;
}
.section-head h2,
h3 {
  text-wrap: balance;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}
.card {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
}
.card-icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  font-weight: 900;
  background: linear-gradient(
    135deg,
    rgba(125, 255, 95, 0.18),
    rgba(45, 212, 191, 0.16)
  );
  border: 1px solid rgba(11, 18, 32, 0.10);
  margin-bottom: 12px;
}
.card h3 {
  margin: 0 0 8px;
  font-size: 16px;
}
.card p {
  margin: 0 0 10px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}
.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(11, 18, 32, 0.72);
  font-size: 13px;
  line-height: 1.6;
}
.list li {
  margin: 6px 0;
}

.section-head + .lead {
  margin-top: -6px;
}
.section-head.section-head-compact {
  margin-top: 18px;
  margin-bottom: 14px;
}
.subsection-title {
  margin: 0;
  font-size: clamp(20px, 2.3vw, 24px);
  letter-spacing: -0.01em;
}
.content-narrow {
  max-width: 980px;
  margin-inline: auto;
}
.lead.lead-compact {
  margin-top: 14px;
  margin-bottom: 0;
}

.two-col {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 22px;
  align-items: start;
}
.feature-grid {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.feature {
  border: 1px solid rgba(11, 18, 32, 0.10);
  border-radius: var(--radius);
  padding: 14px 14px;
  background: rgba(255, 255, 255, 0.92);
}
.feature h3 {
  margin: 0 0 6px;
  font-size: 15px;
}
.feature p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.media-card {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 10 / 9;
}
.media-card img.tech-image {
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  background: #ffffff;
}
.media-card.tech-media {
  margin-top: 18px;
}

.pill-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}
.pill-card {
  text-align: center;
  padding: 14px 10px;
  border-radius: 999px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.88);
  color: rgba(11, 18, 32, 0.85);
  font-weight: 700;
  font-size: 13px;
}

.timeline {
  margin-top: 14px;
  display: grid;
  gap: 12px;
}
.timeline-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 12px;
  align-items: start;
  padding: 12px 12px;
  border: 1px solid rgba(11, 18, 32, 0.10);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.92);
}
.dot {
  width: 10px;
  height: 10px;
  margin-top: 5px;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(125, 255, 95, 0.95),
    rgba(45, 212, 191, 0.95)
  );
  box-shadow: 0 0 0 4px rgba(125, 255, 95, 0.10);
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 18px;
}
.value-card {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
}
.value-card img {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(0, 0, 0, 0.14);
  padding: 10px;
}
.value-card h3 {
  margin: 12px 0 6px;
  font-size: 16px;
}
.value-card p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.logo-row {
  margin-top: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.08);
  background: rgba(255, 255, 255, 0.85);
  padding: 12px 14px;
  overflow: hidden;
}
.logo-row img {
  width: 100%;
  opacity: 0.75;
  filter: saturate(0) contrast(1.08);
}

.cards.cards-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 14px;
}

.link-cards {
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.link-card {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 14px;
  box-shadow: 0 18px 45px rgba(2, 6, 23, 0.08);
  transition: transform 120ms ease, border-color 150ms ease, background 150ms ease;
}
.link-card:hover {
  transform: translateY(-1px);
  border-color: rgba(125, 255, 95, 0.22);
  background: rgba(125, 255, 95, 0.06);
}
.link-card-title {
  font-weight: 900;
  letter-spacing: -0.02em;
}
.link-card-desc {
  margin-top: 6px;
  font-size: 13px;
  color: var(--muted);
}
.timeline h3 {
  margin: 0;
  font-size: 15px;
}
.timeline p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.quote-card {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.quote {
  margin: 0;
  font-size: 18px;
  letter-spacing: -0.01em;
  line-height: 1.35;
  padding: 18px 18px 8px;
}
.quote-byline {
  margin: 0;
  padding: 0 18px 16px;
  color: var(--faint);
  font-weight: 700;
  font-size: 13px;
}
.quote-art img {
  width: 100%;
  height: auto;
  opacity: 0.85;
  filter: saturate(1.2) contrast(1.05);
}

.quote-art--logo {
  display: grid;
  place-items: center;
  padding: 14px 18px 18px;
  background: radial-gradient(
      600px 240px at 40% 20%,
      rgba(125, 255, 95, 0.10),
      transparent 60%
    ),
    radial-gradient(
      520px 220px at 70% 60%,
      rgba(45, 212, 191, 0.10),
      transparent 62%
    );
}
.quote-art--logo img {
  width: min(420px, 90%);
  height: auto;
  opacity: 1;
  filter: none;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.98);
  padding: 12px;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.45);
}

.contact {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: start;
}
.contact h2 {
  margin: 0 0 8px;
  font-size: 30px;
}
.contact p {
  margin: 0 0 16px;
  color: var(--muted);
  max-width: 70ch;
}
.contact-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 14px 0 10px;
}
.contact-card {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px;
}
a.contact-card:hover {
  border-color: rgba(11, 18, 32, 0.16);
  background: rgba(2, 6, 23, 0.02);
}
.contact-label {
  font-size: 12px;
  color: var(--faint);
  font-weight: 800;
}
.contact-value {
  margin-top: 6px;
  font-weight: 800;
}
.fineprint {
  font-size: 12px;
  color: var(--faint);
}
.contact-form {
  border-radius: var(--radius);
  border: 1px solid rgba(11, 18, 32, 0.10);
  background: rgba(255, 255, 255, 0.92);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.site-footer {
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  padding: 26px 0 18px;
  background: rgba(2, 6, 23, 0.02);
}
.footer-left {
  display: grid;
  gap: 6px;
}
.footer-brand {
  display: grid;
  gap: 2px;
  align-items: start;
  justify-items: start;
}
.footer-brand .brand-wordmark {
  padding: 0;
  font-size: 18px;
}
.footer-brand .brand-wordmark-sub {
  padding: 0;
  font-size: 12px;
}
.footer-tagline {
  margin: 6px 0 0;
  color: var(--faint);
  font-size: 13px;
}
.footer-inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}
.footer-right {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
}
.footer-right a {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid transparent;
  color: var(--muted);
  font-weight: 700;
  font-size: 13px;
}
.footer-right a:hover {
  border-color: rgba(11, 18, 32, 0.10);
  background: rgba(2, 6, 23, 0.02);
  color: var(--text);
}
.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(11, 18, 32, 0.08);
  color: var(--faint);
  font-size: 12px;
}

@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
  }
  .hero {
    padding: 52px 0 36px;
  }
  .cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .pill-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .value-cards,
  .cards.cards-3 {
    grid-template-columns: 1fr;
  }
  .link-cards {
    grid-template-columns: 1fr;
  }
  .two-col,
  .contact {
    grid-template-columns: 1fr;
  }
  .contact-cards {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: 52px 0;
  }
  .container {
    width: min(var(--container), calc(100% - 28px));
  }
  .hero-copy h1 {
    font-size: clamp(28px, 7.5vw, 36px);
  }
  .hero-company {
    font-size: clamp(30px, 9vw, 40px);
    letter-spacing: 0.02em;
  }
  .home-page .section-head h2 {
    font-size: clamp(24px, 7vw, 32px);
  }
  .lead {
    font-size: 15px;
  }
  .nav-toggle {
    display: inline-flex;
  }
  .nav-links {
    position: fixed;
    top: 84px;
    right: 12px;
    left: 12px;
    display: none;
    flex-direction: column;
    gap: 4px;
    padding: 10px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(11, 18, 32, 0.12);
    box-shadow: var(--shadow);
    z-index: 95;
    max-height: calc(100vh - 98px);
    overflow-y: auto;
    overflow-x: hidden;
  }
  .nav-links > li {
    width: 100%;
    min-width: 0;
  }
  .nav-links[data-open="true"] {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    justify-content: flex-start;
    padding: 12px 12px;
  }
  .nav-item {
    width: 100%;
    display: block;
    padding-bottom: 0;
    margin-bottom: 0;
  }
  .nav-item::after {
    display: none;
  }
  .nav-item > a {
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
  }
  .nav-links > li > a::after {
    left: 12px;
    right: 12px;
    bottom: 7px;
  }
  .mega {
    position: static;
    transform: none;
    width: 100%;
    display: none;
    padding: 8px;
    margin-top: 6px;
    box-shadow: none;
    border-radius: 10px;
    max-width: 100%;
    overflow: hidden;
  }
  .nav-item.open .mega {
    display: block;
  }
  .mega-grid {
    grid-template-columns: 1fr;
  }
  .mega-col {
    min-width: 0;
  }
  .mega-link {
    width: 100%;
    min-width: 0;
    overflow-wrap: anywhere;
  }
  .mega-link span {
    white-space: normal;
    word-break: break-word;
  }
  .nav-caret {
    margin-left: auto;
  }
  .trust-row {
    grid-template-columns: 1fr;
  }
  .cards {
    grid-template-columns: 1fr;
  }
  .content-narrow {
    max-width: 100%;
  }
  .feature-grid {
    grid-template-columns: 1fr;
  }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .footer-right {
    justify-content: flex-start;
  }
}

@media (prefers-reduced-motion: reduce) {
  * {
    scroll-behavior: auto !important;
    transition: none !important;
    animation: none !important;
  }
}
