@import url("./flettons-brand.css");

:root {
  --navy: #08172b;
  --navy-deep: #08172b;
  --pink: var(--fl-pink);
  --bg: #f7f7fa;
  --surface: #fbfbfc;
  --text: #08172b;
  --muted: #62708f;
  --border: rgba(8, 23, 43, 0.08);
  --shadow: 0 18px 40px rgba(8, 23, 43, 0.08);
  --radius-xl: 28px;
  --radius-lg: 22px;
  --radius-md: 16px;
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.45;
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: var(--fl-header-gradient);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

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

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

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

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.site-nav a:hover {
  color: #fff;
}

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

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 14px 22px;
  font-weight: 700;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

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

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

.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-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.26);
}

.btn-outline-dark {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.3);
}

.btn-wide {
  width: 100%;
}

.btn-icon {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.hero {
  padding: 14px 0 26px;
  background: var(--fl-gradient-service-hero);
  color: #fff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.92rem;
}

.breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.crumb-icon {
  width: 14px;
  height: 14px;
  object-fit: contain;
}

.crumb-sep {
  color: rgba(255, 255, 255, 0.56);
}

.hero-grid {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(540px, 55vw, 640px);
  padding: 42px 42px 38px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  box-shadow: 0 28px 56px rgba(0, 0, 0, 0.18);
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: min(640px, 58%);
  padding-right: 0;
}

.eyebrow-row {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
  flex-wrap: wrap;
}

.eyebrow {
  color: var(--pink);
  font-size: 0.96rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 12px;
  border-radius: 10px;
  background: var(--pink);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.hero h1 {
  margin: 0 0 18px;
  max-width: 630px;
  font-size: clamp(3.2rem, 5.2vw, 5.15rem);
  line-height: 0.97;
  letter-spacing: calc(-0.08em + 2px);
  font-weight: 900;
}

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

.hero-text {
  max-width: 600px;
  margin: 0 0 30px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.24rem;
  line-height: 1.74;
}

.hero-feature-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 650px;
  margin-bottom: 26px;
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 58px;
  padding: 0 14px 0 0;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-feature:last-child {
  padding-right: 0;
  border-right: 0;
}

.hero-feature-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
}

.hero-feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-feature strong {
  display: block;
  font-size: 0.98rem;
  line-height: 1.22;
}

.hero-feature span {
  display: block;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.93rem;
  line-height: 1.38;
}

.hero-rating {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 4px;
}

.trust-stars {
  display: flex;
  gap: 4px;
}

.trust-stars span {
  width: 21px;
  height: 21px;
  border-radius: 3px;
  background: #ff3088;
  display: inline-block;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.hero-rating strong {
  font-size: 1.15rem;
  font-weight: 800;
}

.hero-rating-copy {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
}

.hero-visual {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.hero-visual::before,
.hero-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-visual::before {
  z-index: 1;
  background: var(--fl-gradient-service-scrim-alt);
}

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

.hero-overlay {
  position: absolute;
  right: 22px;
  bottom: 20px;
  z-index: 2;
  max-width: 485px;
  min-width: 320px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-radius: 16px;
  background: rgba(8, 23, 43, 0.86);
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.18);
}

.hero-overlay-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
}

.hero-overlay-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-overlay strong {
  display: block;
  font-size: 1rem;
  line-height: 1.24;
}

.hero-overlay span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.91rem;
  line-height: 1.5;
}

.strip {
  padding: 14px 0 0;
}

.section {
  padding: 20px 0;
}

.two-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--fl-card-grid-gap);
}

.panel {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 22px 22px 20px;
  box-shadow: 0 12px 26px rgba(8, 23, 43, 0.03);
}

.panel h2,
.fit-card h2,
.pricing-left h2 {
  margin: 0;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
}

.title-accent {
  width: 30px;
  height: 3px;
  margin: 16px 0 22px;
  border-radius: 999px;
  background: var(--pink);
}

.panel-report-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 212px;
  gap: 24px;
  align-items: center;
}

.tick-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 14px;
}

.tick-list li {
  position: relative;
  padding-left: 30px;
  color: #243452;
  font-size: 0.97rem;
  line-height: 1.58;
}

.tick-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.32em;
  width: 16px;
  height: 16px;
  background: var(--fl-bullet-on-light-bg) center/contain no-repeat;
}

.tick-list li::after {
  content: none;
}

.tick-list.light li {
  color: rgba(255, 255, 255, 0.92);
}

.tick-list.light li::before {
  background: var(--fl-bullet-on-dark-bg) center/contain no-repeat;
}

.tick-list.compact {
  gap: 8px;
}

.report-device {
  display: flex;
  justify-content: center;
}

.report-screen {
  width: 180px;
  padding: 10px;
  border-radius: 18px;
  background: #111721;
  box-shadow: 0 18px 40px rgba(8, 23, 43, 0.18);
}

.report-screen-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  padding: 10px 10px 12px;
  border-radius: 12px 12px 0 0;
  background: #fff;
}

.report-brand {
  color: var(--navy);
  font-size: 0.72rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.report-title {
  color: var(--navy);
  font-size: 1.12rem;
  font-weight: 800;
  line-height: 1.06;
}

.report-sub {
  margin-top: 6px;
  color: var(--pink);
  font-size: 0.58rem;
  font-weight: 700;
}

.report-rics {
  width: 42px;
  height: auto;
  object-fit: contain;
}

.report-preview {
  overflow: hidden;
  background: #fff;
}

.report-preview img {
  width: 100%;
  height: 138px;
  object-fit: cover;
}

.report-lines {
  padding: 10px 12px 12px;
  display: grid;
  gap: 6px;
  background: #fff;
  border-radius: 0 0 12px 12px;
}

.report-lines span {
  display: block;
  height: 5px;
  border-radius: 999px;
  background: #e7edf6;
}

.inspect-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--fl-card-grid-gap) 28px;
  margin-bottom: 18px;
}

.inspect-item {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
}

.inspect-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
}

.inspect-svg {
  width: 38px;
  height: 38px;
}

.inspect-svg path,
.inspect-svg circle,
.inspect-svg rect {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.inspect-svg .accent {
  stroke: var(--pink);
}

.inspect-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.02rem;
  line-height: 1.2;
}

.inspect-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.54;
}

.text-link {
  color: var(--pink);
  font-weight: 700;
}

.section-fit {
  padding-top: 8px;
}

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

.fit-card {
  border-radius: 18px;
}

.dark-panel {
  padding: 22px;
  background: var(--fl-header-gradient);
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 23, 43, 0.16);
}

.fit-intro {
  margin: 12px 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
}

.help-box {
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 14px;
  margin-top: 18px;
  padding: 16px 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
}

.help-box-icon {
  width: 36px;
  height: 36px;
}

.help-box-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.95;
}

.help-box-copy strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
}

.help-box-copy p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.94rem;
  line-height: 1.56;
}

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

.why-card {
  padding: 8px 6px;
}

.why-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 16px;
  display: grid;
  place-items: center;
}

.why-icon img,
.why-clock {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.why-clock circle,
.why-clock path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.why-clock .accent {
  stroke: var(--pink);
}

.section-pricing {
  padding-top: 8px;
  padding-bottom: 14px;
}

.pricing-band {
  display: grid;
  grid-template-columns: 1.03fr 0.62fr 0.95fr;
  gap: 0;
  overflow: hidden;
  border-radius: 18px;
  background: var(--fl-header-gradient);
  color: #fff;
  box-shadow: 0 22px 48px rgba(8, 23, 43, 0.18);
}

.pricing-left,
.pricing-centre,
.pricing-right {
  padding: 22px 28px;
}

.pricing-centre,
.pricing-right {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.pricing-left p {
  margin: 14px 0 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.03rem;
  line-height: 1.58;
}

.pricing-centre {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.from-label {
  margin-bottom: 6px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.price {
  font-size: 4rem;
  line-height: 0.94;
  font-weight: 900;
  letter-spacing: calc(-0.08em + 1px);
  color: white;
}

.price-sub {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.97rem;
}

.rating-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
}

.rating-row strong {
  font-size: 1.7rem;
  font-weight: 800;
}

.rating-copy {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.95rem;
}

.pricing-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.call-line {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 600;
}

.call-line img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.trust-strip {
  padding: 0 0 34px;
}

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

  .hero-grid,
  .two-panel-grid,
  .fit-grid,
  .pricing-band {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    min-height: 590px;
    padding: 34px 32px 30px;
  }

  .hero-copy {
    max-width: min(650px, 70%);
  }

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

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

  .pricing-centre,
  .pricing-right {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
  }
}

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

  .header-inner {
    min-height: 74px;
  }

  .brand img {
    height: 40px;
  }

  .header-actions .btn-outline {
    display: none;
  }

  .hero {
    padding-top: 10px;
  }

  .hero-grid {
    min-height: clamp(560px, calc(100svh - 128px), 690px);
    padding: 22px 20px 24px;
    align-items: flex-start;
  }

  .hero-copy {
    max-width: none;
  }

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

  .hero-text {
    font-size: 1.06rem;
    max-width: none;
  }

  .hero-feature-row,
  .strip-grid.four,
  .panel-report-inner,
  .inspect-grid,
  .why-grid,
  .trust-grid {
    grid-template-columns: 1fr;
  }

  .hero-feature {
    min-height: auto;
    padding: 0 0 14px;
    margin-bottom: 14px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .hero-feature:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
  }

  .hero-visual::before {
    background: var(--fl-gradient-service-scrim-vertical-alt);
  }

  .hero-visual::after {
    background: var(--fl-gradient-service-spot-soft);
  }

  .hero-visual img {
    min-height: 100%;
  }

  .hero-overlay {
    display: none;
  }

  .panel,
  .dark-panel,
  .pricing-left,
  .pricing-centre,
  .pricing-right {
    padding-left: 20px;
    padding-right: 20px;
  }

  .fit-grid {
    gap: var(--fl-card-grid-gap);
  }

  .why-card {
    padding: 6px 0;
  }

  .call-line {
    flex-wrap: wrap;
  }
}
