@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/POPPINS-REGULAR.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/POPPINS-MEDIUM.TTF") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/POPPINS-SEMIBOLD.TTF") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/POPPINS-BOLD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Poppins";
  src: url("../assets/fonts/POPPINS-EXTRABOLD.TTF") format("truetype");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GaramondCustom";
  src: url("../assets/fonts/GARA.TTF") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GaramondCustom";
  src: url("../assets/fonts/GARABD.TTF") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "GaramondCustom";
  src: url("../assets/fonts/GARAIT.TTF") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

:root {
  --blue: #0089d7;
  --cyan: #00ffff;
  --white: #ffffff;
  --black: #181818;
  --ink: #202020;
  --muted: #686868;
  --line: #dce5ea;
  --soft: #f4f8fb;
  --dark-line: rgba(255, 255, 255, 0.14);
  --shadow: 0 22px 70px rgba(24, 24, 24, 0.16);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.modal-open {
  overflow: hidden;
}

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

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

button,
input {
  font: inherit;
}

button {
  cursor: pointer;
}

::selection {
  background: var(--cyan);
  color: var(--black);
}

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

.narrow {
  width: min(calc(100% - 40px), 880px);
}

.section {
  padding: 96px 0;
}

.section-dark {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(0, 137, 215, 0.18), rgba(0, 255, 255, 0.05) 42%, transparent 72%),
    var(--black);
  color: var(--white);
}

.section-dark::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.12) 1px, transparent 1px);
  background-size: 44px 44px;
}

.section-dark > * {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  min-height: 74px;
  padding: 14px 32px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(24, 24, 24, 0.88);
  color: var(--white);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled {
  border-bottom-color: rgba(0, 255, 255, 0.22);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: min(260px, 46vw);
}

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

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 0.91rem;
  color: rgba(255, 255, 255, 0.76);
}

.site-nav a {
  transition: color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--cyan);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  white-space: normal;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

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

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

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--white);
  border-color: var(--cyan);
}

.btn-secondary {
  background: transparent;
  color: currentColor;
  border-color: rgba(0, 255, 255, 0.55);
}

.btn-secondary:hover,
.btn-secondary:focus-visible {
  background: rgba(0, 255, 255, 0.12);
  border-color: var(--cyan);
}

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

.btn-small {
  min-height: 42px;
  padding: 10px 15px;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.hero {
  padding: 94px 0 56px;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(110deg, rgba(0, 137, 215, 0.28), transparent 38%, rgba(0, 255, 255, 0.12)),
    linear-gradient(0deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: auto, 72px 72px, 72px 72px;
  opacity: 0.85;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 1040px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.3;
  text-transform: uppercase;
}

.section-dark .eyebrow,
.hero .eyebrow {
  color: var(--cyan);
}

.brand-kicker {
  margin: 0 0 18px;
  font-family: "GaramondCustom", Georgia, serif;
  font-size: 2rem;
  font-style: italic;
  color: rgba(255, 255, 255, 0.86);
}

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

h1,
h2,
h3 {
  max-width: 100%;
  line-height: 1.08;
  letter-spacing: 0;
  overflow-wrap: break-word;
}

h1 {
  max-width: 1000px;
  margin-bottom: 26px;
  font-size: 4.35rem;
  font-weight: 800;
}

h2 {
  margin-bottom: 24px;
  font-size: 3rem;
  font-weight: 800;
}

h3 {
  margin-bottom: 14px;
  font-size: 1.32rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 860px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.18rem;
}

.reassurance {
  margin: 18px 0 24px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
}

.quick-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  max-width: 1000px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.quick-points li {
  min-height: 84px;
  padding: 18px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.video-band {
  padding: 72px 0;
  background: var(--white);
}

.video-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.7fr) minmax(320px, 1.3fr);
  gap: 34px;
  align-items: center;
}

.video-layout h2 {
  margin: 0;
  font-size: 2.2rem;
}

.vimeo-frame {
  overflow: hidden;
  border: 1px solid rgba(0, 137, 215, 0.2);
  border-radius: var(--radius);
  background: var(--black);
  box-shadow: var(--shadow);
}

.cookie-embed-placeholder {
  display: grid;
  place-content: center;
  gap: 14px;
  min-height: 420px;
  padding: 28px;
  background:
    linear-gradient(135deg, rgba(0, 137, 215, 0.22), rgba(0, 255, 255, 0.07)),
    var(--black);
  color: var(--white);
  text-align: center;
}

.cookie-embed-placeholder p {
  max-width: 520px;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 600;
}

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

.rich-copy p {
  margin-bottom: 18px;
}

.rich-copy ul,
.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.rich-copy li,
.check-list li {
  position: relative;
  padding-left: 28px;
}

.rich-copy li::before,
.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 12px;
  height: 2px;
  background: var(--blue);
}

.section-dark .rich-copy {
  color: rgba(255, 255, 255, 0.72);
}

.statement {
  color: var(--black);
  font-weight: 700;
}

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

.serif-callout {
  font-family: "GaramondCustom", Georgia, serif;
  font-size: 2.25rem;
  font-style: italic;
  color: var(--white);
}

.split-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  gap: 64px;
  align-items: start;
}

.feature-grid,
.target-grid,
.final-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.feature-grid {
  margin-top: 48px;
}

.feature-card,
.target-card,
.final-box {
  border-radius: var(--radius);
}

.feature-card {
  min-height: 260px;
  padding: 26px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.06);
}

.feature-number,
.process-step span {
  display: inline-block;
  margin-bottom: 26px;
  color: var(--cyan);
  font-weight: 800;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.72);
}

.section-cta {
  margin-top: 34px;
}

.section-heading {
  max-width: 860px;
}

.section-heading > p:last-child {
  color: var(--muted);
  font-size: 1.1rem;
}

.section-dark .section-heading > p:last-child {
  color: rgba(255, 255, 255, 0.74);
}

.target-grid {
  align-items: stretch;
  margin-top: 42px;
}

.target-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 28px;
  border: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 16px 42px rgba(24, 24, 24, 0.07);
}

.target-card p {
  color: var(--muted);
}

.target-card .check-list {
  margin-top: auto;
}

.card-label {
  margin-bottom: 18px;
  color: var(--blue);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.card-emphasis {
  color: var(--black) !important;
  font-weight: 700;
}

.soft-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 26px;
  border: 1px solid rgba(0, 137, 215, 0.24);
  border-radius: var(--radius);
  background: var(--soft);
}

.soft-cta p {
  margin: 0;
  font-weight: 700;
}

.process {
  background: var(--soft);
}

.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  margin-top: 46px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--line);
}

.process-step {
  min-height: 340px;
  padding: 28px;
  background: var(--white);
}

.process-step span {
  color: var(--blue);
}

.process-step p {
  color: var(--muted);
}

.timing-box {
  margin-top: 26px;
  padding: 24px 28px;
  border-left: 5px solid var(--cyan);
  background: var(--black);
  color: var(--white);
}

.timing-box p {
  margin: 0;
  font-size: 1.15rem;
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 44px;
  border: 1px solid var(--dark-line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
}

.compare-table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

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

.compare-table thead th {
  color: var(--cyan);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.compare-table tbody th {
  width: 31%;
  color: var(--white);
  font-weight: 700;
}

.compare-table td {
  color: rgba(255, 255, 255, 0.76);
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
  border-bottom: 0;
}

.lead-magnet {
  background:
    linear-gradient(135deg, rgba(0, 137, 215, 0.1), transparent 40%),
    var(--soft);
}

.lead-box {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) minmax(320px, 430px);
  gap: 46px;
  align-items: start;
  padding: 42px;
  border: 1px solid rgba(0, 137, 215, 0.24);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.lead-box > div > p {
  color: var(--muted);
}

.lead-form {
  display: grid;
  gap: 14px;
}

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.lead-form h3 {
  margin-bottom: 4px;
}

.lead-form label:not(.checkbox-row) {
  font-size: 0.86rem;
  font-weight: 700;
}

.lead-form input[type="email"] {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
  outline: none;
  color: var(--black);
}

.lead-form input[type="email"]:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(0, 137, 215, 0.13);
}

.checkbox-row {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.9rem;
}

.checkbox-row input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--blue);
}

.form-note,
.form-status {
  margin: 0;
  color: var(--muted);
  font-size: 0.86rem;
}

.form-status {
  min-height: 22px;
  color: var(--blue);
  font-weight: 700;
}

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

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

summary {
  min-height: 66px;
  padding: 20px 58px 20px 22px;
  list-style: none;
  font-weight: 800;
  position: relative;
  cursor: pointer;
}

summary::-webkit-details-marker {
  display: none;
}

summary::after {
  content: "+";
  position: absolute;
  top: 18px;
  right: 22px;
  color: var(--blue);
  font-size: 1.35rem;
  line-height: 1;
}

details[open] summary::after {
  content: "-";
}

details p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--muted);
}

.final-grid {
  grid-template-columns: 1.2fr 0.8fr;
  margin-top: 40px;
}

.final-box {
  min-height: 310px;
  padding: 30px;
  border: 1px solid var(--dark-line);
  background: rgba(255, 255, 255, 0.06);
}

.final-box p {
  color: rgba(255, 255, 255, 0.74);
}

.final-box-primary {
  background: var(--cyan);
  color: var(--black);
}

.final-box-primary .card-label,
.final-box-primary p {
  color: var(--black);
}

.contacts {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) minmax(280px, 0.8fr);
  gap: 44px;
  align-items: start;
}

.contact-grid p {
  max-width: 720px;
  color: var(--muted);
}

.contact-list {
  display: grid;
  gap: 14px;
}

.contact-item {
  padding: 22px;
  border: 1px solid rgba(0, 137, 215, 0.24);
  border-radius: var(--radius);
  background: var(--soft);
}

.contact-item span {
  display: block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-item p {
  margin: 0;
  color: var(--black);
  font-size: 1.18rem;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.legal-hero {
  padding: 88px 0 70px;
}

.legal-hero h1 {
  max-width: 850px;
  font-size: 3.6rem;
}

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

.legal-content {
  display: grid;
  gap: 22px;
  max-width: 920px;
}

.legal-card {
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.legal-card h2 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.legal-card p,
.legal-card li {
  color: var(--muted);
}

.legal-card ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding-left: 20px;
}

.legal-card strong {
  color: var(--black);
}

.legal-note {
  padding: 20px;
  border-left: 4px solid var(--cyan);
  background: var(--soft);
  color: var(--muted);
}

.site-footer {
  padding: 56px 0 28px;
  background: var(--black);
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 48px;
}

.footer-brand {
  margin-bottom: 16px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.7);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(120px, 1fr));
  gap: 10px 22px;
  font-size: 0.92rem;
}

.footer-links a,
.footer-social a {
  color: rgba(255, 255, 255, 0.74);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--cyan);
}

.footer-social p {
  margin-bottom: 8px;
  color: var(--white);
  font-weight: 800;
}

.copyright {
  width: min(calc(100% - 40px), var(--container));
  margin: 34px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.88rem;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  place-items: center;
  padding: 24px;
}

.modal.is-open {
  display: grid;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(24, 24, 24, 0.72);
  backdrop-filter: blur(10px);
}

.modal-panel {
  position: relative;
  width: min(100%, 560px);
  max-height: min(760px, calc(100svh - 48px));
  overflow: auto;
  padding: 30px;
  border: 1px solid rgba(0, 255, 255, 0.28);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: var(--shadow);
}

.calendly-panel {
  width: min(100%, 860px);
}

.calendly-eyebrow {
  font-size: calc(0.78rem + 5px);
}

.modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  color: var(--black);
  font-size: 1.4rem;
  line-height: 1;
}

.calendly-frame {
  overflow: hidden;
  min-height: 640px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--soft);
}

.calendly-frame iframe {
  width: 100%;
  height: 640px;
  border: 0;
}

.calendly-frame .btn {
  margin: 28px;
}

.calendly-cookie-gate {
  display: grid;
  place-content: center;
  gap: 14px;
  min-height: 640px;
  padding: 32px;
  text-align: center;
}

.calendly-cookie-gate p {
  max-width: 560px;
  margin: 0 auto 6px;
  color: var(--muted);
}

.calendly-cookie-gate .btn {
  width: min(100%, 360px);
  margin: 0 auto;
}

.footer-cookie-button {
  width: fit-content;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.74);
  font: inherit;
  font-size: 0.92rem;
  text-align: left;
}

.footer-cookie-button:hover,
.footer-cookie-button:focus-visible {
  color: var(--cyan);
}

.cookie-consent {
  position: fixed;
  inset: auto 24px 24px auto;
  z-index: 120;
  display: none;
  width: min(620px, calc(100vw - 32px));
}

.cookie-consent.is-open {
  display: block;
}

.cookie-card {
  padding: 24px;
  border: 1px solid rgba(0, 137, 215, 0.18);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 24px 80px rgba(24, 24, 24, 0.28);
}

.cookie-card h2 {
  margin-bottom: 12px;
  font-size: 1.45rem;
}

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

.cookie-eyebrow {
  margin-bottom: 8px;
  color: var(--blue) !important;
  font-size: 0.76rem !important;
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.cookie-actions .btn {
  min-height: 44px;
  padding: 11px 15px;
  font-size: 0.9rem;
}

.cookie-outline {
  color: var(--black);
}

.cookie-card .btn-primary:focus-visible {
  background: var(--cyan);
  border-color: var(--black);
  outline: 3px solid rgba(0, 137, 215, 0.22);
  outline-offset: 2px;
}

.cookie-legal-link {
  display: inline-block;
  margin-top: 14px;
  color: var(--blue);
  font-size: 0.88rem;
  font-weight: 700;
}

.cookie-category {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.cookie-category strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-category p {
  margin: 0;
}

.cookie-switch {
  position: relative;
  display: inline-flex;
  width: 54px;
  height: 30px;
}

.cookie-switch input {
  position: absolute;
  opacity: 0;
}

.cookie-switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  background: #ccd6dc;
  transition: background 180ms ease;
}

.cookie-switch span::before {
  content: "";
  position: absolute;
  top: 4px;
  left: 4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 2px 8px rgba(24, 24, 24, 0.18);
  transition: transform 180ms ease;
}

.cookie-switch input:checked + span {
  background: var(--blue);
}

.cookie-switch input:checked + span::before {
  transform: translateX(24px);
}

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

  h1 {
    font-size: 3.2rem;
  }

  h2 {
    font-size: 2.35rem;
  }

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

  .video-layout,
  .split-section,
  .lead-box,
  .contact-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

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

  .container,
  .narrow,
  .copyright {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    min-height: 66px;
    padding: 12px 14px;
  }

  .brand {
    width: min(218px, 68vw);
  }

  .site-header .btn {
    display: none;
  }

  .section {
    padding: 66px 0;
  }

  .hero {
    padding: 72px 0 42px;
  }

  h1 {
    font-size: 2.05rem;
  }

  h2 {
    font-size: 1.72rem;
  }

  h3 {
    font-size: 1.15rem;
  }

  .brand-kicker {
    font-size: 1.52rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .cta-row,
  .soft-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .quick-points,
  .feature-grid,
  .target-grid,
  .process-list,
  .final-grid {
    grid-template-columns: 1fr;
  }

  .quick-points li {
    min-height: 0;
  }

  .video-band {
    padding: 52px 0;
  }

  .video-layout h2 {
    font-size: 1.5rem;
  }

  .legal-hero {
    padding: 64px 0 54px;
  }

  .legal-hero h1 {
    font-size: 2.15rem;
  }

  .legal-card {
    padding: 22px;
  }

  .lead-box {
    padding: 24px;
  }

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

  .modal {
    padding: 14px;
  }

  .modal-panel {
    padding: 24px;
  }

  .calendly-frame,
  .calendly-frame iframe {
    min-height: 560px;
    height: 560px;
  }

  .calendly-cookie-gate {
    min-height: 560px;
  }

  .cookie-consent {
    inset: auto 14px 14px;
    width: auto;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .cookie-actions .btn,
  .cookie-embed-placeholder .btn {
    width: 100%;
  }
}

@media (max-width: 520px) {
  .container,
  .narrow,
  .copyright {
    width: calc(100vw - 28px);
    max-width: 362px;
    margin-left: 14px;
    margin-right: 14px;
  }

  h1 {
    font-size: 1.78rem;
  }

  h2 {
    font-size: 1.48rem;
  }

  .video-layout h2 {
    font-size: 1.34rem;
  }

  .hero-copy {
    font-size: 0.96rem;
  }

  .btn {
    padding-inline: 14px;
  }
}
