:root {
  --ink: #10283f;
  --ink-2: #1d405a;
  --navy: #08263d;
  --navy-soft: #123c57;
  --green: #1b8f68;
  --green-dark: #0f6c4e;
  --green-pale: #e6f4ee;
  --blue: #246a8d;
  --blue-pale: #e8f1f5;
  --cream: #f5f3ed;
  --paper: #fbfcfa;
  --white: #ffffff;
  --muted: #607484;
  --line: #d7e0e4;
  --line-dark: rgba(255, 255, 255, 0.16);
  --danger: #a23b42;
  --shadow: 0 24px 60px rgba(8, 38, 61, 0.12);
  --shadow-soft: 0 12px 32px rgba(8, 38, 61, 0.08);
  --radius-sm: 8px;
  --radius: 18px;
  --radius-lg: 30px;
  --max: 1180px;
  --font: Aptos, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: clip;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #7ac6a8;
  outline-offset: 3px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-160%);
}

.skip-link:focus {
  transform: translateY(0);
}

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

.section {
  padding: 92px 0;
}

.section-sm {
  padding: 62px 0;
}

.section-dark {
  color: var(--white);
  background: var(--navy);
}

.section-cream {
  background: var(--cream);
}

.section-blue {
  background: var(--blue-pale);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 18px;
  color: var(--green-dark);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  line-height: 1.3;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 22px;
  height: 2px;
  background: currentColor;
  content: "";
}

.section-dark .eyebrow {
  color: #82d4b3;
}

h1,
h2,
h3,
h4,
p {
  margin-top: 0;
}

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1.12;
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

h1 {
  max-width: 850px;
  margin-bottom: 24px;
  font-size: clamp(2.75rem, 6vw, 5.4rem);
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2rem, 4vw, 3.45rem);
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(1.25rem, 2.2vw, 1.65rem);
}

h4 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: -0.015em;
}

.lead {
  max-width: 720px;
  color: var(--ink-2);
  font-size: clamp(1.05rem, 1.7vw, 1.28rem);
  line-height: 1.7;
}

.section-dark .lead,
.section-dark p {
  color: #c7d6df;
}

.muted {
  color: var(--muted);
}

.fine-print {
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.6;
}

.mt-28 {
  margin-top: 28px;
}

.mb-38 {
  margin-bottom: 38px;
}

.mb-42 {
  margin-bottom: 42px;
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 12px 21px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--green);
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.2;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.button::after {
  content: "\2192";
  font-size: 1.15rem;
  line-height: 1;
}

.button:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--line);
  background: var(--white);
}

.button-secondary:hover {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

.button-light {
  color: var(--navy);
  background: var(--white);
}

.button-light:hover {
  color: var(--white);
  background: var(--green);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--green-dark);
  font-weight: 700;
}

.text-link::after {
  content: "\2192";
  transition: transform 180ms ease;
}

.text-link:hover::after {
  transform: translateX(4px);
}

.site-topbar {
  color: #dbe6eb;
  background: #061e31;
  font-size: 0.76rem;
}

.site-topbar .container {
  display: flex;
  min-height: 38px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.topbar-links {
  display: flex;
  align-items: center;
  gap: 24px;
}

.topbar-links a:hover {
  color: var(--white);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(215, 224, 228, 0.8);
  background: rgba(251, 252, 250, 0.96);
  backdrop-filter: blur(16px);
}

.nav-wrap {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.brand-mark {
  position: relative;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--navy);
}

.brand-mark::before,
.brand-mark::after {
  position: absolute;
  inset: 50% auto auto 50%;
  background: var(--white);
  content: "";
  transform: translate(-50%, -50%);
}

.brand-mark::before {
  width: 22px;
  height: 7px;
}

.brand-mark::after {
  width: 7px;
  height: 22px;
}

.brand-copy {
  display: grid;
  max-width: 250px;
  line-height: 1.05;
}

.brand-name {
  color: var(--navy);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.035em;
  line-height: 1.25;
  text-transform: uppercase;
}

.brand-subtitle {
  margin-top: 5px;
  color: var(--muted);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  position: relative;
  padding: 11px 12px;
  color: #385065;
  font-size: 0.82rem;
  font-weight: 700;
}

.site-nav a:not(.nav-cta)::after {
  position: absolute;
  right: 12px;
  bottom: 5px;
  left: 12px;
  height: 2px;
  background: var(--green);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--navy);
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav .nav-cta {
  margin-left: 8px;
  padding: 12px 17px;
  border-radius: var(--radius-sm);
  color: var(--white);
  background: var(--navy);
}

.site-nav .nav-cta:hover {
  background: var(--green-dark);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  color: var(--navy);
  background: transparent;
  cursor: pointer;
}

.menu-lines,
.menu-lines::before,
.menu-lines::after {
  display: block;
  width: 20px;
  height: 2px;
  background: currentColor;
  content: "";
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-lines {
  position: relative;
}

.menu-lines::before {
  position: absolute;
  top: -6px;
}

.menu-lines::after {
  position: absolute;
  top: 6px;
}

.menu-open .menu-lines {
  background: transparent;
}

.menu-open .menu-lines::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-open .menu-lines::after {
  top: 0;
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: var(--cream);
}

.hero-image {
  position: absolute;
  inset: 0 0 0 53%;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero .container {
  position: relative;
  z-index: 2;
  display: flex;
  min-height: 720px;
  align-items: center;
}

.hero-content {
  width: min(690px, 57%);
  padding: 90px 0 110px;
}

.hero h1 {
  font-size: clamp(3rem, 5.8vw, 5.7rem);
}

.hero h1 span {
  color: var(--green-dark);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid rgba(16, 40, 63, 0.18);
}

.hero-proof-item {
  min-width: 160px;
  padding: 21px 28px 0 0;
}

.hero-proof-item + .hero-proof-item {
  padding-left: 28px;
  border-left: 1px solid rgba(16, 40, 63, 0.18);
}

.hero-proof strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
}

.hero-proof span {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
}

.audience-band {
  position: relative;
  z-index: 4;
  margin-top: -42px;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  box-shadow: var(--shadow);
}

.audience-card {
  position: relative;
  min-height: 174px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: var(--white);
  transition: background-color 180ms ease, transform 180ms ease;
}

.audience-card:first-child {
  border-radius: var(--radius) 0 0 var(--radius);
}

.audience-card:last-child {
  border-right: 0;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.audience-card:hover {
  z-index: 2;
  color: var(--white);
  background: var(--navy);
  transform: translateY(-6px);
}

.audience-card:hover h3,
.audience-card:hover p,
.audience-card:hover .card-kicker {
  color: var(--white);
}

.audience-card h3 {
  font-size: 1.2rem;
}

.audience-card p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.55;
}

.card-kicker {
  display: block;
  margin-bottom: 16px;
  color: var(--green-dark);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 46px;
}

.section-head > div:first-child {
  max-width: 720px;
}

.section-head p:last-child {
  margin-bottom: 0;
}

.grid-2,
.grid-3,
.grid-4 {
  display: grid;
  gap: 24px;
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

.card.no-shadow {
  box-shadow: none;
}

.card-accent {
  border-top: 4px solid var(--green);
}

.icon-block {
  display: grid;
  width: 48px;
  height: 48px;
  margin-bottom: 30px;
  place-items: center;
  border-radius: 12px;
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 1.35rem;
  font-weight: 700;
}

.card p:last-child,
.card ul:last-child {
  margin-bottom: 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  align-items: center;
  gap: 72px;
}

.split.reverse {
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.split.reverse .split-media {
  order: 2;
}

.split-media {
  position: relative;
  min-height: 520px;
}

.split-media > img {
  width: 88%;
  height: 480px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.split-media > img.align-right {
  margin-left: auto;
}

.split-note {
  position: absolute;
  right: 0;
  bottom: 0;
  width: min(300px, 78%);
  padding: 26px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.split-note strong {
  display: block;
  margin-bottom: 7px;
  font-size: 1.1rem;
}

.split-note p {
  margin: 0;
  color: #c7d6df;
  font-size: 0.87rem;
  line-height: 1.6;
}

.check-list {
  display: grid;
  gap: 16px;
  margin: 28px 0 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 34px;
}

.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  content: "\2713";
  font-size: 0.72rem;
  font-weight: 700;
}

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line-dark);
  border-bottom: 1px solid var(--line-dark);
}

.stat {
  padding: 34px;
  border-right: 1px solid var(--line-dark);
}

.stat:last-child {
  border-right: 0;
}

.stat strong {
  display: block;
  color: var(--white);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  letter-spacing: -0.04em;
}

.stat span {
  color: #b8cad4;
  font-size: 0.8rem;
}

.process {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  counter-reset: process;
}

.process-step {
  position: relative;
  padding: 12px 34px 12px 0;
  counter-increment: process;
}

.process-step:not(:last-child)::after {
  position: absolute;
  top: 30px;
  right: 12px;
  width: calc(100% - 72px);
  height: 1px;
  background: var(--line);
  content: "";
  transform: translateX(100%);
}

.process-number {
  display: grid;
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  margin-bottom: 24px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--green-dark);
  background: var(--paper);
  font-weight: 700;
}

.process-number::before {
  content: "0" counter(process);
}

.process-step p {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-panel {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 40px;
  padding: 54px;
  border-radius: var(--radius-lg);
  color: var(--white);
  background: var(--navy);
}

.cta-panel::after {
  position: absolute;
  right: -90px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  border: 70px solid rgba(92, 195, 151, 0.18);
  border-radius: 50%;
  content: "";
}

.cta-panel h2 {
  position: relative;
  z-index: 2;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-panel p {
  position: relative;
  z-index: 2;
  max-width: 650px;
  margin-bottom: 0;
  color: #c7d6df;
}

.cta-panel .button-row {
  position: relative;
  z-index: 2;
  justify-content: flex-end;
  margin-top: 0;
}

.page-hero {
  position: relative;
  overflow: hidden;
  padding: 104px 0 82px;
  color: var(--white);
  background: var(--navy);
}

.page-hero::before,
.page-hero::after {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  content: "";
}

.page-hero::before {
  top: -190px;
  right: 8%;
  width: 480px;
  height: 480px;
}

.page-hero::after {
  top: -70px;
  right: 17%;
  width: 220px;
  height: 220px;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  max-width: 880px;
  margin-bottom: 22px;
  color: var(--white);
  font-size: clamp(2.7rem, 5vw, 4.7rem);
}

.page-hero .lead {
  max-width: 720px;
  margin-bottom: 0;
  color: #c7d6df;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 34px;
  color: #94abb9;
  font-size: 0.76rem;
}

.breadcrumb a {
  color: #c7d6df;
}

.breadcrumb span::before {
  margin-right: 9px;
  content: "/";
}

.image-banner {
  overflow: hidden;
  min-height: 390px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.image-banner img {
  width: 100%;
  height: 430px;
  object-fit: cover;
}

.quote-block {
  padding: 32px 0 32px 32px;
  border-left: 4px solid var(--green);
  color: var(--navy);
  font-size: clamp(1.3rem, 2.5vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 18px 0 0;
}

.tag {
  display: inline-flex;
  padding: 7px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--white);
  font-size: 0.72rem;
  font-weight: 700;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 34px;
}

.filter-button {
  padding: 10px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-2);
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
}

.filter-button:hover,
.filter-button.is-active {
  color: var(--white);
  border-color: var(--navy);
  background: var(--navy);
}

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

.product-card {
  display: flex;
  min-height: 310px;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  transition: box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  box-shadow: var(--shadow-soft);
  transform: translateY(-4px);
}

.product-card[hidden] {
  display: none;
}

.product-type {
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 32px;
  padding: 7px 10px;
  border-radius: 6px;
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.product-card p {
  color: var(--muted);
  font-size: 0.88rem;
}

.product-card .tag-list {
  margin-top: auto;
}

.notice {
  padding: 22px 24px;
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--blue-pale);
}

.notice strong {
  color: var(--navy);
}

.timeline {
  position: relative;
  display: grid;
  gap: 0;
}

.timeline::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 23px;
  width: 1px;
  background: var(--line);
  content: "";
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 25px;
  padding-bottom: 34px;
}

.timeline-item:last-child {
  padding-bottom: 0;
}

.timeline-dot {
  position: relative;
  z-index: 2;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 7px solid var(--paper);
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 0.75rem;
  font-weight: 700;
}

.timeline-content {
  padding: 6px 0 18px;
}

.timeline-content p {
  margin-bottom: 0;
  color: var(--muted);
}

.data-table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.data-table th,
.data-table td {
  padding: 17px 19px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.data-table th {
  color: var(--navy);
  background: var(--blue-pale);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.data-table td {
  font-size: 0.88rem;
}

.data-table tr:last-child td {
  border-bottom: 0;
}

.faq-list {
  border-top: 1px solid var(--line);
}

.faq-item {
  border-bottom: 1px solid var(--line);
}

.faq-question {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 23px 0;
  border: 0;
  color: var(--navy);
  background: transparent;
  font-weight: 700;
  text-align: left;
  cursor: pointer;
}

.faq-question::after {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  content: "+";
  font-size: 1.1rem;
}

.faq-question[aria-expanded="true"]::after {
  content: "\2212";
}

.faq-answer {
  padding: 0 60px 22px 0;
  color: var(--muted);
}

.faq-answer[hidden] {
  display: none;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
}

.contact-list {
  display: grid;
  gap: 22px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line);
}

.contact-list strong {
  display: block;
  margin-bottom: 5px;
  color: var(--navy);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

[data-contact-address] {
  white-space: pre-line;
}

.form-card {
  padding: 36px;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-soft);
}

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

.field {
  display: grid;
  gap: 8px;
}

.field-full {
  grid-column: 1 / -1;
}

.field label {
  color: var(--navy);
  font-size: 0.78rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1px solid #cbd6dc;
  border-radius: var(--radius-sm);
  color: var(--ink);
  background: var(--paper);
}

.field textarea {
  min-height: 145px;
  resize: vertical;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--green);
  outline: 3px solid rgba(27, 143, 104, 0.12);
}

.form-status {
  display: none;
  margin-top: 18px;
  padding: 14px 16px;
  border-radius: var(--radius-sm);
  color: var(--green-dark);
  background: var(--green-pale);
  font-size: 0.87rem;
}

.form-status.is-visible {
  display: block;
}

.form-status.is-success {
  color: var(--green-dark);
  background: var(--green-pale);
}

.form-status.is-error {
  color: var(--danger);
  background: #f8e9eb;
}

.form-trap {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.58;
  transform: none;
}

.site-footer {
  color: #c8d5dd;
  background: #061e31;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 0.8fr);
  gap: 50px;
  padding: 70px 0 52px;
}

.footer-brand .brand-name {
  color: var(--white);
}

.footer-brand .brand-subtitle {
  color: #9eb1bd;
}

.footer-brand p {
  max-width: 360px;
  margin: 24px 0 0;
  color: #9eb1bd;
  font-size: 0.86rem;
}

.footer-column h3 {
  margin-bottom: 20px;
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a {
  color: #aebfca;
  font-size: 0.84rem;
}

.footer-links a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 22px 0 28px;
  border-top: 1px solid var(--line-dark);
  color: #8da3b0;
  font-size: 0.72rem;
}

.footer-bottom-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .site-nav a {
    padding-inline: 8px;
    font-size: 0.76rem;
  }

  .hero-image {
    left: 48%;
  }

  .hero-content {
    width: 60%;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .site-topbar {
    display: none;
  }

  .nav-wrap {
    min-height: 72px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: fixed;
    inset: 72px 0 auto;
    display: none;
    max-height: calc(100vh - 72px);
    overflow-y: auto;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 20px 28px;
    border-top: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .menu-open .site-nav {
    display: flex;
  }

  .site-nav a {
    padding: 14px 6px;
    border-bottom: 1px solid var(--line);
    font-size: 0.92rem;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav .nav-cta {
    margin: 18px 0 0;
    padding: 14px 18px;
    border-bottom: 0;
    text-align: center;
  }

  .hero {
    min-height: auto;
    padding-bottom: 70px;
  }

  .hero-image {
    position: relative;
    inset: auto;
    height: 440px;
  }

  .hero .container {
    min-height: auto;
    margin-top: -115px;
  }

  .hero-content {
    width: 100%;
    padding: 0;
  }

  .hero-content-inner {
    max-width: 680px;
    padding: 34px;
    border-radius: var(--radius);
    background: rgba(245, 243, 237, 0.96);
    box-shadow: var(--shadow-soft);
  }

  .audience-grid,
  .stat-strip,
  .process {
    grid-template-columns: repeat(2, 1fr);
  }

  .audience-card,
  .audience-card:first-child,
  .audience-card:last-child {
    border-radius: 0;
  }

  .audience-card:nth-child(1) {
    border-radius: var(--radius) 0 0 0;
  }

  .audience-card:nth-child(2) {
    border-radius: 0 var(--radius) 0 0;
  }

  .audience-card:nth-child(3) {
    border-radius: 0 0 0 var(--radius);
  }

  .audience-card:nth-child(4) {
    border-radius: 0 0 var(--radius) 0;
  }

  .split,
  .split.reverse,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .split.reverse .split-media {
    order: 0;
  }

  .process-step:not(:last-child)::after {
    display: none;
  }

  .product-grid,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .cta-panel {
    grid-template-columns: 1fr;
  }

  .cta-panel .button-row {
    justify-content: flex-start;
  }

  .footer-main {
    grid-template-columns: 1.4fr 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 28px), var(--max));
  }

  .section {
    padding: 68px 0;
  }

  .section-sm {
    padding: 48px 0;
  }

  .brand-subtitle {
    display: none;
  }

  .brand-copy {
    max-width: 250px;
  }

  .brand-name {
    font-size: 0.7rem;
  }

  .brand-mark {
    width: 39px;
    height: 39px;
  }

  .hero-image {
    height: 350px;
  }

  .hero .container {
    margin-top: -78px;
  }

  .hero-content-inner {
    padding: 27px 22px;
  }

  .hero h1 {
    font-size: clamp(2.35rem, 11.5vw, 3.15rem);
    letter-spacing: -0.045em;
  }

  .hero-proof {
    gap: 18px;
  }

  .hero-proof-item,
  .hero-proof-item + .hero-proof-item {
    min-width: 130px;
    padding: 14px 18px 0 0;
    border-left: 0;
  }

  .audience-band {
    margin-top: -28px;
  }

  .audience-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .product-grid,
  .stat-strip,
  .process,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .audience-card,
  .audience-card:nth-child(1),
  .audience-card:nth-child(2),
  .audience-card:nth-child(3),
  .audience-card:nth-child(4) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    border-radius: 0;
  }

  .audience-card:first-child {
    border-radius: var(--radius) var(--radius) 0 0;
  }

  .audience-card:last-child {
    border-bottom: 0;
    border-radius: 0 0 var(--radius) var(--radius);
  }

  .section-head {
    display: block;
  }

  .section-head .text-link {
    margin-top: 14px;
  }

  .split-media {
    min-height: 400px;
  }

  .split-media > img {
    width: 100%;
    height: 380px;
  }

  .split-note {
    right: 12px;
    bottom: -20px;
  }

  .stat {
    border-right: 0;
    border-bottom: 1px solid var(--line-dark);
  }

  .stat:last-child {
    border-bottom: 0;
  }

  .process {
    gap: 24px;
  }

  .process-step {
    display: grid;
    grid-template-columns: 58px 1fr;
    gap: 20px;
    padding: 0;
  }

  .process-number {
    margin-bottom: 0;
  }

  .cta-panel {
    padding: 34px 24px;
  }

  .page-hero {
    padding: 76px 0 60px;
  }

  .image-banner img {
    height: 330px;
  }

  .data-table {
    display: block;
    overflow-x: auto;
  }

  .form-card {
    padding: 25px 20px;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 38px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
