@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);
  --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-top: 4px;
  padding-bottom: 18px;
}

.cta-band {
  display: grid;
  grid-template-columns: 1.15fr auto;
  gap: 30px;
  align-items: center;
  padding: 26px 28px;
  border-radius: 16px;
  background: var(--fl-header-gradient);
  color: #fff;
  box-shadow: 0 22px 48px rgba(8, 23, 43, 0.18);
}

.cta-copy h2 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 3.8vw, 2.8rem);
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
  color: #fff;
}

.cta-copy p {
  margin: 0;
  max-width: 430px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.04rem;
  line-height: 1.64;
}

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

.cta-actions .btn {
  min-width: 220px;
}

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

  .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: flex-start;
  }
}

@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-actions {
    width: 100%;
    flex-direction: column;
  }

  .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 {
  padding: 0 0 18px;
}

.review-proof-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 32px rgba(8, 23, 43, 0.05);
}

.review-proof-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 108px;
  padding: 24px 22px;
  border-right: 1px solid var(--border);
}

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

.review-proof-icon {
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
}

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

.review-proof-item strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1rem;
  line-height: 1.18;
  font-weight: 800;
  color: var(--navy);
}

.review-proof-item span {
  display: block;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

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

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

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

.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.3);
  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.34);
  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.22);
  background: rgba(255, 48, 136, 0.04);
}

.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-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

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

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

  .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-grid,
  .reviews-grid,
  .results-grid,
  .stories-grid {
    grid-template-columns: 1fr;
  }

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

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

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

/* Contact page refinements */

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

.contact-hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 28px;
  align-items: start;
}

.contact-hero-copy {
  padding: 34px 0 0;
}

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

.contact-page h1 {
  max-width: 540px;
  margin: 0 0 22px;
  color: var(--navy);
  font-size: clamp(3.05rem, 5vw, 4.95rem);
  line-height: 0.95;
  letter-spacing: calc(-0.075em + 1px);
  font-weight: 800;
}

.contact-page h1 span {
  display: block;
  color: var(--pink);
}

.contact-page .hero-text {
  max-width: 460px;
  margin: 0;
  color: #334260;
  font-size: 1.18rem;
  line-height: 1.72;
}

.hero-pillars {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 2.4vw, 28px);
  margin-top: clamp(32px, 4.5vw, 48px);
}

.hero-pillar {
  display: grid;
  justify-items: center;
  align-content: start;
  gap: clamp(12px, 1.6vw, 16px);
  min-height: 0;
  padding: clamp(14px, 2vw, 20px) clamp(10px, 1.4vw, 16px);
  text-align: center;
}

.hero-pillar-icon {
  width: clamp(58px, 5.5vw, 68px);
  height: clamp(58px, 5.5vw, 68px);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.hero-pillar-svg,
.hero-pillar-icon svg.contact-inline-svg {
  width: clamp(46px, 4.4vw, 54px);
  height: clamp(46px, 4.4vw, 54px);
  display: block;
  object-fit: contain;
}

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

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

.hero-pillar strong {
  display: block;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.42;
  font-weight: 700;
}

.hero-pillar span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-form-card {
  padding: 24px 24px 20px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 32px rgba(8, 23, 43, 0.05);
}

.contact-form-card h2 {
  margin: 0 0 10px;
  color: var(--navy);
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
}

.contact-form-card > p {
  margin: 0 0 24px;
  color: #465574;
  font-size: 1rem;
  line-height: 1.7;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.field--full {
  grid-column: 1 / -1;
}

.field span {
  color: var(--navy);
  font-size: 0.92rem;
  line-height: 1.4;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  border: 1px solid #dbe3ee;
  border-radius: 12px;
  background: #fff;
  color: var(--navy);
  font: inherit;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.field input,
.field select {
  height: 54px;
  padding: 0 16px;
}

.field select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #62708f 50%),
    linear-gradient(135deg, #62708f 50%, transparent 50%);
  background-position:
    calc(100% - 20px) calc(50% - 2px),
    calc(100% - 14px) calc(50% - 2px);
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.field textarea {
  min-height: 118px;
  padding: 14px 16px;
  resize: vertical;
}

.field input::placeholder,
.field select,
.field textarea::placeholder {
  color: #8a96ac;
}

.contact-form-card .btn {
  margin-top: 16px;
}

.form-security {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
  color: #4c5a77;
  font-size: 0.94rem;
  line-height: 1.55;
}

.security-icon {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.security-icon rect,
.security-icon path {
  fill: none;
  stroke: var(--navy);
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

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

.reach-section {
  padding-top: 20px;
}

.reach-card {
  padding: 22px 24px 20px;
  border: 1px solid rgba(255, 48, 136, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, #fff7fb 0%, #fff 100%);
  box-shadow: 0 12px 28px rgba(8, 23, 43, 0.03);
}

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

.reach-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 980px;
  margin: 0 auto;
}

.reach-item {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 216px;
  padding: 18px 28px;
  border-right: 1px solid var(--border);
}

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

.reach-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
}

.reach-icon img,
.reach-icon .contact-inline-svg {
  width: 40px;
  height: 40px;
}

.reach-item strong {
  color: var(--navy);
  font-size: 1.42rem;
  line-height: 1.1;
  letter-spacing: calc(-0.03em + 0.5px);
  font-weight: 700;
}

.reach-item p {
  margin: 0;
  color: #4b5b79;
  font-size: 0.97rem;
  line-height: 1.6;
}

.reach-link {
  color: var(--pink);
  font-size: 1.55rem;
  line-height: 1.1;
  letter-spacing: calc(-0.03em + 0.5px);
  font-weight: 800;
}

.reach-item > span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid rgba(255, 48, 136, 0.34);
  border-radius: 12px;
  background: #fff;
  color: var(--pink);
  font-size: 0.97rem;
  font-weight: 700;
}

.reach-status {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  color: #40506d;
  font-size: 0.92rem;
}

.status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #1db65f;
}

.info-section {
  padding-top: 22px;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.info-grid .faq-card {
  width: 100%;
}

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

.info-card h2 {
  margin: 0 0 18px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 800;
}

.office-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 20px;
  align-items: start;
}

.office-copy address {
  margin: 0 0 18px;
  color: #374664;
  font-style: normal;
  font-size: 1rem;
  line-height: 1.82;
}

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

.office-media {
  overflow: hidden;
  border-radius: 14px;
}

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

.office-appointment {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding: 18px 20px;
  border-radius: 14px;
  background: #f8fafc;
}

.office-appointment strong {
  display: block;
  margin-bottom: 6px;
  color: var(--navy);
  font-size: 1.15rem;
  line-height: 1.2;
  font-weight: 700;
}

.office-appointment span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.office-btn {
  background: #fff;
  color: var(--navy);
  border-color: rgba(8, 23, 43, 0.18);
}

.faq-list {
  display: grid;
  gap: 0;
  margin-top: 8px;
}

.faq-item {
  border-top: 1px solid #edf1f6;
}

.faq-item:first-child {
  border-top: 0;
}

.faq-item summary {
  position: relative;
  padding: 18px 36px 18px 0;
  list-style: none;
  color: var(--navy);
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 600;
  cursor: pointer;
}

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

.faq-item summary::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 4px;
  width: 10px;
  height: 10px;
  border-right: 2px solid #3d4c69;
  border-bottom: 2px solid #3d4c69;
  transform: translateY(-60%) rotate(45deg);
  transition: transform 0.2s ease;
}

.faq-item[open] summary::after {
  transform: translateY(-20%) rotate(-135deg);
}

.faq-item p {
  margin: 0 0 18px;
  color: #4c5b78;
  font-size: 0.98rem;
  line-height: 1.68;
}

.faq-link {
  display: inline-flex;
  margin-top: 14px;
}

.trust-band-section {
  padding-top: 22px;
}

.trust-band {
  display: grid;
  grid-template-columns: 1.04fr 1fr 0.96fr;
  overflow: hidden;
  border-radius: 18px;
  background: var(--fl-gradient-header);
  color: #fff;
  box-shadow: 0 22px 48px rgba(8, 23, 43, 0.16);
}

.trust-band-block {
  display: grid;
  align-content: center;
  gap: 14px;
  min-height: 154px;
  padding: 28px 30px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

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

.trustpilot-brand-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

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

.trustpilot-word {
  color: #fff;
  font-size: 2rem;
  line-height: 1;
  letter-spacing: calc(-0.05em + 1px);
  font-weight: 700;
}

.trustpilot-score-row {
  display: grid;
  gap: 10px;
}

.trust-band .trustpilot-boxes {
  display: inline-flex;
  gap: 3px;
}

/* Match homepage hero proof stars: pink tile + white star */
.trust-band .trustpilot-boxes span {
  width: 20px;
  height: 18px;
  border-radius: 2px;
  background: var(--fl-pink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.trust-band .trustpilot-boxes span::before {
  content: "★";
  color: #ffffff;
  font-size: 11px;
  line-height: 1;
}

.trust-band .trustpilot-boxes--small span {
  width: 17px;
  height: 15px;
}

.trust-band .trustpilot-boxes--small span::before {
  font-size: 9px;
}

.trust-band-block strong,
.trust-band-block p {
  margin: 0;
}

.trust-band-block--trustpilot strong {
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.3;
  font-weight: 700;
}

.trust-band-block > span,
.trust-band-block--quote span {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.98rem;
  line-height: 1.6;
}

.trust-band-block--quote p {
  color: #fff;
  font-size: 1.3rem;
  line-height: 1.55;
  font-weight: 500;
}

.trust-band-block--community strong {
  color: #fff;
  font-size: 1.32rem;
  line-height: 1.45;
  font-weight: 700;
}

.community-icon {
  margin-top: auto;
}

.community-svg {
  width: 64px;
  height: 64px;
}

.community-svg circle,
.community-svg path {
  stroke: rgba(255, 255, 255, 0.38);
}

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

.social-links a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
}

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

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

  .reach-item:nth-child(3) {
    grid-column: 1 / -1;
    border-right: 0;
  }

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

@media (max-width: 1180px) {
  .contact-hero-grid,
  .info-grid,
  .trust-band {
    grid-template-columns: 1fr;
  }

  .hero-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: clamp(16px, 3vw, 24px);
  }

  .hero-pillar {
    padding: clamp(14px, 2.2vw, 20px);
  }

  .trust-band-block {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

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

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

  .office-appointment {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 820px) {
  .contact-hero-copy {
    padding-top: 10px;
  }

  .contact-page h1 {
    max-width: none;
    font-size: 2.95rem;
  }

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

  .hero-pillars,
  .reach-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .hero-pillar,
  .hero-pillar:first-child,
  .hero-pillar:last-child,
  .hero-pillar:nth-child(2),
  .reach-item,
  .reach-item:nth-child(2) {
    justify-items: start;
    min-height: auto;
    padding: 18px 0;
    text-align: left;
    border-right: 0;
    border-bottom: 1px solid var(--border);
    gap: 14px;
  }

  .hero-pillar-icon {
    width: clamp(52px, 14vw, 60px);
    height: clamp(52px, 14vw, 60px);
  }

  .hero-pillar-svg,
  .hero-pillar-icon svg.contact-inline-svg {
    width: clamp(42px, 11vw, 50px);
    height: clamp(42px, 11vw, 50px);
  }

  .hero-pillar:nth-child(n + 3) {
    padding-top: 0;
  }

  .hero-pillar:last-child,
  .reach-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
  }

  .contact-form-card,
  .reach-card,
  .info-card,
  .trust-band-block,
  .site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  .section-heading h2,
  .contact-form-card h2,
  .info-card h2 {
    font-size: 2rem;
  }
}
