:root { color-scheme: light; }

/* =========================================================
   FONTS
   ========================================================= */
@font-face {
  font-family: 'Bebas Neue';
  font-style: normal;
  font-weight: 400;
  font-display: optional;
  src: url('../fonts/BebasNeue-Regular.woff2') format('woff2');
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
  src: url('../fonts/DMSans.woff2') format('woff2');
}

/* =========================================================
   CUSTOM PROPERTIES
   ========================================================= */
:root {
  --red:        #cf2027;
  --red-dark:   #a81920;
  --dark:       #1a1a1a;
  --footer-bg:  #2A2A2A;
  --grey-light: #F7F7F7;
  --gallery-bg: #fcfcfc;
  --white:      #ffffff;
  --text:       #333333;
  --text-muted: #666666;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;

  --container: 1440px;
  --radius:    6px;
  --shadow:    0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);

  --ease-snappy: 0.15s ease;
  --ease-reveal: 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* =========================================================
   RESET & BASE
   ========================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* =========================================================
   CONTAINER
   ========================================================= */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}

@media (min-width: 768px) { .container { padding: 0 2rem; } }
@media (min-width: 1200px) { .container { padding: 0 3rem; } }
@media (min-width: 1440px) { .container { padding: 0 5rem; } }

/* =========================================================
   BUTTONS
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 2rem;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: background var(--ease-snappy), box-shadow var(--ease-snappy), color var(--ease-snappy);
  white-space: nowrap;
}

.btn-primary {
  background: var(--red);
  color: var(--white);
  box-shadow: 0 0 0 rgba(207,32,39,0);
}
.btn-primary:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 8px rgba(207,32,39,0.08);
}
/* =========================================================
   NAVIGATION
   ========================================================= */
#site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: #eeeeee;
  box-shadow: 0 2px 12px rgba(0,0,0,0.10);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}
#site-nav.nav-visible {
  opacity: 1;
  pointer-events: all;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 96px;
  gap: 1.5rem;
}

.nav-logo {
  margin-right: auto;
}
.nav-logo img {
  height: 68px;
  width: auto;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  position: relative;
  color: #333333;
  font-weight: 600;
  font-size: 0.88rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transition: color var(--ease-snappy);
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--red);
  transition: width 0.3s ease;
  transform: translateX(-50%);
}
.nav-links a:hover { color: var(--red); }
.nav-links a:hover::after { width: 60%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 1rem;
}

.btn-nav {
  padding: 0.5rem 1.2rem;
  font-size: 0.85rem;
  display: none;
}
@media (min-width: 1024px) {
  .btn-nav { display: inline-flex; }
}

/* Hamburger */
.nav-hamburger {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 28px;
  height: 28px;
  padding: 0;
}
.nav-hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #333333;
  border-radius: 0;
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* Mobile menu */
.nav-mobile-menu {
  display: none;
  flex-direction: column;
  gap: 0;
  background: #e4e4e4;
  padding: 1rem 0 1.25rem;
  border-top: 1px solid rgba(0,0,0,0.08);
}
.nav-mobile-menu.open { display: flex; }
.nav-mobile-menu a {
  color: #333333;
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.7rem 1.25rem;
  transition: background var(--ease-snappy), color var(--ease-snappy);
}
.nav-mobile-menu a:hover { background: rgba(0,0,0,0.06); color: var(--red); }
.nav-mobile-menu .btn-nav-mobile {
  display: inline-flex;
  align-items: center;
  margin: 0.5rem 1.25rem 0;
  padding: 0.45rem 1.1rem;
  background: var(--red);
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 700;
  border-radius: var(--radius);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  width: fit-content;
  transition: background var(--ease-snappy), box-shadow var(--ease-snappy);
}
.nav-mobile-menu .btn-nav-mobile:hover {
  background: var(--red-dark);
  box-shadow: 0 4px 8px rgba(207,32,39,0.12);
  color: var(--white);
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
  .nav-hamburger { display: none; }
  .nav-mobile-menu { display: none !important; }
}

/* =========================================================
   SECTION REVEAL ANIMATIONS
   ========================================================= */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--ease-reveal), transform var(--ease-reveal);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger helper — JS sets --i on each child */
.stagger > * {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity var(--ease-reveal), transform var(--ease-reveal);
  transition-delay: calc(var(--i, 0) * 0.15s);
}
.stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}
.stagger-sm > * {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity var(--ease-reveal), transform var(--ease-reveal);
  transition-delay: calc(var(--i, 0) * 0.06s);
}
.stagger-sm.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================================
   SECTION TYPOGRAPHY
   ========================================================= */
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dark);
}
.section-title--white { color: var(--white); }

/* Red underline accent on centred titles */
.section-header-centred .section-title::after {
  content: '';
  display: block;
  width: 52px;
  height: 4px;
  background: var(--red);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}
/* White accent for titles on red backgrounds */
.section-header-centred .section-title.section-title--white::after {
  background: rgba(255,255,255,0.55);
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}
.section-subtitle--left {
  margin-left: 0;
  text-align: left;
}

@media (max-width: 767px) {
  .section-title {
    font-size: clamp(2.2rem, 6vw, 3.2rem);
  }
}

/* =========================================================
   HERO
   ========================================================= */
#hero {
  position: relative;
  height: 100vh;
  min-height: 580px;
  overflow: hidden;
}

/* Hero background image */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-slide-bg {
  width: 100%;
  height: 100%;
  background-image: url('../images/ladycheckingmail.avif');
  background-size: auto 140%;
  background-position: 0% 30%;
}

/* Dark overlay — heavier on left where text sits */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.78) 0%, rgba(0,0,0,0.5) 55%, rgba(0,0,0,0.35) 100%),
    linear-gradient(to bottom, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.35) 100%);
  z-index: 1;
}

/* Hero container must be full height so inner content can vertically centre */
#hero .container {
  height: 100%;
}

/* Hero content */
.hero-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  text-align: left;
  padding-top: 40px;
  max-width: 700px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.45rem 0.9rem 0.35rem;
  border-radius: 2px;
  margin-bottom: 1.25rem;
  margin-top: 2rem;
}
.hero-badge svg { width: 14px; height: 14px; fill: var(--white); flex-shrink: 0; }

.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(4rem, 11vw, 9rem);
  line-height: 0.95;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 1rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: rgba(255,255,255,0.82);
  margin-bottom: 3rem;
  font-weight: 400;
  max-width: 460px;
  line-height: 1.5;
  white-space: nowrap;
}
@media (max-width: 900px) {
  .hero-subtitle { white-space: normal; max-width: 100%; }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .hero-slide-bg { background-position: 35% 30%; }
}
@media (max-width: 767px) {
  .hero-subtitle { font-size: 1.05rem; max-width: 55%; }
}

@media (max-width: 767px) {
  .hero-headline { line-height: 1.1; font-size: clamp(3.4rem, 14vw, 5rem); }
  .hero-badge { font-size: 0.72rem; }
  .hero-slide-bg { background-position: 60% 30%; }
}

.nav-rm-logo {
  display: none;
}
@media (max-width: 767px) {
  .nav-rm-logo {
    display: block;
    height: 80px;
    width: auto;
    margin-right: 0.5rem;
  }
}

/* Royal Mail badge — circle, bottom right of hero */
.hero-rm-badge {
  position: absolute;
  right: 6rem;
  bottom: 3.5rem;
  z-index: 3;
  background: #ffffff;
  border-radius: 50%;
  width: 200px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0,0,0,0.25);
  padding: 0;
  overflow: hidden;
}
.hero-rm-badge img {
  display: block;
  width: 65%;
  height: auto;
  margin-top: 4%;
  margin-left: 3%;
}
@media (max-width: 767px) {
  .hero-rm-badge { display: none; }
}

/* =========================================================
   SHOPPER APPROVED PLACEHOLDERS
   ========================================================= */
#shopper-approved,
#shopper-approved-2 {
  background: var(--white);
  min-height: 20px;
  padding: 1.25rem 0;
}

/* Visibility toggles */
.sa-tablet-up { display: none; }
.sa-mobile-only { display: block; }
@media (min-width: 768px) {
  .sa-tablet-up { display: block; }
  .sa-mobile-only { display: none; }
}

/* Mobile SA banner */
#shopper-approved-mobile {
  background: var(--white);
  padding: 1.5rem 1.25rem;
}
.sa-mob-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
.sa-mob-heading {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 400;
  color: var(--dark);
  text-transform: uppercase;
  line-height: 1.2;
  margin: 0;
  flex-shrink: 0;
}
.sa-mob-orange {
  color: rgb(247, 143, 30);
}
.sa-mob-arrow {
  width: 56px;
  height: 52px;
  flex-shrink: 0;
  align-self: flex-end;
  margin-bottom: -0.75rem;
  transform: scaleY(-1) rotate(-220deg);
}
.sa-mob-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.75rem;
  flex: 1;
  margin-left: 0.5rem;
}
.sa-mob-logo {
  width: 172px;
  height: auto;
  display: block;
  transform: rotate(-4deg) translateY(-8px);
  box-shadow: 0 4px 14px rgba(0,0,0,0.18);
  border-radius: 4px;
}
.sa-mob-btn {
  display: inline-block;
  width: 195px;
  text-align: center;
  background: #111;
  color: #fff;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 16px 5px;
  white-space: nowrap;
  border-radius: var(--radius);
}


/* =========================================================
   SERVICES SECTION
   ========================================================= */
#services {
  background: var(--red) url('../images/uspbadgebackground.avif') center center / cover no-repeat;
  padding: 6.5rem 0 7.5rem;
  clip-path: polygon(0 0, 100% 0, 100% 95%, 0 100%);
  margin: 0 0 -3.5rem;
  position: relative;
  z-index: 2;
}

.services-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Services 2-column split */
.services-split {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: stretch;
}
@media (min-width: 900px) {
  .services-split { grid-template-columns: 1.4fr 1fr; }
}

.services-img-wrap {
  align-self: stretch;
  display: none;
}
@media (min-width: 900px) {
  .services-img-wrap { display: grid; }
}

.services-collage {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 234px 234px;
  gap: 1.25rem;
}

.services-collage-img {
  overflow: hidden;
}

.services-collage-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.services-collage-img--rounded img {
  border-radius: 16px;
  object-position: center 20%;
}

.services-collage-img--badge {
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-collage-img--badge a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.services-collage-img--badge img {
  width: 70%;
  height: auto;
  object-fit: unset;
}

.services-collage-sa {
  background: var(--white);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  gap: 0.35rem;
  box-shadow: var(--shadow);
}

.services-collage-sa-logo {
  max-width: 130px;
  height: auto;
}

.services-collage-stars {
  color: #f5a623;
  font-size: 1.2rem;
  letter-spacing: 2px;
}

.services-collage-score {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text);
}

.usp-single-card {
  background: var(--white);
  border-radius: 18px;
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  height: 100%;
  box-sizing: border-box;
}

.usp-single-card .usp-card {
  background: none;
  border-radius: 0;
  padding: 0.1rem 1.5rem 0.1rem 2.5rem;
}

@media (max-width: 767px) {
  .usp-single-card {
    padding: 1rem 0;
  }
  .usp-single-card .usp-card {
    padding: 0.75rem 1.5rem;
  }
}


.usp-card {
  display: flex;
  flex-direction: row;
  align-items: center;
  text-align: left;
  background: var(--white);
  border-radius: 18px;
  padding: 1.25rem 1.5rem;
  gap: 1.25rem;
}

.usp-icon-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: #111;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.usp-icon-circle svg {
  width: 30px;
  height: 30px;
  fill: #fff;
}

.usp-body {
  display: flex;
  flex-direction: column;
  gap: 0.05rem;
  justify-content: center;
}

.usp-title {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.9rem;
  color: var(--red);
  text-transform: uppercase;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
@media (max-width: 767px) {
  .usp-single-card .usp-title { font-size: 1.5rem; }
}

#services .usp-desc {
  color: #444;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.55;
}

/* =========================================================
   GALLERY SECTION
   ========================================================= */
#gallery {
  background: var(--gallery-bg);
  padding: 5rem 0 3rem;
  position: relative;
  z-index: 1;
}

.gallery-header {
  text-align: center;
  margin-bottom: 3rem;
}
.gallery-header .section-subtitle {
  margin: 0.75rem auto 0;
  text-align: center;
}

/* Swiper wrapper with room for external arrows on desktop */
.gallery-swiper-wrap {
  position: relative;
}
@media (min-width: 768px) {
  .gallery-swiper-wrap {
    padding: 0;
  }
}

.gallery-swiper {
  border-radius: var(--radius);
  overflow: hidden;
  height: 640px;
}
.gallery-swiper .swiper-slide {
  border-radius: var(--radius);
  overflow: hidden;
  cursor: default;
  height: 100%;
}
.gallery-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

/* Custom gallery arrow buttons */
.gallery-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius);
  background: var(--red);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: none;
  flex-shrink: 0;
  transition: background var(--ease-snappy), box-shadow var(--ease-snappy);
  position: relative;
  z-index: 10;
  box-shadow: none;
}
.gallery-btn svg { width: 26px; height: 26px; fill: var(--white); }
.gallery-btn:hover { background: #111; box-shadow: 0 2px 8px rgba(0,0,0,0.12); }

/* Desktop: arrows outside on left/right */
.gallery-nav-desktop {
  display: none;
}
@media (min-width: 768px) {
  .gallery-nav-desktop {
    display: flex;
    align-items: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
  }
  .gallery-nav-desktop.prev-wrap { left: -72px; }
  .gallery-nav-desktop.next-wrap { right: -72px; }

  .gallery-outer {
    max-width: calc(100% - 160px);
    margin: 0 auto;
    position: relative;
  }
}

/* Mobile: both arrows below slider */
.gallery-nav-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 1.25rem;
}
@media (min-width: 768px) {
  .gallery-nav-mobile { display: none; }
}
@media (max-width: 767px) {
  #gallery { padding-top: 5rem; padding-bottom: 3.5rem; }
  .gallery-swiper { height: 47vw; }
  .gallery-nav-mobile { margin-top: 0.75rem; }
}

/* =========================================================
   INFORMATION SECTION
   ========================================================= */
#information {
  background: var(--footer-bg);
  padding: 5rem 0;
}

.info-header {
  text-align: center;
  margin-bottom: 3rem;
}
.info-header .section-subtitle {
  margin: 0.75rem auto 0;
  text-align: center;
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 640px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  box-shadow: var(--shadow);
  transition: box-shadow var(--ease-snappy);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
}
.info-card:hover { box-shadow: var(--shadow-lg); }

.info-card-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--red);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
}
.info-card-icon svg {
  width: 26px;
  height: 26px;
  fill: #fff;
}

.info-card-body { flex: 1; }

.info-card-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--red);
  margin-bottom: 0.6rem;
}
.info-card p { font-size: 0.95rem; color: var(--text); line-height: 1.7; }
.info-card a { color: var(--red); font-weight: 600; }
.info-card a:hover { text-decoration: underline; }

/* =========================================================
   USP PROCESS SECTION
   ========================================================= */
#usp {
  background: var(--grey-light);
  padding: 6rem 0;
  position: relative;
  z-index: 1;
  clip-path: polygon(0 3%, 100% 0, 100% 97%, 0 100%);
  margin: -2rem 0;
}

.usp-header {
  text-align: center;
  margin-bottom: 3.5rem;
}

.usp-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 640px) {
  .usp-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .usp-grid { grid-template-columns: repeat(4, 1fr); }
}

.usp-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}

.usp-icon {
  width: 72px;
  height: 72px;
  background: #111;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: none;
}
.usp-icon svg { width: 34px; height: 34px; fill: var(--white); }

.usp-number {
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: #111;
  text-transform: uppercase;
}

#usp .usp-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 1024px) {
  #usp .usp-desc {
    max-width: none;
    margin-left: 0;
    margin-right: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}


/* =========================================================
   FAQ SECTION
   ========================================================= */
#faq {
  background: var(--red) url('../images/uspbadgebackground.avif') center center / cover no-repeat fixed;
  padding: 5rem 0;
}
@media (max-width: 767px) {
  #faq {
    background: var(--red);
    position: relative;
    padding-top: 7rem;
  }
  #faq::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('../images/uspbadgebackground.avif') center center / cover no-repeat;
    pointer-events: none;
  }
  #faq .faq-header,
  #faq .faq-list {
    position: relative;
    z-index: 1;
  }
  #usp {
    clip-path: none;
    margin: 0;
  }
}

.faq-header {
  text-align: center;
  margin-bottom: 3rem;
}
#faq .section-title { color: var(--dark); }
#faq .section-subtitle { color: rgba(255,255,255,0.85); }

.faq-list {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.faq-item:has(.faq-question[aria-expanded="true"]) {
  border-color: var(--red);
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.5rem;
  text-align: left;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  color: var(--dark);
  background: var(--grey-light);
  cursor: pointer;
  transition: background var(--ease-snappy);
  gap: 1rem;
}
.faq-question:hover { background: #efefef; }
.faq-question[aria-expanded="true"] { background: var(--grey-light); color: var(--red); }

.faq-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  fill: var(--text-muted);
  transition: transform 0.25s ease, fill var(--ease-snappy);
}
.faq-question[aria-expanded="true"] .faq-icon { transform: rotate(45deg); fill: var(--red); }

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  background: var(--white);
}
.faq-answer.open {
  max-height: 500px;
  padding: 0.75rem 1.5rem 1.75rem;
}
.faq-answer p { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.faq-answer a { color: var(--red); font-weight: 600; text-decoration: underline; }

/* =========================================================
   ABOUT SECTION
   ========================================================= */
#about {
  background: var(--footer-bg);
  padding: 5rem 0 3rem;
}
#about .section-title { color: var(--white); }
#about .section-title::after { background: var(--red); }

.about-header {
  text-align: center;
  margin-bottom: 3rem;
}

.about-card {
  background: var(--grey-light);
  border-radius: 12px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr;
  box-shadow: var(--shadow-lg);
  padding: 2.5rem 2rem;
  gap: 2rem;
}
@media (min-width: 768px) {
  .about-card {
    grid-template-columns: 3fr 2fr;
    grid-template-areas:
      "main side"
      "cta  side";
    grid-template-rows: 1fr auto;
    gap: 0 3rem;
  }
  .about-main { grid-area: main; }
  .about-side {
    grid-area: side;
    border-left: 2px solid #e8e8e8;
    padding-left: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .about-cta  { grid-area: cta; padding-bottom: 0.5rem; }
}

.about-main {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 2.2vw, 2.1rem);
  line-height: 1.1;
  color: var(--dark);
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
}

.about-body {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
  max-width: 480px;
}
.about-body p { font-size: 0.97rem; color: var(--text); line-height: 1.7; }

/* Tick list */
.about-ticks {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin: 0;
  list-style: none;
  padding: 0;
  width: 100%;
}
.about-tick {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}
.about-tick svg {
  width: 18px;
  height: 18px;
  fill: var(--red);
  flex-shrink: 0;
}

/* Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 640px) {
  .about-stats { grid-template-columns: repeat(4, 1fr); }
}

.about-stat {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e8e8e8;
}
.about-stat-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  color: var(--red);
  line-height: 1;
}
.about-stat-label {
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-top: 0.25rem;
}


/* =========================================================
   SHOPPER APPROVED REVIEWS SECTION
   ========================================================= */
.sa-reviews-section {
  background: var(--white);
  padding: 3rem 0;
}
.sa-reviews-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.sa-reviews-logo {
  max-width: 440px;
  height: auto;
  margin-top: 1.5rem;
}
#SA_review_wrapper {
  padding: 1.5rem 0;
  width: 100%;
}

/* =========================================================
   CONTACT SECTION
   ========================================================= */
#contact {
  background: var(--grey-light);
  padding: 6rem 0;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.contact-label {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 1rem;
}

.contact-title {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--dark);
  margin-bottom: 1.25rem;
}

.contact-title-accent {
  color: var(--red);
}

.contact-description {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.8;
  max-width: 460px;
  margin-bottom: 2.5rem;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border-radius: 10px;
  transition: background 0.3s ease;
  color: var(--text);
}

.contact-item:hover {
  background: var(--white);
}

.contact-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: rgba(207, 32, 39, 0.1);
  color: var(--red);
}

.contact-icon svg {
  width: 22px;
  height: 22px;
}

.contact-item strong {
  display: block;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.15rem;
}

.contact-item span {
  font-size: 1rem;
  color: var(--dark);
  font-weight: 500;
}

/* Contact Form */
.contact-form-wrapper {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.form-group {
  position: relative;
  margin-bottom: 1.75rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 1rem 0;
  border: none;
  border-bottom: 2px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.3s ease;
  outline: none;
  resize: none;
}

.form-group textarea {
  min-height: 120px;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--red);
}

.form-group label {
  position: absolute;
  top: 1rem;
  left: 0;
  font-size: 1rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: all 0.3s ease;
}

.form-group input:focus ~ label,
.form-group input:not(:placeholder-shown) ~ label,
.form-group textarea:focus ~ label,
.form-group textarea:not(:placeholder-shown) ~ label {
  top: -0.75rem;
  font-size: 0.75rem;
  color: var(--red);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-form {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  margin-top: 0.5rem;
}

@media (max-width: 900px) {
  #contact { padding: 4.5rem 0; }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .contact-form-wrapper { padding: 2rem; }
  .contact-title br { display: none; }
  .contact-title { font-size: 3rem; white-space: nowrap; }
}


/* =========================================================
   FOOTER
   ========================================================= */
#footer {
  background: var(--footer-bg);
  padding: 4rem 0 2rem;
  color: rgba(255,255,255,0.75);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
@media (min-width: 900px) {
  .footer-grid { grid-template-columns: 3fr 1fr; gap: 4rem; }
}

/* Footer brand column */
.footer-brand-logo img {
  height: 80px;
  width: auto;
  margin-bottom: 1rem;
}
.footer-brand p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
  max-width: 300px;
}

.footer-contact a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
  transition: color var(--ease-snappy);
}
.footer-contact a:hover { color: var(--white); }
.footer-contact svg { width: 16px; height: 16px; fill: var(--red); flex-shrink: 0; }

/* Footer nav column */
.footer-nav-title {
  font-family: var(--font-body);
  font-weight: 800;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--white);
  margin-bottom: 1rem;
}
.footer-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.footer-nav-links a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  transition: color var(--ease-snappy);
}
.footer-nav-links a:hover { color: var(--white); }


.btn-form {
  align-self: flex-start;
  padding: 0.7rem 1.75rem;
  font-size: 0.9rem;
}

/* Footer bottom bar */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
}
.footer-copyright {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
}
.footer-legal-links {
  display: flex;
  gap: 1.25rem;
}
.footer-legal-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
}
.footer-legal-links a:hover {
  color: #fff;
  text-decoration: underline;
}
@media (max-width: 767px) {
  .footer-bottom {
    flex-direction: column-reverse;
    align-items: flex-start;
    gap: 1.25rem;
  }
}

/* =========================================================
   UTILITY
   ========================================================= */
.mt-sm { margin-top: 0.75rem; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
