:root {
  --ink: #10233a;
  --ink-muted: #4a5d72;
  --paper: #f6f8fb;
  --surface: #ffffff;
  --line: #c9d4e0;
  --accent: #2f6f8f;
  --accent-deep: #1a4d66;
  --warm: #d97745;
  --band: #e7eef5;
  --band-deep: #10233a;
  --radius: 4px;
  --max: 1140px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Figtree", "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(47, 111, 143, 0.12), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(217, 119, 69, 0.08), transparent 50%),
    var(--paper);
  line-height: 1.6;
}

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

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

.container {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(246, 248, 251, 0.92);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(10px);
}

.header-row {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
  color: var(--ink);
}

.brand-logo {
  display: block;
  width: 148px;
  height: auto;
}

.brand-mark {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 9px;
}

.brand-text {
  line-height: 1;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 1.35rem;
}

.main-nav a {
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--ink-muted);
}

.main-nav a:hover {
  color: var(--accent);
}

.main-nav a.btn {
  color: #fff;
  font-weight: 600;
}

.main-nav a.btn:hover {
  color: #fff;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: var(--radius);
  font-size: 1.2rem;
  padding: 0.3rem 0.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.35rem;
  border: 1px solid var(--accent-deep);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: var(--radius);
  transition: background 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  background: var(--accent-deep);
  transform: translateY(-1px);
}

.btn-small {
  padding: 0.5rem 0.95rem;
  font-size: 0.88rem;
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}

.btn-ghost:hover {
  background: var(--ink);
  color: #fff;
}

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
}

h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  font-weight: 550;
}

h2 {
  margin: 0.35rem 0 0.9rem;
  font-size: clamp(1.7rem, 3.2vw, 2.55rem);
  font-weight: 550;
}

h3,
h4 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
  font-weight: 600;
}

p {
  margin: 0 0 1rem;
  color: var(--ink-muted);
}

/* —— Hero: full-bleed visual —— */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  align-items: end;
  padding: 0;
  overflow: hidden;
  color: #fff;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  min-height: inherit;
  position: relative;
  z-index: 1;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  height: 100%;
  object-fit: cover;
  border-radius: 0;
  animation: heroZoom 18s ease-in-out infinite alternate;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(10, 22, 36, 0.88) 0%, rgba(10, 22, 36, 0.55) 48%, rgba(10, 22, 36, 0.25) 100%),
    linear-gradient(to top, rgba(10, 22, 36, 0.7), transparent 45%);
}

.hero-copy {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 5.5rem 0 3.5rem;
  max-width: 38rem;
  justify-self: start;
  animation: riseIn 0.9s ease both;
}

.hero-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 1.1rem;
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  color: #fff;
  animation: riseIn 0.7s ease both;
}

.hero-brand .brand-logo {
  width: min(200px, 55vw);
  height: auto;
  filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.25));
}

.hero-brand .brand-mark {
  width: 40px;
  height: 40px;
  border-radius: 11px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
}

.hero-copy .eyebrow {
  color: #f0c9a8;
}

.hero-copy h1,
.hero-copy p {
  color: #f4f7fa;
}

.hero-copy p {
  font-size: 1.05rem;
  max-width: 34rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.5rem 0 0;
}

.hero .btn-ghost {
  border-color: rgba(255, 255, 255, 0.65);
  color: #fff;
}

.hero .btn-ghost:hover {
  background: #fff;
  color: var(--ink);
}

.hero-stats {
  display: none;
}

.trust {
  background: var(--band-deep);
  color: #dce6f0;
  padding: 1.35rem 0;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem 2rem;
}

.trust-row p {
  margin: 0;
  color: #dce6f0;
  font-size: 0.98rem;
  max-width: 28rem;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.25rem;
}

.chips span {
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #9eb8cc;
  border: 0;
  background: transparent;
  padding: 0;
  border-radius: 0;
  position: relative;
}

.chips span + span::before {
  content: "·";
  margin-right: 1.25rem;
  color: var(--warm);
}

.chips span:hover,
.chips span:nth-child(2),
.chips span:nth-child(4) {
  background: transparent;
  color: #c5d7e6;
}

/* —— Split sections —— */
.split,
.sectors,
.operations,
.why,
.testimonials,
.faq,
.contact {
  padding: 4.5rem 0;
}

.split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split-grid > img,
.split-grid > div {
  background: transparent;
  border: 0;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
}

.split-grid > img {
  height: min(460px, 58vw);
  object-fit: cover;
  border-radius: 0;
  clip-path: polygon(0 0, 100% 0, 100% 92%, 0 100%);
}

.split ul {
  margin: 1.2rem 0 0;
  padding: 0;
  list-style: none;
}

.split li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1.4rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.split li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  width: 0.55rem;
  height: 0.55rem;
  background: var(--warm);
}

.split.alt {
  background: var(--band);
}

.split.alt::before {
  display: none;
}

.split:not(.alt) .split-grid,
.split.alt .split-grid {
  direction: ltr;
}

.split.alt .split-grid > img {
  order: 2;
  clip-path: polygon(0 8%, 100% 0, 100% 100%, 0 100%);
}

/* —— Stats strip after trust —— */
.stats-strip {
  padding: 2.75rem 0;
  border-bottom: 1px solid var(--line);
}

.stats-strip ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.stats-strip li {
  border-left: 3px solid var(--warm);
  padding-left: 1rem;
}

.stats-strip strong {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--ink);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stats-strip span {
  color: var(--ink-muted);
  font-size: 0.92rem;
}

/* —— Sectors —— */
.sectors {
  background: var(--surface);
}

.sector-intro {
  max-width: 36rem;
  margin-bottom: 2rem;
}

.sector-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: 2rem;
  align-items: start;
}

.sector-grid {
  display: grid;
  gap: 0;
}

.sector-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.35rem 1.5rem;
  padding: 1.15rem 0;
  border-top: 1px solid var(--line);
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: padding-left 0.25s ease;
}

.sector-item::after {
  display: none;
}

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

.sector-item:hover {
  padding-left: 0.5rem;
  transform: none;
}

.sector-item h3 {
  grid-column: 1;
  margin: 0;
  font-size: 1.15rem;
}

.sector-item h3 span,
.sector-item:nth-child(even) h3 span,
.sector-item:nth-child(3n) h3 span {
  float: none;
  margin-left: 0.65rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--accent);
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.sector-item p {
  grid-column: 1 / -1;
  margin: 0;
  font-size: 0.95rem;
}

.sector-highlight {
  background: var(--band-deep);
  color: #e8eef5;
  padding: 1.75rem;
  border-radius: 0;
  border: 0;
  position: sticky;
  top: 5.5rem;
}

.sector-highlight h3,
.sector-highlight p {
  color: #e8eef5;
}

.sector-highlight p {
  opacity: 0.85;
}

.sector-highlight ul {
  margin: 1rem 0 1.4rem;
  padding: 0;
  list-style: none;
}

.sector-highlight li {
  padding: 0.45rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.15);
  color: #c5d7e6;
}

.sector-highlight .btn {
  background: var(--warm);
  border-color: var(--warm);
  color: #fff;
}

/* —— Operations —— */
.operations {
  background:
    linear-gradient(180deg, var(--band) 0%, var(--paper) 100%);
}

.operations .container > p {
  max-width: 40rem;
}

.ops-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}

.ops-card {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 1.5rem;
  align-items: center;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1rem;
  box-shadow: none;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.ops-card::after {
  display: none;
}

.ops-card:hover {
  border-color: var(--accent);
  transform: translateX(4px);
}

.ops-card img {
  height: 150px;
  object-fit: cover;
  border-radius: 0;
}

.ops-card > div {
  padding-right: 0.5rem;
}

.ops-subtitle {
  margin: 0 0 0.65rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.92rem;
}

.ops-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.ops-card li {
  padding: 0.3rem 0;
  color: var(--ink-muted);
  font-size: 0.94rem;
}

.ops-card li::before {
  content: "– ";
  color: var(--warm);
}

/* —— Why —— */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.why-grid article {
  background: transparent;
  border: 0;
  border-top: 3px solid var(--accent);
  border-radius: 0;
  padding: 1.25rem 0 0;
  box-shadow: none;
}

.why-grid article::before {
  display: none;
}

.why-grid article:hover {
  transform: none;
}

.why-grid p {
  margin: 0;
}

/* —— Testimonials —— */
.testimonials {
  background: var(--band-deep);
}

.testimonials .eyebrow {
  color: #f0c9a8;
}

.testimonials h2 {
  color: #f4f7fa;
}

.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-top: 1.75rem;
}

.quote-grid blockquote {
  margin: 0;
  padding: 1.4rem 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  border-radius: 0;
  color: #dce6f0;
  font-family: var(--font-display);
  font-size: 1.15rem;
  line-height: 1.45;
  font-weight: 450;
}

.quote-grid cite {
  display: block;
  margin-top: 1rem;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-style: normal;
  color: #9eb8cc;
}

/* —— FAQ —— */
.faq-list {
  display: grid;
  gap: 0.65rem;
  margin-top: 1.5rem;
}

.faq-list details {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 0.95rem 1.1rem;
}

.faq-list summary {
  cursor: pointer;
  font-weight: 650;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--accent);
  font-weight: 700;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0.75rem 0 0.15rem;
}

/* —— Double CTA —— */
.double-cta {
  padding: 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.cta-grid article {
  padding: 3.5rem 8%;
  background: var(--surface);
  border: 0;
  border-radius: 0;
  border-top: 1px solid var(--line);
}

.cta-grid article:hover {
  transform: none;
}

.cta-grid article:last-child {
  background: var(--band);
  border-left: 1px solid var(--line);
}

/* —— Contact —— */
.contact {
  background: var(--paper);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.contact-cards {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.contact-cards article {
  background: transparent;
  border: 0;
  border-left: 3px solid var(--accent);
  border-radius: 0;
  padding: 0.35rem 0 0.35rem 1rem;
}

.contact-cards article:hover {
  transform: none;
}

.contact-cards p {
  margin: 0;
}

.contact-form {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 0;
  padding: 1.5rem;
  display: grid;
  gap: 0.85rem;
}

.role-switch {
  border: 0;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.role-switch legend {
  margin-bottom: 0.55rem;
  font-weight: 700;
  font-size: 0.9rem;
}

.role-option {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  border: 1px solid var(--line);
  padding: 0.7rem;
  cursor: pointer;
  background: var(--paper);
}

.role-option:has(input:checked) {
  border-color: var(--accent);
  background: rgba(47, 111, 143, 0.08);
}

.role-option span {
  font-weight: 600;
  font-size: 0.92rem;
}

.role-option input {
  accent-color: var(--accent);
}

.contact-form label {
  display: grid;
  gap: 0.35rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--ink);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.85rem;
  font: inherit;
  color: var(--ink);
  background: #fff;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(47, 111, 143, 0.25);
  border-color: var(--accent);
}

.contact-form .btn {
  width: 100%;
  margin-top: 0.25rem;
}

.form-disclaimer {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--ink-muted);
}

.form-disclaimer a {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.platform-context {
  padding: 2rem 0 0.5rem;
}

.platform-context p {
  margin: 0;
  max-width: 46rem;
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.7;
}

.stats-note {
  margin: 1.25rem 0 0;
  font-size: 0.85rem;
  color: var(--ink-muted);
}

.quote-meta {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: #9eb8cc;
  font-weight: 500;
}

.help-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 1.5rem;
}

.help-card {
  border: 1px solid var(--line);
  background: var(--surface);
  padding: 1.25rem;
}

.help-card h3 {
  margin-bottom: 0.45rem;
}

.help-card p {
  margin: 0;
  font-size: 0.95rem;
}

.help-card a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 2rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.sitemap-list a {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.legal-content a {
  color: var(--accent);
}

/* —— Footer —— */
.site-footer {
  background: var(--band-deep);
  color: #dce6f0;
  padding: 3rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.2fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.site-footer .brand,
.site-footer .brand-footer {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: #fff;
  margin: 0 0 0.75rem;
}

.site-footer .brand-footer:hover {
  color: #fff;
}

.site-footer .brand-logo {
  width: 132px;
  height: auto;
}

.site-footer .brand-mark {
  width: 32px;
  height: 32px;
  border-radius: 8px;
}

.site-footer p,
.site-footer a {
  color: #9eb8cc;
  font-size: 0.92rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.site-footer h4 {
  color: #fff;
  margin-bottom: 0.75rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer a:hover {
  color: #fff;
}

.copyright {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: #7f96ab;
  font-size: 0.85rem;
}

/* —— Subpages —— */
.subpage-main {
  padding-bottom: 2rem;
}

.subpage-hero,
.subpage-section {
  padding: 3.5rem 0;
}

.subpage-hero {
  background: var(--band);
}

.subpage-hero-grid,
.about-grid,
.story-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2rem;
  align-items: center;
}

.subpage-hero-grid > div,
.about-grid article,
.story-grid > div {
  background: transparent;
  border: 0;
  padding: 0;
  border-radius: 0;
}

.subpage-hero-grid img,
.story-grid img {
  height: 360px;
  object-fit: cover;
  border-radius: 0;
  clip-path: polygon(4% 0, 100% 0, 100% 100%, 0 92%);
}

.about-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.about-list li {
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-weight: 500;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.values-grid article {
  border-top: 3px solid var(--accent);
  padding-top: 1rem;
}

.values-grid p {
  margin: 0;
}

.legal-hero {
  max-width: 40rem;
}

.legal-updated {
  font-size: 0.88rem;
  color: var(--ink-muted);
}

.legal-content {
  display: grid;
  gap: 1.5rem;
  max-width: 46rem;
}

.legal-content article h2 {
  font-size: 1.25rem;
}

.legal-content article p {
  margin-bottom: 0.65rem;
}

.legal-content article p:last-child {
  margin-bottom: 0;
}

.legal-content ul {
  margin: 0.5rem 0 0;
  padding-left: 1.1rem;
}

.legal-content li {
  margin-bottom: 0.35rem;
  color: var(--ink-muted);
}

.legal-content a {
  color: var(--accent);
  text-decoration: underline;
}

.form-confirmation {
  margin: 0;
  opacity: 0;
  font-size: 0.9rem;
  color: var(--accent-deep);
  font-weight: 600;
}

.form-confirmation.visible {
  opacity: 1;
}

.form-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: rgba(10, 22, 36, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 200;
  padding: 1rem;
}

.form-modal.visible {
  opacity: 1;
  pointer-events: auto;
}

.form-modal-card {
  width: min(420px, 100%);
  background: #fff;
  padding: 1.75rem;
  border-radius: var(--radius);
  text-align: center;
  animation: riseIn 0.35s ease both;
}

.form-modal-card h3 {
  margin-bottom: 0.5rem;
}

.form-modal-message {
  margin-bottom: 0.35rem;
  color: var(--ink);
  font-weight: 600;
}

.form-modal-note {
  margin: 0;
  font-size: 0.9rem;
}

@keyframes riseIn {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes heroZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

@media (max-width: 980px) {
  .split-grid,
  .sector-layout,
  .contact-grid,
  .footer-grid,
  .subpage-hero-grid,
  .about-grid,
  .story-grid,
  .why-grid,
  .quote-grid,
  .cta-grid,
  .values-grid,
  .help-grid,
  .sitemap-list {
    grid-template-columns: 1fr;
  }

  .split.alt .split-grid > img {
    order: 0;
  }

  .ops-card {
    grid-template-columns: 1fr;
  }

  .ops-card img {
    height: 180px;
  }

  .cta-grid article:last-child {
    border-left: 0;
  }

  .sector-highlight {
    position: static;
  }

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

@media (max-width: 760px) {
  .main-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    padding: 0.75rem 1.25rem 1rem;
  }

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

  .main-nav a {
    padding: 0.7rem 0;
    border-bottom: 1px solid var(--line);
  }

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

  .hero {
    min-height: 78vh;
  }

  .hero-copy {
    padding: 4rem 0 2.5rem;
  }

  .split,
  .sectors,
  .operations,
  .why,
  .testimonials,
  .faq,
  .contact {
    padding: 3.25rem 0;
  }

  .form-modal-card {
    padding: 1.35rem;
  }
}
