:root {
  --green: #12c51b;
  --green-dark: #087b0d;
  --black: #050505;
  --ink: #131713;
  --muted: #5d665e;
  --line: #dce6dc;
  --soft: #f3f7f2;
  --white: #fff;
  --radius: 9px;
  --shadow: 0 24px 58px rgba(0, 0, 0, 0.22);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
select {
  font: inherit;
}

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

.skip-link {
  position: absolute;
  z-index: 1000;
  top: -64px;
  left: 16px;
  padding: 10px 14px;
  color: var(--black);
  background: var(--white);
  border-radius: 6px;
  font-weight: 900;
}

.skip-link:focus {
  top: 16px;
}

.top-strip {
  color: rgba(255, 255, 255, 0.84);
  background: var(--black);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 14px;
}

.top-strip .container,
.nav,
.cta-layout,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.top-strip .container {
  min-height: 42px;
  padding: 8px 0;
}

.top-strip strong,
.top-strip a {
  color: var(--white);
  text-decoration: none;
}

.main-header {
  position: sticky;
  z-index: 50;
  top: 0;
  background: rgba(5, 5, 5, 0.96);
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  backdrop-filter: blur(12px);
}

.nav {
  min-height: 78px;
}

.logo {
  display: inline-flex;
  flex: 0 0 auto;
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 22px;
  margin: 0;
  padding: 0;
  color: rgba(255, 255, 255, 0.82);
  list-style: none;
  font-size: 14px;
  font-weight: 850;
}

.nav-links a,
.call-button,
.primary-button,
.secondary-button,
.secondary-form-button,
.footer a,
.sticky-cta a {
  text-decoration: none;
}

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

.call-button,
.primary-button,
.secondary-button,
.secondary-form-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 950;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.call-button,
.primary-button {
  color: var(--black);
  background: linear-gradient(105deg, var(--green), #a9f1ac);
  border: 0;
  box-shadow: 0 12px 28px rgba(18, 197, 27, 0.24);
}

.call-button {
  padding: 11px 16px;
  white-space: nowrap;
}

.primary-button {
  width: 100%;
  padding: 13px 18px;
}

.secondary-button,
.secondary-form-button {
  padding: 11px 16px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
}

.call-button:hover,
.primary-button:hover,
.secondary-button:hover,
.secondary-form-button:hover {
  transform: translateY(-1px);
}

section {
  scroll-margin-top: 90px;
}

.hero {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.86) 43%, rgba(0, 0, 0, 0.34) 100%),
    url("optimized/hero-desktop.jpg") center / cover no-repeat;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 7px;
  background: linear-gradient(90deg, var(--green), var(--white), var(--green));
  content: "";
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.78fr);
  grid-template-areas:
    "copy form"
    "points form";
  gap: 34px 44px;
  align-items: center;
  padding: 48px 0 56px;
}

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

.eyebrow,
.section-kicker {
  color: var(--green);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

.eyebrow::before {
  width: 9px;
  height: 9px;
  background: var(--green);
  border-radius: 50%;
  content: "";
}

h1,
h2,
h3 {
  margin-top: 0;
  font-family: "Arial Black", Impact, Inter, system-ui, sans-serif;
  letter-spacing: -0.025em;
}

h1 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 0.96;
}

.headline-line {
  display: block;
}

.headline-desktop {
  display: block;
}

.headline-mobile {
  display: none;
}

h2 {
  margin-bottom: 14px;
  color: var(--black);
  font-size: clamp(34px, 4.2vw, 56px);
  line-height: 1;
}

h3 {
  margin-bottom: 8px;
}

.hero-lede {
  max-width: 690px;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(18px, 2vw, 22px);
  line-height: 1.42;
}

.hero-lede-mobile {
  display: none;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-points {
  grid-area: points;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.hero-points li {
  min-height: 94px;
  padding: 14px;
  color: rgba(255, 255, 255, 0.76);
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.17);
  border-radius: var(--radius);
  font-size: 14px;
  line-height: 1.35;
}

.hero-points strong,
.hero-points span {
  display: block;
}

.hero-points strong {
  margin-bottom: 4px;
  color: var(--white);
  font-size: 15px;
}

.lead-form {
  grid-area: form;
  overflow: hidden;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.form-header {
  padding: 22px 24px;
  background: linear-gradient(180deg, #f2fff2, var(--white));
  border-bottom: 1px solid var(--line);
}

.form-header h2 {
  margin: 0;
  font-size: 25px;
  line-height: 1.08;
}

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

.form-status,
.form-step {
  display: grid;
  gap: 12px;
}

.form-status > div:first-child {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.form-status span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
}

#completionText {
  text-align: right;
}

.completion-track {
  overflow: hidden;
  height: 6px;
  background: #e5ece5;
  border-radius: 99px;
}

.completion-track span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--green);
  border-radius: inherit;
  transition: width 0.2s ease;
}

.form-step {
  display: none;
}

.form-step.active {
  display: grid;
}

.field-grid,
.form-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #334033;
  font-size: 13px;
  font-weight: 900;
}

input,
select {
  width: 100%;
  min-height: 50px;
  padding: 11px 13px;
  color: var(--black);
  background: var(--white);
  border: 1px solid #cbd7cb;
  border-radius: 7px;
  outline: none;
}

input:focus,
select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(18, 197, 27, 0.15);
}

.price-preview {
  padding: 12px 13px;
  color: #063f09;
  background: #e8fae9;
  border: 1px solid rgba(18, 197, 27, 0.28);
  border-radius: 7px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.35;
}

.consent,
.form-callout,
.form-message {
  margin: 0;
  font-size: 12px;
}

.consent {
  color: #667066;
  line-height: 1.4;
}

.form-callout {
  color: var(--black);
  font-weight: 850;
  text-align: center;
}

.form-callout a {
  color: var(--green-dark);
}

.form-message {
  display: none;
  padding: 10px 12px;
  color: #06450a;
  background: #e4fae5;
  border: 1px solid rgba(18, 197, 27, 0.3);
  border-radius: 7px;
  font-weight: 850;
}

.form-message.is-visible {
  display: block;
}

.form-message.is-error {
  color: #6b2105;
  background: #fff2e9;
  border-color: #efb28f;
}

.trust-band {
  background: linear-gradient(180deg, var(--white), var(--soft));
  border-bottom: 1px solid var(--line);
}

.trust-layout {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  padding: 26px 0;
}

.trust-item {
  min-height: 132px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.05);
}

.trust-number {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 12px;
  color: var(--black);
  font-size: clamp(36px, 4vw, 52px);
  line-height: 0.9;
  font-weight: 950;
}

.trust-number small {
  color: var(--green);
  font-size: 0.46em;
}

.trust-number.compact {
  font-size: clamp(32px, 3.4vw, 44px);
}

.trust-item > span {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.trust-rating {
  display: grid;
  gap: 4px;
}

.trust-rating > span:last-child {
  color: var(--muted);
  font-size: 14px;
  font-weight: 850;
}

.trust-stars {
  color: #f2ac15;
  font-size: 16px;
  letter-spacing: 0.08em;
  line-height: 1;
}

.section {
  padding: 76px 0;
}

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

.section.dark,
.difference-section,
.cta-band {
  color: var(--white);
  background: var(--black);
}

.section.dark h2,
.difference-section h2,
.cta-band h2 {
  color: var(--white);
}

.section-header {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-header.center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-header p {
  max-width: 740px;
  margin-right: auto;
  margin-left: auto;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.55;
}

.section-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--green-dark);
}

.packages-section .section-kicker {
  font-size: 15px;
}

.packages-section .section-header {
  max-width: 900px;
}

.packages-section .section-header h2 {
  font-size: clamp(32px, 3.8vw, 50px);
}

.section.dark .section-kicker,
.difference-section .section-kicker {
  color: var(--green);
}

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  align-items: start;
}

.package-card {
  position: relative;
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.09);
}

.package-card.featured {
  border-color: rgba(18, 197, 27, 0.72);
  box-shadow: 0 20px 50px rgba(18, 197, 27, 0.12);
}

.popular {
  position: absolute;
  z-index: 2;
  top: 14px;
  right: 14px;
  padding: 7px 10px;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.package-visual {
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  color: var(--white);
  background-position: center;
  background-size: cover;
}

.essential-visual {
  background-image: linear-gradient(180deg, transparent 24%, rgba(0, 0, 0, 0.9)), url("optimized/package-essential.jpg");
}

.signature-visual {
  background-image: linear-gradient(180deg, transparent 18%, rgba(0, 0, 0, 0.94)), url("optimized/package-signature-client-audi.jpg");
  background-position: center 55%;
}

.package-visual > span {
  color: var(--green);
  font-size: 12px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.package-visual h3 {
  margin: 4px 0 8px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  line-height: 1;
}

.package-price {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px 12px;
  margin: 0;
  font-weight: 800;
}

.package-price strong {
  font-size: 34px;
}

.package-price span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.package-body {
  padding: 28px;
}

.package-body > p {
  margin-top: 0;
  color: var(--muted);
}

.package-highlights,
.check-list {
  display: grid;
  gap: 10px;
  margin: 20px 0 24px;
  padding: 0;
  list-style: none;
}

.package-highlights li,
.check-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 800;
}

.package-highlights li::before,
.check-list li::before {
  position: absolute;
  top: 2px;
  left: 0;
  display: grid;
  width: 20px;
  height: 20px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  content: "✓";
  font-size: 12px;
  font-weight: 950;
}

.package-details {
  margin-bottom: 22px;
  overflow: hidden;
  background: #f6faf5;
  border: 1px solid #d7e3d5;
  border-radius: 14px;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.package-details[open] {
  border-color: rgba(18, 197, 27, 0.5);
  box-shadow: 0 10px 26px rgba(18, 197, 27, 0.08);
}

.package-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 66px;
  gap: 14px;
  padding: 11px 14px 11px 16px;
  cursor: pointer;
  color: var(--black);
  font-weight: 950;
  list-style: none;
}

.package-details summary > span {
  display: grid;
  gap: 2px;
}

.package-details summary small {
  color: var(--green-dark);
  font-size: 10px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.package-details summary::after {
  flex: 0 0 auto;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  color: var(--white);
  background: var(--black);
  border-radius: 50%;
  content: "+";
  font-size: 22px;
  line-height: 1;
  transition: color 180ms ease, background 180ms ease, transform 180ms ease;
}

.package-details[open] summary::after {
  content: "−";
  color: var(--black);
  background: var(--green);
  transform: rotate(180deg);
}

.package-details-content {
  padding: 16px;
  background: var(--white);
  border-top: 1px solid #d7e3d5;
}

.included-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.included-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1.35;
}

.included-list li::before {
  position: absolute;
  top: 1px;
  left: 0;
  display: grid;
  width: 17px;
  height: 17px;
  place-items: center;
  color: var(--white);
  background: var(--green-dark);
  border-radius: 50%;
  content: "✓";
  font-size: 10px;
  font-weight: 950;
}

.pricing-note {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--muted);
  font-size: 13px;
  text-align: center;
}

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

.comparison-heading {
  margin-bottom: 26px;
}

.comparison-stats {
  display: grid;
  max-width: 960px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 22px;
}

.comparison-stats div {
  padding: 18px 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-align: center;
}

.comparison-stats strong,
.comparison-stats span {
  display: block;
}

.comparison-stats strong {
  color: var(--black);
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1;
}

.comparison-stats span {
  margin-top: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.comparison-card {
  --comparison-position: 100%;
  position: relative;
  max-width: 960px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  margin: 0 auto;
  background: var(--black);
  border: 1px solid #cbd5c9;
  border-radius: calc(var(--radius) + 2px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.13);
}

.comparison-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.comparison-after {
  position: absolute;
  z-index: 1;
  inset: 0;
  clip-path: inset(0 calc(100% - var(--comparison-position)) 0 0);
  transition: clip-path 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.comparison-divider {
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  left: var(--comparison-position);
  width: 3px;
  background: var(--white);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.22);
  pointer-events: none;
  transform: translateX(-50%);
  transition: left 0.9s cubic-bezier(0.2, 0.75, 0.2, 1);
}

.comparison-divider span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border: 4px solid var(--white);
  border-radius: 50%;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
  font-size: 20px;
  font-weight: 950;
  transform: translate(-50%, -50%);
}

.comparison-card.is-interacting .comparison-after,
.comparison-card.is-interacting .comparison-divider {
  transition: none;
}

.comparison-card:focus-within {
  outline: 3px solid var(--green);
  outline-offset: 3px;
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 0;
  margin: 0;
  padding: 0;
  cursor: ew-resize;
  opacity: 0;
  touch-action: pan-y;
}

.comparison-label {
  position: absolute;
  z-index: 2;
  top: 18px;
  padding: 8px 11px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.comparison-label-after {
  left: 18px;
}

.comparison-label-before {
  right: 18px;
}

.comparison-help {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-align: center;
}

.convenience-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 38px;
  align-items: center;
}

.convenience-copy p,
.check-list span {
  color: rgba(255, 255, 255, 0.74);
}

.check-list li {
  color: var(--white);
}

.check-list strong,
.check-list span {
  display: block;
}

.check-list span {
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
}

.convenience-media {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.convenience-media img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.process-card {
  position: relative;
  min-height: 260px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.07);
}

.process-card:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 33px;
  right: -17px;
  display: grid;
  width: 16px;
  height: 24px;
  place-items: center;
  color: var(--green-dark);
  background: var(--soft);
  content: "→";
  font-size: 18px;
  font-weight: 950;
}

.process-card > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 28px;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-weight: 950;
}

.process-card h3 {
  font-size: 25px;
  line-height: 1.08;
}

.process-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.process-card.finish-card {
  color: var(--white);
  background: var(--black);
  border-color: rgba(18, 197, 27, 0.5);
  box-shadow: 0 16px 38px rgba(18, 197, 27, 0.13);
}

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

.process-card.finish-card p {
  color: rgba(255, 255, 255, 0.74);
}

.process-outcome {
  grid-column: 1 / -1;
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 22px;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.process-outcome span {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  color: var(--black);
  background: var(--green);
  border-radius: 50%;
  font-size: 15px;
}

.js .process-card:nth-child(2) {
  transition-delay: 0.1s;
}

.js .process-card:nth-child(3) {
  transition-delay: 0.2s;
}

.js .process-card:nth-child(4) {
  transition-delay: 0.3s;
}

.js .process-card.is-revealed > span {
  animation: processPulse 0.5s ease both;
}

@keyframes processPulse {
  0% { transform: scale(0.72); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1); }
}

.work-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.work-card {
  position: relative;
  min-height: 255px;
  overflow: hidden;
  margin: 0;
  background: var(--black);
  border-radius: var(--radius);
}

.work-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.work-card img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  transition: transform 0.28s ease;
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  padding: 10px 12px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.76);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 6px;
  font-weight: 900;
}

.reviews-section {
  overflow: hidden;
}

.review-carousel {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 5%, #000 95%, transparent);
}

.review-track {
  --review-set-width: 1490px;
  display: flex;
  width: max-content;
  gap: 14px;
  animation: reviewMarquee 52s linear infinite;
}

.review-track:hover {
  animation-play-state: paused;
}

.review-slide {
  width: 310px;
  flex: 0 0 310px;
  padding: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
}

.review-slide img {
  width: 50px;
  height: 50px;
  margin-bottom: 16px;
  border-radius: 50%;
  object-fit: cover;
}

.review-slide p {
  min-height: 120px;
  color: var(--muted);
}

.review-slide h3 {
  margin: 0;
  color: var(--black);
  font-size: 18px;
}

.review-slide span {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

.review-slide > strong {
  color: #f3ae16;
  letter-spacing: 0.08em;
}

@keyframes reviewMarquee {
  from { transform: translateX(0); }
  to { transform: translateX(calc(-1 * var(--review-set-width))); }
}

.difference-section {
  padding: 64px 0;
}

.difference-heading {
  max-width: 760px;
  margin: 0 auto 28px;
  text-align: center;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.difference-grid article {
  padding: 24px;
  color: var(--black);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.difference-grid h3 {
  font-size: 23px;
}

.difference-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.cta-band {
  padding: 44px 0;
}

.cta-band h2 {
  margin-bottom: 8px;
  font-size: clamp(30px, 4vw, 48px);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.faq-list {
  display: grid;
  max-width: 960px;
  gap: 10px;
  margin: 0 auto;
}

.faq-item {
  overflow: hidden;
  color: var(--white);
  background: var(--black);
  border: 1px solid #1f251f;
  border-radius: var(--radius);
}

.faq-button {
  display: flex;
  width: 100%;
  min-height: 62px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 22px;
  color: var(--white);
  background: var(--black);
  border: 0;
  cursor: pointer;
  font-weight: 950;
  text-align: left;
}

.faq-button span {
  color: var(--green);
  font-size: 22px;
}

.faq-answer {
  display: none;
  padding: 0 22px 20px;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.faq-item.open .faq-answer {
  display: block;
}

.footer {
  color: var(--white);
  background: var(--black);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(320px, 1.1fr) auto;
  grid-template-areas:
    "brand links actions"
    "summary links actions";
  align-items: center;
  gap: 8px clamp(28px, 4vw, 56px);
  padding: 34px 0 26px;
}

.footer-brand {
  grid-area: brand;
  display: inline-flex;
  width: fit-content;
}

.footer-brand img {
  width: 190px;
  height: auto;
}

.footer-summary {
  grid-area: summary;
  max-width: 44ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.4;
}

.footer-links {
  grid-area: links;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 850;
}

.footer-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-phone,
.footer-cta {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 11px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 900;
  white-space: nowrap;
}

.footer-phone {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.24);
}

.footer-cta {
  color: var(--black);
  background: var(--green);
}

.footer-bottom {
  padding: 15px 0 20px;
  color: rgba(255, 255, 255, 0.54);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 13px;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.7);
  font-weight: 800;
}

.sticky-cta {
  position: fixed;
  z-index: 60;
  right: 22px;
  bottom: 22px;
  display: none;
  align-items: center;
  gap: 12px;
  padding: 8px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.92);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.sticky-cta span {
  padding-left: 10px;
  font-size: 13px;
  font-weight: 900;
}

.sticky-cta a {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  color: var(--black);
  background: var(--green);
  border-radius: 999px;
  font-weight: 950;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.js [data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}

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

  .hero-layout,
  .convenience-layout {
    grid-template-columns: 1fr;
  }

  .hero-layout {
    grid-template-areas:
      "copy"
      "form"
      "points";
  }

  .package-grid {
    gap: 16px;
  }

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

  .process-card:not(:last-child)::after {
    display: none;
  }

  .footer-main {
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand actions"
      "summary actions"
      "links links";
  }
}

@media (max-width: 680px) {
  html,
  body {
    overflow-x: hidden;
  }

  main {
    display: flex;
    flex-direction: column;
  }

  .hero { order: 1; }
  .trust-band { order: 2; }
  .reviews-section { order: 3; }
  .packages-section { order: 4; }
  .comparison-section { order: 5; }
  .convenience-section { order: 6; }
  .process-section { order: 7; }
  .work-section { order: 8; }
  .faq-section { order: 9; }

  .container {
    width: calc(100% - 28px);
  }

  .top-strip {
    font-size: 11px;
  }

  .top-strip .container {
    min-height: 36px;
    justify-content: center;
    text-align: center;
  }

  .top-strip a {
    display: none;
  }

  .nav {
    min-height: 68px;
  }

  .logo img {
    width: 156px;
  }

  .header-call {
    min-height: 42px;
    padding: 9px 12px;
    font-size: 12px;
  }

  .hero {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.9) 38%, rgba(0, 0, 0, 0.97) 100%),
      url("optimized/hero-mobile.jpg") center top / cover no-repeat;
  }

  .hero-layout {
    gap: 14px;
    padding: 32px 0 42px;
  }

  .eyebrow {
    display: none;
  }

  h1 {
    max-width: 100%;
    margin-bottom: 12px;
    font-family: inherit;
    font-size: clamp(34px, 9.2vw, 38px);
    font-weight: 950;
    line-height: 0.98;
    letter-spacing: 0;
  }

  .headline-desktop {
    display: none;
  }

  .headline-mobile {
    display: block;
  }

  .headline-mobile .headline-line {
    white-space: nowrap;
  }

  .hero-lede-desktop {
    display: none;
  }

  .hero-lede-mobile {
    display: block;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 1.4;
  }

  .hero-actions {
    display: none;
  }

  .form-header {
    padding: 17px 18px;
  }

  .form-header h2 {
    white-space: nowrap;
    font-size: clamp(16px, 4.5vw, 19px);
    letter-spacing: -0.035em;
  }

  .lead-form form {
    gap: 10px;
    padding: 18px;
  }

  .form-step {
    gap: 9px;
  }

  label {
    font-size: 12px;
  }

  input,
  select {
    min-height: 46px;
    padding: 10px 11px;
    font-size: 13px;
  }

  .field-grid {
    gap: 8px;
  }

  .price-preview {
    padding: 10px 11px;
    font-size: 12px;
  }

  .hero-points {
    grid-template-columns: 1fr;
    gap: 11px;
    margin-top: 4px;
  }

  .hero-points li {
    position: relative;
    min-height: 0;
    padding: 14px 14px 14px 50px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.06));
    border-color: rgba(255, 255, 255, 0.24);
    font-size: 12.5px;
    line-height: 1.35;
  }

  .hero-points li::before {
    position: absolute;
    top: 50%;
    left: 14px;
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    color: var(--black);
    background: var(--green);
    border-radius: 50%;
    content: "✓";
    font-size: 13px;
    font-weight: 950;
    transform: translateY(-50%);
  }

  .hero-points strong,
  .hero-points span {
    display: block;
  }

  .hero-points strong {
    margin: 0 0 3px;
    font-size: 14px;
  }

  .trust-layout {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 9px;
    padding: 16px 0;
  }

  .trust-item {
    min-height: 106px;
    padding: 14px;
  }

  .trust-number,
  .trust-number.compact {
    margin-bottom: 9px;
    font-size: clamp(28px, 8vw, 36px);
  }

  .trust-item > span,
  .trust-rating > span:last-child {
    font-size: 12px;
    line-height: 1.2;
  }

  .trust-stars {
    font-size: 12px;
  }

  .section {
    padding: 52px 0;
  }

  .section-header {
    margin-bottom: 24px;
  }

  .section-header h2,
  .convenience-copy h2,
  .difference-heading h2,
  .cta-band h2 {
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.03;
  }

  .section-header p {
    display: none;
  }

  .packages-section .section-kicker {
    font-size: 14px;
    line-height: 1.35;
  }

  .packages-section .section-header h2 {
    font-size: clamp(27px, 7.6vw, 32px);
    line-height: 1.04;
  }

  .packages-section .section-header p {
    display: block;
    margin: 12px auto 0;
    font-size: 14px;
    line-height: 1.45;
  }

  .comparison-heading h2 {
    font-size: clamp(29px, 8vw, 34px);
  }

  .comparison-heading p {
    display: block;
    margin-top: 11px;
    font-size: 14px;
    line-height: 1.45;
  }

  .comparison-stats {
    gap: 7px;
    margin-bottom: 16px;
  }

  .comparison-stats div {
    padding: 13px 7px;
    border-radius: 10px;
  }

  .comparison-stats strong {
    font-size: clamp(20px, 6.4vw, 27px);
  }

  .comparison-stats span {
    margin-top: 5px;
    font-size: 10px;
    line-height: 1.2;
  }

  .comparison-card {
    aspect-ratio: 4 / 3;
  }

  .comparison-label {
    top: 12px;
    padding: 6px 9px;
    font-size: 9px;
  }

  .comparison-label-after {
    left: 12px;
  }

  .comparison-label-before {
    right: 12px;
  }

  .comparison-divider span {
    width: 42px;
    height: 42px;
    font-size: 17px;
  }

  .package-grid,
  .process-grid,
  .work-grid,
  .difference-grid {
    grid-template-columns: 1fr;
  }

  .package-visual {
    min-height: 210px;
    padding: 20px;
  }

  .package-visual h3 {
    font-size: 34px;
  }

  .package-price strong {
    font-size: 29px;
  }

  .package-body {
    padding: 20px;
  }

  .package-body > p {
    font-size: 14px;
    line-height: 1.4;
  }

  .package-highlights {
    gap: 8px;
    margin: 16px 0 18px;
    font-size: 14px;
  }

  .included-list {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .package-details summary {
    min-height: 62px;
    padding-left: 14px;
    font-size: 14px;
  }

  .package-details-content {
    padding: 14px;
  }

  .pricing-note {
    font-size: 12px;
  }

  .convenience-layout {
    gap: 18px;
  }

  .convenience-copy > p {
    display: none;
  }

  .check-list {
    gap: 0;
    margin: 18px 0 0;
  }

  .check-list li {
    padding-top: 13px;
    padding-bottom: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .check-list li::before {
    top: 15px;
  }

  .convenience-media img {
    height: auto;
    aspect-ratio: 16 / 9;
    object-position: center 43%;
  }

  .process-card {
    min-height: 0;
    padding: 0 0 34px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .process-grid {
    position: relative;
    display: block;
    padding: 28px 20px 28px 78px;
    background: #0d150d;
    border: 1px solid #293329;
    border-radius: var(--radius);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.12);
  }

  .process-grid::before {
    position: absolute;
    top: 50px;
    bottom: 50px;
    left: 38px;
    width: 3px;
    background: var(--green);
    content: "";
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 1.5s cubic-bezier(0.2, 0.75, 0.2, 1);
  }

  .process-grid.is-active::before {
    transform: scaleY(1);
  }

  .process-card:not(:last-child)::after {
    display: none;
  }

  .process-card > span {
    position: absolute;
    z-index: 2;
    top: 0;
    left: -61px;
    width: 44px;
    height: 44px;
    margin: 0;
    border: 3px solid #0d150d;
    font-size: 13px;
    box-shadow: 0 0 0 1px rgba(18, 197, 27, 0.45);
  }

  .process-card h3 {
    color: var(--white);
    font-size: 24px;
  }

  .process-card p {
    color: rgba(255, 255, 255, 0.72);
    font-size: 14px;
    line-height: 1.48;
  }

  .process-card.finish-card {
    padding-bottom: 34px;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .process-outcome {
    position: relative;
    min-height: 44px;
    justify-self: stretch;
    margin: 0;
  }

  .process-outcome span {
    position: absolute;
    top: 0;
    left: -61px;
    width: 44px;
    height: 44px;
    margin: 0;
    border: 3px solid #0d150d;
    box-shadow: 0 0 0 1px rgba(18, 197, 27, 0.45);
  }

  .work-card,
  .work-card.large {
    min-height: 300px;
    grid-column: auto;
    grid-row: auto;
  }

  .work-card.large {
    aspect-ratio: 1 / 1;
  }

  .review-carousel {
    margin-right: -14px;
    margin-left: -14px;
    padding-left: 14px;
    mask-image: none;
  }

  .review-slide {
    width: calc(84vw - 18px);
    flex-basis: calc(84vw - 18px);
    padding: 20px;
  }

  .review-slide p {
    min-height: 110px;
    font-size: 14px;
  }

  .difference-section {
    padding: 40px 0 0;
  }

  .difference-heading {
    margin: 0 0 16px;
    text-align: left;
  }

  .difference-heading h2 {
    display: none;
  }

  .difference-grid {
    gap: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .difference-grid article {
    position: relative;
    padding: 14px 0 14px 24px;
    color: var(--white);
    background: transparent;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 0;
  }

  .difference-grid article::before {
    position: absolute;
    top: 22px;
    left: 2px;
    width: 8px;
    height: 8px;
    background: var(--green);
    border-radius: 50%;
    content: "";
  }

  .difference-grid h3 {
    margin: 0;
    color: var(--white);
    font-family: inherit;
    font-size: 17px;
    letter-spacing: 0;
  }

  .difference-grid p {
    margin-top: 3px;
    color: rgba(255, 255, 255, 0.74);
    font-size: 13px;
    line-height: 1.35;
  }

  .cta-band {
    padding: 24px 0 40px;
  }

  .cta-layout {
    align-items: stretch;
    flex-direction: column;
  }

  .cta-band p {
    font-size: 14px;
    line-height: 1.4;
  }

  .faq-list {
    gap: 9px;
  }

  .faq-button {
    min-height: 54px;
    padding: 15px 16px;
    font-size: 14px;
    line-height: 1.25;
  }

  .faq-answer {
    padding: 0 16px 16px;
    font-size: 14px;
    line-height: 1.45;
  }

  .footer-main {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "summary"
      "links"
      "actions";
    gap: 16px;
    padding: 28px 0 20px;
  }

  .footer-brand img {
    width: 172px;
  }

  .footer-links {
    justify-content: flex-start;
    padding: 14px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .footer-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    width: 100%;
  }

  .footer-phone,
  .footer-cta {
    padding-right: 9px;
    padding-left: 9px;
    font-size: 13px;
  }

  .footer-bottom {
    align-items: center;
    gap: 12px;
    padding: 14px 0 88px;
    font-size: 12px;
  }

  .sticky-cta.is-visible {
    right: 14px;
    bottom: 12px;
    left: 14px;
    display: flex;
    justify-content: space-between;
    border-radius: var(--radius);
  }
}

@media (max-width: 390px) {
  .header-call {
    padding: 9px 10px;
    font-size: 11px;
  }

  .logo img {
    width: 142px;
  }

  .form-header h2 {
    font-size: 16px;
  }

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

@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;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
