:root {
  --primary-navy: #0a2540;
  --white: #ffffff;
  --light-gray: #f7f8fa;
  --silver: #c8d0d8;
  --brand-accent: #14b8a6;
  --brand-accent-dark: #0f766e;
  --brand-accent-light: #7ddfd3;
  --brand-accent-soft: #e6fffb;
  --text-color: #080b10;
  --muted-text: #343b46;
  --ink: var(--text-color);
  --navy: var(--primary-navy);
  --navy-soft: #123453;
  --gray-50: #f7f8fa;
  --gray-100: #eef1f4;
  --gray-200: #dfe4ea;
  --gray-500: #6b7280;
  --gray-700: var(--muted-text);
  --line: rgba(10, 37, 64, 0.1);
  --accent-line: rgba(20, 184, 166, 0.34);
  --shadow: 0 24px 70px rgba(10, 37, 64, 0.12);
  --radius: 8px;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section,
[id] {
  scroll-margin-top: 90px;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
}

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

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 32px, var(--max));
  margin: 12px auto 0;
  padding: 8px 10px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(10, 37, 64, 0.18);
  backdrop-filter: blur(16px);
  transition:
    transform 220ms ease,
    background 180ms ease,
    color 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.9);
  border-color: var(--line);
  box-shadow: 0 16px 50px rgba(10, 37, 64, 0.08);
}

.site-header.header-hidden {
  transform: translateY(calc(-100% - 18px));
}

.site-header-solid {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.92);
  border-color: var(--line);
  box-shadow: 0 16px 50px rgba(10, 37, 64, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 76px;
  height: 52px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled .brand {
  background: transparent;
  box-shadow: none;
}

.brand-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

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

.nav a {
  padding: 8px 10px;
  color: currentColor;
  font-size: 0.88rem;
  font-weight: 700;
  opacity: 0.86;
}

.nav a:hover {
  opacity: 1;
}

.nav .nav-cta {
  margin-left: 4px;
  color: var(--primary-navy);
  border-radius: 7px;
  background: var(--brand-accent);
  opacity: 1;
}

.nav .nav-cta:hover {
  background: var(--brand-accent-light);
}

.site-header.is-scrolled .nav .nav-cta {
  color: var(--primary-navy);
  background: var(--brand-accent);
}

.site-header.is-scrolled .nav .nav-cta:hover {
  background: var(--brand-accent-light);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid currentColor;
  border-radius: var(--radius);
  color: currentColor;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.section {
  padding: 112px 24px;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  padding-top: 150px;
  overflow: hidden;
  color: var(--white);
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 75% 38%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 37, 64, 0.97) 0%, rgba(10, 37, 64, 0.84) 42%, rgba(10, 37, 64, 0.3) 74%, rgba(10, 37, 64, 0.08) 100%),
    linear-gradient(180deg, rgba(10, 37, 64, 0.08) 0%, rgba(10, 37, 64, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(100%, var(--max));
  margin: 0 auto;
  padding-bottom: 54px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-accent-dark);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero .eyebrow,
.section-navy .eyebrow,
.contact-section .eyebrow {
  color: var(--brand-accent-light);
}

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

h1 {
  max-width: 820px;
  margin-bottom: 22px;
  font-size: clamp(3rem, 8vw, 6.7rem);
  line-height: 0.96;
  letter-spacing: 0;
}

h2 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 1.04;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  line-height: 1.25;
}

.hero-subhead {
  max-width: 680px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 800;
  line-height: 1.1;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--white);
  background: var(--navy);
  border-color: var(--navy);
  box-shadow: inset 0 -3px 0 rgba(20, 184, 166, 0.34);
}

.button-primary:hover {
  color: var(--primary-navy);
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.hero .button-primary,
.contact-section .button-primary {
  color: var(--primary-navy);
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.hero .button-primary:hover,
.contact-section .button-primary:hover {
  background: var(--brand-accent-light);
  border-color: var(--brand-accent-light);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  border-color: rgba(20, 184, 166, 0.76);
  background: rgba(20, 184, 166, 0.12);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  max-width: 760px;
  margin-top: 34px;
}

.hero-proof span {
  min-height: 58px;
  display: flex;
  align-items: center;
  padding: 14px 16px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

.signal-strip span {
  padding: 22px 18px;
  text-align: center;
  color: var(--gray-700);
  font-size: 0.9rem;
  font-weight: 800;
  border-right: 1px solid var(--line);
}

.signal-strip span:last-child {
  border-right: 0;
}

.section-light {
  background: var(--gray-50);
}

.section-silver {
  background: linear-gradient(180deg, var(--gray-50), var(--gray-100));
}

.section-navy,
.contact-section {
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--navy);
}

.section-grid,
.split,
.contact-layout,
.section-heading {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: 80px;
  align-items: start;
}

.clarity-panel {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
  margin: 0 auto;
  padding: 38px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 18px 54px rgba(10, 37, 64, 0.06);
}

.clarity-copy p {
  color: var(--gray-700);
  font-size: 1.08rem;
}

.clarity-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.clarity-list span {
  padding: 13px 14px;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-accent);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.lead-copy {
  color: var(--gray-700);
  font-size: 1.15rem;
}

.lead-copy p:last-child,
.content-stack p:last-child {
  margin-bottom: 0;
}

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

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

.pilot-layout {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(0, 1.22fr);
  gap: 44px;
  align-items: start;
  margin: 0 auto;
}

.pilot-content p {
  max-width: 760px;
  color: var(--gray-700);
  font-size: 1.08rem;
}

.content-stack {
  max-width: 650px;
}

.content-stack p {
  color: var(--gray-700);
  font-size: 1.08rem;
}

.mini-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 28px;
}

.mini-metrics span {
  min-height: 88px;
  display: grid;
  align-content: center;
  gap: 2px;
  padding: 16px;
  color: var(--gray-700);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-50);
}

.mini-metrics strong {
  display: block;
  color: var(--navy);
  font-size: 1.45rem;
  line-height: 1;
}

.section-navy .content-stack p,
.contact-section .content-stack p {
  color: rgba(255, 255, 255, 0.76);
}

.pilot-scope-note {
  padding: 14px 16px;
  color: var(--white);
  font-weight: 800;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: var(--radius);
  background: rgba(20, 184, 166, 0.1);
}

.visual-card,
.photo-placeholder {
  min-height: 430px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.visual-card {
  display: grid;
  place-items: center;
  padding: 32px;
  overflow: hidden;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.9), rgba(229, 234, 240, 0.72)),
    radial-gradient(circle at 25% 20%, rgba(10, 37, 64, 0.16), transparent 34%);
}

.media-card {
  position: relative;
  display: block;
  padding: 18px;
}

.media-card img,
.media-card video {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center;
  border-radius: var(--radius);
  background: var(--ink);
}

.visual-card p,
.product-specs {
  align-self: end;
  margin: 22px 0 0;
  color: var(--gray-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.product-specs {
  width: 100%;
  display: grid;
  gap: 4px;
  padding: 14px;
  text-align: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.72);
}

.media-card .product-specs {
  margin-top: 12px;
}

.demo-intro {
  width: 100%;
  margin: 0 0 18px;
  text-align: left;
}

.demo-intro h3 {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.28rem;
}

.demo-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

.product-specs span {
  color: var(--brand-accent-dark);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-specs strong {
  color: var(--navy);
  font-size: 0.95rem;
}

.mock-dispenser {
  position: relative;
  width: min(78%, 360px);
  aspect-ratio: 0.72;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(155deg, var(--white), var(--gray-200));
  box-shadow: 30px 36px 80px rgba(10, 37, 64, 0.26), inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mock-dispenser::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 22px;
  right: 22px;
  height: 34px;
  border-radius: 7px;
  background: linear-gradient(90deg, var(--navy), var(--navy-soft));
}

.mock-slot {
  position: absolute;
  left: 50%;
  bottom: 74px;
  width: 54%;
  height: 12px;
  border-radius: 999px;
  background: var(--silver);
  transform: translateX(-50%);
}

.mock-label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 110px;
  color: var(--navy);
  text-align: center;
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.18em;
}

.section-heading {
  margin-bottom: 42px;
}

.section-heading h2 {
  margin-bottom: 0;
}

.steps,
.benefit-grid,
.feature-list,
.faq-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.ops-grid,
.credibility-grid {
  width: min(100%, var(--max));
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin: 0 auto;
}

.ops-grid article,
.credibility-grid article {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(10, 37, 64, 0.05);
}

.ops-grid article::before,
.credibility-grid article::before {
  content: "";
  display: block;
  width: 36px;
  height: 3px;
  margin-bottom: 46px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--brand-accent), var(--silver));
}

.ops-grid p,
.credibility-grid p {
  color: var(--gray-700);
}

.step-card,
.benefit-card {
  border-radius: var(--radius);
}

.step-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.07);
}

.step-card p {
  color: rgba(255, 255, 255, 0.7);
}

.step-number {
  display: block;
  margin-bottom: 54px;
  color: var(--brand-accent-light);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.benefit-card {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(10, 37, 64, 0.06);
}

.benefit-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 28px;
  right: 28px;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, var(--brand-accent), var(--silver));
}

.venue-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  margin-bottom: 30px;
  border: 1px solid rgba(20, 184, 166, 0.28);
  border-radius: 7px;
  background: var(--brand-accent-soft);
}

.venue-icon svg {
  width: 25px;
  height: 25px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.venue-icon .plane-mark {
  fill: var(--navy);
  stroke: none;
}

.benefit-card h3 {
  margin-bottom: 14px;
  color: var(--navy);
  font-size: 1.14rem;
}

.benefit-card p {
  margin: 0;
  color: var(--gray-700);
}

.photo-placeholder {
  position: relative;
  display: grid;
  place-items: end;
  padding: 28px;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(10, 37, 64, 0.86), rgba(10, 37, 64, 0.36)),
    repeating-linear-gradient(135deg, var(--gray-200) 0 12px, var(--gray-100) 12px 24px);
}

.photo-placeholder > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.photo-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10, 37, 64, 0.06), rgba(10, 37, 64, 0.74));
}

.photo-placeholder div {
  position: relative;
  z-index: 1;
  width: 100%;
  min-height: auto;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  color: var(--white);
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: var(--radius);
  background: rgba(10, 37, 64, 0.36);
  backdrop-filter: blur(12px);
}

.photo-placeholder span {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.photo-placeholder strong {
  font-size: 1.25rem;
}

.pilot-detail-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin: 30px 0;
}

.pilot-detail-grid article {
  min-height: 168px;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--brand-accent);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 14px 42px rgba(10, 37, 64, 0.05);
}

.pilot-detail-grid span {
  display: block;
  margin-bottom: 28px;
  color: var(--brand-accent-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.pilot-detail-grid h3 {
  margin-bottom: 8px;
}

.pilot-detail-grid p {
  margin: 0;
  color: var(--gray-700);
  font-size: 0.95rem;
}

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

.evaluation-grid article {
  min-height: 220px;
}

.pilot-preview-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.pilot-preview-actions .button-secondary:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-soft);
}

.cta-card {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

#request-pilot {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--navy);
}

#request-pilot h2,
#request-pilot .eyebrow {
  color: var(--white);
}

#request-pilot > p {
  color: rgba(255, 255, 255, 0.78);
}

#request-pilot .contact-form {
  margin-top: 26px;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 28px;
  color: var(--gray-700);
  font-weight: 700;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 8px;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 999px;
  background: var(--brand-accent);
  box-shadow: inset 0 0 0 3px var(--brand-accent-soft);
}

.feature-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.feature-list span {
  min-height: 72px;
  display: flex;
  align-items: center;
  padding: 18px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--brand-accent);
  border-radius: var(--radius);
  color: var(--navy);
  font-weight: 800;
  background: var(--gray-50);
}

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

.faq-grid article {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(10, 37, 64, 0.05);
}

.faq-grid p {
  margin: 0;
  color: var(--gray-700);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1fr);
  gap: 70px;
  align-items: start;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.84rem;
  font-weight: 800;
}

.contact-form label:nth-last-of-type(1),
.contact-form label:nth-last-of-type(2) {
  grid-column: 1 / -1;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
  outline: none;
}

.contact-form input,
.contact-form select {
  height: 48px;
  padding: 0 13px;
}

.contact-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 12px 13px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--brand-accent);
  box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.18);
}

.contact-form select option {
  color: var(--ink);
}

.contact-form button {
  grid-column: 1 / -1;
  width: 100%;
}

.hidden-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  margin: 0;
  padding: 0;
  overflow: hidden;
  visibility: hidden;
}

.contact-assurance {
  display: grid;
  gap: 10px;
  margin-top: 28px;
}

.contact-assurance span {
  width: fit-content;
  max-width: 100%;
  padding: 10px 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.9rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
}

.form-note {
  grid-column: 1 / -1;
  margin: -2px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
}

.privacy-note {
  grid-column: 1 / -1;
  margin: -4px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.82rem;
}

.privacy-note a,
.footer-copy a,
.policy-section a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.form-success {
  grid-column: 1 / -1;
  padding: 14px;
  color: var(--white);
  font-size: 0.92rem;
  font-weight: 800;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
}

.footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 24px;
  color: var(--gray-700);
  border-top: 1px solid var(--line);
  background: var(--white);
}

.footer .brand {
  width: 94px;
  height: 82px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.footer p {
  margin: 0;
}

.footer-copy {
  display: grid;
  justify-items: end;
  gap: 6px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 14px;
}

.legal-page {
  background: var(--gray-50);
}

.legal-hero {
  padding: 180px 24px 72px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0)),
    var(--navy);
}

.legal-hero > div,
.legal-content {
  width: min(100%, 980px);
  margin: 0 auto;
}

.legal-hero h1 {
  max-width: 760px;
  margin-bottom: 18px;
  font-size: clamp(2.8rem, 7vw, 5.8rem);
}

.legal-hero p {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1.15rem;
}

.thank-you-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.legal-hero .button-primary {
  color: var(--primary-navy);
  background: var(--brand-accent);
  border-color: var(--brand-accent);
}

.legal-hero .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.08);
}

.legal-content {
  display: grid;
  gap: 16px;
  padding: 56px 24px 112px;
}

.policy-section {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(10, 37, 64, 0.05);
}

.policy-section h2 {
  margin-bottom: 14px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
  line-height: 1.15;
}

.policy-section h3 {
  margin-top: 24px;
}

.policy-section p,
.policy-section li,
.policy-section dd,
.policy-section address {
  color: var(--gray-700);
}

.policy-section ul {
  display: grid;
  gap: 9px;
  margin: 14px 0 0;
  padding-left: 22px;
}

.policy-details {
  display: grid;
  gap: 12px;
  margin: 22px 0 0;
}

.policy-details div {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 16px;
  padding-top: 12px;
  border-top: 1px solid var(--line);
}

.policy-details dt {
  color: var(--navy);
  font-weight: 900;
}

.policy-details dd {
  margin: 0;
}

.policy-section address {
  font-style: normal;
}

.contact-page-section {
  width: min(100%, var(--max));
  display: grid;
  gap: 18px;
  margin: 0 auto;
  padding: 56px 24px 112px;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1fr);
  gap: 18px;
}

.contact-info-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 44px rgba(10, 37, 64, 0.05);
}

.contact-info-card h2 {
  margin-bottom: 18px;
  font-size: clamp(1.45rem, 2.8vw, 2.2rem);
}

.contact-details {
  display: grid;
  gap: 14px;
  margin: 0;
}

.contact-details div {
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.contact-details dt {
  color: var(--navy);
  font-weight: 900;
}

.contact-details dd {
  margin: 3px 0 0;
  color: var(--gray-700);
}

.contact-details a,
.inquiry-list span {
  overflow-wrap: anywhere;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

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

.contact-actions .button-secondary:hover {
  border-color: var(--brand-accent);
  background: var(--brand-accent-soft);
}

.contact-note {
  margin: 18px 0 0;
  color: var(--gray-700);
}

.contact-note a {
  font-weight: 800;
  text-decoration: underline;
  text-underline-offset: 3px;
}

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

.inquiry-list span {
  min-height: 64px;
  display: flex;
  align-items: center;
  padding: 14px;
  color: var(--navy);
  font-weight: 800;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--gray-50);
}

@media (max-width: 980px) {
  .section {
    padding: 86px 20px;
  }

  .section-grid,
  .clarity-panel,
  .split,
  .split-reverse,
  .pilot-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .steps,
  .benefit-grid,
  .ops-grid,
  .credibility-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero-proof,
  .mini-metrics {
    grid-template-columns: 1fr;
  }

  .hero-media img {
    object-position: 70% 40%;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(10, 37, 64, 0.94) 0%, rgba(10, 37, 64, 0.78) 48%, rgba(10, 37, 64, 0.2) 100%),
      linear-gradient(180deg, rgba(10, 37, 64, 0.12) 0%, rgba(10, 37, 64, 0.78) 100%);
  }

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

@media (max-width: 720px) {
  .site-header {
    width: min(100% - 24px, var(--max));
    margin-top: 10px;
    padding: 7px 9px;
  }

  .brand {
    width: 68px;
    height: 46px;
  }

  .nav-toggle {
    display: block;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 8px;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: 0 18px 50px rgba(10, 37, 64, 0.12);
  }

  .nav.is-open {
    display: flex;
  }

  .nav a {
    padding: 13px 12px;
  }

  .nav .nav-cta {
    margin-left: 0;
    color: var(--primary-navy);
    background: var(--brand-accent);
  }

  .hero {
    min-height: 88vh;
    padding-top: 132px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 37, 64, 0.22) 0%, rgba(10, 37, 64, 0.66) 42%, rgba(10, 37, 64, 0.94) 78%),
      linear-gradient(90deg, rgba(10, 37, 64, 0.52), rgba(10, 37, 64, 0.1));
  }

  .hero-media img {
    object-position: 68% 42%;
  }

  .hero-content {
    padding-bottom: 36px;
  }

  .hero-actions,
  .hero-actions .button {
    width: 100%;
  }

  .steps,
  .benefit-grid,
  .ops-grid,
  .credibility-grid,
  .pilot-detail-grid,
  .feature-list,
  .faq-grid,
  .contact-form {
    grid-template-columns: 1fr;
  }

  .signal-strip {
    grid-template-columns: 1fr;
  }

  .signal-strip span {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .visual-card,
  .photo-placeholder {
    min-height: 330px;
  }

  .media-card img,
  .media-card video {
    height: 380px;
  }

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

  .footer-copy {
    justify-items: start;
  }

  .footer-links {
    justify-content: flex-start;
  }

  .legal-hero {
    padding-top: 150px;
  }

  .policy-details div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .contact-page-grid,
  .inquiry-list {
    grid-template-columns: 1fr;
  }
}
