@font-face {
  font-family: "Sora";
  src: url("../fonts/sora-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 800;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("../fonts/manrope-latin-wght-normal.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --paper: #f7f9fc;
  --paper-strong: #fdfefe;
  --mist: #edf3f8;
  --mist-strong: #e3ebf3;
  --ink: #0b1b31;
  --ink-soft: #172d48;
  --body: #3c4a5d;
  --muted: #657286;
  --line: #cfdae5;
  --line-dark: rgba(231, 239, 247, 0.22);
  --copper: #9d4d1a;
  --copper-bright: #b76224;
  --copper-dark: #79380f;
  --success: #9bc66f;
  --error: #d77a6c;
  --white-soft: #f6f9fc;
  --shadow-soft: 0 18px 55px rgba(11, 27, 49, 0.14);
  --shadow-card: 0 10px 28px rgba(11, 27, 49, 0.08);
  --radius: 8px;
  --radius-round: 999px;
  --container: 1320px;
  --header-height: 72px;
  --font-display: "Sora", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --font-body: "Manrope", "Avenir Next", "Helvetica Neue", Arial, sans-serif;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 20px);
  background: var(--paper);
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-underline-offset: 0.18em;
}

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

h1,
h2,
h3 {
  color: var(--ink);
  font-family: var(--font-display);
  font-weight: 740;
  letter-spacing: -0.045em;
}

h1 {
  margin-bottom: 24px;
  font-size: clamp(3.35rem, 5.15vw, 4.75rem);
  line-height: 1.03;
}

h2 {
  margin-bottom: 22px;
  font-size: clamp(2.5rem, 4vw, 3.65rem);
  line-height: 1.04;
}

h3 {
  margin-bottom: 10px;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.18;
  letter-spacing: -0.03em;
}

p {
  margin-bottom: 0;
  color: var(--body);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--copper-dark);
  font-size: 13px;
  font-weight: 820;
  letter-spacing: 0.13em;
  line-height: 1.35;
  text-transform: uppercase;
}

:focus-visible {
  outline: 3px solid #e99a63;
  outline-offset: 4px;
}

::selection {
  background: rgba(183, 98, 36, 0.26);
  color: var(--ink);
}

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 12px 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white-soft);
  font-weight: 700;
  transform: translateY(-160%);
  transition: transform 180ms var(--ease-out);
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border: 2px solid transparent;
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  cursor: pointer;
  transition:
    color 220ms var(--ease-out),
    background-color 220ms var(--ease-out),
    border-color 220ms var(--ease-out),
    transform 180ms var(--ease-out),
    box-shadow 220ms var(--ease-out);
}

.button:active {
  transform: translateY(1px) scale(0.985);
}

.button-primary {
  background: var(--copper);
  color: var(--white-soft);
  box-shadow: 0 10px 26px rgba(121, 56, 15, 0.18);
}

.button-secondary {
  border-color: var(--copper);
  background: transparent;
  color: var(--copper-dark);
}

.button-compact {
  min-height: 48px;
  padding-inline: 20px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  height: var(--header-height);
  border-bottom: 1px solid rgba(207, 218, 229, 0.72);
  background: rgba(253, 254, 254, 0.94);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: grid;
  height: 100%;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 34px;
}

.brand-link {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
}

.brand-link img {
  width: 104px;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
}

.main-nav a,
.phone-link {
  position: relative;
  color: var(--ink);
  font-size: 15px;
  font-weight: 670;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--copper);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms var(--ease-out);
}

.main-nav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle i {
  font-size: 25px;
}

.hero {
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 40%, rgba(225, 235, 245, 0.72), transparent 48%),
    var(--paper);
}

.hero-grid {
  display: grid;
  width: 100%;
  max-width: none;
  height: clamp(554px, calc(100svh - var(--header-height) - 142px), 700px);
  grid-template-columns: minmax(0, 48%) minmax(0, 52%);
  align-items: stretch;
  margin: 0;
  padding-left: max(24px, calc((100vw - var(--container)) / 2));
}

.hero-copy {
  display: flex;
  min-width: 0;
  max-width: 670px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 40px 54px 40px 0;
}

.hero-copy h1 {
  max-width: 13ch;
}

.hero-copy > p {
  max-width: 600px;
  font-size: clamp(18px, 1.65vw, 22px);
  line-height: 1.55;
}

.hero-copy > .eyebrow {
  margin-bottom: 18px;
  font-size: 13px;
  line-height: 1.35;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 34px;
}

.hero-media {
  position: relative;
  min-width: 0;
  height: 100%;
  margin: 0;
  overflow: hidden;
  clip-path: polygon(13% 0, 100% 0, 100% 100%, 0 100%);
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: 52% 50%;
}

.offer-rail {
  min-height: 142px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  background: var(--ink);
  color: var(--white-soft);
}

.offer-grid {
  display: grid;
  min-height: 142px;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.offer-item {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 26px 24px;
  border-right: 1px solid var(--line-dark);
}

.offer-item:last-child {
  border-right: 0;
}

.offer-item i {
  flex: 0 0 auto;
  color: #ee9a5d;
  font-size: 34px;
}

.offer-item strong {
  color: var(--white-soft);
  font-family: var(--font-display);
  font-size: clamp(17px, 1.45vw, 21px);
  line-height: 1.22;
  letter-spacing: -0.025em;
}

.section {
  padding-block: clamp(84px, 9vw, 132px);
}

.section-intro {
  max-width: 760px;
}

.section-intro p {
  max-width: 690px;
  font-size: clamp(18px, 1.5vw, 21px);
}

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

.flow-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  margin: 72px 0 0;
  padding: 0;
  list-style: none;
}

.flow-item {
  position: relative;
  min-width: 0;
  padding: 6px clamp(26px, 3vw, 46px) 0 0;
}

.flow-item:not(:last-child) {
  border-right: 1px solid var(--line);
}

.flow-item:not(:first-child) {
  padding-left: clamp(26px, 3vw, 46px);
}

.flow-item i:not(.flow-arrow) {
  display: inline-flex;
  margin-bottom: 26px;
  color: var(--copper);
  font-size: 42px;
}

.flow-item h3 {
  font-size: clamp(20px, 1.65vw, 25px);
}

.flow-item p {
  max-width: 235px;
  font-size: 16px;
  line-height: 1.55;
}

.included-section {
  border-block: 1px solid rgba(207, 218, 229, 0.75);
  background:
    linear-gradient(135deg, rgba(227, 235, 243, 0.76), transparent 38%),
    var(--mist);
}

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

.included-heading {
  grid-column: 1 / 6;
  align-self: end;
  padding: 6px 28px 16px 0;
}

.included-heading p {
  max-width: 500px;
  font-size: 19px;
}

.included-media {
  grid-column: 1 / 6;
  margin: 0;
}

.included-media picture,
.included-media img {
  width: 100%;
}

.included-media img {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  object-fit: cover;
}

.included-media figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
}

.included-grid {
  display: grid;
  grid-column: 6 / 13;
  grid-row: 1 / 3;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.feature {
  position: relative;
  min-height: 238px;
  overflow: hidden;
  padding: 30px;
  border: 1px solid rgba(189, 202, 214, 0.92);
  border-radius: var(--radius);
  background: rgba(253, 254, 254, 0.83);
}

.feature > * {
  position: relative;
  z-index: 2;
}

.feature i {
  display: inline-flex;
  margin-bottom: 36px;
  color: var(--copper);
  font-size: 29px;
}

.feature p {
  max-width: 330px;
  font-size: 15px;
  line-height: 1.58;
}

.feature-wide {
  display: grid;
  min-height: 310px;
  grid-column: 1 / -1;
  grid-template-columns: 0.78fr 1.22fr;
  align-items: start;
  background:
    linear-gradient(90deg, rgba(253, 254, 254, 0.98) 0 42%, rgba(253, 254, 254, 0.1) 68%),
    url("../images/google-lead-system-hero.avif") 82% 50% / 62% auto no-repeat,
    var(--paper-strong);
}

.feature-wide i {
  grid-column: 1;
}

.feature-wide div {
  grid-column: 1;
}

.feature-map {
  background:
    radial-gradient(circle at 80% 78%, rgba(183, 98, 36, 0.16), transparent 20%),
    linear-gradient(145deg, rgba(253, 254, 254, 0.92), rgba(225, 235, 244, 0.82));
}

.feature-image {
  background:
    linear-gradient(to bottom, rgba(253, 254, 254, 0.99) 0 72%, rgba(253, 254, 254, 0.84) 86%, rgba(253, 254, 254, 0.38) 100%),
    url("../images/southwest-landscape-path.avif") center bottom / 100% auto no-repeat,
    var(--paper-strong);
}

.pricing-section {
  padding-bottom: 0;
  background: var(--paper);
}

.pricing-layout {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(380px, 5fr);
  gap: 46px;
  align-items: stretch;
}

.pricing-copy {
  padding: 14px 8px 0 0;
}

.pricing-copy > h2 {
  max-width: 720px;
}

.price-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  margin-top: 60px;
  border-top: 1px solid var(--line);
}

.price-block {
  min-width: 0;
  padding: 38px 32px 0 0;
}

.price-block + .price-block {
  padding-left: 42px;
  border-left: 1px solid var(--line);
}

.price-label {
  display: block;
  margin-bottom: 8px;
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.price {
  display: block;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: clamp(5.2rem, 8.2vw, 7rem);
  font-weight: 760;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.price-small {
  margin-top: 22px;
  font-size: clamp(3.35rem, 5.7vw, 5rem);
}

.price-small span {
  margin-left: 4px;
  font-size: 0.34em;
  letter-spacing: -0.03em;
}

.price-block > p {
  margin-top: 18px;
  font-size: 16px;
}

.price-primary .button {
  margin-top: 30px;
}

.term {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 690;
}

.term i {
  color: var(--copper);
  font-size: 23px;
}

.pricing-visual {
  display: grid;
  min-height: 620px;
  grid-template-rows: minmax(0, 1.08fr) minmax(210px, 0.62fr);
}

.pricing-visual picture,
.pricing-visual img {
  width: 100%;
  height: 100%;
}

.pricing-visual img {
  border-radius: var(--radius) var(--radius) 0 0;
  object-fit: cover;
}

.guarantee {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 24px;
  align-items: center;
  padding: 34px;
  border-radius: 0 0 var(--radius) var(--radius);
  background: var(--ink);
}

.guarantee i {
  color: #ee9a5d;
  font-size: 58px;
}

.guarantee h3,
.guarantee p,
.guarantee a {
  color: var(--white-soft);
}

.guarantee p {
  font-size: 16px;
}

.guarantee a {
  display: inline-block;
  margin-top: 10px;
  font-size: 13px;
  font-weight: 700;
}

.fit-block {
  margin-top: clamp(80px, 8vw, 120px);
  padding-block: 58px 72px;
  border-top: 1px solid var(--line);
}

.fit-block h2 {
  text-align: center;
}

.fit-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin: 50px 0 0;
  padding: 0;
  list-style: none;
}

.fit-grid li {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  padding: 0 28px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.fit-grid li:last-child {
  border-right: 0;
}

.fit-grid i {
  color: var(--copper);
  font-size: 39px;
}

.fit-grid strong {
  max-width: 210px;
  font-family: var(--font-display);
  font-size: 18px;
  line-height: 1.32;
}

.process-section {
  border-top: 1px solid var(--line);
  background: var(--mist);
}

.process-section h2 {
  max-width: 940px;
  margin-inline: auto;
  text-align: center;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 30px;
  margin: 74px 0 0;
  padding: 0;
  list-style: none;
}

.process-grid::before {
  content: "";
  position: absolute;
  top: 39px;
  right: 11%;
  left: 11%;
  height: 1px;
  background: var(--copper-bright);
}

.process-item {
  position: relative;
  z-index: 1;
  text-align: center;
}

.process-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  border: 1px solid var(--copper);
  border-radius: var(--radius-round);
  background: var(--mist);
  color: var(--copper);
}

.process-icon i {
  font-size: 34px;
}

.process-item h3 {
  font-size: 21px;
}

.process-item p {
  max-width: 245px;
  margin-inline: auto;
  font-size: 15px;
}

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

.faq-section h2 {
  max-width: 900px;
  margin-inline: auto;
  text-align: center;
}

.faq-grid {
  display: grid;
  max-width: 1120px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 58px auto 0;
}

.faq-item {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper-strong);
}

.faq-item + .faq-item {
  margin-top: 14px;
}

.faq-item summary {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 21px 24px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 17px;
  font-weight: 700;
  line-height: 1.3;
  list-style: none;
  cursor: pointer;
}

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

.faq-toggle-icon {
  position: relative;
  display: inline-flex;
  width: 28px;
  height: 28px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: var(--copper);
  font-size: 24px;
}

.faq-toggle-icon .ph-minus {
  display: none;
}

.faq-item[open] .faq-toggle-icon .ph-plus {
  display: none;
}

.faq-item[open] .faq-toggle-icon .ph-minus {
  display: inline-flex;
}

.faq-item p {
  max-width: 58ch;
  padding: 0 24px 24px;
  font-size: 15px;
}

.demo-section {
  background: var(--ink);
  color: var(--white-soft);
}

.demo-layout {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  margin: 0;
}

.demo-copy {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: clamp(72px, 8vw, 118px) clamp(40px, 6vw, 92px) 380px max(24px, calc((100vw - var(--container)) / 2));
  background:
    linear-gradient(to bottom, var(--mist) 0 53%, rgba(237, 243, 248, 0.18) 69%),
    url("../images/google-lead-system-detail.avif") 58% 88% / 82% auto no-repeat,
    var(--mist);
  clip-path: polygon(0 0, 100% 0, 88% 100%, 0 100%);
}

.demo-copy h2 {
  max-width: 650px;
}

.demo-copy > p {
  max-width: 540px;
  font-size: 19px;
}

.demo-contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 32px;
}

.demo-contact a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-size: 15px;
  font-weight: 690;
  text-decoration: none;
}

.demo-contact i {
  color: var(--copper);
  font-size: 22px;
}

.form-panel {
  display: flex;
  min-width: 0;
  align-items: center;
  padding: clamp(64px, 7vw, 104px) max(24px, calc((100vw - var(--container)) / 2)) clamp(64px, 7vw, 104px) clamp(46px, 6vw, 96px);
}

.lead-form {
  width: min(100%, 690px);
}

.field-grid {
  display: grid;
  gap: 18px;
}

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

.field,
.field-grid + .field-grid,
.field-grid + .field,
.field + .field,
.field + .turnstile-wrap {
  margin-top: 18px;
}

.field label {
  display: block;
  margin-bottom: 7px;
  color: var(--white-soft);
  font-size: 14px;
  font-weight: 720;
}

.field label span {
  color: #b9c5d2;
  font-weight: 500;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 52px;
  padding: 12px 14px;
  border: 1px solid rgba(234, 241, 248, 0.76);
  border-radius: var(--radius);
  background: rgba(19, 45, 72, 0.86);
  color: var(--white-soft);
  font-size: 16px;
  transition:
    border-color 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background-color 180ms var(--ease-out);
}

.field input::placeholder,
.field textarea::placeholder {
  color: #aebdcc;
  opacity: 1;
}

.field select {
  appearance: auto;
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: 0;
  border-color: #f0a36a;
  background: rgba(23, 52, 82, 0.96);
  box-shadow: 0 0 0 3px rgba(240, 163, 106, 0.28);
}

.honeypot {
  position: absolute !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
}

.turnstile-wrap {
  min-height: 65px;
}

.button-submit {
  width: 100%;
  margin-top: 18px;
}

.button-submit[disabled] {
  cursor: wait;
  opacity: 0.76;
  transform: none;
}

.form-legal,
.form-reassurance,
.form-status {
  margin-top: 14px;
  color: #b9c5d2;
  font-size: 12px;
  line-height: 1.55;
}

.form-legal a {
  color: var(--white-soft);
}

.form-reassurance {
  margin-top: 8px;
}

.form-status {
  min-height: 20px;
  color: #f1b085;
  font-size: 14px;
  font-weight: 650;
}

.success-panel {
  display: none;
  grid-template-columns: auto 1fr;
  gap: 20px;
  align-items: start;
  padding: 28px;
  border: 1px solid var(--success);
  border-radius: var(--radius);
  background: rgba(155, 198, 111, 0.08);
}

.success-panel.is-visible {
  display: grid;
}

.success-panel i {
  color: var(--success);
  font-size: 48px;
}

.success-panel h3,
.success-panel p {
  color: var(--white-soft);
}

.lead-form.is-submitted .form-fields {
  display: none;
}

.audit-results-shell[hidden] {
  display: none;
}

.site-footer {
  padding-block: 70px 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--ink);
  color: var(--white-soft);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.75fr) minmax(0, 1fr);
  gap: 72px;
}

.footer-brand img {
  width: 112px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 390px;
  margin-top: 24px;
  color: #c0ccda;
  font-size: 15px;
}

.footer-nav,
.footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.footer-nav a,
.footer-contact a {
  color: var(--white-soft);
  font-size: 14px;
  font-weight: 640;
  text-decoration: none;
}

.footer-bottom {
  margin-top: 52px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  color: #9eacbc;
  font-size: 12px;
}

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

.reveal {
  opacity: 1;
}

@media (hover: hover) and (pointer: fine) {
  .button:hover {
    transform: translateY(-2px);
  }

  .button-primary:hover {
    background: var(--copper-dark);
    box-shadow: 0 14px 30px rgba(121, 56, 15, 0.24);
  }

  .button-secondary:hover {
    border-color: var(--copper-dark);
    background: rgba(157, 77, 26, 0.08);
  }

  .main-nav a:hover::after {
    transform: scaleX(1);
    transform-origin: left;
  }

  .phone-link:hover {
    color: var(--copper-dark);
  }

  .field input:hover,
  .field select:hover,
  .field textarea:hover {
    border-color: var(--white-soft);
  }

  .footer-nav a:hover,
  .footer-contact a:hover {
    color: #f1a56f;
  }
}

@media (prefers-reduced-motion: no-preference) {
  .js .reveal {
    opacity: 0;
    transform: translateY(24px);
    transition:
      opacity 650ms var(--ease-out),
      transform 650ms var(--ease-out);
  }

  .js .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .hero-copy {
    animation: hero-copy-in 700ms var(--ease-out) 80ms both;
  }

  .hero-media {
    animation: hero-media-in 850ms var(--ease-out) 150ms both;
  }

  @keyframes hero-copy-in {
    from {
      opacity: 0;
      transform: translateY(18px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes hero-media-in {
    from {
      opacity: 0;
      transform: translateX(26px) scale(1.015);
    }
    to {
      opacity: 1;
      transform: translateX(0) scale(1);
    }
  }
}

@media (max-width: 1180px) {
  :root {
    --header-height: 68px;
  }

  .header-inner {
    gap: 20px;
  }

  .main-nav {
    gap: 22px;
  }

  .phone-link {
    display: none;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 51%) minmax(0, 49%);
  }

  .hero-copy {
    padding-right: 36px;
  }

  .offer-item {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }

  .included-layout {
    gap: 18px;
  }

  .feature {
    min-height: 220px;
    padding: 24px;
  }

  .pricing-layout {
    grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.9fr);
    gap: 32px;
  }

  .price-block + .price-block {
    padding-left: 28px;
  }

  .demo-layout {
    grid-template-columns: minmax(0, 44%) minmax(0, 56%);
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: auto 1fr auto;
  }

  .menu-toggle {
    display: inline-flex;
    grid-column: 3;
  }

  .main-nav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: flex;
    height: calc(100dvh - var(--header-height));
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0;
    padding: 32px 24px 130px;
    background: var(--paper-strong);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition:
      opacity 220ms var(--ease-out),
      transform 220ms var(--ease-out),
      visibility 220ms;
  }

  .main-nav.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    width: 100%;
    padding-block: 20px;
    border-bottom: 1px solid var(--line);
    font-family: var(--font-display);
    font-size: 30px;
  }

  .header-actions {
    grid-row: 1;
    grid-column: 2;
    justify-self: end;
    margin-right: 4px;
  }

  .header-actions .button {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 14px;
  }

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

  .hero-copy {
    max-width: none;
    padding: 76px 40px 64px;
  }

  .hero-copy h1 {
    max-width: 12ch;
  }

  .hero-media {
    height: min(66vw, 600px);
    clip-path: none;
  }

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

  .offer-item:nth-child(2) {
    border-right: 0;
  }

  .offer-item:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line-dark);
  }

  .flow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }

  .flow-item:nth-child(2) {
    border-right: 0;
  }

  .flow-item:nth-child(3) {
    padding-left: 0;
  }

  .included-heading,
  .included-media,
  .included-grid {
    grid-column: 1 / -1;
  }

  .included-heading {
    grid-row: 1;
    max-width: 720px;
  }

  .included-media {
    grid-row: 2;
  }

  .included-media img {
    max-height: 720px;
    aspect-ratio: 4 / 3;
  }

  .included-grid {
    grid-row: 3;
  }

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

  .pricing-visual {
    min-height: 650px;
  }

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 44px;
  }

  .fit-grid li:nth-child(2) {
    border-right: 0;
  }

  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 56px;
  }

  .process-grid::before {
    display: none;
  }

  .faq-grid {
    max-width: 760px;
    grid-template-columns: 1fr;
  }

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

  .demo-copy {
    min-height: 680px;
    padding: 80px 40px 360px;
    clip-path: none;
  }

  .form-panel {
    padding: 72px 40px 90px;
  }

  .lead-form {
    margin-inline: auto;
  }
}

@media (max-width: 767px) {
  :root {
    --header-height: 64px;
  }

  html {
    scroll-padding-top: calc(var(--header-height) + 14px);
  }

  body {
    padding-bottom: 78px;
    font-size: 17px;
  }

  .container {
    width: min(100% - 32px, var(--container));
  }

  h1 {
    font-size: clamp(2.75rem, 13.2vw, 4rem);
    line-height: 1.02;
  }

  h2 {
    font-size: clamp(2.2rem, 10.5vw, 3.1rem);
  }

  .brand-link img {
    width: 82px;
  }

  .header-inner {
    width: calc(100% - 24px);
    gap: 10px;
  }

  .header-actions {
    display: none;
  }

  .hero-copy {
    padding: 62px 16px 50px;
  }

  .hero-copy h1 {
    max-width: 11ch;
  }

  .hero-copy > p {
    max-width: 34ch;
    font-size: 18px;
  }

  .hero-actions {
    width: 100%;
    flex-direction: column;
    gap: 12px;
    margin-top: 30px;
  }

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

  .hero-media {
    height: 78vw;
    min-height: 330px;
    max-height: 500px;
  }

  .hero-media img {
    object-position: 55% 50%;
  }

  .offer-rail,
  .offer-grid {
    min-height: 0;
  }

  .offer-item {
    min-height: 124px;
    padding: 18px 12px;
  }

  .offer-item i {
    font-size: 28px;
  }

  .offer-item strong {
    max-width: 140px;
    font-size: 15px;
  }

  .section {
    padding-block: 76px;
  }

  .section-intro p,
  .included-heading p {
    font-size: 17px;
  }

  .flow-grid {
    display: block;
    margin-top: 46px;
  }

  .flow-item,
  .flow-item:not(:first-child) {
    min-height: 0;
    padding: 0 0 34px 68px;
    border-right: 0;
  }

  .flow-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 47px;
    bottom: 8px;
    left: 20px;
    width: 1px;
    background: var(--line);
  }

  .flow-item i:not(.flow-arrow) {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    font-size: 40px;
  }

  .flow-item p {
    max-width: none;
  }

  .included-layout,
  .included-grid {
    display: block;
  }

  .included-media {
    margin-top: 30px;
  }

  .included-media img {
    max-height: none;
    aspect-ratio: 4 / 5;
  }

  .feature {
    min-height: 0;
    margin-top: 14px;
    padding: 24px;
  }

  .feature-wide {
    display: block;
    min-height: 350px;
    padding-bottom: 220px;
    background:
      linear-gradient(to bottom, rgba(253, 254, 254, 0.98) 0 42%, rgba(253, 254, 254, 0.16) 70%),
      url("../images/google-lead-system-hero.avif") 58% 96% / auto 62% no-repeat,
      var(--paper-strong);
  }

  .feature i {
    margin-bottom: 24px;
  }

  .feature-image {
    min-height: 300px;
    background:
      linear-gradient(to bottom, rgba(253, 254, 254, 0.99) 0 72%, rgba(253, 254, 254, 0.84) 86%, rgba(253, 254, 254, 0.38) 100%),
      url("../images/southwest-landscape-path-768.avif") center bottom / 100% auto no-repeat,
      var(--paper-strong);
  }

  .price-grid {
    grid-template-columns: 1fr;
    margin-top: 42px;
  }

  .price-block {
    padding: 30px 0;
  }

  .price-block + .price-block {
    padding-left: 0;
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .price {
    font-size: clamp(5rem, 26vw, 6.4rem);
  }

  .price-small {
    font-size: clamp(3.2rem, 17vw, 4.6rem);
  }

  .pricing-visual {
    min-height: 560px;
    grid-template-rows: minmax(0, 1fr) auto;
  }

  .guarantee {
    grid-template-columns: 1fr;
    padding: 28px;
  }

  .fit-block {
    padding-bottom: 48px;
  }

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 36px 0;
    margin-top: 42px;
  }

  .fit-grid li {
    padding-inline: 12px;
  }

  .fit-grid li:nth-child(odd) {
    border-right: 1px solid var(--line);
  }

  .fit-grid li:nth-child(even) {
    border-right: 0;
  }

  .fit-grid strong {
    font-size: 15px;
  }

  .process-section h2,
  .faq-section h2 {
    text-align: left;
  }

  .process-grid {
    display: block;
    margin-top: 46px;
  }

  .process-item {
    min-height: 118px;
    padding: 0 0 34px 86px;
    text-align: left;
  }

  .process-item:not(:last-child)::after {
    content: "";
    position: absolute;
    top: 66px;
    bottom: 0;
    left: 34px;
    width: 1px;
    background: var(--copper-bright);
  }

  .process-icon {
    position: absolute;
    top: 0;
    left: 0;
    width: 68px;
    height: 68px;
    margin: 0;
  }

  .process-item p {
    max-width: none;
    margin: 0;
  }

  .faq-section h2 {
    max-width: 12ch;
    margin-inline: 0;
  }

  .faq-grid {
    margin-top: 40px;
  }

  .faq-item summary {
    min-height: 70px;
    padding: 18px;
    font-size: 16px;
  }

  .faq-item p {
    padding: 0 18px 20px;
  }

  .demo-copy {
    min-height: 640px;
    padding: 72px 16px 340px;
    background-size: auto, auto 48%, auto;
    background-position: 0 0, 58% 98%, 0 0;
  }

  .demo-copy h2 {
    max-width: 12ch;
  }

  .demo-copy > p {
    font-size: 17px;
  }

  .demo-contact a {
    font-size: 13px;
  }

  .form-panel {
    padding: 58px 16px 72px;
  }

  .field-grid-two {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .field-grid-two .field + .field {
    margin-top: 0;
  }

  .field input,
  .field select,
  .field textarea {
    min-height: 54px;
  }

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

  .mobile-cta-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 50;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    padding: 10px 12px calc(10px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: rgba(253, 254, 254, 0.96);
    backdrop-filter: blur(18px);
  }

  .mobile-cta-bar .button {
    min-height: 48px;
    padding-inline: 10px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .mobile-cta-bar {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

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

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

  .reveal,
  .js .reveal {
    opacity: 1;
    transform: none;
  }
}

@media print {
  .site-header,
  .mobile-cta-bar,
  .menu-toggle,
  .turnstile-wrap {
    display: none !important;
  }

  body {
    padding: 0;
    color: #111;
    background: #fff;
  }

  .section {
    padding-block: 32px;
  }
}
