:root {
  --navy: #061a33;
  --navy-2: #0b294d;
  --blue: #075bff;
  --blue-dark: #0346c7;
  --cyan: #38d7ff;
  --ink: #10243e;
  --muted: #53677f;
  --line: #dce6f1;
  --soft: #f3f7fb;
  --white: #ffffff;
  --max: 1200px;
  --header: 84px;
  --radius: 24px;
  --shadow: 0 22px 60px rgba(6, 26, 51, 0.12);
  --font: "Avenir Next", Avenir, "Segoe UI", Inter, Helvetica, Arial, sans-serif;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 24px);
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.nav-open { overflow: hidden; }
img { max-width: 100%; height: auto; }
a { color: inherit; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 {
  color: var(--navy);
  font-weight: 750;
  letter-spacing: -0.035em;
  line-height: 1.08;
}
h1 { font-size: clamp(2.7rem, 5.2vw, 4.75rem); }
h2 { font-size: clamp(2rem, 3.4vw, 3.15rem); }
h3 { font-size: 1.28rem; }
p { color: var(--muted); }
:focus-visible { outline: 3px solid var(--cyan); outline-offset: 3px; }
[id] { scroll-margin-top: calc(var(--header) + 24px); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  width: 100%;
  height: var(--header);
  padding: 0 max(28px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid rgba(16, 36, 62, 0.08);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 8px 24px rgba(6, 26, 51, 0.04);
  backdrop-filter: blur(16px);
}

.brand { display: inline-flex; align-items: center; }
.brand-logo { display: block; width: 150px; height: auto; }
.site-nav { display: flex; align-items: center; justify-content: flex-end; gap: 4px; }
.nav-link {
  position: relative;
  padding: 13px 10px;
  color: #30455f;
  font-size: 0.88rem;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition: color 160ms ease;
}
.nav-link::after {
  position: absolute;
  right: 10px;
  bottom: 6px;
  left: 10px;
  height: 2px;
  border-radius: 99px;
  background: var(--blue);
  content: "";
  opacity: 0;
  transform: scaleX(0.5);
  transition: opacity 160ms ease, transform 160ms ease;
}
.nav-link:hover, .nav-link.active { color: var(--blue); }
.nav-link:hover::after, .nav-link.active::after { opacity: 1; transform: scaleX(1); }
.nav-cta, .nav-mobile-cta {
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
}
.nav-cta { padding: 15px 20px; font-size: 0.9rem; white-space: nowrap; }
.nav-cta:hover { background: var(--blue-dark); }
.nav-mobile-cta, .menu-toggle { display: none; }

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.96rem;
  font-weight: 750;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease;
}
.button:hover { transform: translateY(-2px); }
.button.primary { background: var(--blue); color: var(--white); box-shadow: 0 12px 28px rgba(7, 91, 255, 0.25); }
.button.primary:hover { background: var(--blue-dark); }
.button.secondary { border-color: rgba(255,255,255,.46); color: var(--white); background: rgba(255,255,255,.08); }
.button.secondary:hover { background: rgba(255,255,255,.16); }
.button.outline { border-color: #b7c6d8; color: var(--navy); background: transparent; }
.button.outline:hover { border-color: var(--blue); color: var(--blue); }
.button.light { color: var(--blue); background: var(--white); box-shadow: 0 12px 30px rgba(1,17,38,.2); }
.button.full { width: 100%; }
.text-link { display: inline-flex; margin-top: 10px; color: var(--blue); font-weight: 750; text-decoration: none; }

.eyebrow, .section-kicker, .panel-topline, .mini-label, .card-number {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.4;
  text-transform: uppercase;
}
.eyebrow > span { width: 26px; height: 2px; border-radius: 4px; background: currentColor; }

.hero, .page-hero {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(320px, .7fr);
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
  min-height: 600px;
  padding: 78px max(32px, calc((100vw - var(--max)) / 2));
}
.home-hero {
  min-height: 650px;
  color: var(--white);
  background:
    radial-gradient(circle at 78% 25%, rgba(56, 215, 255, .17), transparent 29%),
    linear-gradient(120deg, #04152b 0%, #06234b 52%, #064ed4 140%);
}
.home-hero h1 { max-width: 870px; margin-bottom: 24px; color: var(--white); font-size: clamp(3rem, 5.3vw, 4.8rem); }
.home-hero .eyebrow { color: #88e8ff; }
.hero-content { position: relative; z-index: 2; }
.hero-lead { max-width: 780px; margin-bottom: 30px; color: #d5e3f2; font-size: clamp(1.04rem, 1.4vw, 1.2rem); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; }
.trust-row { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 34px; }
.trust-row span { padding: 7px 12px; border: 1px solid rgba(255, 255, 255, .17); border-radius: 999px; color: #cde4ff; background: rgba(255,255,255,.05); font-size: .78rem; font-weight: 650; }
.hero-panel {
  position: relative;
  z-index: 2;
  padding: 34px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(3,20,45,.5);
  box-shadow: 0 28px 70px rgba(0,0,0,.19);
  backdrop-filter: blur(12px);
}
.hero-panel h2 { margin-bottom: 22px; color: var(--white); font-size: clamp(1.7rem, 2.5vw, 2.35rem); }
.panel-topline { color: #7fe4ff; }
.check-list { display: grid; gap: 14px; margin: 0; padding: 0; list-style: none; }
.check-list li { position: relative; padding-left: 30px; color: #dce9f7; }
.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  border-radius: 50%;
  color: var(--navy);
  background: var(--cyan);
  content: "✓";
  font-size: 12px;
  font-weight: 900;
}
.hero-bg-shape { position: absolute; border-radius: 50%; pointer-events: none; filter: blur(1px); }
.hero-bg-shape-one { right: -180px; bottom: -260px; width: 560px; height: 560px; border: 90px solid rgba(56,215,255,.12); }
.hero-bg-shape-two { top: -230px; right: 26%; width: 430px; height: 430px; border: 70px solid rgba(7,91,255,.18); }

.page-hero {
  min-height: 530px;
  background:
    radial-gradient(circle at 85% 28%, rgba(7,91,255,.11), transparent 32%),
    linear-gradient(135deg, #f8fbff, #edf5ff);
}
.page-hero-copy { position: relative; z-index: 2; }
.page-hero-copy h1 { max-width: 900px; margin-bottom: 24px; }
.page-hero-copy > p { max-width: 780px; margin-bottom: 30px; font-size: clamp(1.06rem, 1.5vw, 1.22rem); }
.page-hero .light-panel { border-color: #d5e3f1; color: var(--ink); background: rgba(255,255,255,.88); box-shadow: var(--shadow); }
.page-hero .light-panel h2 { color: var(--navy); }
.page-hero .light-panel .panel-topline { color: var(--blue); }
.dark-checks li { color: #3b5068; }
.compact-legal { min-height: 390px; grid-template-columns: 1fr; }

.section { width: 100%; padding: clamp(72px, 9vw, 118px) max(32px, calc((100vw - var(--max)) / 2)); }
.section.surface { background: var(--soft); }
.section.surface-dark { background: var(--navy); }
.section-heading { max-width: 780px; margin-bottom: 48px; }
.section-heading h2 { margin-bottom: 18px; }
.section-heading p { max-width: 720px; margin-bottom: 0; font-size: 1.08rem; }
.section-heading.inverted h2 { color: var(--white); }
.section-heading.inverted p { color: #c4d4e7; }
.section-heading.inverted .section-kicker { color: #8ae8ff; }

.capability-grid, .feature-grid, .process-grid, .company-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 18px; }
.capability-card, .feature-grid > div, .process-grid > div, .company-grid > article {
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 12px 36px rgba(6,26,51,.06);
}
.capability-card { min-height: 300px; color: var(--ink); text-decoration: none; transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease; }
.capability-card:hover { transform: translateY(-5px); border-color: #afc7ee; box-shadow: var(--shadow); }
.capability-card p { margin-bottom: 24px; }
.capability-card strong { display: block; margin-top: auto; color: var(--blue); font-size: .92rem; }
.icon-chip { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 28px; border-radius: 14px; color: var(--white); background: linear-gradient(135deg, var(--blue), #16bcec); font-size: .78rem; font-weight: 850; letter-spacing: .06em; }
.feature-grid.three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-grid.four { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.feature-grid > div h3, .process-grid > div h3 { margin-bottom: 12px; }
.feature-grid > div p, .process-grid > div p { margin-bottom: 0; }
.surface-dark .process-grid > div { border-color: rgba(255,255,255,.12); background: rgba(255,255,255,.06); box-shadow: none; }
.surface-dark .process-grid > div > span { display: inline-flex; margin-bottom: 24px; color: #85e8ff; font-weight: 850; }
.surface-dark .process-grid h3 { color: var(--white); }
.surface-dark .process-grid p { color: #bed0e3; }

.split, .feature-spotlight, .healthcare-spotlight, .request-card, .genesys-section { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(44px, 8vw, 100px); align-items: center; }
.split > div > p, .feature-spotlight > div > p, .healthcare-spotlight > div > p { font-size: 1.06rem; }
.mini-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.mini-grid > div { padding: 22px; border: 1px solid var(--line); border-radius: 16px; background: var(--white); }
.mini-grid h3 { margin-bottom: 8px; font-size: 1.05rem; }
.mini-grid p { margin: 0; font-size: .92rem; }
.spotlight-card, .boundary-card { padding: clamp(28px, 4vw, 44px); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.spotlight-card { border: 1px solid rgba(255,255,255,.13); color: var(--white); background: linear-gradient(145deg, #0b2e58, #075bff); }
.spotlight-card h2, .spotlight-card h3 { color: var(--white); }
.spotlight-card h3 { font-size: 1.8rem; }
.spotlight-card p { color: #dceaff; }
.spotlight-card .mini-label { color: #9becff; }
.spotlight-card .button { margin-top: 12px; }
.healthcare-spotlight { display: block; }
.healthcare-spotlight .spotlight-card { display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; }
.feature-list { display: grid; gap: 14px; }
.feature-list > div { padding: 22px 24px; border-left: 3px solid var(--blue); border-radius: 0 16px 16px 0; background: var(--soft); }
.feature-list h3 { margin-bottom: 6px; font-size: 1.08rem; }
.feature-list p { margin: 0; font-size: .94rem; }
.plain-list { display: grid; gap: 10px; margin: 20px 0 0; padding-left: 22px; color: #3f5570; }
.boundary-card { border: 1px solid #cfe0f2; }
.boundary-card h3 { margin-bottom: 12px; }

.solution-list { display: grid; gap: 1px; border: 1px solid var(--line); border-radius: 22px; overflow: hidden; background: var(--line); }
.solution-row { display: grid; grid-template-columns: .42fr 1fr auto; gap: 28px; align-items: center; padding: 30px 34px; background: var(--white); text-decoration: none; }
.solution-row:hover { background: #f8fbff; }
.solution-row h3, .solution-row p { margin: 0; }
.solution-row strong { color: var(--blue); white-space: nowrap; }

.section.genesys-section { position: relative; overflow: hidden; border-radius: 0; background: linear-gradient(132deg, #061a33, #0b3f7c); }
.genesys-section h2 { color: var(--white); }
.genesys-section p { color: #cbdced; }
.genesys-section .section-kicker { color: #8ae8ff; }
.step-stack { display: grid; gap: 1px; align-self: stretch; background: rgba(255,255,255,.1); }
.step-stack > div { display: grid; grid-template-columns: 40px 1fr; gap: 18px; align-items: start; padding: 24px 32px; background: rgba(255,255,255,.06); }
.step-stack span { display: grid; width: 32px; height: 32px; place-items: center; border-radius: 50%; color: var(--navy); background: var(--cyan); font-weight: 850; }
.step-stack > div > span { grid-row: 1 / span 2; }
.step-stack h3 { grid-column: 2; margin: 2px 0 6px; color: var(--white); }
.step-stack p { grid-column: 2; margin: 0; font-size: .92rem; }
.small-note { margin-top: 24px; font-size: .82rem; opacity: .84; }

.notice-block, .cta-band { display: grid; grid-template-columns: 1fr auto; gap: 42px; align-items: center; padding: 62px max(32px, calc((100vw - var(--max)) / 2)); color: var(--white); background: linear-gradient(120deg, #075bff, #003ca6); }
.notice-block h2, .cta-band h2 { margin-bottom: 10px; color: var(--white); font-size: clamp(1.8rem, 3vw, 2.75rem); }
.notice-block p, .cta-band p { max-width: 800px; margin: 0; color: #dce9ff; }
.notice-block .section-kicker { color: #9cecff; }
.two-col-cards { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 22px; }
.audience-card { display: flex; min-height: 430px; flex-direction: column; justify-content: space-between; padding: 38px; border-radius: var(--radius); }
.light-card { border: 1px solid var(--line); background: var(--white); box-shadow: var(--shadow); }
.dark-card { color: var(--white); background: var(--navy); }
.dark-card h3 { color: var(--white); }
.dark-card .card-number { color: #8be7ff; }
.dark-card p, .dark-card .plain-list { color: #c9d9ea; }
.dark-card a { color: #8be7ff; }
.audience-card > a { margin-top: 28px; color: var(--blue); font-weight: 750; text-decoration: none; }
.dark-card > a { color: #8be7ff; }
.company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.company-grid > article { min-height: 280px; }

.request-section { background: var(--soft); }
.contact-request-section { min-height: calc(100vh - var(--header)); }
.request-card { align-items: start; padding: clamp(32px, 5vw, 58px); border: 1px solid #d7e4f1; border-radius: 30px; background: var(--white); box-shadow: var(--shadow); }
.request-copy { position: sticky; top: calc(var(--header) + 30px); }
.request-copy > p { font-size: 1.06rem; }
.contact-trust { display: grid; gap: 10px; margin-top: 28px; }
.contact-trust span { position: relative; padding-left: 27px; color: #40566e; font-size: .91rem; font-weight: 650; }
.contact-trust span::before { position: absolute; left: 0; color: var(--blue); content: "✓"; font-weight: 900; }
.lead-form { display: grid; gap: 20px; }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 18px; }
.lead-form label { display: grid; gap: 8px; color: #263f5b; font-size: .88rem; font-weight: 700; }
.lead-form input, .lead-form select, .lead-form textarea { width: 100%; min-height: 50px; padding: 12px 14px; border: 1px solid #bdcad9; border-radius: 11px; color: var(--ink); background: var(--white); font: inherit; font-size: 16px; font-weight: 500; transition: border-color 150ms ease, box-shadow 150ms ease; }
.lead-form textarea { resize: vertical; }
.lead-form input:focus, .lead-form select:focus, .lead-form textarea:focus { border-color: var(--blue); outline: 0; box-shadow: 0 0 0 4px rgba(7,91,255,.12); }
.lead-form .check { grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-weight: 500; line-height: 1.5; }
.lead-form .check input { width: 18px; min-height: 18px; margin: 3px 0 0; }
.lead-form .check a, .form-note a { color: var(--blue); }
.optional { color: #71849a; font-size: .78rem; font-weight: 500; }
.form-note { margin: -4px 0 0; text-align: center; font-size: .83rem; }
.hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0 !important; }
.form-shell { max-width: 760px; margin: 0 auto; padding: clamp(28px, 5vw, 52px); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.form-column { min-width: 0; }
.form-column .status-message { margin: 0 0 20px; }
.narrow-form { max-width: 620px; }
.status-message { max-width: 760px; margin: 32px auto 0; padding: 16px 20px; border: 1px solid #f0c7c7; border-radius: 12px; color: #7d2020; background: #fff2f2; font-weight: 650; }

.legal-page { max-width: 920px; margin: 0 auto; }
.legal-page h1 { margin-bottom: 10px; }
.legal-page h2 { margin-top: 42px; margin-bottom: 12px; font-size: 1.45rem; }
.legal-page p { color: #465c73; }
.legal-updated { font-size: .9rem; }
.thank-you { display: grid; min-height: calc(100vh - var(--header)); place-items: center; background: var(--soft); }
.success-card { max-width: 760px; padding: clamp(38px, 7vw, 70px); border: 1px solid var(--line); border-radius: 30px; text-align: center; background: var(--white); box-shadow: var(--shadow); }
.success-card .hero-actions { justify-content: center; }
.success-icon { display: grid; width: 64px; height: 64px; place-items: center; margin: 0 auto 24px; border-radius: 50%; color: var(--white); background: var(--blue); font-size: 1.8rem; font-weight: 900; }
.error-code { display: block; margin-bottom: 14px; color: var(--blue); font-size: clamp(4rem, 10vw, 8rem); font-weight: 850; letter-spacing: -.08em; line-height: .9; }

.footer { padding: 72px max(32px, calc((100vw - var(--max)) / 2)) 28px; color: #c4d3e3; background: #031326; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 52px; }
.footer-logo { width: 145px; }
.footer h3 { margin-bottom: 20px; color: var(--white); font-size: .84rem; letter-spacing: .08em; text-transform: uppercase; }
.footer a { display: block; margin-bottom: 10px; color: #d4e1ef; text-decoration: none; }
.footer a:hover { color: var(--cyan); }
.footer p { color: #9eb2c7; font-size: .9rem; }
.footer-tag { margin: 18px 0 8px; color: var(--white) !important; font-weight: 750; }
.footer-copy { max-width: 360px; }
.footer-boundary { margin: 48px 0 0; padding: 16px 18px; border: 1px solid rgba(255,255,255,.1); border-radius: 12px; background: rgba(255,255,255,.04); }
.footer-bottom { display: flex; justify-content: space-between; gap: 24px; margin-top: 54px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.1); color: #8197ad; font-size: .84rem; }
.footer-bottom a { display: inline; margin: 0; color: #a9bdd1; }

.consent-banner { position: fixed; z-index: 300; right: 24px; bottom: 24px; width: min(460px, calc(100vw - 32px)); padding: 22px; border: 1px solid #d7e3ef; border-radius: 18px; background: var(--white); box-shadow: 0 24px 70px rgba(3,19,38,.24); }
.consent-banner h2 { margin-bottom: 8px; font-size: 1.18rem; }
.consent-banner p { margin-bottom: 16px; font-size: .88rem; }
.consent-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.consent-actions .button { min-height: 42px; padding: 0 18px; font-size: .85rem; }

@media (max-width: 1120px) {
  :root { --header: 76px; }
  .site-header { grid-template-columns: 1fr auto auto; padding-inline: 24px; }
  .menu-toggle { display: grid; width: 44px; height: 44px; place-content: center; gap: 5px; border: 1px solid #c9d6e3; border-radius: 12px; background: var(--white); cursor: pointer; }
  .menu-toggle span { display: block; width: 20px; height: 2px; border-radius: 3px; background: var(--navy); transition: transform 160ms ease, opacity 160ms ease; }
  .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); }
  .site-nav { position: fixed; top: var(--header); right: 0; bottom: auto; left: 0; height: calc(100dvh - var(--header)); display: none; align-items: stretch; justify-content: start; flex-direction: column; gap: 2px; padding: 24px; background: var(--white); overflow-y: auto; }
  .site-nav.open { display: flex; }
  .nav-link { padding: 16px 8px; border-bottom: 1px solid var(--line); font-size: 1rem; }
  .nav-link::after { display: none; }
  .nav-mobile-cta { display: flex; justify-content: center; margin-top: 16px; padding: 17px 20px; }
  .hero, .page-hero { grid-template-columns: 1fr; }
  .hero-panel { max-width: 700px; }
  .capability-grid, .process-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 820px) {
  .nav-cta { display: none; }
  .site-header { grid-template-columns: 1fr auto; }
  .hero, .page-hero { min-height: auto; padding: 66px 24px; }
  .home-hero { min-height: calc(100svh - var(--header)); }
  .home-hero h1 { font-size: clamp(2.7rem, 12vw, 4rem); }
  .section { padding: 76px 24px; }
  .feature-grid.three, .feature-grid.four, .company-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .feature-spotlight, .healthcare-spotlight, .request-card, .genesys-section { grid-template-columns: 1fr; }
  .healthcare-spotlight .spotlight-card { grid-template-columns: 1fr; }
  .request-copy { position: static; }
  .step-stack { margin-top: 16px; }
  .two-col-cards { grid-template-columns: 1fr; }
  .notice-block, .cta-band { grid-template-columns: 1fr; padding: 52px 24px; }
  .solution-row { grid-template-columns: 1fr; gap: 12px; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0,1fr)); }
}

@media (max-width: 560px) {
  .brand-logo { width: 132px; }
  .home-hero { padding-top: 54px; padding-bottom: 54px; }
  .home-hero h1 { font-size: clamp(2.4rem, 10.5vw, 3rem); }
  .hero-actions { align-items: stretch; flex-direction: column; }
  .hero-actions .button { width: 100%; }
  .trust-row { margin-top: 26px; }
  .hero-panel { padding: 26px; }
  .capability-grid, .feature-grid.three, .feature-grid.four, .process-grid, .company-grid, .mini-grid, .form-grid { grid-template-columns: 1fr; }
  .capability-card { min-height: 0; }
  .audience-card { min-height: 0; padding: 28px; }
  .request-card { padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; gap: 34px; }
  .footer-bottom { flex-direction: column; }
  .consent-banner { right: 16px; bottom: 16px; }
}

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