:root {
  color-scheme: light;
  --ink: #0d1218;
  --ink-soft: #1a222b;
  --paper: #ffffff;
  --soft: #f3f5f6;
  --line: #dbe1e5;
  --muted: #5b6670;
  --orange: #ff5c26;
  --orange-dark: #d94313;
  --yellow: #ffd349;
  --green: #12936a;
  --blue: #246bfe;
  --shadow: 0 22px 54px rgba(13, 18, 24, 0.15);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
}

body:has(dialog[open]) {
  overflow: hidden;
}

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

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

button,
input,
select {
  font: inherit;
}

.form-honeypot {
  position: absolute !important;
  left: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

button:disabled {
  cursor: wait;
  opacity: 0.7;
}

svg {
  width: 19px;
  height: 19px;
  flex: 0 0 auto;
  stroke-width: 2.35;
}

h1,
h2,
h3,
p,
summary,
span {
  overflow-wrap: anywhere;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 70px;
  padding: 11px max(24px, calc((100vw - 1200px) / 2));
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 10px;
  font-size: 1.04rem;
  font-weight: 950;
  white-space: nowrap;
}

.brand > span:last-child {
  overflow-wrap: normal;
}

.brand-mark {
  display: inline-grid;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  place-items: center;
  color: #ffffff;
  background: var(--ink);
  border: 3px solid var(--orange);
  box-shadow: 4px 4px 0 var(--yellow);
}

.header-nav,
.header-menu,
.hero-actions {
  display: flex;
  align-items: center;
}

.header-nav {
  gap: 24px;
}

.header-menu {
  gap: 22px;
}

.header-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 12px;
  color: var(--ink);
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 6px;
  cursor: pointer;
}

.header-link {
  color: #39434c;
  font-size: 0.9rem;
  font-weight: 850;
  transition: color 150ms ease;
}

.header-link:hover,
.header-link[aria-current="page"] {
  color: var(--orange-dark);
}

.header-cta,
.button,
.text-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: 920;
}

.header-cta {
  min-height: 44px;
  padding: 0 15px;
  color: #ffffff;
  background: var(--ink);
  border-radius: 6px;
}

.button {
  min-height: 54px;
  padding: 0 20px;
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

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

.button-primary {
  color: #ffffff;
  background: var(--orange);
  box-shadow: 0 15px 30px rgba(255, 92, 38, 0.25);
}

.button-primary:hover {
  background: var(--orange-dark);
}

.button-dark {
  color: #ffffff;
  background: var(--ink);
}

.button-dark:hover {
  background: #2a343e;
}

.text-link {
  width: fit-content;
  padding: 0;
  border-bottom: 2px solid currentColor;
}

.text-link-light {
  color: #ffffff;
}

.eyebrow {
  margin: 0 0 13px;
  color: var(--orange-dark);
  font-size: 0.77rem;
  font-weight: 950;
  text-transform: uppercase;
}

.eyebrow-warm {
  color: var(--yellow);
}

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

.hero {
  position: relative;
  display: grid;
  min-height: min(680px, calc(100svh - 102px));
  color: #ffffff;
  background: var(--ink) url("assets/website-laptop-hero-1600.webp") center 55% / cover no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 13, 18, 0.92);
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.82fr);
  gap: 54px;
  align-items: center;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 38px 0;
}

.hero-copy {
  max-width: 690px;
}

.hero h1 {
  margin: 0;
  font-size: 3.7rem;
  line-height: 0.98;
  font-weight: 950;
  text-shadow: 0 3px 24px rgba(0, 0, 0, 0.62);
}

.hero-summary {
  max-width: 640px;
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 1.08rem;
  line-height: 1.55;
}

.hero-price {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  align-items: center;
  width: fit-content;
  margin-top: 22px;
  padding: 11px 14px;
  background: rgba(8, 13, 18, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 5px;
}

.hero-price span {
  display: inline-flex;
  gap: 5px;
  align-items: baseline;
  font-weight: 850;
}

.hero-price strong {
  color: var(--yellow);
  font-size: 1.38rem;
}

.hero-price > i {
  width: 1px;
  height: 25px;
  background: rgba(255, 255, 255, 0.25);
}

.hero-price small {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 22px;
}

.hero-note {
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
  font-weight: 720;
}

.hero-booking-card {
  display: block;
  width: 100%;
  padding: 0;
  scroll-margin-top: 88px;
  overflow: hidden;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(255, 255, 255, 0.58);
  border-top: 4px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.hero-booking-body {
  display: grid;
  gap: 13px;
  padding: 22px 20px 20px;
}

.hero-booking-heading {
  display: grid;
  gap: 3px;
}

.hero-booking-heading span {
  font-size: 1.18rem;
  font-weight: 950;
  line-height: 1.15;
}

.hero-booking-heading small {
  color: var(--muted);
  font-size: 0.76rem;
  line-height: 1.4;
}

.hero-booking-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.hero-booking-fields label {
  display: grid;
  gap: 5px;
  min-width: 0;
  color: #333d45;
  font-size: 0.74rem;
  font-weight: 850;
}

.hero-booking-fields input,
.hero-booking-fields select {
  width: 100%;
  min-width: 0;
  min-height: 43px;
  padding: 0 10px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c8d0d5;
  border-radius: 5px;
  outline: 0;
  font-size: 0.8rem;
}

.hero-booking-fields input::placeholder {
  color: #8c959b;
}

.hero-booking-fields input:focus,
.hero-booking-fields select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(36, 107, 254, 0.14);
}

.hero-booking-card .button {
  width: 100%;
  min-height: 46px;
}

.hero-booking-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
  line-height: 1.35;
  text-align: center;
}

.hero-booking-note a,
.offer-form-note a,
.form-note a {
  color: inherit;
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.hero-booking-note.success {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 850;
}

.hero-booking-note.error,
.form-note.error {
  color: #c93822;
  font-weight: 850;
}

.credibility-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 20px;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
  padding: 12px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.credibility-strip span {
  display: inline-flex;
  gap: 6px;
  align-items: center;
  color: var(--muted);
  font-size: 0.78rem;
}

.credibility-strip strong {
  color: var(--ink);
  font-size: 0.82rem;
}

.credibility-strip > i {
  width: 4px;
  height: 4px;
  background: var(--orange);
  border-radius: 50%;
}

.section {
  padding: 86px max(24px, calc((100vw - 1200px) / 2));
}

.section-heading {
  width: min(850px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.section h2,
.dialog-copy h2 {
  margin: 0;
  font-size: 2.75rem;
  line-height: 1.05;
  font-weight: 950;
}

.section-heading > p:not(.eyebrow),
.google-copy > p:not(.eyebrow, .honesty-note),
.example-intro > div:last-child > p,
.offer-intro > p:not(.eyebrow),
.apply-copy > p:not(.eyebrow),
.dialog-copy > p:not(.eyebrow) {
  color: var(--muted);
  line-height: 1.68;
}

.section-heading > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
}

.pain-section {
  background: var(--soft);
}

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 17px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.pain-grid article {
  display: grid;
  grid-template-rows: auto auto 1fr auto;
  padding: 26px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: 0 12px 30px rgba(13, 18, 24, 0.07);
}

.problem-label {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.pain-grid h3 {
  margin: 14px 0 10px;
  font-size: 1.2rem;
  line-height: 1.28;
}

.pain-grid article > p {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.6;
}

.solution {
  margin-top: 22px;
  padding: 16px 0 0 15px;
  border-top: 1px solid var(--line);
  border-left: 3px solid var(--green);
}

.solution div {
  display: grid;
  gap: 4px;
}

.solution strong {
  color: var(--green);
  font-size: 0.76rem;
  text-transform: uppercase;
}

.solution span {
  color: #364149;
  font-size: 0.87rem;
  line-height: 1.5;
  font-weight: 720;
}

.google-section {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(430px, 0.95fr);
  gap: 70px;
  align-items: center;
  background: #ffffff;
}

.google-copy {
  justify-self: end;
  width: min(560px, 100%);
}

.google-copy > p:not(.eyebrow, .honesty-note) {
  margin: 18px 0 0;
}

.search-steps {
  display: grid;
  gap: 13px;
  margin: 25px 0 0;
  padding: 0;
  list-style: none;
}

.search-steps li {
  display: grid;
  grid-template-columns: 30px 1fr;
  gap: 11px;
  align-items: center;
}

.search-steps li > span {
  display: inline-grid;
  width: 30px;
  height: 30px;
  place-items: center;
  color: #ffffff;
  background: var(--blue);
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 950;
}

.search-steps li > div {
  display: grid;
  gap: 2px;
}

.search-steps strong {
  font-size: 0.92rem;
}

.search-steps small {
  color: var(--muted);
}

.honesty-note {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  margin: 24px 0 0;
  padding-top: 18px;
  color: #48535b;
  border-top: 1px solid var(--line);
  font-size: 0.83rem;
  line-height: 1.5;
  font-weight: 760;
}

.honesty-note svg {
  margin-top: 2px;
  color: var(--green);
}

.search-proof {
  justify-self: start;
  width: min(590px, 100%);
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
}

.search-proof img {
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  object-fit: contain;
  object-position: center;
}

.search-proof figcaption {
  display: grid;
  gap: 4px;
  padding: 20px 22px;
}

.search-proof figcaption span {
  color: var(--orange-dark);
  font-size: 0.72rem;
  font-weight: 950;
  text-transform: uppercase;
}

.example-section {
  color: #ffffff;
  background: var(--ink);
}

.example-intro {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.62fr);
  gap: 70px;
  align-items: end;
  width: min(1200px, 100%);
  margin: 0 auto 38px;
}

.example-intro > div:first-child {
  max-width: 720px;
}

.example-intro > div:last-child {
  display: grid;
  gap: 20px;
  justify-items: start;
}

.example-intro > div:last-child > p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
}

.example-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 20px;
  align-items: center;
}

.proof-viewer {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 12px;
  width: min(1200px, 100%);
  margin: 0 auto;
}

.proof-tabs {
  display: grid;
  align-content: start;
  gap: 7px;
}

.proof-tabs button {
  min-height: 54px;
  padding: 0 15px;
  color: rgba(255, 255, 255, 0.68);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 5px;
  cursor: pointer;
  font-weight: 850;
  text-align: left;
}

.proof-tabs button[aria-selected="true"] {
  color: #ffffff;
  background: var(--orange);
  border-color: var(--orange);
}

.proof-stage {
  position: relative;
  margin: 0;
  overflow: hidden;
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  box-shadow: 0 26px 65px rgba(0, 0, 0, 0.34);
}

.proof-stage img {
  width: 100%;
  height: clamp(390px, 42vw, 500px);
  object-position: center;
  background: #ffffff;
}

.proof-stage img.is-cover {
  object-fit: cover;
}

.proof-stage img.is-contain {
  padding: 0;
  object-fit: contain;
}

.proof-stage figcaption {
  display: grid;
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1fr);
  gap: 30px;
  align-items: center;
  min-height: 85px;
  padding: 18px 22px;
  color: var(--ink);
}

.proof-stage figcaption strong {
  font-size: 1.05rem;
}

.proof-stage figcaption span {
  color: var(--muted);
  font-size: 0.87rem;
  line-height: 1.5;
}

.offer-section {
  background: var(--soft);
}

.offer-intro {
  width: min(850px, 100%);
  margin: 0 auto 40px;
  text-align: center;
}

.offer-intro > p:not(.eyebrow) {
  max-width: 720px;
  margin: 16px auto 0;
}

.offer-layout {
  display: grid;
  grid-template-columns: 370px minmax(0, 1fr);
  width: min(1200px, 100%);
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 6px;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.price-panel {
  display: grid;
  align-content: center;
  padding: 32px;
  color: #ffffff;
  background: var(--ink);
}

.price-panel > span {
  color: var(--yellow);
  font-size: 0.73rem;
  font-weight: 950;
  text-transform: uppercase;
}

.price-row {
  display: grid;
  margin-top: 24px;
}

.price-row strong,
.monthly-row strong {
  font-size: 3.2rem;
  line-height: 0.95;
}

.price-row small,
.monthly-row small {
  color: rgba(255, 255, 255, 0.64);
  font-weight: 800;
}

.monthly-row {
  display: grid;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.monthly-row strong {
  color: var(--yellow);
}

.price-panel p {
  margin: 20px 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.85rem;
  line-height: 1.55;
}

.price-panel .button {
  width: 100%;
}

.offer-call-form {
  display: grid;
  gap: 10px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.offer-form-heading {
  display: grid;
  gap: 2px;
}

.offer-form-heading strong {
  color: #ffffff;
  font-size: 1rem;
}

.offer-form-heading small,
.offer-form-note {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.68rem;
  line-height: 1.4;
}

.offer-form-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.offer-form-fields label {
  display: grid;
  gap: 4px;
  min-width: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.68rem;
  font-weight: 850;
}

.offer-form-fields input {
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 9px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 5px;
  outline: 0;
}

.offer-form-fields input:focus {
  border-color: var(--yellow);
  box-shadow: 0 0 0 3px rgba(255, 204, 51, 0.22);
}

.offer-form-note {
  text-align: center;
}

.offer-form-note.success {
  color: #9fe7ba;
  font-size: 0.75rem;
  font-weight: 850;
}

.offer-form-note.error {
  color: #ffb0a0;
  font-weight: 850;
}

.inclusions {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.inclusions > div {
  padding: 32px;
  border-right: 1px solid var(--line);
}

.inclusions > div:last-child {
  border-right: 0;
}

.inclusion-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: var(--ink);
  background: var(--yellow);
  border-radius: 5px;
}

.inclusion-icon-blue {
  color: #ffffff;
  background: var(--green);
}

.inclusions h3 {
  margin: 17px 0 16px;
  font-size: 1.2rem;
}

.inclusions ul,
.apply-copy ul {
  display: grid;
  gap: 11px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.inclusions li,
.apply-copy li {
  display: flex;
  gap: 9px;
  align-items: flex-start;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.45;
}

.inclusions li svg,
.apply-copy li svg {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  color: var(--green);
}

.process-line {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  align-items: center;
  justify-content: center;
  width: min(1200px, 100%);
  margin: 24px auto 0;
  padding-top: 20px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.8rem;
}

.process-line span {
  display: inline-flex;
  gap: 5px;
  align-items: center;
}

.process-line strong {
  color: var(--ink);
}

.process-line > i {
  width: 1px;
  height: 18px;
  background: #c6ced2;
}

.home-team-section {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.home-team-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1fr);
  gap: 70px;
  align-items: end;
  width: min(1160px, 100%);
  margin: 0 auto;
}

.home-team-heading h2 {
  max-width: 560px;
}

.home-team-intro > p {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.home-team-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: center;
  margin-top: 22px;
}

.home-team-actions .button {
  min-height: 48px;
}

.home-team-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  width: min(1100px, 100%);
  margin: 42px auto 0;
}

.home-team-person {
  min-width: 0;
}

.home-team-portrait {
  margin: 0;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #e4e8eb;
  border: 1px solid #d3d9dd;
  border-radius: 7px;
}

.home-team-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-team-person div {
  padding: 13px 3px 0;
}

.home-team-person strong,
.home-team-person span {
  display: block;
}

.home-team-person strong {
  font-size: 1rem;
  line-height: 1.25;
}

.home-team-person span {
  min-height: 32px;
  margin-top: 4px;
  color: var(--orange-dark);
  font-size: 0.66rem;
  font-weight: 850;
  line-height: 1.4;
  text-transform: uppercase;
}

.home-team-support {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 15px;
  align-items: center;
  width: min(760px, 100%);
  margin: 38px auto 0;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}

.home-team-support-icon {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: var(--green);
  border-radius: 5px;
}

.home-team-support-icon svg {
  width: 21px;
  height: 21px;
}

.home-team-support p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.home-team-support strong {
  color: var(--ink);
}

.faq-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.62fr) minmax(0, 1fr);
  gap: 80px;
  background: #ffffff;
}

.faq-heading {
  justify-self: end;
  width: min(470px, 100%);
}

.faq-list {
  justify-self: start;
  width: min(690px, 100%);
  border-top: 1px solid var(--line);
}

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

.faq-list summary {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  font-weight: 900;
  list-style: none;
}

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

.faq-list summary svg {
  color: var(--orange);
  transition: transform 160ms ease;
}

.faq-list details[open] summary svg {
  transform: rotate(45deg);
}

.faq-list p {
  margin: -2px 40px 21px 0;
  color: var(--muted);
  line-height: 1.65;
}

.apply-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(480px, 0.86fr);
  gap: 70px;
  align-items: center;
  color: #ffffff;
  background: var(--ink);
  scroll-margin-top: 78px;
}

.apply-section::before {
  display: none;
}

.apply-copy {
  justify-self: end;
  width: min(550px, 100%);
  padding: 0;
}

.apply-copy > p:not(.eyebrow) {
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.7);
}

.apply-copy ul {
  margin-top: 24px;
}

.apply-copy li {
  color: rgba(255, 255, 255, 0.82);
}

.apply-price {
  margin-top: 25px;
  padding-top: 18px;
  color: rgba(255, 255, 255, 0.72);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  font-size: 0.9rem;
  font-weight: 760;
}

.apply-price strong {
  color: var(--yellow);
  font-size: 1.2rem;
}

.apply-price span {
  margin: 0 4px;
  color: var(--orange);
}

.lead-form {
  display: grid;
  gap: 16px;
  width: min(590px, 100%);
  padding: 28px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid var(--line);
  border-top: 5px solid var(--orange);
  border-radius: 6px;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.32);
}

.form-heading {
  display: grid;
  gap: 4px;
}

.form-heading span {
  font-size: 1.18rem;
  font-weight: 950;
}

.form-heading small {
  color: var(--muted);
}

.field-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px;
}

.lead-form label {
  display: grid;
  gap: 7px;
  color: #333d45;
  font-size: 0.88rem;
  font-weight: 850;
}

.lead-form label > span small {
  color: var(--muted);
  font-weight: 700;
}

.lead-form input,
.lead-form select {
  width: 100%;
  min-height: 49px;
  padding: 0 12px;
  color: var(--ink);
  background: #ffffff;
  border: 1px solid #c8d0d5;
  border-radius: 5px;
}

.lead-form input::placeholder {
  color: #8c959b;
}

.site-status {
  margin: 0;
  padding: 0;
  border: 0;
}

.site-status legend {
  margin-bottom: 8px;
  color: #333d45;
  font-size: 0.88rem;
  font-weight: 850;
}

.site-status > div {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.site-status label {
  cursor: pointer;
}

.site-status input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.site-status label > span {
  display: grid;
  min-height: 48px;
  place-items: center;
  padding: 0 10px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 5px;
}

.site-status input:checked + span {
  color: var(--orange-dark);
  background: rgba(255, 92, 38, 0.08);
  border-color: var(--orange);
  box-shadow: inset 0 0 0 1px var(--orange);
}

.site-status input:focus-visible + span {
  outline: 3px solid rgba(255, 92, 38, 0.23);
  outline-offset: 2px;
}

.lead-form .button {
  width: 100%;
}

.form-note {
  margin: -3px 0 0;
  color: var(--muted);
  font-size: 0.79rem;
  line-height: 1.45;
  text-align: center;
}

.form-note.success {
  color: var(--green);
  font-size: 0.88rem;
  font-weight: 850;
}

.call-prompt {
  position: fixed;
  bottom: 20px;
  left: 50%;
  z-index: 70;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto 40px;
  gap: 18px;
  align-items: center;
  width: min(920px, calc(100% - 32px));
  padding: 14px 14px 14px 18px;
  color: #ffffff;
  visibility: hidden;
  background: #111820;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-left: 4px solid var(--orange);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, calc(100% + 42px));
  transition: opacity 220ms ease, transform 280ms ease, visibility 280ms ease;
}

.call-prompt.is-visible {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

.call-prompt-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.call-prompt-copy span {
  color: #ff9a72;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.call-prompt-copy strong {
  font-size: 1rem;
  line-height: 1.25;
}

.call-prompt-copy small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.78rem;
}

.call-prompt .button {
  min-height: 48px;
  white-space: nowrap;
}

.call-prompt-close {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  color: rgba(255, 255, 255, 0.72);
  background: transparent;
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.call-prompt-close:hover {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
}

.site-footer {
  padding: 64px max(24px, calc((100vw - 1200px) / 2)) 26px;
  color: #ffffff;
  background: var(--ink);
  border-top: 5px solid var(--orange);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(250px, 1.25fr) minmax(130px, 0.6fr) minmax(230px, 1fr) minmax(240px, 0.95fr);
  gap: 54px;
  align-items: start;
}

.footer-brand .brand {
  color: #ffffff;
}

.footer-brand > p {
  max-width: 360px;
  margin: 22px 0 20px;
  color: #b9c1c8;
  font-size: 0.94rem;
  line-height: 1.65;
}

.footer-social,
.footer-contact a,
.footer-contact address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-social {
  width: fit-content;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
}

.footer-social svg,
.footer-contact svg {
  width: 17px;
  height: 17px;
  margin-top: 2px;
  color: var(--yellow);
}

.footer-column,
.footer-cta {
  display: grid;
  align-content: start;
  gap: 13px;
}

.footer-column h2,
.footer-cta h2 {
  margin: 0 0 7px;
  color: #ffffff;
  font-size: 0.82rem;
  line-height: 1.3;
  text-transform: uppercase;
}

.footer-column > a {
  width: fit-content;
  color: #c7ced4;
  font-size: 0.9rem;
  line-height: 1.45;
}

.footer-column > a:hover,
.footer-social:hover,
.footer-bottom a:hover {
  color: var(--yellow);
}

.footer-contact address {
  margin: 2px 0 0;
  color: #9faab3;
  font-size: 0.86rem;
  font-style: normal;
  line-height: 1.55;
}

.footer-cta {
  padding-left: 30px;
  border-left: 1px solid #343d45;
}

.footer-cta h2 {
  font-size: 1.04rem;
  text-transform: none;
}

.footer-cta p {
  margin: 0;
  color: #b9c1c8;
  font-size: 0.88rem;
  line-height: 1.55;
}

.footer-booking {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  margin-top: 4px;
  padding: 0 16px;
  color: #ffffff;
  background: var(--orange);
  border-radius: 6px;
  font-size: 0.9rem;
  font-weight: 900;
  transition: background-color 150ms ease, transform 150ms ease;
}

.footer-booking:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
}

.footer-cta small {
  color: #9faab3;
  font-size: 0.76rem;
  text-align: center;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 50px;
  padding-top: 22px;
  border-top: 1px solid #2d353d;
}

.footer-bottom p {
  margin: 0;
  color: #85919b;
  font-size: 0.76rem;
}

.footer-bottom > div {
  display: flex;
  gap: 20px;
}

.footer-bottom a {
  color: #aab3bb;
  font-size: 0.76rem;
  font-weight: 700;
}

.video-dialog {
  width: min(820px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  padding: 0;
  overflow: auto;
  color: var(--ink);
  background: #ffffff;
  border: 0;
  border-radius: 7px;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.44);
}

.video-dialog::backdrop {
  background: rgba(5, 8, 11, 0.84);
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  color: #ffffff;
  background: rgba(13, 18, 24, 0.84);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  cursor: pointer;
}

.dialog-media {
  position: relative;
  display: grid;
  aspect-ratio: 16 / 9;
  place-items: center;
  overflow: hidden;
  background: var(--ink);
}

.dialog-media::after {
  position: absolute;
  inset: 0;
  background: rgba(8, 12, 16, 0.4);
  content: "";
}

.dialog-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dialog-media .play-button {
  position: relative;
  z-index: 1;
}

.dialog-copy {
  padding: 27px;
}

.dialog-copy h2 {
  font-size: 2rem;
}

.dialog-copy > p:not(.eyebrow) {
  margin: 13px 0 0;
}

.header-cta:focus-visible,
.header-menu-toggle:focus-visible,
.footer-booking:focus-visible,
.button:focus-visible,
.text-link:focus-visible,
.proof-tabs button:focus-visible,
.call-prompt-close:focus-visible,
.hero-booking-fields input:focus,
.hero-booking-fields select:focus,
.offer-form-fields input:focus,
.lead-form input:focus,
.lead-form select:focus,
summary:focus-visible {
  outline: 3px solid rgba(36, 107, 254, 0.26);
  outline-offset: 3px;
}

@media (max-width: 1060px) {
  .footer-main {
    grid-template-columns: minmax(250px, 1.2fr) minmax(150px, 0.7fr) minmax(240px, 1fr);
  }

  .footer-cta {
    grid-column: 1 / -1;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    padding: 24px 0 0;
    border-top: 1px solid #343d45;
    border-left: 0;
  }

  .footer-cta h2,
  .footer-cta p {
    grid-column: 1;
  }

  .footer-booking {
    grid-column: 2;
    grid-row: 1 / span 2;
    min-width: 210px;
  }

  .footer-cta small {
    grid-column: 2;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.78fr);
    gap: 34px;
  }

  .hero h1 {
    font-size: 3.25rem;
  }

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

  .pain-grid article {
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1fr);
    grid-template-rows: auto auto 1fr;
    gap: 0 28px;
  }

  .pain-grid .solution {
    grid-column: 2;
    grid-row: 1 / span 3;
    margin: 0;
    padding: 0 0 0 28px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .google-section,
  .faq-section,
  .apply-section {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .google-copy,
  .search-proof,
  .faq-heading,
  .faq-list,
  .apply-copy,
  .lead-form {
    justify-self: center;
    width: min(760px, 100%);
    max-width: none;
  }

  .apply-copy {
    padding: 28px;
  }

  .offer-layout {
    grid-template-columns: 330px minmax(0, 1fr);
  }
}

@media (max-width: 920px) {
  .header-nav {
    gap: 10px;
  }

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

  .header-menu {
    position: absolute;
    top: calc(100% + 1px);
    right: max(24px, calc((100vw - 1200px) / 2));
    display: none;
    align-items: stretch;
    width: min(310px, calc(100vw - 36px));
    padding: 10px;
    background: #ffffff;
    border: 1px solid var(--line);
    border-radius: 0 0 7px 7px;
    box-shadow: 0 20px 45px rgba(13, 18, 24, 0.17);
  }

  .header-menu.is-open {
    display: grid;
  }

  .header-link {
    width: 100%;
    padding: 12px 13px;
    border-radius: 5px;
  }

  .header-link:hover,
  .header-link[aria-current="page"] {
    background: var(--soft);
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: calc(100svh - 70px);
    background-image: url("assets/website-laptop-hero-900.webp");
    background-position: center 48%;
  }

  .hero-overlay {
    background: rgba(8, 13, 18, 0.94);
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    align-content: center;
    padding: 42px 0 34px;
  }

  .hero-copy {
    max-width: 720px;
  }

  .hero-booking-card {
    max-width: 650px;
  }

  .credibility-strip {
    justify-content: flex-start;
  }

  .example-intro {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .proof-viewer {
    grid-template-columns: 1fr;
  }

  .proof-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .proof-tabs button {
    min-height: 46px;
    text-align: center;
  }

  .offer-layout {
    grid-template-columns: 1fr;
  }

  .price-panel {
    grid-template-columns: 1fr 1fr;
    gap: 12px 26px;
  }

  .price-panel > span,
  .price-panel p,
  .price-panel .offer-call-form,
  .price-panel .button {
    grid-column: 1 / -1;
  }

  .price-row,
  .monthly-row {
    margin: 8px 0 0;
    padding: 0;
    border: 0;
  }

  .home-team-heading {
    grid-template-columns: 1fr;
    gap: 20px;
    align-items: start;
  }

}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    gap: 8px;
    min-height: 64px;
    padding: 9px 14px;
  }

  .header-nav {
    flex: 0 0 auto;
    gap: 8px;
  }

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

  .header-menu-toggle {
    width: 42px;
    padding: 0;
  }

  .header-menu-toggle span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .header-cta {
    flex: 0 0 42px;
    width: 42px;
    min-height: 42px;
    padding: 0;
    gap: 0;
    overflow: hidden;
    font-size: 0;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero-grid {
    width: calc(100% - 36px);
    gap: 24px;
    padding: 32px 0;
  }

  .hero h1 {
    font-size: 2.26rem;
    line-height: 1;
  }

  .hero-summary {
    margin-top: 15px;
    font-size: 0.98rem;
    line-height: 1.48;
  }

  .hero-price {
    margin-top: 17px;
    padding: 9px 11px;
  }

  .hero-price strong {
    font-size: 1.18rem;
  }

  .hero-actions {
    display: grid;
    gap: 13px;
    margin-top: 17px;
  }

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

  .hero-note {
    font-size: 0.8rem;
    line-height: 1.45;
  }

  .hero-booking-card {
    padding: 0;
  }

  .hero-booking-body {
    gap: 7px;
    padding: 10px 12px 11px;
  }

  .hero-booking-fields {
    gap: 8px;
  }

  .hero-booking-fields input,
  .hero-booking-fields select {
    min-height: 39px;
  }

  .credibility-strip {
    width: 100%;
    gap: 8px;
    padding: 15px 18px;
  }

  .credibility-strip span {
    flex-basis: 100%;
    justify-content: flex-start;
  }

  .credibility-strip > i {
    display: none;
  }

  .section {
    padding: 68px 18px;
  }

  .section-heading {
    text-align: left;
  }

  .section h2,
  .dialog-copy h2 {
    font-size: 2.02rem;
    line-height: 1.08;
  }

  .pain-grid article {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    padding: 23px;
  }

  .pain-grid .solution {
    grid-column: auto;
    grid-row: auto;
    margin-top: 20px;
    padding: 16px 0 0 15px;
    border-top: 1px solid var(--line);
    border-left: 3px solid var(--green);
  }

  .google-section,
  .faq-section,
  .apply-section {
    gap: 36px;
  }

  .search-proof img {
    aspect-ratio: 3 / 2;
  }

  .proof-stage img {
    height: 400px;
  }

  .proof-stage figcaption {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .price-panel,
  .inclusions {
    grid-template-columns: 1fr;
  }

  .price-panel {
    padding: 26px;
  }

  .inclusions > div {
    padding: 26px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .inclusions > div:last-child {
    border-bottom: 0;
  }

  .field-pair,
  .site-status > div {
    grid-template-columns: 1fr;
  }

  .apply-copy {
    padding: 0;
  }

  .lead-form {
    order: -1;
    padding: 22px 18px;
  }

  .process-line {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .process-line > i {
    display: none;
  }

  .home-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
    margin-top: 34px;
  }

  .home-team-person:last-child {
    grid-column: 1 / -1;
    justify-self: center;
    width: calc((100% - 14px) / 2);
  }

  .home-team-person span {
    min-height: 0;
  }

  .home-team-actions {
    display: grid;
    gap: 15px;
  }

  .home-team-actions .button {
    width: 100%;
  }

  .home-team-actions .text-link {
    width: fit-content;
  }

  .home-team-support {
    align-items: start;
    margin-top: 32px;
  }

  .site-footer {
    padding: 48px 18px 22px;
  }

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

  .footer-cta {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 12px;
    padding-top: 28px;
  }

  .footer-cta h2,
  .footer-cta p,
  .footer-booking,
  .footer-cta small {
    grid-column: 1;
    grid-row: auto;
  }

  .footer-booking {
    width: 100%;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    margin-top: 38px;
  }

  .footer-bottom > div {
    flex-wrap: wrap;
  }

  .video-dialog {
    width: calc(100% - 20px);
  }

  .dialog-copy {
    padding: 22px 18px;
  }
}

@media (max-width: 430px) {
  .hero h1 {
    font-size: 2.08rem;
  }

  .hero-price small {
    flex-basis: 100%;
  }

  .proof-tabs button {
    padding: 0 8px;
    font-size: 0.8rem;
  }
}

@media (max-width: 430px) and (max-height: 700px) {
  .hero-grid {
    gap: 13px;
    padding: 23px 0 17px;
  }

  .hero h1 {
    font-size: 1.92rem;
  }

  .hero-summary {
    margin-top: 10px;
    font-size: 0.91rem;
    line-height: 1.4;
  }

  .hero-price,
  .hero-actions {
    margin-top: 11px;
  }

  .hero-actions .text-link,
  .hero-note {
    display: none;
  }

  .hero-booking-card {
    padding: 0;
  }

  .hero-booking-body {
    gap: 7px;
    padding: 10px 11px 11px;
  }

  .hero-booking-heading small {
    display: none;
  }

  .hero-booking-fields {
    gap: 6px 8px;
  }

  .hero-booking-fields label {
    gap: 2px;
    font-size: 0.62rem;
  }

  .hero-booking-fields input,
  .hero-booking-fields select {
    min-height: 36px;
    padding: 0 7px;
    font-size: 0.7rem;
  }

  .hero-booking-card .button {
    min-height: 40px;
  }

  .hero-booking-note {
    font-size: 0.59rem;
  }
}

@media (max-width: 620px) {
  .call-prompt {
    bottom: max(10px, env(safe-area-inset-bottom));
    grid-template-columns: minmax(0, 1fr) 36px;
    gap: 10px 12px;
    width: calc(100% - 20px);
    padding: 14px;
  }

  .call-prompt-copy strong {
    font-size: 0.94rem;
  }

  .call-prompt-copy small {
    font-size: 0.72rem;
  }

  .call-prompt .button {
    grid-column: 1 / -1;
    grid-row: 2;
    min-height: 44px;
    width: 100%;
  }

  .call-prompt-close {
    grid-column: 2;
    grid-row: 1;
    align-self: start;
    width: 36px;
    height: 36px;
  }
}

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

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