/* Shared frontend foundation styles. */
@import url("./flettons-brand.css");
@import url("./flettons-icons.css");

:root {
  --navy: var(--fl-navy);
  --navy-deep: var(--fl-navy-dark);
  --pink: var(--fl-pink);
  --bg: #f5f5f5;
  --surface: #fbfbfb;
  --text: #0b0b0c;
  --muted: var(--fl-muted-blue);
  --border: var(--fl-border-soft);
  --shadow: 0 18px 40px rgba(11, 11, 12, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --radius-sm: 12px;
  --container: 1320px;
  --font-primary: "Inter", sans-serif;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 800;
  --weight-heavy: 900;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-primary);
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--fl-header-gradient);
  border-bottom: 0;
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 90px;
  display: flex;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  margin-right: auto;
  color: #fff;
}

.brand img {
  width: auto;
  height: 44px;
  max-width: min(100%, 212px);
}

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.95rem;
  font-weight: var(--weight-medium);
}

.nav-link:hover {
  color: #fff;
}

.nav-caret {
  width: 7px;
  height: 7px;
  border-right: 1.7px solid currentColor;
  border-bottom: 1.7px solid currentColor;
  transform: rotate(45deg) translateY(-1px);
}

.header-ctas {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 14px;
  border: 1px solid transparent;
  font-weight: var(--weight-semibold);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-1px);
}

.btn-primary {
  background: var(--fl-gradient-button-primary);
  color: #fff;
  box-shadow: var(--fl-button-shadow);
}

.btn-primary:hover {
  box-shadow: var(--fl-button-shadow-hover);
}

.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.btn-dark {
  background: var(--fl-header-gradient);
  color: #fff;
  border-color: var(--navy);
}

.btn-sm {
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 0.94rem;
}

.btn-secondary-split {
  justify-content: flex-start;
  min-width: 250px;
  padding: 12px 18px;
}

.btn-copy {
  display: grid;
  gap: 2px;
  text-align: left;
}

.btn-copy strong {
  font-size: 0.92rem;
  line-height: 1.2;
}

.btn-copy small {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.65);
}

.play-inline,
.play-dot,
.video-play,
.play-large {
  position: relative;
}

.play-inline {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 48, 136, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.12);
  flex: 0 0 auto;
}

.play-inline::before,
.play-dot::before,
.video-play::before,
.play-large::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent #fff;
}

.play-inline::before {
  border-width: 7px 0 7px 11px;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 760px;
  background: var(--fl-header-gradient);
  color: #fff;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: 0;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-overlay {
  z-index: 1;
  background: var(--fl-gradient-video-hero-overlay);
}

.hero-inner {
  position: relative;
  z-index: 2;
  min-height: 760px;
  display: flex;
  align-items: center;
  padding: 110px 0 96px;
}

.hero-copy {
  padding: 18px 0 30px;
}

.hero-copy-wide {
  max-width: 700px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 20px;
  color: var(--pink);
  font-size: 0.84rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0;
  max-width: 680px;
  font-size: clamp(3.4rem, 6vw, 5.9rem);
  line-height: 0.96;
  letter-spacing: calc(-0.08em + 2px);
  font-weight: var(--weight-heavy);
}

.hero h1 .highlight {
  color: var(--pink);
}

.hero-copy .lead {
  max-width: 560px;
  margin: 24px 0 28px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.22rem;
  line-height: 1.6;
}

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

.hero-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
}

.meta-bullet {
  width: 18px;
  height: 18px;
  background: var(--fl-bullet-on-dark-bg) center/contain no-repeat;
  flex: 0 0 auto;
}

.meta-bullet::before {
  content: none;
}

.section {
  padding: 72px 0;
}

.trust-strip {
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 26px 22px;
  border-right: 1px solid var(--border);
}

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

.trust-symbol {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(11, 11, 12, 0.12);
  background: #fff;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
}

.trust-symbol img {
  width: 28px;
  height: 28px;
}

.trust-item strong {
  display: block;
  margin-bottom: 4px;
  font-size: 1rem;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.section-title {
  max-width: 760px;
  margin: 0 auto 34px;
  text-align: center;
}

.section-title .eyebrow {
  margin-bottom: 12px;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: var(--weight-bold);
}

.section-title p {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

.survey-selection {
  padding-top: 70px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0));
}

.survey-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--fl-card-grid-gap);
  align-items: stretch;
}

.survey-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 48px 38px 34px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: 0 18px 42px rgba(11, 11, 12, 0.055);
}

.survey-card.popular {
  transform: none;
  border-color: rgba(255, 48, 136, 0.32);
  box-shadow: 0 22px 42px rgba(11, 11, 12, 0.08);
}

.badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--pink);
  color: #fff;
  font-size: 0.75rem;
  font-weight: var(--weight-bold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.survey-icon {
  display: none;
}

.survey-icon img {
  width: 38px;
  height: 38px;
}

.survey-card__level {
  margin: 0 0 38px;
  color: var(--pink);
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.survey-card__level::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  margin-top: 13px;
  border-radius: 999px;
  background: var(--pink);
}

.survey-card h3 {
  margin: 0;
  text-align: left;
  font-size: clamp(2.05rem, 2.55vw, 2.7rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  font-weight: 900;
}

.best-for {
  margin: 16px 0 0;
  max-width: none;
  text-align: left;
  color: #2a2a2a;
  font-size: 1.1rem;
  line-height: 1.35;
  font-weight: var(--weight-semibold);
}

.support {
  margin: 24px 0 38px;
  max-width: none;
  min-height: 110px;
  text-align: left;
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.58;
}

.price-label {
  margin-top: 4px;
  text-align: left;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: var(--weight-semibold);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  margin: 8px 0 26px;
  text-align: left;
  color: var(--text);
  font-size: clamp(3.4rem, 5vw, 4.25rem);
  line-height: 1;
  letter-spacing: -0.08em;
  font-weight: var(--weight-bold);
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(11, 11, 12, 0.1);
  color: #2a2a2a;
  font-size: 0.97rem;
}

.feature-list li {
  position: relative;
  padding: 14px 0 14px 30px;
  border-bottom: 1px solid rgba(11, 11, 12, 0.1);
}

.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.05rem;
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
}

.survey-card .btn {
  width: 100%;
  margin-top: auto;
  min-height: 66px;
  border-radius: 10px;
  font-size: 1.05rem;
}

.micro-help {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: var(--weight-medium);
}

.micro-help::before {
  content: "i";
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(11, 11, 12, 0.18);
  display: grid;
  place-items: center;
  font-size: 0.72rem;
  font-weight: var(--weight-semibold);
  color: var(--navy);
}

.proof-section {
  padding-top: 56px;
  padding-bottom: 72px;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 45%) minmax(0, 55%);
  gap: 32px;
  align-items: stretch;
}

.proof-intro {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100%;
  padding: 0;
}

.proof-intro h2 {
  margin: 0 0 18px;
  font-size: clamp(2.3rem, 4vw, 3.9rem);
  line-height: 1.03;
  letter-spacing: -0.07em;
  font-weight: var(--weight-bold);
}

.proof-intro__highlight {
  color: var(--pink);
}

.proof-intro p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.7;
}

.trustpilot-mini {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 18px;
  font-size: 1.6rem;
  font-weight: var(--weight-bold);
}

.trustpilot-boxes {
  display: flex;
  gap: 4px;
}

.trustpilot-boxes span {
  width: 22px;
  height: 22px;
  border-radius: 3px;
  background: #ff3088;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 15px;
  line-height: 1;
  font-weight: 900;
}

.trustpilot-boxes span::before {
  content: "★";
}

.trustpilot-copyline {
  margin-top: 8px;
  color: var(--muted);
}

.proof-icons {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  gap: 14px 18px;
  margin-top: 22px;
}

.proof-icons span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 0.85rem;
}

.proof-icons span::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  background: var(--fl-bullet-on-light-bg) center / contain no-repeat;
}

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

.testimonial-card {
  display: flex;
  flex-direction: column;
  min-height: 390px;
  padding: 24px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 24px;
  box-shadow: 0 12px 30px rgba(11, 11, 12, 0.04);
}

.stars {
  margin-bottom: 16px;
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 0.18em;
}

.testimonial-card p {
  margin: 0 0 20px;
  min-height: 150px;
  color: #2a2a2a;
  font-size: 1rem;
  line-height: 1.72;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  font-size: 0.92rem;
  font-weight: var(--weight-bold);
  flex: 0 0 auto;
}

.avatar-jr,
.avatar-sj,
.avatar-mt {
  background: var(--fl-gradient-button-primary);
}

.reviewer strong {
  display: block;
  font-size: 0.98rem;
}

.reviewer span {
  color: var(--muted);
  font-size: 0.88rem;
}

.worries-section {
  padding: 72px 0 76px;
  background: var(--bg);
}

.worries-section .section-title {
  max-width: 1060px;
  margin-bottom: 36px;
}

.worries-section .section-title .eyebrow {
  color: var(--pink);
  font-size: 0.98rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.worries-section .section-title h2 {
  font-size: clamp(2.4rem, 6.5vw, 4.25rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.worries-section .section-title p {
  max-width: 720px;
  margin: 18px auto 0;
  font-size: 1.2rem;
  line-height: 1.5;
}

.worries-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(268px, 296px);
  grid-template-rows: auto auto;
  gap: clamp(20px, 2.8vw, 26px) 40px;
  align-items: stretch;
}

.worries-wrap {
  grid-column: 1;
  grid-row: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: start;
}

.worry-card {
  position: relative;
  min-height: 172px;
  padding: 0 22px;
  text-align: center;
}

.worry-card + .worry-card {
  border-left: 1px solid rgba(11, 11, 12, 0.08);
}

.worry-no {
  display: none;
}

.worry-icon {
  display: none;
}

.worry-icon img {
  width: 66px;
  height: 66px;
}

.worry-card strong {
  display: block;
  margin-bottom: 18px;
  color: var(--text);
  font-size: clamp(1.3rem, 1.55vw, 1.55rem);
  line-height: 1.08;
  font-weight: 900;
  letter-spacing: -0.035em;
}

.worry-card strong::before {
  content: none;
}

.worry-card strong::after {
  content: "";
  display: block;
  width: 42px;
  height: 2px;
  margin: 18px auto 0;
  border-radius: 999px;
  background: var(--pink);
}

.worry-card > span:not(.worry-icon) {
  display: block;
  max-width: 176px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.52;
}

.worry-feature {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: stretch;
  position: relative;
  overflow: hidden;
  padding: 40px 30px;
  border-radius: 18px;
  background: var(--fl-header-gradient);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    0 24px 54px rgba(11, 11, 12, 0.18),
    0 1px 0 rgba(255, 255, 255, 0.055) inset;
  color: #fff;
}

.worry-feature > strong {
  display: block;
  max-width: 220px;
  color: #fff;
  font-size: 1.55rem;
  line-height: 1.08;
  font-weight: var(--weight-bold);
}

.worry-feature__accent {
  display: block;
  width: 40px;
  height: 2px;
  margin: 22px 0;
  background: #ff3088;
}

.worry-feature p {
  margin: 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 1rem;
  line-height: 1.52;
}

.worry-feature mark {
  background: transparent;
  color: #ff3088;
  font-weight: var(--weight-bold);
}

.worries-cta {
  grid-column: 1;
  grid-row: 2;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(16px, 3vw, 32px);
  margin-top: 0;
  align-self: stretch;
  padding: clamp(18px, 2.8vw, 24px) clamp(18px, 3vw, 28px);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(255, 48, 136, 0.14);
  background:
    radial-gradient(ellipse 95% 120% at 8% 50%, rgba(255, 48, 136, 0.09), transparent 52%),
    linear-gradient(180deg, rgba(255, 48, 136, 0.045) 0%, rgba(255, 48, 136, 0.1) 100%);
  box-shadow: 0 14px 36px rgba(11, 11, 12, 0.05);
}

.worries-cta__copy {
  flex: 1;
  min-width: min(100%, 200px);
}

.worries-cta__lead {
  margin: 0;
  color: var(--text);
  font-size: clamp(1.12rem, 2vw, 1.35rem);
  line-height: 1.28;
  font-weight: 900;
  letter-spacing: -0.03em;
}

.worries-cta__sub {
  margin: 10px 0 0;
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.35vw, 1.05rem);
  line-height: 1.48;
}

.worries-cta__action {
  flex-shrink: 0;
}

.worries-cta__button.btn {
  padding-inline: clamp(20px, 3vw, 26px);
  white-space: nowrap;
}

.worries-cta__arrow {
  margin-left: 6px;
  font-weight: 700;
}

.real-inspections-section {
  background: #f5f5f5;
  padding: 96px 0;
  overflow: hidden;
}

.real-inspections__inner {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 38px;
  align-items: start;
}

.real-inspections__intro {
  position: sticky;
  top: 110px;
  padding-top: 6px;
}

.section-eyebrow {
  margin: 0;
  color: var(--fl-pink);
  font-size: 14px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.section-line {
  width: 54px;
  height: 3px;
  margin: 22px 0 34px;
  background: var(--fl-pink);
  border-radius: 99px;
}

.real-inspections__intro h2 {
  margin: 0;
  color: #0b0b0c;
  font-size: clamp(40px, 3.8vw, 61px);
  line-height: 0.94;
  letter-spacing: -0.055em;
  font-weight: 900;
}

.real-inspections__intro h2 span {
  color: var(--fl-pink);
}

.real-inspections__intro p {
  max-width: 270px;
  margin: 28px 0 0;
  color: #555555;
  font-size: 18px;
  line-height: 1.55;
}

.real-inspections__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin-top: 46px;
  min-height: 64px;
  padding: 0 28px;
  border-radius: 14px;
  background: var(--fl-gradient-button-primary);
  color: #ffffff;
  font-size: 17px;
  line-height: 1.15;
  font-weight: 850;
  text-decoration: none;
  box-shadow: var(--fl-button-shadow);
  transition: transform 0.22s ease, filter 0.22s ease, box-shadow 0.22s ease;
}

.real-inspections__button:hover {
  filter: brightness(1.04);
  box-shadow: var(--fl-button-shadow-hover);
  transform: translateY(-2px);
}

.real-inspections__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 31px;
  margin-top: 0;
  padding-inline: 5px;
}

.inspection-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border: 1px solid rgba(11, 11, 12, 0.07);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(11, 11, 12, 0.06);
}

.inspection-card--offset {
  margin-top: 0;
}

.inspection-card__media {
  position: relative;
  display: block;
  width: 100%;
  height: 151px;
  min-height: 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background: var(--fl-header-gradient);
  text-decoration: none;
  cursor: pointer;
  text-align: left;
}

.inspection-card__media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transform: scale(1.01);
}

.inspection-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 11, 12, 0.04), rgba(11, 11, 12, 0.34)),
    linear-gradient(90deg, rgba(11, 11, 12, 0.08), rgba(11, 11, 12, 0));
}

.inspection-card__tag {
  position: absolute;
  z-index: 2;
  top: 12px;
  left: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  color: #0b0b0c;
  font-size: 10px;
  line-height: 1;
  font-weight: 850;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.inspection-card__play {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  transform: translate(-50%, -50%);
  border: 0;
  border-radius: 999px;
  background: var(--fl-gradient-button-primary);
  color: #ffffff;
  font-size: 18px;
  box-shadow: var(--fl-button-shadow);
  cursor: pointer;
  transition: transform 0.25s ease, filter 0.25s ease, box-shadow 0.25s ease;
}

.inspection-card__play:hover,
.inspection-card__play:focus-visible {
  transform: translate(-50%, -50%) scale(1.07);
  filter: brightness(1.05);
  outline: none;
  box-shadow: var(--fl-button-shadow-hover);
}

.inspection-card__play:focus-visible {
  outline: 3px solid rgba(255, 255, 255, 0.95);
  outline-offset: 3px;
  box-shadow: var(--fl-button-shadow-hover);
}

.inspection-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 17px 19px 19px;
}

.inspection-card__body h3 {
  margin: 0;
  color: #0b0b0c;
  font-size: 24px;
  line-height: 1.05;
  letter-spacing: -0.04em;
  font-weight: 900;
}

.inspection-card__body p {
  margin: 14px 0 0;
  color: #555555;
  font-size: 16px;
  line-height: 1.44;
}

.inspection-card__body a {
  margin-top: auto;
  padding-top: 20px;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--fl-pink);
  font-size: 15px;
  font-weight: 850;
  text-decoration: none;
}

.inspection-card__body a:hover {
  color: var(--fl-pink);
}

.inspection-video-modal {
  position: fixed;
  inset: 0;
  z-index: 500;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.inspection-video-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.inspection-video-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 12, 0.58);
  backdrop-filter: blur(12px);
}

.inspection-video-modal__dialog {
  position: relative;
  z-index: 1;
  width: min(960px, calc(100vw - 48px));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 28px;
  background: var(--fl-header-gradient);
  box-shadow: 0 34px 90px rgba(11, 11, 12, 0.42);
  color: #ffffff;
}

.inspection-video-modal__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 26px 20px;
}

.inspection-video-modal__eyebrow {
  display: block;
  margin: 0 0 8px;
  color: var(--fl-pink);
  font-size: 0.78rem;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.inspection-video-modal__header h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.35rem);
  line-height: 0.98;
  letter-spacing: -0.045em;
  font-weight: 900;
}

.inspection-video-modal__header p {
  max-width: 620px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.45;
}

.inspection-video-modal__close {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.inspection-video-modal__close:hover,
.inspection-video-modal__close:focus-visible {
  transform: translateY(-1px);
  background: rgba(255, 48, 136, 0.18);
  border-color: rgba(255, 48, 136, 0.5);
  outline: none;
}

.inspection-video-modal__frame {
  margin: 0 18px 18px;
  overflow: hidden;
  border-radius: 20px;
  background: #000000;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.08);
}

.inspection-video-modal__frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  background: #000000;
}

.inspection-video-modal__frame iframe.inspection-video-modal__embed {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  border: 0;
  background: #000000;
}

.inspection-video-modal__frame video[hidden],
.inspection-video-modal__frame iframe[hidden] {
  display: none;
}

body.inspection-video-is-open {
  overflow: hidden;
}

.video-more {
  display: grid;
  place-items: center;
  padding: 22px;
  background: var(--fl-header-gradient);
  color: #fff;
  text-align: center;
}

.play-large {
  width: 82px;
  height: 82px;
  margin: 0 auto 18px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.play-large::before {
  border-width: 10px 0 10px 15px;
}

.video-more strong {
  display: block;
  margin-bottom: 8px;
  font-size: 3rem;
  line-height: 0.92;
  letter-spacing: -0.05em;
}

.video-more span {
  color: rgba(255, 255, 255, 0.82);
}

.guidance-section {
  padding: 86px 0 96px;
  background: var(--bg);
}

.guidance-section .section-title {
  max-width: 980px;
  margin-bottom: 58px;
}

.guidance-section .section-title .eyebrow {
  color: var(--pink);
  font-size: 1rem;
  letter-spacing: 0.04em;
}

.guidance-section .section-title h2 {
  font-size: clamp(2.4rem, 6.5vw, 4.1rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.guidance-section .section-title p {
  max-width: 760px;
  margin: 20px auto 0;
  font-size: 1.25rem;
  line-height: 1.55;
}

.how-steps {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(2.75rem, 4vw, 3.75rem);
  align-items: start;
}

.how-steps::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: 0;
  height: 2px;
  background: rgba(11, 11, 12, 0.08);
  z-index: 0;
}

.how-step,
.step-card {
  position: relative;
  z-index: 1;
  min-width: 0;
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  text-align: center;
}

.step-no {
  width: 54px;
  height: 54px;
  margin: 0 auto clamp(1.5rem, 2.5vw, 2rem);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 1.35rem;
  font-weight: var(--weight-bold);
}

.step-icon {
  width: 134px;
  height: 134px;
  margin: 0 auto clamp(1.35rem, 2vw, 1.75rem);
  border-radius: 50%;
  background: var(--fl-white);
  display: grid;
  place-items: center;
}

.step-icon img {
  width: 78px;
  height: 78px;
}

.step-card strong {
  display: block;
  margin-bottom: clamp(0.65rem, 1.2vw, 1rem);
  color: var(--text);
  font-size: 1.55rem;
  line-height: 1.12;
  font-weight: var(--weight-bold);
}

.step-card p {
  max-width: 290px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 1.16rem;
  line-height: 1.55;
}

.step-note {
  margin-top: clamp(1.25rem, 2vw, 1.75rem) !important;
  font-size: 1.08rem !important;
  line-height: 1.2 !important;
  font-weight: var(--weight-bold);
}

.step-note::before {
  content: "";
  display: block;
  width: 44px;
  height: 2px;
  margin: 0 auto clamp(0.85rem, 1.5vw, 1.15rem);
}

.cta-band {
  padding: 86px 0 96px;
  background: var(--bg);
  color: #fff;
}

.cta-band-inner {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 30px;
  align-items: center;
  padding: clamp(36px, 5vw, 48px) clamp(22px, 4vw, 38px);
  border-radius: var(--radius-lg);
  background: var(--fl-header-gradient);
  box-shadow: 0 18px 40px rgba(11, 11, 12, 0.14);
}

.page-home .cta-band.cta-band--wrap-white {
  background: var(--bg) !important;
}

.cta-band h2 {
  margin: 0 0 10px;
  max-width: 560px;
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 0.97;
  letter-spacing: -0.06em;
  font-weight: var(--weight-bold);
}

.cta-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
}

.cta-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.cta-points {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  margin-top: 16px;
  padding: 0;
  list-style: none;
}

.cta-points li,
.cta-points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.cta-points li::before,
.cta-points span::before {
  content: "";
  flex-shrink: 0;
  width: 14px;
  height: 14px;
  background: var(--fl-bullet-on-dark-bg) center / contain no-repeat;
  border: none;
  border-radius: 0;
  box-shadow: none;
}

.site-footer {
  padding: 0 0 28px;
  background: var(--fl-header-gradient);
  color: rgba(255, 255, 255, 0.78);
}

.site-footer .container {
  padding-top: 22px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr repeat(4, minmax(0, 1fr));
  gap: 28px;
  align-items: start;
}

.footer-title {
  display: inline-flex;
  align-items: center;
  color: #fff;
}

.footer-title img {
  width: auto;
  height: 46px;
  max-width: min(100%, 222px);
}

.footer-brand p {
  max-width: 290px;
  margin: 12px 0 0;
}

.footer-col h4 {
  margin: 0 0 12px;
  color: #fff;
  font-size: 1rem;
}

.footer-list {
  display: grid;
  gap: 10px;
  font-size: 0.95rem;
}

.footer-list a:hover {
  color: #fff;
}

.footer-bottom {
  margin-top: 24px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255, 255, 255, 0.6);
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a:hover {
  color: #fff;
}

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

  .proof-grid,
  .cta-band-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero,
  .hero-inner {
    min-height: 700px;
  }

  .trust-grid,
  .survey-grid,
  .proof-right,
  .how-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .worries-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 32px;
  }

  .worries-wrap {
    grid-column: 1;
    grid-row: 1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .worry-feature {
    grid-column: 1;
    grid-row: 2;
    max-width: 520px;
    justify-self: center;
  }

  .worries-cta {
    grid-column: 1;
    grid-row: 3;
    margin-top: 0;
  }

  .real-inspections__inner {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .real-inspections__intro {
    position: static;
    max-width: 720px;
  }

  .real-inspections__intro p {
    max-width: 620px;
  }

  .real-inspections__grid {
    margin-top: 0;
  }

  .inspection-card--offset {
    margin-top: 0;
  }

  .step-card::before,
  .step-card::after,
  .how-steps::before {
    display: none;
  }

  .worries-section .section-title h2 {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .guidance-section .section-title h2 {
    font-size: clamp(2.2rem, 7vw, 3.2rem);
  }

  .how-steps {
    gap: 52px 34px;
  }

  .cta-actions {
    justify-content: flex-start;
  }
}

@media (max-width: 820px) {
  .survey-selection {
    padding-top: clamp(48px, 12vw, 70px);
  }

  .section-title h2 {
    font-size: clamp(1.85rem, 7.5vw, 2.4rem);
  }

  .section-title p {
    font-size: 1rem;
  }

  .real-inspections__intro p {
    max-width: none;
  }

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

  .header-inner {
    min-height: 80px;
    gap: 16px;
  }

  .brand {
    max-width: 180px;
  }

  .brand img {
    height: 38px;
    max-width: 100%;
  }

  .header-ctas .btn-secondary {
    display: none;
  }

  .hero,
  .hero-inner {
    min-height: 620px;
  }

  .hero-inner {
    padding: 96px 0 64px;
  }

  .cta-band-inner {
    padding: clamp(28px, 6vw, 36px) clamp(18px, 5vw, 24px);
    border-radius: var(--radius-md);
  }

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

  .hero-copy .lead {
    font-size: 1.08rem;
  }

  .hero-actions {
    gap: 12px;
  }

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

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(11, 11, 12, 0.8) 0%, rgba(11, 11, 12, 0.44) 38%, rgba(11, 11, 12, 0.82) 100%),
      linear-gradient(90deg, rgba(11, 11, 12, 0.9) 0%, rgba(11, 11, 12, 0.58) 58%, rgba(11, 11, 12, 0.5) 100%);
  }

  .hero-copy {
    padding: 0;
  }

  .trust-grid,
  .survey-grid,
  .proof-right,
  .worries-wrap,
  .inspection-preview-grid,
  .how-steps {
    grid-template-columns: 1fr;
  }

  .trust-item {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .survey-card.popular {
    transform: none;
  }

  .worries-section {
    padding: 60px 0 72px;
  }

  .worries-section .section-title {
    margin-bottom: 34px;
  }

  .worries-section .section-title h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .worries-section .section-title p {
    font-size: 1.05rem;
  }

  .worries-layout {
    gap: 30px;
  }

  .worries-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    margin-top: 0;
    padding: 22px 20px;
  }

  .worries-cta__copy {
    text-align: center;
  }

  .worries-cta__sub {
    margin-left: auto;
    margin-right: auto;
  }

  .worries-cta__action {
    width: 100%;
  }

  .worries-cta__button.btn {
    width: 100%;
    justify-content: center;
    white-space: normal;
  }

  .worries-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .worry-card {
    min-height: auto;
    padding: 0;
  }

  .worry-card + .worry-card {
    border-left: 0;
    padding-top: 28px;
    border-top: 1px solid rgba(11, 11, 12, 0.08);
  }

  .proof-intro,
  .testimonial-card,
  .survey-card,
  .step-card,
  .video-card,
  .video-more {
    border-radius: 20px;
  }

  .worry-no {
    display: none;
  }

  .worry-icon {
    width: 129px;
    height: 129px;
    margin-bottom: 26px;
  }

  .worry-icon img {
    width: 66px;
    height: 66px;
  }

  .worry-card > span:not(.worry-icon) {
    max-width: 300px;
  }

  .worry-feature {
    max-width: none;
  }

  .proof-icons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px 16px;
  }

  .survey-card {
    padding: 32px 24px 28px;
  }

  .survey-card h3 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
  }

  .support {
    min-height: auto;
    margin-bottom: 28px;
  }

  .testimonial-card {
    min-height: auto;
  }

  .testimonial-card p {
    min-height: auto;
  }

  .price {
    font-size: clamp(2.6rem, 10vw, 3.4rem);
  }

  .guidance-section {
    padding: 64px 0 72px;
  }

  .real-inspections-section {
    padding: 72px 0;
  }

  .real-inspections__inner {
    width: min(calc(100% - 24px), var(--container));
  }

  .real-inspections__intro h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .real-inspections__grid {
    grid-template-columns: 1fr;
  }

  .inspection-card {
    min-height: auto;
    display: flex;
    flex-direction: column;
  }

  .inspection-card__media {
    height: 198px;
    min-height: 0;
  }

  .real-inspections__button {
    width: 100%;
  }

  .inspection-section {
    padding: 64px 0 72px;
  }

  .inspection-intro h2 {
    max-width: none;
    font-size: 3rem;
  }

  .inspection-intro p {
    max-width: none;
  }

  .inspection-intro .btn {
    width: 100%;
    min-width: 0;
  }

  .video-card {
    min-height: auto;
  }

  .video-thumb {
    aspect-ratio: 1.45 / 1;
  }

  .guidance-section .section-title {
    margin-bottom: 42px;
  }

  .guidance-section .section-title h2 {
    font-size: clamp(1.9rem, 8vw, 2.6rem);
  }

  .guidance-section .section-title p {
    font-size: 1.05rem;
  }

  .step-no {
    width: 46px;
    height: 46px;
    margin-bottom: 24px;
    font-size: 1.1rem;
  }

  .step-icon {
    width: 112px;
    height: 112px;
    margin-bottom: 24px;
  }

  .step-icon img {
    width: 66px;
    height: 66px;
  }

  .cta-actions {
    width: 100%;
  }

  .cta-actions .btn {
    width: 100%;
  }

  .footer-grid {
    gap: 18px;
  }
}

/* Legacy trust bars: align with the clean no-icon trust bar system. */
.trust-grid {
  gap: 0;
}

.trust-grid .trust-item {
  position: relative;
  display: flex;
  min-height: 112px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 18px 28px;
  border-right: 0;
  border-bottom: 0;
  text-align: center;
}

.trust-grid .trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 68px;
  background: rgba(11, 11, 12, 0.13);
  transform: translateY(-50%);
}

.trust-symbol {
  display: none !important;
}

.trust-grid .trust-item strong {
  display: inline-block;
  margin-bottom: 0;
  color: var(--navy);
  font-size: clamp(1rem, 1.2vw, 1.22rem);
  line-height: 1.1;
  font-weight: 900;
}

.trust-grid .trust-item strong::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  margin: 8px auto 0;
  border-radius: 999px;
  background: var(--pink);
}

.trust-grid .trust-item span {
  max-width: 210px;
  margin: 10px auto 0;
  color: var(--muted);
  font-size: 0.83rem;
  line-height: 1.35;
}

@media (max-width: 1080px) {
  .trust-grid .trust-item:nth-child(2n)::after {
    display: none;
  }

  .trust-grid .trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(11, 11, 12, 0.1);
  }
}

@media (max-width: 820px) {
  .trust-grid .trust-item {
    min-height: auto;
    padding: 20px 8px;
  }

  .trust-grid .trust-item::after {
    display: none !important;
  }

  .trust-grid .trust-item:not(:last-child) {
    border-bottom: 1px solid rgba(11, 11, 12, 0.1);
  }
}

/* Sitewide typography refinement for pages using the legacy/root stylesheet. */
body {
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  letter-spacing: 0.004em;
}

body :where(p, li, a, button, label, input, textarea, select, summary) {
  letter-spacing: 0.006em;
}

body :where(h1, h2, h3, h4, h5, h6) {
  letter-spacing: -0.014em;
}

body :where(.eyebrow, .section-eyebrow, .mini-label, .pill, .metric-label, .choice-meta, .footer-caption) {
  letter-spacing: 0.105em;
}
