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

:root {
  --navy: #08172b;
  --navy-deep: #061224;
  --pink: var(--fl-pink);
  --pink-deep: var(--fl-pink-deep);
  --pink-soft: rgba(255, 48, 136, 0.08);
  --bg: #f7f7fa;
  --text: #13233f;
  --muted: #5e708f;
  --line: #e6ebf3;
  --surface: #ffffff;
  --surface-soft: #f7f9fc;
  --shadow-soft: 0 18px 48px rgba(8, 23, 43, 0.06);
  --shadow-strong: 0 28px 72px rgba(8, 23, 43, 0.16);
  --container: 1180px;
  --font-primary: "Inter", "Segoe UI", sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(255, 48, 136, 0.06), transparent 20%),
    linear-gradient(180deg, #ffffff 0%, #f6f8fc 100%);
  font-family: var(--font-primary);
  line-height: 1.6;
}

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

button {
  font: inherit;
}

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

h1,
h2,
h3,
h4,
p {
  margin: 0;
}

ul {
  margin: 0;
  padding-left: 1.15rem;
}

:focus-visible {
  outline: 2px solid rgba(255, 48, 136, 0.72);
  outline-offset: 4px;
}

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

.section {
  padding: 4.75rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(7, 21, 42, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  min-height: 92px;
}

.brand img {
  width: 168px;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.55rem;
  flex: 1;
  min-width: 0;
}

.site-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.96rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

.site-nav a:hover,
.site-nav a.is-current {
  color: #ffffff;
}

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

.nav-caret {
  display: inline-block;
  width: 0.55rem;
  height: 0.55rem;
  margin-left: 0.35rem;
  border-right: 1.8px solid currentColor;
  border-bottom: 1.8px solid currentColor;
  transform: translateY(-0.12rem) rotate(45deg);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  border-radius: 14px;
  font-weight: 800;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

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

.btn-sm {
  min-height: 50px;
  padding: 0 1.15rem;
  font-size: 0.95rem;
}

.btn-inline {
  min-height: 50px;
  padding: 0 1.15rem;
  width: fit-content;
}

.btn-wide {
  width: 100%;
  min-height: 56px;
}

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

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

.btn-outline {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #ffffff;
}

.btn-light {
  border: 1px solid #d6dcea;
  background: #ffffff;
  color: var(--text);
  box-shadow: var(--shadow-soft);
}

.btn-dark-outline {
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: transparent;
  color: #ffffff;
}

.btn-icon {
  width: 18px;
  height: 18px;
}

.hero {
  padding: 2rem 0 3rem;
}

.hero--trust-overlap {
  padding-bottom: clamp(5.5rem, 8vw, 7rem);
}

.breadcrumbs {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: 1.35rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.breadcrumb-home {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

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

.crumb-sep {
  color: #9aa7bc;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(420px, 1.06fr);
  gap: 2rem;
  align-items: center;
}

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

.hero-copy h1,
.section-heading h2,
.cta-copy h2 {
  letter-spacing: -0.04em;
}

.hero-copy h1 {
  margin-top: 0.95rem;
  max-width: 10ch;
  color: var(--navy);
  font-size: clamp(3rem, 5vw, 5rem);
  line-height: 0.98;
  font-weight: 900;
}

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

.hero-text {
  max-width: 35rem;
  margin-top: 1rem;
  color: var(--muted);
  font-size: 1.14rem;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.9rem;
}

.hero-point {
  display: flex;
  gap: 0.75rem;
  padding-right: 0.8rem;
}

.hero-point-icon,
.trust-card__icon,
.reason-icon,
.cta-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.hero-point-icon img,
.trust-card__icon img,
.reason-icon img,
.cta-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(36%) saturate(909%) hue-rotate(184deg) brightness(92%) contrast(91%);
}

.hero-point-icon svg,
.trust-card__icon svg,
.reason-icon svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: var(--navy);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-point strong {
  display: block;
  color: var(--navy);
  font-size: 0.98rem;
}

.hero-point span {
  display: block;
  margin-top: 0.18rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.hero-media-wrap {
  position: relative;
  min-height: 560px;
}

.hero-media {
  position: relative;
  z-index: 1;
  height: 100%;
  overflow: hidden;
  border-radius: 24px;
  box-shadow: var(--shadow-strong);
}

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

.hero-promise-card {
  position: absolute;
  z-index: 2;
  right: 1.4rem;
  bottom: 1.4rem;
  display: flex;
  gap: 1rem;
  width: min(100%, 380px);
  padding: 1.45rem 1.5rem;
  border-radius: 18px;
  background: rgba(7, 21, 42, 0.96);
  box-shadow: 0 24px 56px rgba(7, 21, 42, 0.3);
  color: #ffffff;
}

.hero-promise-icon {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 54px;
  height: 54px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.04);
}

.hero-promise-icon img {
  width: 24px;
  height: 24px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(100%) saturate(3513%) hue-rotate(313deg) brightness(102%) contrast(101%);
}

.hero-promise-card h2 {
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1.05;
}

.hero-promise-card p {
  margin-top: 0.55rem;
  color: rgba(255, 255, 255, 0.78);
}

.trust-strip {
  padding: 3.2rem 0 1.6rem;
}

.section-heading {
  max-width: 820px;
}

.section-heading--center {
  margin: 0 auto;
  text-align: center;
}

.section-heading--narrow {
  max-width: 520px;
}

.section-heading h2,
.cta-copy h2 {
  color: var(--navy);
  font-size: clamp(2.35rem, 4vw, 4.25rem);
  font-weight: 900;
  line-height: 1.03;
}

.section-heading p {
  margin-top: 0.9rem;
  color: var(--muted);
  font-size: 1.05rem;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 2rem;
  overflow: hidden;
  border: 1px solid rgba(8, 23, 43, 0.08);
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
}

.trust-card {
  position: relative;
  display: grid;
  grid-template-columns: 84px 1fr;
  align-items: center;
  gap: 14px;
  min-height: 144px;
  padding: 18px 22px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
}

.trust-card:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 1px;
  height: 100%;
  background: rgba(8, 23, 43, 0.1);
}

.trust-card__icon {
  width: 84px;
  height: 84px;
  display: grid;
  place-items: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
}

.trust-card__icon img {
  width: 69px;
  height: 69px;
  object-fit: contain;
  filter: none;
}

.trust-card strong {
  display: block;
  color: #08172b;
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.trust-card span {
  display: block;
  max-width: none;
  margin-top: 6px;
  color: #31415f;
  font-size: 0.91rem;
  line-height: 1.34;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.reason-card {
  padding: 1.65rem 1.25rem 1.85rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: 0 18px 50px rgba(8, 23, 43, 0.06);
  text-align: center;
}

.reason-icon {
  margin: 0 auto;
}

.reason-card h3 {
  margin-top: 1.2rem;
  color: var(--navy);
  font-size: 1.14rem;
  line-height: 1.22;
  font-weight: 900;
}

.reason-card p {
  margin-top: 0.78rem;
  color: var(--muted);
  font-size: 0.96rem;
  line-height: 1.55;
}

.team-section {
  padding-top: 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.95fr);
  gap: 1.6rem;
  align-items: center;
  margin-top: 2rem;
}

.team-media {
  overflow: hidden;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
}

.team-media img {
  width: 100%;
  min-height: 340px;
  object-fit: cover;
}

.team-copy p {
  color: var(--muted);
  font-size: 1.06rem;
}

.bullet-list {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.35rem;
  list-style: none;
  padding-left: 0;
}

.bullet-list li {
  position: relative;
  padding-left: 1.75rem;
  color: var(--text);
}

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

.team-copy .btn-inline {
  margin-top: 1.4rem;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.testimonial-card {
  padding: 1.35rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.trustpilot-bar {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.trustpilot-bar span {
  color: var(--navy);
  font-size: 0.88rem;
  font-weight: 800;
}

.trustpilot-stars {
  display: inline-flex;
  gap: 0.18rem;
}

.trustpilot-stars span {
  width: 1rem;
  height: 1rem;
  border-radius: 3px;
  background: #ff3088;
  position: relative;
}

.trustpilot-stars span::before {
  content: "★";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 0.7rem;
}

.testimonial-card p {
  margin-top: 1rem;
  color: var(--text);
  font-size: 1rem;
}

.reviewer {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.reviewer img {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  object-fit: cover;
}

.reviewer strong {
  display: block;
  color: var(--navy);
  font-size: 0.95rem;
}

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

.cta-section {
  padding-top: 1.2rem;
}

.cta-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.6fr) auto;
  gap: 1.2rem;
  align-items: center;
  padding: 1.8rem;
  border-radius: 22px;
  background: var(--fl-header-gradient);
  box-shadow: 0 28px 74px rgba(7, 21, 42, 0.2);
}

.cta-copy {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: #ffffff;
}

.cta-copy h2 {
  color: #ffffff;
  font-size: clamp(2rem, 3.5vw, 3rem);
}

.cta-copy p {
  margin-top: 0.35rem;
  color: rgba(255, 255, 255, 0.74);
}

.cta-actions {
  display: grid;
  gap: 0.8rem;
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: #ffffff;
  font-weight: 800;
}

.cta-phone img {
  width: 18px;
  height: 18px;
  filter: brightness(0) saturate(100%) invert(29%) sepia(100%) saturate(3513%) hue-rotate(313deg) brightness(102%) contrast(101%);
}

.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 1.2rem;
  background: var(--fl-header-gradient);
  color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) repeat(4, minmax(160px, 0.62fr));
  gap: 2rem;
}

.footer-brand img {
  width: 170px;
}

.footer-brand-col p {
  max-width: 20rem;
  margin-top: 0.85rem;
}

.social-links {
  display: flex;
  gap: 0.7rem;
  margin-top: 1.1rem;
}

.social-links a {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 800;
}

.footer-col h3 {
  margin-bottom: 0.8rem;
  color: #ffffff;
  font-size: 1rem;
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-links a,
.footer-links span {
  color: rgba(255, 255, 255, 0.76);
}

.footer-contact img {
  width: 16px;
  height: 16px;
  margin-right: 0.55rem;
  display: inline-block;
  vertical-align: middle;
  filter: brightness(0) saturate(100%) invert(29%) sepia(100%) saturate(3513%) hue-rotate(313deg) brightness(102%) contrast(101%);
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.4rem;
}

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

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

  .hero-points,
  .trust-grid,
  .reasons-grid,
  .testimonial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-card:nth-child(2n)::after {
    display: none;
  }

  .trust-card:nth-child(-n + 2) {
    border-bottom: 1px solid rgba(8, 23, 43, 0.1);
  }
}

@media (max-width: 760px) {
  .section {
    padding: 3.6rem 0;
  }

  .header-inner {
    flex-wrap: wrap;
    padding: 1rem 0;
  }

  .header-actions {
    width: 100%;
  }

  .header-actions .btn {
    flex: 1 1 220px;
  }

  .hero {
    padding-top: 1.2rem;
  }

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

  .hero-text,
  .section-heading p,
  .team-copy p {
    font-size: 1rem;
  }

  .hero-points,
  .trust-grid,
  .reasons-grid,
  .testimonial-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .trust-card {
    min-height: auto;
    grid-template-columns: 58px 1fr;
    padding: 18px 16px;
  }

  .trust-card__icon {
    width: 58px;
    height: 58px;
  }

  .trust-card__icon img {
    width: 50px;
    height: 50px;
  }

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

  .trust-card:not(:last-child) {
    border-bottom: 1px solid rgba(8, 23, 43, 0.1);
  }

  .hero-media img {
    min-height: 360px;
  }

  .hero-promise-card {
    position: static;
    width: 100%;
    margin-top: 1rem;
  }

  .cta-copy {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-actions,
  .footer-bottom {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    display: grid;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
  }

  .section-heading h2,
  .cta-copy h2 {
    font-size: 2.45rem;
  }
}
