:root {
  --blue: #38b6ff;
  --blue-deep: #1f8bc9;
  --black: #0a0a0a;
  --navy: #0f1f3d;
  --slate: #123044;
  --white: #ffffff;
  --paper: #f2f4f6;
  --warm: #faf8f4;
  --line: #e5e9ee;
  --ink: #152230;
  --ink-2: #4a5b6b;
  --ink-3: #6d7c8c;
  --amber: #f5a623;
  --green: #1f805a;
  --red: #b53d3d;
  --shadow-sm: 0 10px 28px rgba(15, 31, 61, 0.08);
  --shadow-lg: 0 30px 80px rgba(0, 0, 0, 0.18);
  --radius-sm: 10px;
  --radius: 18px;
  --radius-lg: 28px;
  --max: 1180px;
  --font-display: "Oswald", "Arial Narrow", sans-serif;
  --font-body: "IBM Plex Sans", Arial, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 4px;
}

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

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

h1,
h2,
h3,
h4 {
  color: var(--navy);
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.05;
  text-wrap: balance;
}

h1 {
  font-size: clamp(2.75rem, 5.5vw, 5.5rem);
  letter-spacing: -0.035em;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2rem, 3.6vw, 3.5rem);
  letter-spacing: -0.025em;
  text-transform: uppercase;
}

h3 {
  font-size: clamp(1.45rem, 2.7vw, 2.15rem);
}

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

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--blue);
  border-radius: 8px;
  font-weight: 700;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid var(--amber);
  outline-offset: 4px;
}

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

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 3px;
  background: currentColor;
  content: "";
}

.eyebrow-light {
  color: var(--blue);
}

.lede {
  max-width: 760px;
  color: var(--ink-2);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  line-height: 1.55;
}

.micro {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 0.77rem;
  letter-spacing: 0.02em;
}

.text-blue {
  color: var(--blue);
}

.text-amber {
  color: var(--amber);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(229, 233, 238, 0.85);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(14px);
}

.availability {
  padding: 7px 20px;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-align: center;
  letter-spacing: 0.04em;
}

.availability strong {
  color: var(--blue);
}

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

.logo {
  flex: 0 0 auto;
}

.logo img {
  width: 150px;
  height: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 26px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-links a {
  position: relative;
  color: var(--navy);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}

.nav-links a:not(.btn)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 2px;
  background: var(--blue);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms ease;
}

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

.menu-toggle {
  display: none;
  width: 46px;
  height: 42px;
  padding: 9px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 9px;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  height: 2px;
  margin: 5px 0;
  background: var(--navy);
}

.btn {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 13px 20px;
  border: 2px solid transparent;
  border-radius: 8px;
  font-family: var(--font-display);
  font-size: 0.98rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.btn-primary {
  color: var(--black);
  background: var(--blue);
}

.btn-primary:hover {
  background: #64c6ff;
}

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

.btn-dark:hover {
  background: var(--slate);
}

.btn-outline {
  color: var(--navy);
  border-color: var(--navy);
  background: transparent;
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}

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

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(56, 182, 255, 0.23) 1.3px, transparent 1.3px);
  background-size: 38px 38px;
  content: "";
  mask-image: linear-gradient(to right, #000 10%, transparent 72%);
}

.hero-grid {
  position: relative;
  display: grid;
  min-height: 710px;
  align-items: center;
  grid-template-columns: minmax(0, 1.2fr) minmax(330px, 0.8fr);
  gap: 70px;
  padding-block: 64px;
}

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

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

.hero h1 {
  max-width: 850px;
  margin-bottom: 25px;
}

.hero .lede {
  max-width: 760px;
  color: #c7d4df;
}

.hero .micro {
  margin-top: 16px;
  color: #9db1c2;
}

.hero-visual {
  position: relative;
  min-height: 520px;
  align-self: end;
}

.hero-visual::before,
.hero-visual::after {
  position: absolute;
  z-index: 0;
  right: 20px;
  bottom: 76px;
  background: var(--blue);
  content: "";
}

.hero-visual::before {
  width: 170px;
  height: 56px;
}

.hero-visual::after {
  right: 77px;
  bottom: 19px;
  width: 56px;
  height: 170px;
}

.hero-portrait {
  position: absolute;
  z-index: 1;
  right: -40px;
  bottom: 0;
  width: min(460px, 100%);
  max-height: 610px;
  object-fit: contain;
  object-position: bottom;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.38));
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 22px;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(56, 182, 255, 0.55);
  border-radius: 50%;
  color: var(--blue);
  text-decoration: none;
  transform: translateX(-50%);
  animation: scroll-cue-bounce 2.2s ease-in-out infinite;
}

.scroll-cue svg {
  width: 16px;
  height: 16px;
}

@keyframes scroll-cue-bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(7px);
  }
}

.page-hero {
  position: relative;
  padding: 66px 0 58px;
  color: var(--white);
  background: var(--black);
}

.page-hero h1 {
  max-width: 930px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(2.6rem, 5vw, 5rem);
}

.page-hero .lede {
  color: #c7d4df;
}

.page-hero-visual {
  position: relative;
}

.page-hero-photo {
  overflow: hidden;
  min-height: 390px;
  border: 1px solid rgba(56, 182, 255, 0.4);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.page-hero-photo img {
  width: 100%;
  height: 100%;
  min-height: 390px;
  object-fit: cover;
}

.proof-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.proof-strip-inner {
  display: grid;
  align-items: center;
  grid-template-columns: 0.65fr 2.35fr;
  gap: 30px;
  padding-block: 24px;
}

.proof-strip-label {
  color: var(--ink-3);
  font-family: var(--font-mono);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.company-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px 28px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section {
  padding: 105px 0;
}

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

.section-grey {
  background: var(--paper);
}

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

.dark {
  color: #c7d4df;
  background: var(--black);
}

.section-head {
  display: grid;
  align-items: end;
  grid-template-columns: minmax(0, 1.25fr) minmax(260px, 0.75fr);
  gap: 50px;
  margin-bottom: 52px;
}

.section-head h2 {
  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;
  padding: 30px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.card-dark {
  border-color: #26323d;
  color: #c7d4df;
  background: #121212;
  box-shadow: none;
}

.card-dark h3 {
  color: var(--white);
}

.card-accent {
  border-top: 5px solid var(--blue);
}

.card-number {
  display: block;
  margin-bottom: 16px;
  color: var(--blue-deep);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
}

.card h3 {
  margin-bottom: 14px;
}

.card p,
.card li {
  color: var(--ink-2);
}

.card-dark p,
.card-dark li {
  color: #b8c7d2;
}

.clean-list,
.check-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.clean-list li,
.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
}

.clean-list li::before {
  position: absolute;
  top: 0.74em;
  left: 0;
  width: 8px;
  height: 2px;
  background: var(--blue-deep);
  content: "";
}

.check-list li::before {
  position: absolute;
  top: 0.12em;
  left: 0;
  color: var(--green);
  content: "✓";
  font-weight: 700;
}

.signal-card {
  display: grid;
  grid-template-columns: 60px 1fr;
  gap: 18px;
  align-items: start;
}

.signal-icon {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  color: var(--black);
  background: var(--blue);
  border-radius: 50%;
  font-family: var(--font-mono);
  font-weight: 700;
}

.quote-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  justify-content: space-between;
  padding: 34px;
  border-left: 5px solid var(--blue);
  color: var(--white);
  background: var(--slate);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.quote-card blockquote {
  margin-bottom: 30px;
  font-size: 1.1rem;
  line-height: 1.55;
}

.quote-card cite {
  color: #c4d3de;
  font-style: normal;
}

.quote-card cite strong {
  display: block;
  color: var(--blue);
}

.proof-feature {
  display: grid;
  overflow: hidden;
  grid-template-columns: 0.95fr 1.05fr;
  background: var(--navy);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.proof-feature-image {
  min-height: 500px;
}

.proof-feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.proof-feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(38px, 6vw, 76px);
  color: #c7d4df;
}

.proof-feature-copy h2,
.proof-feature-copy h3 {
  color: var(--white);
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 30px;
}

.stat {
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-sm);
}

.stat strong {
  display: block;
  color: var(--blue);
  font-family: var(--font-display);
  font-size: 2rem;
  line-height: 1;
}

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

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

.offer {
  display: flex;
  flex-direction: column;
  padding: 36px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.offer-featured {
  border: 2px solid var(--blue);
  background: #f6fcff;
}

.offer-label {
  align-self: flex-start;
  margin-bottom: 18px;
  padding: 7px 10px;
  color: var(--navy);
  background: var(--blue);
  border-radius: 6px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 22px;
  color: var(--navy);
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  line-height: 1;
}

.offer .btn {
  margin-top: auto;
}

.comparison {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.comparison table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}

.comparison th,
.comparison td {
  padding: 18px 20px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

.comparison th {
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

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

.process {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  overflow: hidden;
  background: #25313b;
  border: 1px solid #25313b;
  border-radius: var(--radius-lg);
}

.process-step {
  padding: 34px;
  color: #c7d4df;
  background: var(--black);
}

.process-step strong {
  display: block;
  margin-bottom: 12px;
  color: var(--blue);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.process-step h3 {
  color: var(--white);
}

.case-card {
  overflow: hidden;
  padding: 0;
}

.case-card-top {
  min-height: 170px;
  padding: 28px;
  color: var(--white);
  background: var(--navy);
}

.case-card-top h3 {
  color: var(--white);
}

.case-card-body {
  padding: 28px;
}

.case-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  padding: 5px 9px;
  color: var(--navy);
  background: #dff3ff;
  border-radius: 99px;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
}

.insight-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-height: 100%;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.insight-visual {
  display: grid;
  min-height: 180px;
  padding: 24px;
  place-items: end start;
  color: var(--white);
  background: var(--navy);
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.1;
  text-transform: uppercase;
}

.insight-visual.blue {
  color: var(--black);
  background: var(--blue);
}

.insight-visual.amber {
  color: var(--navy);
  background: var(--amber);
}

.insight-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 25px;
}

.insight-body a {
  margin-top: auto;
  color: var(--blue-deep);
  font-weight: 700;
}

.video-shell {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border-radius: var(--radius-lg);
}

.video-shell::before {
  width: 0;
  height: 0;
  border-top: 24px solid transparent;
  border-bottom: 24px solid transparent;
  border-left: 38px solid var(--blue);
  content: "";
}

.video-shell span {
  position: absolute;
  right: 26px;
  bottom: 22px;
  left: 26px;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  padding: 22px 24px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-sm);
}

.faq-list summary {
  color: var(--navy);
  cursor: pointer;
  font-weight: 700;
}

.faq-list details p {
  margin: 16px 0 0;
  color: var(--ink-2);
}

.cta-band {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
  color: var(--white);
  background: var(--navy);
}

.cta-band::before,
.cta-band::after {
  position: absolute;
  background: var(--blue);
  content: "";
  opacity: 0.16;
}

.cta-band::before {
  top: -35px;
  right: 90px;
  width: 210px;
  height: 68px;
}

.cta-band::after {
  top: -105px;
  right: 161px;
  width: 68px;
  height: 210px;
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 44px;
}

.cta-inner h2 {
  max-width: 740px;
  margin-bottom: 12px;
  color: var(--white);
}

.cta-inner p {
  max-width: 680px;
  margin-bottom: 0;
  color: #c7d4df;
}

.site-footer {
  padding: 62px 0 30px;
  color: #aebdc8;
  background: var(--black);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.72fr 0.72fr 0.72fr;
  gap: 40px;
}

.footer-logo {
  width: 175px;
  height: auto;
  margin-bottom: 18px;
}

.footer-heading {
  margin-bottom: 14px;
  color: var(--white);
  font-family: var(--font-display);
  font-weight: 600;
  text-transform: uppercase;
}

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

.footer-links li {
  margin: 8px 0;
}

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

.proof-strip-block {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
  margin-top: 32px;
}

.proof-block {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.proof-block p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.5;
  margin: 0 0 12px;
}

.proof-block a {
  font-weight: 700;
  color: var(--blue);
  text-decoration: none;
  font-size: 0.88rem;
}

.proof-block a:hover {
  text-decoration: underline;
}

.resource-links-band {
  padding: 36px 0;
  border-top: 1px solid var(--line);
}

.resource-links-inner {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
}

.resource-links-inner p {
  margin: 0;
  color: var(--ink-2);
  font-size: 0.92rem;
}

.resource-links-inner .links {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.resource-links-inner .links a {
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  font-size: 0.92rem;
}

.resource-links-inner .links a:hover {
  color: var(--blue);
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 45px;
  padding-top: 24px;
  border-top: 1px solid #2a2a2a;
  font-family: var(--font-mono);
  font-size: 0.7rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 42px;
}

.contact-panel {
  padding: 38px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.contact-options {
  display: grid;
  gap: 16px;
}

.contact-option {
  display: block;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  text-decoration: none;
}

.contact-option:hover {
  border-color: var(--blue);
  background: #f4fbff;
}

.contact-option strong {
  display: block;
  color: var(--navy);
}

.cal-embed-wrap {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 16px;
}

.cal-embed-wrap #my-cal-inline {
  min-height: 600px;
}

.fit-box {
  padding: 28px;
  border-left: 5px solid var(--amber);
  background: #fff8e9;
  border-radius: 0 var(--radius) var(--radius) 0;
}

.sticky-mobile-cta {
  display: none;
}

@media (max-width: 980px) {
  .nav > .btn {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    z-index: 110;
    top: 111px;
    right: 0;
    bottom: 0;
    left: 0;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    padding: 30px 24px;
    background: var(--white);
  }

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

  .nav-links li {
    border-bottom: 1px solid var(--line);
  }

  .nav-links a {
    display: block;
    padding: 17px 8px;
    font-size: 1.05rem;
  }

  .hero-grid {
    min-height: auto;
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 78px 0 0;
  }

  .hero-visual {
    min-height: 460px;
  }

  .hero-portrait {
    right: 50%;
    transform: translateX(50%);
  }

  .proof-feature,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .proof-feature-image {
    min-height: 360px;
  }

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

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

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

@media (max-width: 760px) {
  body {
    font-size: 16px;
  }

  .availability {
    padding-inline: 12px;
    font-size: 0.64rem;
  }

  .nav {
    min-height: 68px;
  }

  .nav-links {
    top: 103px;
  }

  .logo img {
    width: 132px;
  }

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

  .section-head,
  .grid-2,
  .grid-3,
  .grid-4,
  .offer-grid,
  .process,
  .proof-strip-inner {
    grid-template-columns: 1fr;
  }

  .section-head {
    gap: 22px;
    margin-bottom: 36px;
  }

  .hero-grid {
    padding-top: 62px;
  }

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

  .hero-visual {
    min-height: 380px;
  }

  .hero-portrait {
    width: 340px;
    max-height: 420px;
  }

  .company-list {
    justify-content: flex-start;
    gap: 10px 22px;
  }

  .proof-strip-label {
    margin-bottom: -15px;
  }

  .stat-row {
    grid-template-columns: 1fr;
  }

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

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

  .footer-brand {
    grid-column: auto;
  }

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

  .sticky-mobile-cta {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 12px;
    left: 12px;
    display: flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    color: var(--black);
    background: var(--blue);
    border-radius: 8px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    font-family: var(--font-display);
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
  }

  .site-footer {
    padding-bottom: 100px;
  }
}

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

  .scroll-cue {
    animation: none;
  }
}

@media print {
  .site-header,
  .site-footer,
  .sticky-mobile-cta,
  .button-row {
    display: none !important;
  }

  .section,
  .page-hero {
    padding: 35px 0;
  }

  .page-hero,
  .hero,
  .dark,
  .cta-band {
    color: var(--ink);
    background: var(--white);
  }
}
