@import url("https://fonts.googleapis.com/css2?family=Charis+SIL:ital,wght@0,400;0,700;1,400;1,700&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300..700;1,300..700&family=Lora:ital,wght@0,400..700;1,400..700&display=swap");

:root {
  --primary-red: #8f1f2e;
  --dark-red: #7a0000;
  --black: #0d0d0d;
  --soft-black: #111;
  --gold: #d8b55a;
  --bg-cream: #faf6f2;
  --white: #fff;
  --hero-red: rgb(241, 40, 40);
  --hero-white: rgba(255, 255, 255, 0.92);
  --hero-muted: rgba(231, 214, 189, 0.78);
}

* {
  box-sizing: border-box;
}

@keyframes imageZoom {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.06);
  }
}

body {
  margin: 0;
  padding: 0;
  background: var(--bg-cream);
  color: var(--soft-black);
  font-family: "Montserrat", sans-serif;
  overflow-x: hidden;
}

/* Mobile adjustments */
@media (max-width: 600px) {
  .brand-logo {
    width: 40px;
  }

  .brand-text {
    font-size: 1rem;
  }

  .top-header {
    padding: 10px 16px;
  }
}

/* SMOOTH SCROLL ANIMATIONS */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.9s ease,
    transform 0.9s ease;
}

.fade-in.show {
  opacity: 1;
  transform: translateY(0);
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 80px 20px;
  background-image: url("/images/background.webp");
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

/* Dark overlay + subtle vignette */
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(
      1100px 650px at 22% 28%,
      rgba(18, 11, 12, 0.35),
      rgba(18, 11, 12, 0.88)
    ),
    linear-gradient(110deg, rgba(42, 17, 21, 0.55), rgba(18, 11, 12, 0.78));
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 420px) 1fr;
  gap: 70px;
  align-items: center;
}

/* LEFT: cover becomes a "product" */
.hero-left {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-left img {
  width: 100%;
  max-width: 420px;
  height: auto;
  border-radius: 18px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.65);
  transform: translateY(2px);
}

/* RIGHT: typography */
.hero-right {
  max-width: 620px;
}

.hero-eyebrow {
  font-family: "Lora", serif;
  font-size: 1.05rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(231, 214, 189, 0.62);
  margin-bottom: 0;
}

.hero-right h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 3rem;
  line-height: 0.9;
  color: rgba(255, 255, 255, 0.92);
  text-shadow: 0 10px 30px rgba(0, 0, 0, 0.45);
  margin-top: 0;
  margin-bottom: 0.7rem;
}

.hero-right h1 span {
  display: block;
  margin-top: 10px;
  font-family: "Lora", serif;
  font-size: 1.4rem;
  font-style: italic;
  color: #8f1f2e;
  text-shadow: 0 10px 26px rgba(143, 31, 46, 0.28);
}

.hero-subhead {
  font-family: "Lora", serif;
  font-size: 1.2rem;
  line-height: 1.55;
  color: var(--hero-muted);
  margin: 0 0 22px;
}

.highlight {
  color: #8f1f2e;
  font-weight: 900;
  text-shadow: 0 0 16px rgba(178, 77, 77, 0.22);
  position: relative;
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 12px;
  font-family: "Lora", serif;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
}

.hero-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.hero-points .dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: #c7a36a;
  margin-top: 9px;
  box-shadow: 0 0 0 6px rgba(199, 163, 106, 0.16);
}

/* CTA row */
.hero-cta-row {
  display: flex;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}

/* Trust pills */
.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.trust-pill {
  font-family: "Lora", serif;
  font-size: 0.95rem;
  color: var(--hero-muted);
  padding: 12px 14px;
  border-radius: 999px;
  border: 1px solid rgba(199, 163, 106, 0.22);
  box-shadow: inset 0 1px 0 rgba(231, 214, 189, 0.06);
  background: rgba(18, 11, 12, 0.45);
  backdrop-filter: blur(7px);
}

/* Responsive */
@media (max-width: 980px) {
  .hero-content {
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
  }

  .urgency-top {
    justify-content: center;
  }

  .hero-right {
    max-width: 680px;
    margin: 0 auto;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-left img {
    max-width: 360px;
  }

  .hero-right h1 {
    font-size: 3.1rem;
    line-height: 0.95;
  }

  .hero-right h1 span {
    font-size: 1.7rem;
  }

  .hero-cta-row {
    justify-content: center;
    flex-wrap: wrap;
  }

  .hero-points {
    text-align: left;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 520px) {
  .hero {
    padding: 70px 16px;
  }

  .hero-left img {
    max-width: 310px;
    border-radius: 16px;
  }

  .hero-right h1 {
    font-size: 2.6rem;
  }

  .hero-subhead {
    font-size: 1.15rem;
  }

  .cta-primary,
  .cta-secondary {
    width: 100%;
    justify-content: center;
    display: inline-flex;
  }

  .hero-trust {
    justify-content: center;
  }
}

/* CTA */
.cta-primary {
  background: #ba8f4b;
  color: #fff;
  padding: 16px 38px;
  border: none;
  border-radius: 12px;
  font-size: 1.2rem;
  cursor: pointer;
  font-weight: bold;
  transition: 0.3s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  position: relative;
}

.cta-primary:hover {
  transform: scale(1.05);
  box-shadow: 0 0 18px rgba(190, 160, 26, 0.6);
}

/* Shine Effect */
.cta-primary::after {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  transform: skewX(-30deg);
  transition: all 0.6s ease-in-out;
  opacity: 0;
}

/* Shine Effect on Hover */
.cta-primary:hover::after {
  left: 100%;
  opacity: 1;
}

.cta-primary:focus {
  outline: 2px solid rgba(199, 163, 106, 0.35);
  outline-offset: 3px;
}

/* Small “presenting” line */
.hero-present {
  margin: 0 0 18px;
  font-family: "Lora", serif;
  font-size: 1.05rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.hero-present strong {
  display: block;
  margin-bottom: 6px;
  color: rgba(231, 214, 189, 0.9);
}

/* Urgency card that looks like your trust pills (but stronger) */
.hero-urgency {
  margin: 0 0 18px;
  padding: 14px 14px;
  border-radius: 14px;
  border: 1px solid rgba(199, 163, 106, 0.28);
  background: rgba(18, 11, 12, 0.55);
  box-shadow: inset 0 1px 0 rgba(231, 214, 189, 0.06);
  backdrop-filter: blur(8px);
}

.urgency-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  font-family: "Lora", serif;
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: 6px;
}

.urgency-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #c7a36a;
  box-shadow: 0 0 0 6px rgba(199, 163, 106, 0.16);
}

.urgency-date {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  border: 1px solid rgba(143, 31, 46, 0.35);
  background: rgba(143, 31, 46, 0.16);
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.95rem;
}

.urgency-text {
  font-family: "Lora", serif;
  color: rgba(231, 214, 189, 0.78);
  line-height: 1.5;
}

/* Secondary CTA that fits your theme */
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  border-radius: 12px;
  border: 1px solid rgba(199, 163, 106, 0.3);
  background: rgba(18, 11, 12, 0.35);
  color: rgba(231, 214, 189, 0.9);
  font-family: "Lora", serif;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  backdrop-filter: blur(7px);
}

.cta-secondary:hover {
  border-color: rgba(199, 163, 106, 0.45);
  background: rgba(18, 11, 12, 0.48);
}

/* SPONSORS */
.sponsors {
  margin: 60px auto;
  text-align: center;
}

.sponsors-label {
  display: block;
  font-family: "Montserrat", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.45);
  margin-bottom: 12px;
}

.sponsors-logos {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

.sponsors-logos img {
  max-height: 60px;
  width: auto;
  opacity: 0.85;
  transition:
    opacity 0.25s ease,
    transform 0.25s ease;
}

.sponsors-logos img:hover {
  opacity: 1;
  transform: scale(1.05);
}

/* Mobile */
@media (max-width: 600px) {
  .sponsors-logos {
    gap: 26px;
  }

  .sponsors-logos img {
    max-height: 48px;
  }
}

/* COPY SECTION BEFORE FEATURES */
.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 20px;
}

.copy-section {
  background: var(--white);
  padding: 50px 40px;
  border-radius: 14px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border: 4px solid var(--primary-red);
  width: min(80rem, calc(100% - 48px)); /* 24px gutter on each side */
  margin: 8rem auto 2rem;
}

.copy-section h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: var(--dark-red);
}

.copy-section p {
  font-size: 1.15rem;
  margin-bottom: 15px;
  line-height: 1.7;
}

.copy-badge {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.55);
  background: rgba(143, 31, 46, 0.08);
  border: 1px solid rgba(143, 31, 46, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.copy-lead {
  font-size: 1.18rem;
  line-height: 1.75;
}

.copy-divider {
  width: 100%;
  height: 2px;
  background: rgba(143, 31, 46, 0.18);
  border-radius: 999px;
  margin: 22px 0;
}

.copy-subtitle {
  margin: 1rem 0 14px;
  font-size: 1.25rem;
  color: var(--black);
}

.copy-list,
.copy-list-1 {
  margin: 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.copy-list,
.copy-list-1 li {
  gap: 12px;
  line-height: 1.65;
  font-size: 1.08rem;
}

.copy-list li::before {
  content: "✓";
  font-weight: 900;
  color: var(--primary-red);
  margin-top: 2px;
}

.copy-list-1 li::before {
  content: "•";
  font-weight: 900;
  color: var(--primary-red);
  margin-top: 2px;
}

.copy-muted {
  color: rgba(0, 0, 0, 0.6);
  font-weight: 500;
}

.copy-cta-line {
  margin-top: 22px;
  padding: 16px 18px;
  border-radius: 12px;
  background: rgba(143, 31, 46, 0.06);
  border: 1px solid rgba(143, 31, 46, 0.14);
  font-size: 1.08rem;
  line-height: 1.7;
}

.bonusi {
  font-weight: 900;
  color: var(--dark-red);
  text-decoration: underline;
  font-size: 1.8rem;
}

/* RESPONSIVENESS */
@media (max-width: 600px) {
  .container {
    padding: 28px 30px;
  }

  .copy-section {
    width: calc(100% - 32px); /* 16px gutter on each side */
    margin: 36px auto 70px;
    padding: 22px 16px;
    border-width: 3px; /* slightly less chunky on small screens */
    border-radius: 12px;
  }

  .copy-section h2 {
    font-size: 1.75rem;
  }

  .copy-section p,
  .copy-list li,
  .copy-cta-line {
    font-size: 1rem;
  }

  .copy-list li {
    display: block; /* kill the flex layout */
    position: relative;
    padding-left: 1.6rem; /* space for the checkmark */
    line-height: 1.65;
  }

  .copy-list li::before {
    position: absolute;
    left: 0;
    top: 0.15em; /* aligns with first line */
    margin: 0; /* stop flex-era leftovers */
  }

  .copy-muted {
    display: block; /* force it to drop under the main text */
    max-width: none; /* remove the 400px cap */
    margin-top: 0.35rem;
    text-align: center;
  }
}

/* DIASPORA VERSION (keeps your look, upgrades structure) */
.copy-section--diaspora h2 {
  margin-top: 10px;
}

.copy-story p {
  margin-bottom: 12px;
}

.copy-callout {
  margin: 18px 0 18px;
  padding: 16px 16px;
  border-radius: 12px;
  background: rgba(143, 31, 46, 0.05);
  border: 1px solid rgba(143, 31, 46, 0.16);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55);
}

.copy-callout p {
  margin-bottom: 8px;
}

.copy-contrast {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 14px;
}

.copy-contrast span {
  display: inline-flex;
  align-items: center;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(143, 31, 46, 0.14);
  background: rgba(18, 11, 12, 0.03);
  font-size: 1rem;
  line-height: 1;
}

.copy-cta-line--urgent {
  background: rgba(179, 0, 0, 0.06);
  border: 1px solid rgba(179, 0, 0, 0.18);
}

/* Mobile tweaks for the pills */
@media (max-width: 600px) {
  .copy-contrast span {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}

/* FEATURES */
.section h2 {
  font-size: 2.2rem;
  margin-bottom: 40px;
  color: var(--dark-red);
  text-align: center;
  font-weight: 700;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, minmax(22rem, 1fr));
  gap: 25px;
  margin-top: 20px;
  justify-content: center;
}

.feature-box {
  background: #ffffff;
  padding: 35px 30px;
  border-radius: 18px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  border: 2px solid #f2e8e8;
  transition: 0.25s ease;
}

.feature-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  border-color: var(--primary-red);
}

.icon-box {
  width: 70px;
  height: 70px;
  background: #fceaea;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 25px;
}

.icon-box img {
  width: 36px;
  height: 36px;
  filter: brightness(0) saturate(100%) invert(23%) sepia(90%) saturate(2300%)
    hue-rotate(-4deg) brightness(85%) contrast(92%);
}

.feature-box h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: #111;
}

.feature-box p {
  font-size: 1.05rem;
  color: #444;
  line-height: 1.55;
}

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

/* FOR WHO (NEW LOOK) */
.forwho2 {
  /* width: min(82rem, calc(100% - 48px)); */
  margin: 6rem auto 2rem;
}

.forwho2-inner {
  background: var(--white);
  border: 4px solid var(--primary-red);
  border-radius: 16px;
  padding: 50px 42px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);

  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 26px;
  position: relative;
  overflow: hidden;
}

/* subtle premium texture */
.forwho2-inner::before {
  content: "";
  position: absolute;
  inset: -60px -60px auto auto;
  width: 260px;
  height: 260px;
  background: radial-gradient(
    circle at 30% 30%,
    rgba(143, 31, 46, 0.18),
    rgba(143, 31, 46, 0)
  );
  pointer-events: none;
  transform: rotate(18deg);
}

.forwho2-badge {
  display: inline-block;
  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.82rem;
  color: rgba(0, 0, 0, 0.6);
  background: rgba(143, 31, 46, 0.08);
  border: 1px solid rgba(143, 31, 46, 0.18);
  padding: 10px 14px;
  border-radius: 999px;
  margin-bottom: 14px;
  position: relative;
  z-index: 2;
}

.forwho2-left h2 {
  margin: 0 0 12px;
  font-size: 2.35rem;
  color: var(--dark-red);
  position: relative;
  z-index: 2;
}

.forwho2-quote {
  margin: 0 0 14px;
  font-size: 1.25rem;
  line-height: 1.7;
  font-weight: 800;
  color: #111;
  padding-left: 16px;
  border-left: 4px solid rgba(143, 31, 46, 0.5);
  position: relative;
  z-index: 2;
}

.forwho2-sub {
  margin: 0 0 18px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: rgba(0, 0, 0, 0.75);
  position: relative;
  z-index: 2;
}

.forwho2-note {
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(143, 31, 46, 0.06);
  border: 1px solid rgba(143, 31, 46, 0.14);
  font-size: 1.05rem;
  line-height: 1.7;
  position: relative;
  z-index: 2;
}

.forwho2-right {
  display: grid;
  gap: 12px;
  align-content: start;
  position: relative;
  z-index: 2;
}

.forwho2-card {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 14px;
  align-items: start;

  background: rgba(143, 31, 46, 0.03);
  border: 1px solid rgba(143, 31, 46, 0.12);
  border-radius: 16px;
  padding: 18px 18px;
  transition: 0.25s ease;
}

.forwho2-card:hover {
  transform: translateY(-4px);
  border-color: rgba(143, 31, 46, 0.28);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.08);
}

.forwho2-icon {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  background: #fceaea;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
}

.forwho2-card h3 {
  margin: 0 0 6px;
  font-size: 1.12rem;
  color: #111;
}

.forwho2-card p {
  margin: 0;
  font-size: 1.02rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.72);
}

.forwho2-cta {
  margin-top: 6px;
  display: grid;
  gap: 10px;
}

/* Responsive */
@media (max-width: 980px) {
  .forwho2-inner {
    grid-template-columns: 1fr;
    padding: 26px 18px;
    border-width: 3px;
  }

  .forwho2-left h2 {
    font-size: 1.85rem;
  }

  .forwho2-quote {
    font-size: 1.12rem;
  }
}

/* TESTIMONIALS — EDITORIAL LOOK */
.testimonials-editorial {
  width: min(82rem, calc(100% - 48px));
  margin: 7rem auto 3rem;
}

.testimonials-inner {
  padding: 10px 0;
}

.testimonials-eyebrow {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(143, 31, 46, 0.6);
  margin-bottom: 10px;
}

.testimonials-inner h2 {
  font-size: 2.4rem;
  color: var(--dark-red);
  margin-bottom: 18px;
  margin-top: 0;
}

.testimonials-summary {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 36px;
  color: rgba(0, 0, 0, 0.65);
}

#avg-rating-value {
  font-weight: 800;
  color: var(--dark-red);
}

/* LIST LAYOUT */
.testimonials-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 34px;
}

/* SINGLE REVIEW — NOT A CARD */
.review-card {
  padding-left: 28px;
  position: relative;
}

/* Quote line */
.review-card::before {
  content: "“";
  position: absolute;
  left: 0;
  top: -8px;
  font-family: "Cormorant Garamond", serif;
  font-size: 4.2rem;
  color: rgba(143, 31, 46, 0.35);
  line-height: 1;
}

/* Header */
.review-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

/* Avatar becomes subtle initial */
.review-avatar {
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: rgba(143, 31, 46, 0.12);
  color: var(--dark-red);
  font-weight: 900;
  font-family: "Montserrat", sans-serif;

  display: flex;
  align-items: center;
  justify-content: center;

  line-height: 1;
  flex: 0 0 36px;
  text-transform: uppercase;
}

/* Name + stars */
.review-name {
  font-size: 1.05rem;
  font-weight: 700;
}

.testimonials-summary #avg-stars,
.testimonials-summary #avg-stars .star,
.testimonials-summary #avg-stars span {
  color: #c7a36a;
}

.review-stars {
  font-size: 0.9rem;
  color: #c7a36a;
  margin-top: 2px;
}

/* Review text — THIS IS THE STAR */
.review-text {
  font-size: 1.15rem;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.8);
  margin: 8px 0 6px;
  max-width: 62ch;
  font-weight: 500;
}

/* Date — de-emphasized */
.review-date {
  font-size: 0.9rem;
  color: rgba(0, 0, 0, 0.45);
}

.load-more-wrapper {
  text-align: center;
  margin-top: 2rem;
}

/* Load more */
.load-more-btn {
  background: rgba(143, 31, 46, 0.08);
  border: 1px solid rgba(143, 31, 46, 0.18);
  border-radius: 999px;
  padding: 12px 18px;

  font-family: "Montserrat", sans-serif;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark-red);
  cursor: pointer;
}

.load-more-btn:hover {
  background: rgba(143, 31, 46, 0.12);
  border-color: rgba(143, 31, 46, 0.28);
}

/* Mobile */
@media (max-width: 700px) {
  .review-text {
    font-size: 1.05rem;
  }

  .testimonials-inner h2 {
    font-size: 1.9rem;
  }
}

/* TESTIMONIAL SCREENSHOTS (IG PROOF) */
.ig-proof {
  padding: 70px 20px;
}

.ig-proof-inner {
  max-width: 1180px;
  margin: 0 auto;
}

.ig-proof-head {
  text-align: center;
  margin-bottom: 26px;
}

.ig-proof-head h2 {
  font-size: 2.2rem;
  margin: 0 0 10px;
  color: var(--dark-red);
  font-weight: 800;
}

.ig-proof-sub {
  max-width: 720px;
  margin: 0 auto;
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.72);
}

/* The scroll-snap carousel */
.ig-proof-carousel {
  position: relative;
  margin-top: 26px;
  padding: 10px 0;
  overflow: hidden;
}

.ig-proof-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: clamp(220px, 28vw, 320px);
  gap: 18px;

  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scroll-padding: 18px;

  padding: 10px 18px 18px;
  -webkit-overflow-scrolling: touch;

  /* make it feel "clean" */
  scrollbar-width: thin;
}

.ig-proof-track::-webkit-scrollbar {
  height: 10px;
}

.ig-proof-track::-webkit-scrollbar-thumb {
  background: rgba(143, 31, 46, 0.25);
  border-radius: 999px;
}

.ig-proof-track::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.06);
  border-radius: 999px;
}

.ig-proof-card {
  scroll-snap-align: start;
  margin: 0;

  border-radius: 18px;
  background: #fff;
  border: 2px solid rgba(143, 31, 46, 0.12);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);

  overflow: hidden;
  transform: translateZ(0);
}

.ig-proof-card img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: contain;
  background: #000;

  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

.ig-proof-card:hover img {
  transform: scale(1.03);
  filter: saturate(1.05);
}

/* subtle side fade so it looks expensive */
.ig-proof-carousel::before,
.ig-proof-carousel::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 38px;
  pointer-events: none;
  z-index: 2;
}

.ig-proof-carousel::before {
  left: 0;
  background: linear-gradient(
    to right,
    var(--bg-cream),
    rgba(250, 246, 242, 0)
  );
}

.ig-proof-carousel::after {
  right: 0;
  background: linear-gradient(to left, var(--bg-cream), rgba(250, 246, 242, 0));
}

.ig-proof-hint {
  text-align: center;
  margin-top: 14px;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  color: rgba(0, 0, 0, 0.45);
  text-transform: uppercase;
}

/* Mobile */
@media (max-width: 600px) {
  .ig-proof {
    padding: 55px 14px;
  }

  .ig-proof-head h2 {
    font-size: 1.7rem;
  }

  .ig-proof-sub {
    font-size: 1.02rem;
  }

  .ig-proof-track {
    grid-auto-columns: 78vw;
    gap: 14px;
    padding: 10px 14px 18px;
  }

  .ig-proof-carousel::before,
  .ig-proof-carousel::after {
    width: 22px;
  }
}

/* FAQ SECTION */
.faq-section {
  margin-top: 100px;
  margin-bottom: 100px;
  padding: 0 20px;
}

.faq-section h2 {
  text-align: center;
  font-size: 2.6rem;
  color: var(--dark-red);
  margin-bottom: 35px;
  font-family: "Segoe UI", serif;
}

.faq {
  max-width: 820px;
  margin: auto;
}

/* FAQ ITEM */
.faq-item {
  padding: 18px 0;
  border-bottom: 1px solid rgba(179, 0, 0, 0.2); /* soft red line */
  transition: 0.25s ease;
}

.faq-item:last-child {
  border-bottom: none;
}

/* QUESTION BUTTON */
.faq-question {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  font-size: 1.35rem;
  font-weight: 600;
  cursor: pointer;
  padding: 10px 0;
  color: var(--black);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: "Montserrat", sans-serif;
}

.faq-question:hover {
  color: var(--primary-red);
}

/* ARROW */
.faq-question .arrow {
  font-size: 1.6rem;
  transition: 0.3s ease;
  color: var(--primary-red);
  font-weight: bold;
}

/* ANSWER */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.35s ease;
  padding-right: 20px;
}

.faq-answer p {
  font-size: 1.1rem;
  line-height: 1.65;
  margin: 0;
  padding-top: 10px;
  color: #333;
  font-family: "Inter", sans-serif;
}

/* OPEN STATE */
.faq-item.open {
  padding-bottom: 22px;
}

.faq-item.open .faq-answer {
  max-height: 500px;
  opacity: 1;
}

.faq-item.open .arrow {
  transform: rotate(45deg);
}

/* CTA SECTION */
.cta-section {
  text-align: center;
  margin-top: 70px;
  background: linear-gradient(
    90deg,
    rgba(179, 0, 0, 1) 0%,
    rgb(157, 9, 9) 100%
  );
  padding: 50px 30px;
  border-radius: 14px;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.08);
}

.cta-section h2 {
  font-size: 2.3rem;
  margin-bottom: 15px;
  color: white;
}

.cta-section p {
  color: white;
}

.cta-section .cta-primary {
  color: var(--primary-red);
  background-color: white;
  margin-top: 1rem;
}

/* FOOTER */
footer {
  margin-top: 80px;
  text-align: center;
  padding: 30px;
  font-size: 0.9rem;
  color: #555;
}

/* MOBILE */
@media (max-width: 600px) {
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.05rem;
  }
}

/* Social Icons */
.footer-socials {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 18px 0 10px;
}

.footer-socials a {
  text-decoration: none;
}

.footer-socials .icon {
  width: 34px;
  height: 34px;
  display: inline-block;
  background-color: #b30000;
  mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center;
  -webkit-mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  transition:
    transform 0.25s ease,
    background-color 0.25s ease;
}

.footer-socials .icon:hover {
  transform: translateY(-3px) scale(1.08);
  background-color: #7a0000;
}

/* ICON MASKS */
.icon.instagram {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M7 2C4.2 2 2 4.2 2 7v10c0 2.8 2.2 5 5 5h10c2.8 0 5-2.2 5-5V7c0-2.8-2.2-5-5-5H7zm10 2c1.7 0 3 1.3 3 3v10c0 1.7-1.3 3-3 3H7c-1.7 0-3-1.3-3-3V7c0-1.7 1.3-3 3-3h10zm-5 3a5 5 0 100 10 5 5 0 000-10zm0 2a3 3 0 110 6 3 3 0 010-6zm4.8-.9a1.1 1.1 0 100 2.2 1.1 1.1 0 000-2.2z'/%3E%3C/svg%3E");
}

.icon.facebook {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M22 12a10 10 0 10-11.5 9.9v-7H8v-3h2.5V9.5c0-2.5 1.5-3.9 3.8-3.9 1.1 0 2.2.2 2.2.2v2.4H15c-1.2 0-1.6.8-1.6 1.5V12h2.7l-.4 3h-2.3v7A10 10 0 0022 12z'/%3E%3C/svg%3E");
}

.icon.tiktok {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M16 2h-2v14.3a3.3 3.3 0 11-3-3.3v-2a5.3 5.3 0 105 5.3V8.7c1.1.8 2.5 1.3 4 1.3V8a6 6 0 01-4-6z'/%3E%3C/svg%3E");
}

.icon.youtube {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M23.5 6.2a3 3 0 00-2.1-2.1C19.6 3.5 12 3.5 12 3.5s-7.6 0-9.4.6A3 3 0 00.5 6.2 31 31 0 000 12a31 31 0 00.5 5.8 3 3 0 002.1 2.1c1.8.6 9.4.6 9.4.6s7.6 0 9.4-.6a3 3 0 002.1-2.1A31 31 0 0024 12a31 31 0 00-.5-5.8zM9.6 15.5v-7l6 3.5-6 3.5z'/%3E%3C/svg%3E");
}
