@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: #f7f7fa;
  --surface: #fbfbfc;
  --text: #08172b;
  --muted: var(--fl-muted-blue);
  --border: var(--fl-border-soft);
  --shadow: 0 18px 40px rgba(8, 23, 43, 0.08);
  --container: 1280px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: linear-gradient(180deg, #ffffff 0%, #f7f7fa 100%);
  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;
  cursor: pointer;
}

.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.28);
}

.btn-phone {
  min-width: 260px;
}

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

.hero {
  padding: 18px 0 26px;
  background: linear-gradient(180deg, #ffffff 0%, #f7f8fc 100%);
}

.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--muted);
  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(98, 112, 143, 0.66);
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.22fr;
  gap: 42px;
  align-items: center;
}

.hero-copy h1 {
  margin: 0 0 22px;
  font-size: clamp(3.2rem, 5vw, 5rem);
  line-height: 0.96;
  letter-spacing: calc(-0.06em + 1px);
  font-weight: 900;
  color: var(--navy);
}

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

.hero-text {
  max-width: 430px;
  margin: 0 0 28px;
  color: #2e3d5b;
  font-size: 1.2rem;
  line-height: 1.72;
}

.hero-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 430px;
  gap: 0;
}

.hero-metric {
  padding-right: 18px;
  border-right: 1px solid var(--border);
}

.hero-metric:nth-child(2) {
  padding-left: 18px;
}

.hero-metric:nth-child(3) {
  padding-left: 18px;
  padding-right: 0;
  border-right: 0;
}

.metric-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 12px;
  display: grid;
  place-items: center;
}

.metric-icon img,
.metric-svg {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

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

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

.hero-metric strong {
  display: block;
  margin-bottom: 4px;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: calc(-0.06em + 1px);
  font-weight: 800;
  color: var(--navy);
}

.hero-metric span {
  display: block;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  min-height: 452px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 452px;
  object-fit: cover;
}

.hero-quote-card {
  position: absolute;
  right: 28px;
  bottom: 18px;
  max-width: 360px;
  padding: 28px 26px 24px;
  border-radius: 16px;
  background: rgba(8, 23, 43, 0.98);
  color: #fff;
  box-shadow: 0 18px 34px rgba(8, 23, 43, 0.2);
}

.quote-mark {
  margin-bottom: 8px;
  color: var(--pink);
  font-size: 3rem;
  line-height: 0.8;
  font-weight: 800;
}

.hero-quote-card p {
  margin: 0 0 14px;
  font-size: 1.1rem;
  line-height: 1.58;
}

.hero-quote-card span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.95rem;
}

.section {
  padding: 22px 0;
}

.section-heading {
  margin: 0 auto 22px;
}

.section-heading--center {
  text-align: center;
}

.section-heading--tight {
  margin-bottom: 16px;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3rem);
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
  color: var(--navy);
}

.section-heading p {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.65;
}

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

.case-card {
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 23, 43, 0.04);
}

.case-image-wrap {
  position: relative;
  overflow: hidden;
}

.case-image-wrap img {
  width: 100%;
  height: 212px;
  object-fit: cover;
}

.case-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  padding: 7px 12px;
  border-radius: 999px;
  background: #fff;
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  box-shadow: 0 6px 16px rgba(8, 23, 43, 0.1);
}

.case-body {
  padding: 18px 16px 16px;
}

.case-body h3 {
  margin: 0 0 12px;
  font-size: 1.15rem;
  line-height: 1.32;
  letter-spacing: calc(-0.03em + 0.5px);
  font-weight: 800;
  color: var(--navy);
}

.case-location {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.93rem;
}

.pin-icon {
  width: 14px;
  height: 14px;
}

.pin-icon path,
.pin-icon circle {
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.pin-icon .accent {
  stroke: var(--pink);
}

.case-copy {
  margin: 0 0 16px;
  color: #30405f;
  font-size: 0.98rem;
  line-height: 1.7;
}

.case-outcome {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  margin-bottom: 16px;
  padding: 16px;
  border-radius: 14px;
  background: #f6f8fc;
}

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

.case-outcome-icon img {
  width: 38px;
  height: 38px;
  object-fit: contain;
}

.case-outcome strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.2;
}

.case-outcome p {
  margin: 0;
  color: #30405f;
  font-size: 0.94rem;
  line-height: 1.58;
}

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

.topics-card {
  padding: 14px 0 0;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 23, 43, 0.03);
}

.topics-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  overflow: hidden;
}

.topic-item {
  padding: 22px 16px 18px;
  border-right: 1px solid var(--border);
  text-align: center;
}

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

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

.topic-icon img,
.topic-icon-svg {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

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

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

.topic-item strong {
  display: block;
  margin-bottom: 8px;
  font-size: 0.98rem;
  line-height: 1.28;
  color: var(--navy);
}

.topic-item p {
  margin: 0;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.58;
}

.evidence-band {
  display: grid;
  grid-template-columns: 1.7fr repeat(3, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 10px 24px rgba(8, 23, 43, 0.03);
}

.evidence-quote,
.evidence-stat {
  min-height: 150px;
  padding: 24px 26px;
}

.evidence-stat {
  border-left: 1px solid var(--border);
  text-align: center;
}

.evidence-quote {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 18px;
  align-items: start;
}

.evidence-quote-mark {
  color: var(--pink);
  font-size: 4rem;
  line-height: 0.8;
  font-weight: 800;
}

.evidence-quote p {
  margin: 0 0 12px;
  max-width: 430px;
  color: #243452;
  font-size: 1.08rem;
  line-height: 1.72;
}

.evidence-quote span {
  color: #334464;
  font-size: 0.93rem;
}

.evidence-stat-icon {
  width: 42px;
  height: 42px;
  margin: 0 auto 14px;
  display: grid;
  place-items: center;
}

.evidence-stat-icon img,
.evidence-stat-icon .metric-svg {
  width: 40px;
  height: 40px;
}

.evidence-stat strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.7rem;
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
  color: var(--navy);
}

.evidence-stat span {
  display: block;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.6;
}

.cta-section {
  padding: 34px 0 44px;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) max-content;
  gap: 36px;
  align-items: center;
  padding: 34px 42px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background: var(--fl-header-gradient);
  color: #fff;
  box-shadow: 0 22px 48px rgba(8, 23, 43, 0.18);
}

.cta-lead {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  min-width: 0;
}

.cta-lead-icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 48, 136, 0.28);
  border-radius: 50%;
  background: rgba(255, 48, 136, 0.065);
}

.cta-lead-icon img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.cta-lead h2,
.cta-copy h2 {
  margin: 0 0 12px;
  max-width: 720px;
  font-size: clamp(2rem, 3.1vw, 3.1rem);
  line-height: 1.06;
  letter-spacing: 0;
  font-weight: 900;
  color: #fff;
}

.cta-lead p,
.cta-copy p {
  margin: 0;
  max-width: 680px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.05rem;
  line-height: 1.55;
}

.cta-actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  justify-items: stretch;
  width: min(100%, 290px);
}

.cta-actions .btn {
  width: 100%;
  min-width: 0;
  min-height: 56px;
  border-radius: 14px;
  padding: 0 24px;
  font-size: 1rem;
  font-weight: 850;
}

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

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

.cta-actions .btn-outline-dark {
  background: rgba(255, 255, 255, 0.02);
  border-color: rgba(255, 255, 255, 0.32);
  color: #fff;
}

.platform-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 10px;
  overflow: hidden;
  border-radius: 16px;
  background: var(--fl-header-gradient);
  color: #fff;
  box-shadow: 0 18px 38px rgba(8, 23, 43, 0.16);
}

.platform-trust-item {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 14px;
  align-items: center;
  padding: 20px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

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

.platform-stars {
  display: flex;
  gap: 3px;
  align-items: center;
  justify-content: center;
  width: 52px;
}

.platform-stars span {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: #ff3088;
  display: inline-block;
}

.platform-trust-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
}

.platform-trust-icon img,
.platform-trust-icon .metric-svg,
.platform-trust-icon .topic-icon-svg {
  width: 40px;
  height: 40px;
}

.platform-trust-icon .metric-svg path,
.platform-trust-icon .metric-svg circle,
.platform-trust-icon .topic-icon-svg path,
.platform-trust-icon .topic-icon-svg rect,
.platform-trust-icon .topic-icon-svg circle {
  stroke: #fff;
}

.platform-trust-icon .metric-svg .accent,
.platform-trust-icon .topic-icon-svg .accent {
  stroke: var(--pink);
}

.platform-trust-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.28;
}

.platform-trust-item span {
  display: block;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr 1fr;
  gap: 24px;
  align-items: start;
}

.footer-brand-col p {
  max-width: 250px;
  margin: 12px 0 0;
  font-size: 0.94rem;
  line-height: 1.58;
}

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

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

.footer-list {
  display: grid;
  gap: 8px;
  font-size: 0.94rem;
}

.footer-list a,
.footer-list span {
  color: rgba(255, 255, 255, 0.82);
}

.footer-contact a,
.footer-contact span {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact img {
  width: 14px;
  height: 14px;
  margin-top: 3px;
  object-fit: contain;
}

.footer-bottom {
  margin-top: 18px;
  padding-top: 16px;
  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.62);
}

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

  .hero-grid,
  .case-grid,
  .evidence-band,
  .cta-band,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .evidence-stat {
    border-left: 0;
    border-top: 1px solid var(--border);
  }

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

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

  .platform-trust-item:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .cta-band {
    gap: 28px;
    align-items: start;
  }

  .cta-actions {
    width: min(100%, 520px);
    justify-self: start;
  }

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

  .topic-item:nth-child(3) {
    border-right: 0;
  }

  .topic-item:nth-child(-n + 3) {
    border-bottom: 1px solid var(--border);
  }
}

@media (max-width: 900px) {
  .hero-grid,
  .topics-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    min-height: 380px;
  }

  .hero-visual img {
    min-height: 380px;
  }

  .hero-metrics {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-metric,
  .hero-metric:nth-child(2),
  .hero-metric:nth-child(3) {
    padding: 0 0 16px;
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .hero-quote-card {
    right: 16px;
    left: 16px;
    max-width: none;
  }

  .topic-item,
  .topic-item:nth-child(3) {
    border-right: 0;
    border-bottom: 1px solid var(--border);
  }

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

  .cta-actions {
    justify-content: stretch;
    justify-items: stretch;
  }
}

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

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

  .brand img {
    height: 40px;
  }

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

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

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

  .case-image-wrap img {
    height: 200px;
  }

  .topics-card {
    padding-top: 8px;
  }

  .cta-band,
  .platform-trust-item,
  .evidence-quote,
  .evidence-stat,
  .case-body,
  .topic-item,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .cta-band {
    gap: 24px;
    padding-top: 26px;
    padding-bottom: 26px;
    border-radius: 18px;
  }

  .cta-lead {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
  }

  .cta-lead-icon {
    width: 60px;
    height: 60px;
  }

  .cta-lead-icon img {
    width: 34px;
    height: 34px;
  }

  .cta-lead h2,
  .cta-copy h2 {
    margin-bottom: 10px;
    font-size: clamp(1.7rem, 8vw, 2.35rem);
    line-height: 1.08;
  }

  .cta-lead p,
  .cta-copy p {
    font-size: 0.98rem;
    line-height: 1.55;
  }

  .cta-actions {
    width: 100%;
  }

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

  .platform-trust {
    grid-template-columns: 1fr;
  }

  .platform-trust-item,
  .platform-trust-item:nth-child(2) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

/* Reviews page refinements */

.site-nav a.is-current {
  position: relative;
  color: #fff;
}

.site-nav a.is-current::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -22px;
  height: 3px;
  border-radius: 999px;
  background: var(--pink);
}

.reviews-page .hero {
  padding: 18px 0 22px;
}

.reviews-page .hero-grid {
  grid-template-columns: 0.84fr 1.16fr;
  gap: 38px;
  align-items: stretch;
}

.reviews-page .hero-copy {
  padding: 34px 0 24px;
}

.reviews-page .eyebrow {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.reviews-page .hero-copy h1 {
  max-width: 520px;
  margin: 0 0 22px;
  font-size: clamp(3.05rem, 5vw, 5rem);
  line-height: 0.95;
  letter-spacing: calc(-0.075em + 1px);
}

.reviews-page .hero-text {
  max-width: 455px;
  margin: 0 0 30px;
  color: #31405e;
  font-size: 1.18rem;
  line-height: 1.7;
}

.trustpilot-row {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.trustpilot-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #141f38;
  font-size: 1.05rem;
  font-weight: 700;
}

.trustpilot-star {
  color: #ff3088;
  font-size: 2.2rem;
  line-height: 1;
}

.trustpilot-word {
  font-size: 2rem;
  line-height: 0.95;
  letter-spacing: -0.06em;
  font-weight: 700;
}

.trustpilot-score {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

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

.trustpilot-boxes span {
  width: 34px;
  height: 28px;
  border-radius: 2px;
  background: #ff3088;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.trustpilot-boxes .half {
  background: linear-gradient(90deg, #ff3088 0 60%, #dfe6ee 60% 100%);
}

.trustpilot-score strong {
  color: var(--navy);
  font-size: 1.9rem;
  line-height: 1;
  letter-spacing: calc(-0.06em + 1px);
  font-weight: 800;
}

.trustpilot-caption {
  margin-top: 10px;
  color: var(--muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.hero-review-stage {
  position: relative;
  min-height: 470px;
  overflow: hidden;
  border-radius: 20px;
  border: 1px solid rgba(8, 23, 43, 0.06);
  box-shadow: 0 26px 54px rgba(8, 23, 43, 0.12);
  background: #d9e0ea;
}

.hero-review-stage > img {
  width: 100%;
  height: 100%;
  min-height: 470px;
  object-fit: cover;
}

.hero-review-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 23, 43, 0.95) 0%, rgba(8, 23, 43, 0.82) 44%, rgba(8, 23, 43, 0.2) 74%, rgba(8, 23, 43, 0) 100%);
}

.hero-review-overlay {
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 18px;
  width: min(54%, 420px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 28px 30px 30px;
  border-radius: 18px;
  background: linear-gradient(140deg, rgba(8, 23, 43, 0.98), rgba(8, 23, 43, 0.92));
  color: #fff;
  box-shadow: 0 18px 40px rgba(8, 23, 43, 0.24);
}

.hero-review-overlay .quote-mark {
  margin-bottom: 14px;
  color: var(--pink);
  font-size: 4rem;
  line-height: 0.8;
}

.hero-review-overlay p {
  margin: 0 0 24px;
  font-size: 1.08rem;
  line-height: 1.62;
  color: rgba(255, 255, 255, 0.96);
}

.hero-stars {
  display: inline-flex;
  gap: 6px;
  margin-bottom: 18px;
  color: var(--pink);
  font-size: 1.1rem;
  line-height: 1;
}

.hero-review-overlay strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 700;
}

.hero-review-overlay span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 1rem;
  line-height: 1.5;
}

.review-proof-strip {
  position: relative;
  z-index: 5;
  margin-top: clamp(-56px, -7vw, -38px);
  padding: 0 0 clamp(12px, 2.2vw, 22px);
  background: transparent;
}

.review-proof-strip::before {
  content: "";
  position: absolute;
  inset: clamp(38px, 5vw, 54px) 0 0;
  z-index: 0;
  background: var(--bg);
  pointer-events: none;
}

.review-proof-strip .container {
  position: relative;
  z-index: 1;
}

.review-proof-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: clamp(8px, 1.2vw, 14px) clamp(8px, 1.2vw, 12px) clamp(16px, 2.4vw, 24px);
  background: #fff;
  border: 1px solid rgba(8, 23, 43, 0.07);
  border-radius: clamp(20px, 2.5vw, 28px);
  overflow: hidden;
  box-shadow:
    0 0 34px rgba(5, 13, 26, 0.075),
    0 0 0 1px rgba(255, 255, 255, 0.76) inset,
    inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.review-proof-grid::before {
  content: "";
  position: absolute;
  inset: 0 22px auto;
  height: 1px;
  border-radius: 999px;
  background: linear-gradient(90deg, transparent, rgba(255, 48, 136, 0.2), rgba(8, 23, 43, 0.08), transparent);
  pointer-events: none;
}

.review-proof-item {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: clamp(12px, 1.1vw, 16px);
  min-height: clamp(104px, 10vw, 126px);
  margin: 6px;
  padding: clamp(14px, 1.45vw, 20px);
  border-radius: 14px;
}

.review-proof-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -6px;
  width: 1px;
  height: min(76px, 58%);
  background: rgba(8, 23, 43, 0.085);
  transform: translateY(-50%);
  pointer-events: none;
}

.review-proof-icon {
  position: relative;
  isolation: isolate;
  width: clamp(54px, 5.4vw, 64px);
  height: clamp(54px, 5.4vw, 64px);
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.48) 0%, rgba(255, 255, 255, 0.16) 18%, transparent 42%),
    radial-gradient(circle at 78% 82%, rgba(255, 48, 136, 0.22) 0%, transparent 44%),
    linear-gradient(145deg, #142b55 0%, #08172b 48%, #030916 100%);
  border: 2px solid rgba(255, 48, 136, 0.82);
  box-shadow:
    inset 0 2px 3px rgba(255, 255, 255, 0.28),
    inset 0 -10px 18px rgba(0, 0, 0, 0.34),
    0 0 0 2px rgba(255, 48, 136, 0.16),
    0 10px 20px rgba(8, 23, 43, 0.16),
    0 3px 0 rgba(5, 13, 26, 0.28);
}

.review-proof-icon::before {
  content: "";
  position: absolute;
  inset: 6px 8px auto;
  height: 38%;
  z-index: -1;
  border-radius: 999px 999px 58% 58%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.06));
  opacity: 0.74;
  transform: rotate(-16deg);
  pointer-events: none;
}

.review-proof-icon::after {
  content: "";
  position: absolute;
  inset: 3px;
  z-index: -1;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: inset 0 0 0 1px rgba(2, 8, 19, 0.38);
  pointer-events: none;
}

.review-proof-icon img,
.review-proof-icon .metric-svg {
  position: relative;
  z-index: 1;
  width: clamp(30px, 3.2vw, 40px);
  height: clamp(30px, 3.2vw, 40px);
  object-fit: contain;
}

.review-proof-icon img {
  filter:
    brightness(0) invert(1)
    drop-shadow(0 2px 1px rgba(0, 0, 0, 0.28));
}

.review-proof-icon .metric-svg path,
.review-proof-icon .metric-svg circle,
.review-proof-icon .metric-svg rect {
  stroke: #ffffff;
  filter: drop-shadow(0 2px 1px rgba(0, 0, 0, 0.28));
}

.review-proof-icon .metric-svg .accent {
  stroke: #ff7bb6;
}

.review-proof-item strong {
  display: block;
  margin-bottom: 0;
  font-size: clamp(0.97rem, 1.05vw, 1.12rem);
  line-height: 1.15;
  font-weight: 800;
  color: var(--navy);
}

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

.review-proof-item span {
  display: block;
  margin-top: 8px;
  color: #31415f;
  font-size: clamp(0.82rem, 0.92vw, 0.9rem);
  line-height: 1.38;
}

.reviews-listing-section {
  padding-top: 10px;
  padding-bottom: 10px;
}

.section-topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 18px;
}

.section-topbar h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.4rem;
  line-height: 0.98;
  letter-spacing: calc(-0.06em + 1px);
  font-weight: 800;
}

.trustindex-topbar {
  align-items: flex-end;
  margin-bottom: 24px;
}

.trustindex-topbar p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.7;
  text-align: right;
}

.trustindex-widget-shell {
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfbfd 100%);
  box-shadow: 0 18px 40px rgba(8, 23, 43, 0.06);
}

.trustindex-widget-frame {
  min-height: 420px;
}

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

.filter-chip {
  padding: 13px 20px;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  color: #223250;
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

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

.filter-chip.is-active {
  background: var(--fl-gradient-button-primary);
  border-color: transparent;
  color: #fff;
  box-shadow: var(--fl-button-shadow);
}

.filter-chip.is-active:hover {
  box-shadow: var(--fl-button-shadow-hover);
}

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

.review-card {
  display: flex;
  flex-direction: column;
  min-height: 266px;
  padding: 18px 18px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: #fff;
  box-shadow: 0 10px 26px rgba(8, 23, 43, 0.04);
}

.review-card[hidden] {
  display: none;
}

.review-score-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 600;
}

.review-stars {
  display: inline-flex;
  gap: 6px;
  color: var(--pink);
  font-size: 1rem;
  line-height: 1;
}

.review-card p {
  margin: 0;
  color: #33415f;
  font-size: 1rem;
  line-height: 1.72;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #edf1f7;
}

.reviewer-avatar {
  width: 48px;
  height: 48px;
  overflow: hidden;
  border-radius: 50%;
  flex: 0 0 auto;
  background: #d6dce7;
}

.reviewer-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviewer strong {
  display: block;
  margin-bottom: 4px;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.2;
  font-weight: 700;
}

.reviewer span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.reviews-more {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

.trustpilot-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 22px;
  border: 1px solid rgba(255, 48, 136, 0.22);
  border-radius: 12px;
  background: #fff;
  color: var(--pink);
  font-size: 1rem;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(8, 23, 43, 0.04);
}

.results-section {
  padding-top: 6px;
}

.results-section .section-heading {
  margin-bottom: 18px;
}

.results-section .section-heading h2 {
  margin: 0;
  color: var(--navy);
  font-size: 2.35rem;
  line-height: 1;
  letter-spacing: calc(-0.06em + 1px);
  font-weight: 800;
}

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

.result-card {
  min-height: 244px;
  padding: 22px 22px 20px;
  border-radius: 18px;
  border: 1px solid rgba(21, 163, 106, 0.12);
  background: linear-gradient(180deg, #fbfffd 0%, #f4fbf7 100%);
  box-shadow: 0 10px 24px rgba(8, 23, 43, 0.03);
}

.result-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 16px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(21, 163, 106, 0.22);
  background: rgba(21, 163, 106, 0.03);
}

.result-icon img,
.result-icon-svg {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.result-icon-svg circle,
.result-icon-svg path {
  fill: none;
  stroke: #22a06b;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.result-card strong {
  display: block;
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: calc(-0.06em + 1px);
  font-weight: 800;
}

.result-card h3 {
  margin: 0 0 12px;
  color: var(--navy);
  font-size: 1.18rem;
  line-height: 1.25;
  font-weight: 700;
}

.result-card p {
  margin: 0 0 16px;
  color: #42506d;
  font-size: 1rem;
  line-height: 1.68;
}

.result-card a {
  color: var(--pink);
  font-size: 0.98rem;
  font-weight: 700;
}

.stories-section {
  padding-top: 14px;
}

.stories-grid {
  display: grid;
  grid-template-columns: 1.18fr repeat(3, 1fr) 0.72fr;
  gap: 14px;
  align-items: stretch;
}

.stories-intro {
  padding: 30px 26px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: linear-gradient(180deg, #fdfefe 0%, #f6f8fc 100%);
}

.stories-intro h2 {
  margin: 0 0 16px;
  color: var(--navy);
  font-size: 2.05rem;
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
}

.stories-intro p {
  margin: 0;
  color: #344261;
  font-size: 1.04rem;
  line-height: 1.7;
}

.story-card {
  position: relative;
  overflow: hidden;
  min-height: 240px;
  border-radius: 18px;
  background: #d8dee7;
  box-shadow: 0 12px 28px rgba(8, 23, 43, 0.05);
}

.story-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 23, 43, 0.02), rgba(8, 23, 43, 0.24));
}

.story-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  width: 64px;
  height: 64px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.96);
  color: var(--pink);
  font-size: 1.35rem;
  box-shadow: 0 14px 30px rgba(8, 23, 43, 0.14);
}

.story-duration {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 1;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(8, 23, 43, 0.86);
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1;
}

.stories-more-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 16px;
  padding: 24px 22px;
  border: 1px solid rgba(255, 48, 136, 0.26);
  border-radius: 18px;
  background: #fff;
  color: var(--pink);
  box-shadow: 0 12px 28px rgba(8, 23, 43, 0.04);
}

.stories-more-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  border: 1px solid rgba(255, 48, 136, 0.18);
  background: rgba(255, 48, 136, 0.035);
}

.stories-more-icon img {
  width: 34px;
  height: 34px;
  object-fit: contain;
}

.stories-more-card strong {
  color: var(--pink);
  font-size: 1.1rem;
  line-height: 1.45;
  font-weight: 700;
}

.stories-more-card span {
  font-size: 1.4rem;
  line-height: 1;
}

@media (max-width: 1260px) {
  .reviews-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

  .stories-intro {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1180px) {
  .reviews-page .hero-grid {
    grid-template-columns: 1fr;
  }

  .review-proof-strip {
    margin-top: clamp(-44px, -8vw, -28px);
  }

  .review-proof-strip::before {
    top: clamp(30px, 6vw, 44px);
  }

  .review-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    row-gap: 4px;
    padding: 8px 8px 22px;
  }

  .review-proof-item {
    min-height: auto;
    margin: 4px;
  }

  .review-proof-item::after {
    display: none;
  }
}

@media (max-width: 900px) {
  .reviews-page .hero-copy {
    padding: 10px 0 0;
  }

  .hero-review-stage {
    min-height: 420px;
  }

  .hero-review-stage > img {
    min-height: 420px;
  }

  .hero-review-overlay {
    top: auto;
    right: 16px;
    bottom: 16px;
    left: 16px;
    width: auto;
    padding: 22px 22px 24px;
  }

  .section-topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .trustindex-topbar p {
    max-width: none;
    text-align: left;
  }

  .filter-row {
    justify-content: flex-start;
  }

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

  .stories-grid {
    grid-template-columns: 1fr 1fr;
  }

  .stories-more-card {
    min-height: 220px;
  }
}

@media (max-width: 820px) {
  .site-nav a.is-current::after {
    display: none;
  }

  .reviews-page .hero {
    padding-top: 14px;
  }

  .reviews-page .hero-copy h1 {
    max-width: none;
    font-size: 2.95rem;
  }

  .reviews-page .hero-text {
    max-width: none;
    font-size: 1.05rem;
  }

  .trustpilot-word {
    font-size: 1.72rem;
  }

  .trustpilot-boxes span {
    width: 28px;
    height: 24px;
  }

  .hero-review-stage {
    min-height: 360px;
  }

  .hero-review-stage > img {
    min-height: 360px;
  }

  .hero-review-overlay p {
    font-size: 1rem;
  }

  .review-proof-strip {
    margin-top: -26px;
    padding-top: 0;
  }

  .review-proof-strip::before {
    top: 24px;
  }

  .review-proof-grid {
    padding: 10px;
    gap: 8px;
    border-radius: 18px;
    box-shadow:
      0 0 28px rgba(5, 13, 26, 0.07),
      0 0 0 1px rgba(255, 255, 255, 0.74) inset,
      inset 0 1px 0 rgba(255, 255, 255, 0.74);
  }

  .review-proof-grid,
  .reviews-grid,
  .results-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

  .trustindex-widget-shell {
    padding: 18px;
    border-radius: 18px;
  }

  .trustindex-widget-frame {
    min-height: 360px;
  }

  .review-proof-item {
    grid-template-columns: 52px 1fr;
    gap: 14px;
    margin: 0;
    padding: 16px;
    border: 1px solid rgba(8, 23, 43, 0.06);
    border-radius: 14px;
    background: rgba(251, 252, 254, 0.98);
  }

  .review-proof-icon {
    width: 52px;
    height: 52px;
  }

  .review-proof-icon img,
  .review-proof-icon .metric-svg {
    width: 30px;
    height: 30px;
  }

  .section-topbar h2,
  .results-section .section-heading h2,
  .stories-intro h2 {
    font-size: 2rem;
  }

  .filter-row {
    width: 100%;
    gap: 10px;
  }

  .filter-chip {
    flex: 1 1 calc(50% - 10px);
    text-align: center;
  }

  .review-card,
  .stories-intro,
  .stories-more-card {
    padding-left: 20px;
    padding-right: 20px;
  }

  .story-card,
  .stories-more-card {
    min-height: 204px;
  }
}
