:root {
  color-scheme: light;
  --bg: #fbfbfc;
  --ink: #1f2428;
  --muted: #626b74;
  --line: #e8e2dc;
  --panel: #ffffff;
  --accent: #ff2733;
  --accent-dark: #d91521;
  --gold: #f4b740;
  --teal: #0d9488;
  --shadow: 0 24px 70px rgb(31 36 40 / 10%);
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
}

a {
  color: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 72px;
  padding: 14px clamp(18px, 5vw, 72px);
  border-bottom: 1px solid rgb(232 226 220 / 78%);
  background: rgb(251 251 252 / 92%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-weight: 820;
  text-decoration: none;
}

.brand img {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
}

.site-header nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.site-header nav a,
.secondary-action,
.site-footer a {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #343a40;
  font-size: 0.9rem;
  font-weight: 760;
  padding: 10px 14px;
  text-decoration: none;
}

.site-header nav a:hover,
.secondary-action:hover,
.site-footer a:hover {
  border-color: #d8cec4;
  background: #f7f5f2;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(320px, 0.96fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 72px);
  padding: clamp(42px, 7vw, 96px) clamp(18px, 5vw, 72px) clamp(28px, 5vw, 58px);
}

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

.eyebrow {
  margin: 0 0 12px;
  color: var(--accent);
  font-size: 0.88rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
p,
blockquote {
  margin: 0;
}

h1 {
  max-width: 680px;
  font-size: clamp(3.4rem, 8.4vw, 7.6rem);
  line-height: 0.9;
  letter-spacing: 0;
}

.lead {
  max-width: 660px;
  margin-top: 28px;
  color: #343a40;
  font-size: clamp(1.2rem, 2vw, 1.65rem);
  line-height: 1.38;
}

.support {
  max-width: 620px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

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

.primary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border-radius: 8px;
  background: var(--accent);
  color: #fff;
  font-weight: 840;
  padding: 0 18px;
  text-decoration: none;
}

.primary-action:hover {
  background: var(--accent-dark);
}

.hero-visual {
  justify-self: stretch;
}

.inbox-preview {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgb(244 183 64 / 18%), transparent 36%),
    linear-gradient(215deg, rgb(13 148 136 / 16%), transparent 42%),
    #fff;
  box-shadow: var(--shadow);
  padding: clamp(18px, 3vw, 32px);
}

.preview-top {
  display: flex;
  gap: 7px;
  padding-bottom: 22px;
}

.preview-top span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #d9d6d2;
}

.message-card {
  border: 1px solid #ece7e1;
  border-radius: 8px;
  background: rgb(255 255 255 / 86%);
  padding: clamp(18px, 3vw, 28px);
}

.message-card small,
.stat-row span {
  display: block;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 760;
  text-transform: uppercase;
}

.message-card strong {
  display: block;
  margin-top: 10px;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  line-height: 1.08;
}

.message-card p {
  margin-top: 16px;
  color: #444b52;
  font-size: 1.02rem;
  line-height: 1.6;
}

.stat-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.stat-row div {
  min-width: 0;
  border: 1px solid #ece7e1;
  border-radius: 8px;
  background: rgb(255 255 255 / 78%);
  padding: 14px;
}

.stat-row strong {
  display: block;
  margin-top: 6px;
  font-size: clamp(1.35rem, 2.5vw, 2rem);
}

.what-we-do {
  display: grid;
  grid-template-columns: minmax(260px, 0.9fr) minmax(320px, 1.1fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: start;
  padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.what-we-do h2 {
  max-width: 760px;
  font-size: clamp(2.1rem, 5vw, 5rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.what-we-do-copy {
  display: grid;
  gap: 22px;
}

.what-we-do-copy p {
  max-width: 610px;
  color: #343a40;
  font-size: clamp(1.25rem, 2.4vw, 2rem);
  font-weight: 720;
  line-height: 1.25;
}

.service-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.service-steps span {
  display: inline-flex;
  min-height: 36px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #f7f5f2;
  color: #343a40;
  font-size: 0.88rem;
  font-weight: 820;
  padding: 0 14px;
}

.guarantee-box {
  display: grid;
  gap: 12px;
  max-width: 650px;
  padding-top: 4px;
}

.guarantee-box p {
  margin: 0;
  color: #444b52;
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.55;
}

.guarantee-box .guarantee-label {
  color: var(--accent);
  font-size: 0.78rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.booking-proof {
  display: grid;
  gap: clamp(24px, 4vw, 40px);
  grid-column: 1 / -1;
  margin-top: clamp(12px, 3vw, 28px);
  padding: clamp(42px, 6vw, 76px) clamp(18px, 5vw, 72px);
  border-radius: 8px;
  background: #252525;
  color: #fff;
}

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

.proof-intro h2 {
  font-size: clamp(2.1rem, 4vw, 4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.proof-intro p:last-child {
  margin-top: 16px;
  color: rgb(255 255 255 / 68%);
  line-height: 1.7;
}

.proof-images {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 14px;
  max-width: 1180px;
}

.proof-images figure {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 58px rgb(0 0 0 / 20%);
}

.proof-images img {
  display: block;
  width: 100%;
  height: auto;
}

.booking-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.78fr) minmax(320px, 1.22fr);
  gap: clamp(26px, 4vw, 54px);
  align-items: start;
  padding: clamp(46px, 6vw, 84px) clamp(18px, 5vw, 72px);
}

.booking-copy {
  align-self: start;
}

.booking-copy h2 {
  max-width: 500px;
  font-size: clamp(2rem, 4.6vw, 4.3rem);
  line-height: 0.96;
  letter-spacing: 0;
}

.booking-copy p:last-child {
  max-width: 460px;
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.7;
}

.booking-frame {
  min-height: 690px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: clamp(14px, 2vw, 20px);
}

.booking-page {
  min-height: 650px;
}

.booking-placeholder {
  display: grid;
  min-height: 650px;
  place-content: center;
  gap: 12px;
  border: 1px dashed #d8cec4;
  border-radius: 8px;
  background: #f7f5f2;
  padding: 24px;
  text-align: center;
}

.booking-placeholder strong {
  font-size: 1.4rem;
}

.booking-placeholder p {
  max-width: 420px;
  color: var(--muted);
  line-height: 1.6;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 30px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: #fff;
}

.site-footer strong {
  display: block;
}

.site-footer p {
  margin-top: 4px;
  color: var(--muted);
}

.thank-you-page {
  display: grid;
  min-height: calc(100vh - 72px);
  place-items: center;
  padding: clamp(42px, 8vw, 110px) clamp(18px, 5vw, 72px);
}

.thank-you-section {
  max-width: 780px;
}

.thank-you-section h1 {
  font-size: clamp(3rem, 8vw, 7rem);
}

.thank-you-section p:not(.eyebrow) {
  max-width: 660px;
  margin-top: 24px;
  color: #343a40;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.45;
}

.thank-you-section .primary-action {
  margin-top: 30px;
}

.hood-page {
  background: #fcfbf8;
}

.hood-offer-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 42px;
  padding: 9px 18px;
  background: #1f2428;
  color: #fff;
  font-size: 0.88rem;
  text-align: center;
}

.hood-offer-bar span {
  border-radius: 999px;
  background: rgb(255 255 255 / 12%);
  font-weight: 780;
  padding: 5px 10px;
}

.hood-offer-bar strong {
  font-weight: 760;
}

.hood-header {
  position: sticky;
  top: 0;
}

.hood-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  gap: clamp(30px, 5vw, 72px);
  align-items: center;
  min-height: calc(100vh - 114px);
  padding: clamp(42px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 68px);
  background:
    linear-gradient(90deg, #fcfbf8 0%, #fcfbf8 55%, #f5eee5 55%, #f5eee5 100%);
}

.hood-hero-copy {
  max-width: 760px;
}

.rating-line {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: #343a40;
  font-size: 0.92rem;
}

.rating-line span {
  color: var(--gold);
  letter-spacing: 0;
}

.rating-line strong {
  font-weight: 780;
}

.hood-hero h1 {
  max-width: 820px;
  font-size: clamp(3.15rem, 7.8vw, 7.2rem);
}

.mini-trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.mini-trust-row span {
  border: 1px solid #e4dbd1;
  border-radius: 8px;
  background: #fff;
  color: #343a40;
  font-size: 0.9rem;
  font-weight: 820;
  padding: 10px 12px;
}

.hood-hero-panel {
  display: grid;
  gap: 14px;
}

.lead-card {
  border: 1px solid #e2d8ce;
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--shadow);
  padding: clamp(22px, 4vw, 40px);
}

.lead-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 26px;
}

.lead-card-top span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.lead-card-top strong {
  border-radius: 999px;
  background: #e9f8f6;
  color: #0f766e;
  font-size: 0.82rem;
  padding: 7px 10px;
}

.lead-card blockquote {
  font-size: clamp(1.9rem, 4vw, 3.45rem);
  font-weight: 850;
  line-height: 0.98;
}

.lead-card p {
  margin-top: 22px;
  color: var(--muted);
  line-height: 1.65;
}

.hood-stat-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.hood-stat-strip div {
  border: 1px solid #e2d8ce;
  border-radius: 8px;
  background: #fff;
  padding: 15px;
}

.hood-stat-strip span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 820;
  text-transform: uppercase;
}

.hood-stat-strip strong {
  display: block;
  margin-top: 7px;
  font-size: clamp(1.08rem, 2vw, 1.55rem);
}

.hood-band,
.hood-process-section,
.hood-comparison,
.hood-faq {
  padding: clamp(50px, 7vw, 96px) clamp(18px, 5vw, 72px);
}

.hood-band {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hood-section-heading {
  max-width: 850px;
}

.hood-section-heading h2 {
  font-size: clamp(2.35rem, 5.4vw, 5.6rem);
  line-height: 0.95;
}

.hood-section-heading p:not(.eyebrow) {
  max-width: 680px;
  margin-top: 18px;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.8vw, 1.28rem);
  line-height: 1.62;
}

.hood-benefit-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}

.hood-benefit,
.hood-process-grid article,
.comparison-grid > div {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(20px, 3vw, 30px);
}

.hood-benefit span {
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 860;
}

.hood-benefit h3,
.hood-process-grid strong,
.comparison-grid h3 {
  display: block;
  margin-top: 16px;
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.hood-benefit p,
.hood-process-grid p,
.comparison-grid li,
.faq-list p {
  margin-top: 14px;
  color: var(--muted);
  line-height: 1.62;
}

.target-markets {
  display: grid;
  gap: 20px;
  max-width: 1120px;
  margin: clamp(28px, 4vw, 46px) auto 0;
  padding-top: clamp(22px, 3vw, 34px);
  border-top: 1px solid var(--line);
}

.target-markets-copy h3 {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 3rem);
  line-height: 1;
}

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

.target-markets li {
  min-height: 54px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  color: #343a40;
  font-weight: 780;
  line-height: 1.25;
  padding: 13px 14px;
}

.hood-proof-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.76fr) minmax(340px, 1.24fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  padding: clamp(50px, 7vw, 96px) clamp(18px, 5vw, 72px);
  background: #252525;
  color: #fff;
}

.hood-proof-copy {
  max-width: 560px;
}

.hood-proof-copy h2 {
  font-size: clamp(2.35rem, 5vw, 5rem);
  line-height: 0.95;
}

.hood-proof-copy p:not(.eyebrow) {
  margin-top: 18px;
  color: rgb(255 255 255 / 72%);
  line-height: 1.7;
}

.hood-proof-copy .primary-action {
  margin-top: 28px;
}

.hood-proof-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 12%);
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 22px 70px rgb(0 0 0 / 24%);
}

.hood-proof-image img {
  display: block;
  width: 100%;
  height: auto;
}

.hood-process-section {
  background: #fcfbf8;
}

.hood-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
}

.hood-process-grid strong {
  margin-top: 0;
}

.hood-guarantee {
  max-width: 880px;
  margin-top: clamp(34px, 5vw, 58px);
  padding-top: clamp(26px, 4vw, 42px);
  border-top: 1px solid var(--line);
}

.hood-guarantee h3 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(1.85rem, 3.7vw, 3.7rem);
  line-height: 0.98;
}

.hood-guarantee p:not(.eyebrow) {
  max-width: 760px;
  margin-top: 10px;
  color: #444b52;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 640;
  line-height: 1.55;
}

.hood-pricing {
  max-width: 880px;
  margin-top: clamp(28px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: clamp(22px, 4vw, 38px);
}

.hood-pricing h3 {
  margin: 0;
  font-size: clamp(2.8rem, 6vw, 5.4rem);
  line-height: 0.95;
}

.hood-pricing p:not(.eyebrow) {
  max-width: 720px;
  margin-top: 12px;
  color: #444b52;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  font-weight: 640;
  line-height: 1.55;
}

.hood-comparison {
  background: #fff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 44px);
  max-width: 1080px;
}

.comparison-grid ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.comparison-grid li {
  margin-top: 10px;
}

.hood-booking {
  background: #fcfbf8;
}

.hood-faq {
  background: #fff;
  border-top: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 10px;
  max-width: 960px;
  margin-top: clamp(26px, 4vw, 40px);
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 18px 20px;
}

.faq-list summary {
  cursor: pointer;
  color: #343a40;
  font-weight: 820;
  line-height: 1.35;
}

@media (max-width: 860px) {
  .site-header {
    position: static;
  }

  .site-header nav a:first-child {
    display: none;
  }

  .hero,
  .booking-section,
  .what-we-do,
  .hood-hero,
  .hood-proof-section {
    grid-template-columns: 1fr;
  }

  .hood-hero {
    min-height: auto;
    background: #fcfbf8;
  }

  .hood-benefit-grid,
  .hood-process-grid,
  .comparison-grid {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .booking-copy {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
  }

  .hood-offer-bar {
    align-items: stretch;
    flex-direction: column;
    gap: 6px;
  }

  .brand span {
    max-width: 130px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .site-header nav a {
    padding: 9px 10px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.4rem);
  }

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

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

  .booking-frame,
  .booking-page,
  .booking-placeholder {
    min-height: 620px;
  }

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

/* GoListKit-inspired treatment for the dedicated hood-cleaners page. */
.hood-page {
  --hood-blue: #3f7ee8;
  --hood-blue-dark: #275aa8;
  --hood-orange: #f59e0b;
  --hood-orange-dark: #d97706;
  --hood-ink: #111827;
  --hood-soft: #f8fafc;
  background: #fff;
  color: var(--hood-ink);
}

.hood-page .hood-offer-bar {
  gap: 10px;
  min-height: 48px;
  border-bottom: 1px solid #e5e7eb;
  background: #fff;
  color: #334155;
}

.hood-page .hood-offer-bar span {
  border: 1px solid #bfdbfe;
  background: #eff6ff;
  color: var(--hood-blue-dark);
}

.hood-page .hood-offer-bar strong {
  color: #0f172a;
}

.hood-page .site-header {
  position: sticky;
  top: 0;
  min-height: 70px;
  border-bottom: 1px solid #e5e7eb;
  background: rgb(255 255 255 / 92%);
}

.hood-page .brand img {
  border-radius: 10px;
}

.hood-page .site-header nav a,
.hood-page .secondary-action,
.hood-page .site-footer a {
  border-color: #dbe3ef;
  background: #fff;
  color: #111827;
  box-shadow: 0 8px 20px rgb(15 23 42 / 5%);
}

.hood-page .primary-action {
  min-height: 54px;
  border-radius: 999px;
  background: var(--hood-orange);
  box-shadow: 0 18px 34px rgb(245 158 11 / 22%);
  color: #fff;
  padding: 0 28px;
}

.hood-page .primary-action:hover {
  background: var(--hood-orange-dark);
}

.hood-page .hood-hero {
  display: block;
  min-height: auto;
  padding: clamp(42px, 6vw, 74px) clamp(18px, 5vw, 72px) clamp(48px, 7vw, 88px);
  background:
    radial-gradient(circle at 50% 8%, rgb(63 126 232 / 10%), transparent 34%),
    linear-gradient(#fff, #fff);
}

.hood-page .hood-hero-copy {
  display: grid;
  justify-items: center;
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.hood-page .rating-line {
  justify-content: center;
  gap: 9px;
  min-height: 36px;
  margin-bottom: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #f8fbff;
  color: #334155;
  padding: 7px 14px;
}

.hood-page .rating-line span {
  display: inline-grid;
  width: 22px;
  height: 22px;
  place-items: center;
  border-radius: 999px;
  background: #10b981;
  color: #fff;
  font-size: 0.78rem;
}

.hood-page .eyebrow {
  color: var(--hood-blue);
  letter-spacing: 0.05em;
}

.hood-page .hood-hero h1 {
  max-width: 920px;
  font-size: clamp(2.65rem, 5.65vw, 5.25rem);
  line-height: 0.98;
  text-wrap: balance;
}

.hood-page .hood-hero h1 span {
  color: var(--hood-blue);
}

.hood-page .hood-hero .lead {
  max-width: 760px;
  margin-top: 20px;
  color: #475569;
  font-size: clamp(1.08rem, 1.8vw, 1.32rem);
  line-height: 1.6;
}

.hood-page .video-kicker {
  margin-top: 24px;
  color: #0f172a;
  font-size: 1rem;
  font-weight: 850;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.hood-page .hero-video {
  width: min(100%, 780px);
  margin-top: 12px;
  overflow: hidden;
  border: 1px solid #dbe5f1;
  border-radius: 18px;
  background: #0f172a;
  box-shadow: 0 24px 56px rgb(15 23 42 / 14%);
}

.hood-page .hero-video video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.hood-page .hero-actions {
  justify-content: center;
  align-items: center;
  margin-top: 28px;
}

.hood-page .hero-actions .primary-action,
.hood-page .hero-actions .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 999px;
  font-weight: 840;
  padding: 0 28px;
  line-height: 1;
  white-space: nowrap;
}

.hood-page .hero-actions .primary-action {
  min-width: 235px;
}

.hood-page .hero-actions .secondary-action {
  min-width: 185px;
  border: 1px solid #cbd7e6;
  background: #fff;
  box-shadow: 0 14px 28px rgb(15 23 42 / 6%);
}

.hood-page .mini-trust-row {
  justify-content: center;
  margin-top: 26px;
}

.hood-page .mini-trust-row span {
  border-color: #e5e7eb;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 10px 24px rgb(15 23 42 / 5%);
  color: #111827;
}

.hood-page .hood-hero-panel {
  position: relative;
  display: grid;
  gap: 18px;
  max-width: 980px;
  margin: clamp(34px, 5vw, 58px) auto 0;
  border: 1px solid #e5e7eb;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgb(16 185 129 / 16%), transparent 32%),
    linear-gradient(225deg, rgb(63 126 232 / 18%), transparent 34%),
    #fff;
  box-shadow: 0 28px 90px rgb(15 23 42 / 14%);
  padding: clamp(18px, 3vw, 30px);
}

.hood-page .system-preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-bottom: 1px solid rgb(15 23 42 / 8%);
  padding-bottom: 16px;
}

.hood-page .system-preview-heading span {
  color: #64748b;
  font-size: 0.82rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hood-page .system-preview-heading strong {
  color: var(--hood-blue-dark);
  font-size: clamp(1.2rem, 2.4vw, 2rem);
}

.hood-page .lead-card {
  border-color: #e2e8f0;
  border-radius: 16px;
  box-shadow: none;
}

.hood-page .lead-card-top span {
  color: var(--hood-blue);
}

.hood-page .lead-card-top strong {
  background: #ecfdf5;
  color: #047857;
}

.hood-page .lead-card blockquote {
  color: #0f172a;
  font-size: clamp(1.65rem, 3.4vw, 3rem);
  line-height: 1.05;
}

.hood-page .hood-stat-strip {
  gap: 12px;
}

.hood-page .hood-stat-strip div {
  border-color: #e2e8f0;
  border-radius: 14px;
  box-shadow: 0 12px 28px rgb(15 23 42 / 6%);
}

.hood-page .hood-stat-strip span {
  color: #64748b;
}

.hood-page .hood-stat-strip strong {
  color: var(--hood-blue);
}

.hood-page .hood-band,
.hood-page .hood-process-section,
.hood-page .hood-comparison,
.hood-page .hood-faq,
.hood-page .hood-booking {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
  background: #fff;
}

.hood-page .hood-band,
.hood-page .hood-comparison,
.hood-page .hood-faq {
  border-color: #e5e7eb;
}

.hood-page .hood-section-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.hood-page .hood-section-heading h2 {
  max-width: 900px;
  margin: 0 auto;
  color: #111827;
  font-size: clamp(2.1rem, 4.6vw, 4.6rem);
  line-height: 1;
  text-wrap: balance;
}

.hood-page .hood-section-heading p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  color: #64748b;
}

.hood-page .hood-benefit-grid,
.hood-page .hood-process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin-right: auto;
  margin-left: auto;
}

.hood-page .hood-benefit,
.hood-page .hood-process-grid article,
.hood-page .comparison-grid > div,
.hood-page .faq-list details {
  border-color: #dfe7f1;
  border-radius: 16px;
  background: #f8fafc;
  box-shadow: 0 10px 28px rgb(15 23 42 / 5%);
}

.hood-page .hood-benefit span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 12px;
  background: #eef5ff;
  color: var(--hood-blue);
}

.hood-page .hood-benefit h3,
.hood-page .hood-process-grid strong,
.hood-page .comparison-grid h3 {
  color: #111827;
}

.hood-page .hood-benefit p,
.hood-page .hood-process-grid p,
.hood-page .comparison-grid li,
.hood-page .faq-list p {
  color: #64748b;
}

.hood-page .target-markets {
  border-top-color: #dbeafe;
}

.hood-page .target-markets-copy {
  text-align: center;
}

.hood-page .target-markets-copy h3 {
  color: #111827;
}

.hood-page .target-markets ul {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.hood-page .target-markets li {
  display: flex;
  align-items: center;
  justify-content: center;
  border-color: #dfe7f1;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 10px 28px rgb(15 23 42 / 5%);
  color: #1f2937;
  text-align: center;
}

.hood-page .hood-proof-section {
  grid-template-columns: minmax(260px, 0.72fr) minmax(340px, 1.28fr);
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid #e5e7eb;
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 28px 80px rgb(15 23 42 / 16%);
}

.hood-page .hood-proof-copy h2 {
  font-size: clamp(2rem, 4.2vw, 4.1rem);
}

.hood-page .hood-proof-image {
  border-radius: 16px;
}

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

.hood-page .hood-guarantee {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  border-top-color: #dbeafe;
  text-align: center;
}

.hood-page .hood-guarantee h3 {
  margin-right: auto;
  margin-left: auto;
  color: var(--hood-blue-dark);
  text-wrap: balance;
}

.hood-page .hood-guarantee p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  color: #475569;
}

.hood-page .hood-pricing {
  max-width: 960px;
  margin-right: auto;
  margin-left: auto;
  border-color: #dfe7f1;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgb(63 126 232 / 10%), transparent 34%),
    #fff;
  box-shadow: 0 18px 48px rgb(15 23 42 / 8%);
  text-align: center;
}

.hood-page .hood-pricing h3 {
  color: var(--hood-blue);
}

.hood-page .hood-pricing p:not(.eyebrow) {
  margin-right: auto;
  margin-left: auto;
  color: #475569;
}

.hood-page .comparison-grid {
  margin-right: auto;
  margin-left: auto;
}

.hood-page .comparison-grid > div:last-child {
  background: #eff6ff;
}

.hood-page .booking-section {
  align-items: start;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  max-width: 1180px;
  margin: 0 auto;
}

.hood-page .booking-copy h2 {
  color: #111827;
  font-size: clamp(2rem, 4.2vw, 4rem);
}

.hood-page .booking-frame {
  border-color: #dbe3ef;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgb(15 23 42 / 12%);
}

.hood-page .faq-list {
  margin-right: auto;
  margin-left: auto;
}

.hood-page .site-footer {
  border-top-color: #e5e7eb;
}

@media (max-width: 860px) {
  .hood-page .hood-benefit-grid,
  .hood-page .hood-process-grid,
  .hood-page .booking-section,
  .hood-page .hood-proof-section {
    grid-template-columns: 1fr;
  }

  .target-markets ul,
  .hood-page .target-markets ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hood-page .hood-proof-section {
    margin-right: 18px;
    margin-left: 18px;
  }

  .hood-page .system-preview-heading {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .hood-page .site-header {
    position: static;
  }

  .hood-page .hood-hero h1 {
    font-size: clamp(2.45rem, 12vw, 3.85rem);
  }

  .hood-page .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 310px;
  }

  .hood-page .hero-actions .primary-action,
  .hood-page .hero-actions .secondary-action {
    width: 100%;
  }

  .hood-page .hood-offer-bar {
    flex-direction: column;
  }

  .hood-page .hood-stat-strip {
    grid-template-columns: 1fr;
  }

  .target-markets ul,
  .hood-page .target-markets ul {
    grid-template-columns: 1fr;
  }
}

.hood-page .hood-hero .eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  margin-bottom: 18px;
  border: 1px solid #bfdbfe;
  border-radius: 999px;
  background: #eff6ff;
  color: var(--hood-blue-dark);
  font-size: clamp(0.96rem, 1.5vw, 1.15rem);
  font-weight: 900;
  letter-spacing: 0.07em;
  padding: 0 18px;
}

.free-test-page {
  --free-blue: #3f7ee8;
  --free-blue-dark: #2459b8;
  --free-ink: #101827;
  --free-muted: #536176;
  --free-line: #dce6f4;
  --free-soft: #f5f9ff;
  --free-orange: #f59e0b;
  overflow-x: clip;
  background: #fff;
  color: var(--free-ink);
}

.free-test-page .site-header {
  position: sticky;
  top: 0;
  min-height: 72px;
  border-bottom: 1px solid var(--free-line);
  background: rgb(255 255 255 / 92%);
  backdrop-filter: blur(16px);
}

.free-test-page .brand img {
  border-radius: 10px;
}

.free-test-page .site-header nav a,
.free-test-page .secondary-action,
.free-test-page .site-footer a {
  border-color: var(--free-line);
  border-radius: 999px;
  background: #fff;
  color: var(--free-ink);
  box-shadow: 0 10px 24px rgb(16 24 39 / 5%);
}

.free-test-page .primary-action {
  min-height: 56px;
  border-radius: 999px;
  background: var(--free-orange);
  box-shadow: 0 18px 38px rgb(245 158 11 / 24%);
  color: #fff;
  padding: 0 30px;
}

.free-test-page .primary-action:hover {
  background: #d97706;
}

.free-hero {
  padding: clamp(48px, 7vw, 92px) clamp(18px, 5vw, 72px) clamp(54px, 7vw, 96px);
  background:
    radial-gradient(circle at 50% 10%, rgb(63 126 232 / 12%), transparent 38%),
    linear-gradient(#fff, #fff);
}

.free-hero-copy {
  display: grid;
  justify-items: center;
  max-width: 1060px;
  margin: 0 auto;
  text-align: center;
}

.free-pill,
.free-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  margin: 0 0 18px;
  border: 1px solid #bfd5ff;
  border-radius: 999px;
  background: #eef5ff;
  color: var(--free-blue-dark);
  font-size: 0.82rem;
  font-weight: 860;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 0 14px;
}

.free-hero h1 {
  max-width: 1010px;
  color: var(--free-ink);
  font-size: clamp(3rem, 7vw, 6.8rem);
  line-height: 0.94;
  text-align: center;
  text-wrap: balance;
}

.free-hero h1 span {
  color: var(--free-blue);
}

.free-lead {
  max-width: 820px;
  margin-top: 24px;
  color: var(--free-muted);
  font-size: clamp(1.12rem, 2vw, 1.48rem);
  line-height: 1.58;
}

.free-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 30px;
}

.free-actions .primary-action,
.free-actions .secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  min-width: 190px;
  padding: 0 28px;
  font-weight: 860;
  line-height: 1;
  white-space: nowrap;
}

.free-proof-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 28px;
}

.free-proof-strip span {
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  background: #fff;
  box-shadow: 0 12px 28px rgb(16 24 39 / 5%);
  color: var(--free-ink);
  font-size: 0.92rem;
  font-weight: 830;
  padding: 11px 14px;
}

.free-start-video {
  padding: 0 clamp(18px, 5vw, 72px) clamp(56px, 7vw, 94px);
  background: #fff;
}

.free-start-video-inner {
  display: grid;
  justify-items: center;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.free-start-video h2 {
  margin: 0;
  color: var(--free-ink);
  font-size: clamp(2rem, 4.4vw, 4.6rem);
  line-height: 1;
}

.free-start-video-frame {
  width: min(100%, 820px);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid var(--free-line);
  border-radius: 22px;
  background: #0f172a;
  box-shadow: 0 24px 70px rgb(16 24 39 / 14%);
}

.free-start-video-frame video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #0f172a;
}

.free-system-card {
  max-width: 1040px;
  margin: clamp(36px, 5vw, 64px) auto 0;
  border: 1px solid var(--free-line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgb(16 185 129 / 13%), transparent 30%),
    linear-gradient(225deg, rgb(63 126 232 / 18%), transparent 36%),
    #fff;
  box-shadow: 0 30px 90px rgb(16 24 39 / 14%);
  padding: clamp(18px, 3vw, 32px);
}

.free-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgb(16 24 39 / 8%);
  padding-bottom: 18px;
}

.free-card-head span,
.free-reply-card span,
.free-pipeline span {
  display: block;
  color: #64748b;
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.free-card-head strong {
  display: block;
  margin-top: 7px;
  color: var(--free-blue-dark);
  font-size: clamp(1.35rem, 2.6vw, 2.25rem);
  line-height: 1;
}

.free-card-head p {
  border-radius: 999px;
  background: #ecfdf5;
  color: #047857;
  font-weight: 850;
  padding: 8px 12px;
}

.free-reply-card {
  margin-top: 18px;
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: #fff;
  padding: clamp(22px, 4vw, 42px);
}

.free-reply-card span {
  color: var(--free-blue);
}

.free-reply-card blockquote {
  max-width: 900px;
  margin-top: 16px;
  color: var(--free-ink);
  font-size: clamp(1.85rem, 4.2vw, 4rem);
  font-weight: 880;
  line-height: 0.98;
  text-wrap: balance;
}

.free-reply-card p {
  max-width: 640px;
  margin-top: 20px;
  color: var(--free-muted);
  font-size: 1.04rem;
  line-height: 1.6;
}

.free-pipeline {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 14px;
}

.free-pipeline div {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 14px 30px rgb(16 24 39 / 6%);
  padding: 18px;
}

.free-pipeline span {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  background: #eef5ff;
  color: var(--free-blue);
}

.free-pipeline strong {
  display: block;
  margin-top: 14px;
  font-size: 1.2rem;
}

.free-pipeline p {
  margin-top: 8px;
  color: var(--free-muted);
  line-height: 1.48;
}

.free-section {
  padding: clamp(58px, 7vw, 104px) clamp(18px, 5vw, 72px);
}

.free-section-heading {
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
}

.free-section-heading h2,
.free-fit-copy h2,
.free-proof-copy h2,
.free-offer-card h2,
.free-booking .booking-copy h2 {
  margin: 0;
  color: var(--free-ink);
  font-size: clamp(2.15rem, 4.9vw, 5rem);
  line-height: 0.98;
  text-wrap: balance;
}

.free-section-heading p:not(.free-kicker) {
  max-width: 760px;
  margin: 18px auto 0;
  color: var(--free-muted);
  font-size: clamp(1.04rem, 1.8vw, 1.26rem);
  line-height: 1.62;
}

.free-system,
.free-comparison,
.free-footer {
  background: #fff;
}

.free-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  max-width: 1120px;
  margin: clamp(30px, 4vw, 48px) auto 0;
}

.free-grid article,
.free-comparison-grid > div {
  border: 1px solid var(--free-line);
  border-radius: 18px;
  background: var(--free-soft);
  box-shadow: 0 12px 30px rgb(16 24 39 / 5%);
  padding: clamp(20px, 3vw, 32px);
}

.free-grid article span {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 13px;
  background: #eef5ff;
  color: var(--free-blue);
  font-weight: 870;
}

.free-grid h3,
.free-comparison-grid h3 {
  margin: 18px 0 0;
  color: var(--free-ink);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  line-height: 1.1;
}

.free-grid p,
.free-comparison-grid li,
.free-proof-copy p,
.free-offer-card p {
  color: var(--free-muted);
  line-height: 1.62;
}

.free-grid p {
  margin-top: 14px;
}

.free-fit,
.free-offer,
.free-booking {
  background: var(--free-soft);
}

.free-fit {
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}

.free-fit-copy {
  max-width: 560px;
}

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

.free-market-list li {
  min-height: 58px;
  border: 1px solid var(--free-line);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 12px 28px rgb(16 24 39 / 5%);
  color: var(--free-ink);
  font-weight: 830;
  padding: 17px;
}

.free-proof-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(340px, 1.28fr);
  gap: clamp(28px, 5vw, 70px);
  align-items: center;
  max-width: 1160px;
  margin: clamp(58px, 7vw, 104px) auto;
  border: 1px solid #1e2d44;
  border-radius: 24px;
  background: #0f172a;
  box-shadow: 0 30px 90px rgb(16 24 39 / 18%);
  color: #fff;
  padding: clamp(28px, 5vw, 58px);
}

.free-proof-copy .free-kicker {
  border-color: rgb(191 213 255 / 32%);
  background: rgb(238 245 255 / 8%);
  color: #bfdbfe;
}

.free-proof-copy h2 {
  color: #fff;
}

.free-proof-copy p {
  margin-top: 18px;
  color: rgb(255 255 255 / 74%);
}

.free-proof-copy .primary-action {
  margin-top: 28px;
}

.free-proof-image {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 24px 80px rgb(0 0 0 / 26%);
}

.free-proof-image img {
  display: block;
  width: 100%;
  height: auto;
}

.free-offer-card {
  max-width: 1030px;
  margin: 0 auto;
  border: 1px solid var(--free-line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgb(63 126 232 / 11%), transparent 34%),
    #fff;
  box-shadow: 0 24px 70px rgb(16 24 39 / 10%);
  padding: clamp(26px, 5vw, 56px);
  text-align: center;
}

.free-offer-card h2 {
  color: var(--free-blue);
}

.free-offer-card p {
  max-width: 760px;
  margin: 16px auto 0;
  font-size: clamp(1.04rem, 1.8vw, 1.24rem);
}

.free-offer-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 26px;
}

.free-offer-list span {
  border: 1px solid #dbeafe;
  border-radius: 999px;
  background: #f8fbff;
  color: var(--free-ink);
  font-weight: 820;
  padding: 11px 14px;
}

.free-comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 1080px;
  margin: clamp(30px, 4vw, 48px) auto 0;
}

.free-comparison-grid > div:last-child {
  background: #eff6ff;
}

.free-comparison-grid ul {
  margin: 16px 0 0;
  padding-left: 20px;
}

.free-comparison-grid li {
  margin-top: 10px;
}

.free-next-step {
  background: #fff;
  padding-top: 0;
}

.free-next-step-card {
  max-width: 1120px;
  margin: 0 auto;
  border: 1px solid var(--free-line);
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgb(16 185 129 / 11%), transparent 30%),
    linear-gradient(225deg, rgb(63 126 232 / 12%), transparent 36%),
    #fff;
  box-shadow: 0 24px 70px rgb(16 24 39 / 9%);
  padding: clamp(26px, 5vw, 56px);
  text-align: center;
}

.free-next-step-card h2 {
  max-width: 920px;
  margin: 0 auto;
  color: var(--free-ink);
  font-size: clamp(2.1rem, 4.6vw, 4.8rem);
  line-height: 0.98;
  text-wrap: balance;
}

.free-next-step-card > p:not(.free-kicker) {
  max-width: 790px;
  margin: 18px auto 0;
  color: var(--free-muted);
  font-size: clamp(1.05rem, 1.8vw, 1.24rem);
  line-height: 1.62;
}

.free-next-step-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(26px, 4vw, 42px);
  text-align: left;
}

.free-next-step-grid article {
  border: 1px solid #dbeafe;
  border-radius: 18px;
  background: #f8fbff;
  padding: clamp(18px, 3vw, 28px);
}

.free-next-step-grid span {
  display: inline-grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 13px;
  background: #eef5ff;
  color: var(--free-blue);
  font-weight: 870;
}

.free-next-step-grid strong {
  display: block;
  margin-top: 16px;
  color: var(--free-ink);
  font-size: clamp(1.16rem, 1.8vw, 1.5rem);
  line-height: 1.1;
}

.free-next-step-grid p {
  margin-top: 10px;
  color: var(--free-muted);
  line-height: 1.58;
}

.free-booking {
  align-items: start;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  max-width: 1180px;
  margin: 0 auto;
}

.free-booking .booking-frame {
  border-color: var(--free-line);
  border-radius: 20px;
  box-shadow: 0 24px 70px rgb(16 24 39 / 12%);
}

.free-booking .tally-frame {
  min-height: 640px;
  overflow: hidden;
  background: #fff;
}

.free-booking .tally-frame iframe {
  display: block;
  width: 100%;
  min-height: 640px;
  border: 0;
}

.free-footer {
  border-top-color: var(--free-line);
}

@media (max-width: 860px) {
  .free-test-page .site-header {
    position: static;
  }

  .free-grid,
  .free-fit,
  .free-proof-section,
  .free-comparison-grid,
  .free-next-step-grid,
  .free-booking {
    grid-template-columns: 1fr;
  }

  .free-proof-section {
    margin-right: 18px;
    margin-left: 18px;
  }

  .free-card-head {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 560px) {
  .free-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4rem);
  }

  .free-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
    max-width: 320px;
  }

  .free-actions .primary-action,
  .free-actions .secondary-action {
    width: 100%;
  }

  .free-pipeline,
  .free-market-list {
    grid-template-columns: 1fr;
  }
}
