/* 
  =========================================
  MOPS INC. - DESIGN SYSTEM & STYLE SHEET
  =========================================
*/

/* 1. Design Tokens & Variables */
@font-face {
  font-family: 'Teodor';
  src: url('/assets/teodor.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

:root {
  --primary-color: #231f20;
  /* Mops Dark Slate */
  --primary-light: #343031;
  --accent-color: #fe9502;
  /* Vibrant Yellow/Amber */
  --accent-orange: #fc6941;
  /* Vibrant Orange */
  --accent-pink: #f94459;
  /* Vibrant Pink */

  --bg-color: #f5f5f5;
  /* Clean light grey */
  --bg-sky: #eef5fb;
  /* Ultra-light blue */
  --white: #ffffff;

  --text-color: #231f20;
  --text-light: rgba(35, 31, 32, 0.75);
  --text-muted: rgba(35, 31, 32, 0.5);

  --font-serif: 'Satoshi', 'Playfair Display', Georgia, serif;
  --font-sans: 'Satoshi', 'Montserrat', 'Inter', sans-serif;

  --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.05), 0 4px 6px -2px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.12);

  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2.5rem;

  --transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

/* 2. Global Reset & Base Elements */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-sans);
  line-height: 1.7;
  overflow-x: hidden;
  letter-spacing: -0.01em;
  -webkit-font-smoothing: antialiased;
}

h1,
h4 {
  font-family: var(--font-serif);
  color: var(--primary-color);
  font-weight: 700;
  line-height: 1.2;
}

h2,
h3 {
  font-family: var(--font-serif);
  color: var(--primary-color);
  font-weight: 500;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

section {
  padding: 100px 0;
  position: relative;
}

/* 3. Typography & Buttons */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}

.section-header h2 {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 16px;
  position: relative;
  display: inline-block;
}

.section-header p {
  color: var(--text-light);
  font-size: 1.1rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-orange));
  color: var(--white);
  box-shadow: 0 4px 15px rgba(254, 149, 2, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(254, 149, 2, 0.5);
  background: linear-gradient(135deg, var(--accent-orange), var(--accent-pink));
}

.btn-outline {
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  background: transparent;
}

.btn-outline:hover {
  background-color: var(--primary-color);
  color: var(--white);
  transform: translateY(-3px);
}

/* 4. Navbar Component */
.navbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 100%;
  padding: 24px 0;
  z-index: 1000;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(5, 21, 42, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 12px 0;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, 0.12);

  /* Floating styles */
  top: 20px;
  width: calc(100% - 48px);
  max-width: 1100px;
  border-radius: var(--radius-lg);
}

@media (max-width: 768px) {
  .navbar.scrolled {
    top: 12px;
    width: calc(100% - 24px);
    border-radius: var(--radius-md);
  }
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand {
  display: flex;
  align-items: center;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  transition: var(--transition);
}



.nav-logo {
  height: 48px;
  width: auto;
  transition: var(--transition);
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

.nav-logo .cls-2 {
  fill: var(--white);
  transition: fill var(--transition);
}



.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-links a {
  font-weight: 500;
  color: var(--white);
  font-size: 0.95rem;
  position: relative;
  transition: var(--transition);
}



.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--accent-color);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.btn-primary::after {
  display: none;
}

.mobile-toggle {
  display: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
}

.mobile-toggle span {
  width: 26px;
  height: 2.5px;
  background-color: var(--white);
  transition: var(--transition);
  transform-origin: center;
}



/* 5. Hero Section (Split Layout) */
.hero {
  position: relative;
  height: 100vh;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  color: var(--white);
  text-align: center;
}

.hero-banners {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 1;
  pointer-events: none;
}

.hero-banner-slice {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('/assets/mops-maid.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;

  /* Initial clip-path state */
  clip-path: inset(0 var(--right) 100% var(--left));
  animation: downwardReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--slice-idx) * 0.12s);
}

@keyframes downwardReveal {
  0% {
    clip-path: inset(0 var(--right) 100% var(--left));
  }

  100% {
    clip-path: inset(0 var(--right) 0% var(--left));
  }
}

/* Responsive backgrounds for the slices */
@media (max-width: 768px) {
  .hero-banner-slice {
    background-image: url('/assets/mops-maid-mobile.jpg');
  }
}

.hero-overlap {
  position: absolute;
  bottom: 100%;
  left: 0;
  width: 100%;
  height: 280px;
  pointer-events: none;
  z-index: 10;
  overflow: visible;
}

.hero-smoke {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 280px;
  z-index: 1;
  pointer-events: none;
  opacity: 0;
  transform: translateY(30px);
  animation: smokeFadeIn 1.5s cubic-bezier(0.25, 1, 0.5, 1) forwards;
  animation-delay: 1.4s;
}

.hero-smoke img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  display: block;
  filter: brightness(1.05);
  /* Smoothed eased mask to fade bottom edge naturally */
  mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 0.85) 45%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.3) 75%,
      rgba(0, 0, 0, 0.1) 90%,
      rgba(0, 0, 0, 0) 100%);
  -webkit-mask-image: linear-gradient(to bottom,
      rgba(0, 0, 0, 1) 0%,
      rgba(0, 0, 0, 1) 30%,
      rgba(0, 0, 0, 0.85) 45%,
      rgba(0, 0, 0, 0.6) 60%,
      rgba(0, 0, 0, 0.3) 75%,
      rgba(0, 0, 0, 0.1) 90%,
      rgba(0, 0, 0, 0) 100%);
}

.hero-smoke-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 280px;
  z-index: 2;
  /* Premium multi-stop eased white gradient to smoothly blend sections */
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.05) 15%,
      rgba(255, 255, 255, 0.18) 30%,
      rgba(255, 255, 255, 0.38) 45%,
      rgba(255, 255, 255, 0.61) 60%,
      rgba(255, 255, 255, 0.82) 75%,
      rgba(255, 255, 255, 0.95) 90%,
      var(--white) 100%);
  pointer-events: none;
}

@keyframes smokeFadeIn {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }

  100% {
    opacity: 0.35;
    transform: translateY(0);
  }
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero-content-centered {
  max-width: 1100px;
  margin: 0 auto;
}

.hero-content-centered h1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

.split-reveal .line-1 {
  font-family: var(--font-serif);
  font-size: clamp(3rem, 10.5vw, 7.5rem);
  font-weight: 800;
  color: var(--white);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
  display: block;
  line-height: 1.15;
}

.split-reveal .line-2 {
  font-family: var(--font-sans);
  font-size: clamp(1rem, 3.2vw, 2.2rem);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent-color);
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
  display: block;
  margin-top: 15px;
}

.word-mask {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
  padding: 0.05em 0.12em;
  margin: -0.05em -0.12em;
}

.word-inner {
  display: inline-block;
  transform: translateY(120%);
  animation: revealWordUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(0.4s + var(--word-idx) * 0.08s);
  will-change: transform;
}

@keyframes revealWordUp {
  0% {
    transform: translateY(120%);
  }

  100% {
    transform: translateY(0);
  }
}

/* 5.2 Intro Section */
.intro-section {
  position: relative;
  background-color: var(--white);
  text-align: center;
  padding: 30vh 0 180px;
  /* Generous bottom padding to extend the section spacing */
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  z-index: 5;
}

.intro-grid {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 160px;
  align-items: center;
  text-align: left;
  max-width: 1200px;
  margin: 0 auto;
}

.intro-left-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
}

.circle-large,
.circle-small {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 20px;
}

.circle-number {
  font-family: var(--font-sans);
  font-weight: 500;
  line-height: 1;
}

.circle-label {
  font-family: var(--font-sans);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 8px;
  line-height: 1.3;
}

.circle-large {
  width: 240px;
  height: 240px;
  background-color: #e8274e;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(232, 39, 78, 0.25);
  animation: floatLarge 6s ease-in-out infinite;
}

.circle-large .circle-number {
  font-size: 3.5rem;
}

.circle-large .circle-label {
  font-size: 0.95rem;
  max-width: 140px;
}

.circle-small {
  width: 200px;
  height: 200px;
  background-color: #e8274e;
  border-radius: 50%;
  box-shadow: 0 10px 30px rgba(232, 39, 78, 0.2);
  animation: floatSmall 6s ease-in-out infinite;
}

.circle-small .circle-number {
  font-size: 2.8rem;
}

.circle-small .circle-label {
  font-size: 0.85rem;
  max-width: 120px;
}

@media (max-width: 768px) {
  .intro-left-visual {
    flex-direction: column-reverse;
    gap: 20px;
  }

  .circle-large {
    width: 240px;
    height: 240px;
  }

  .circle-small {
    width: 200px;
    height: 200px;
  }

  .circle-large .circle-number {
    font-size: 3.5rem;
  }

  .circle-large .circle-label {
    font-size: 0.95rem;
    max-width: 140px;
  }

  .circle-small .circle-number {
    font-size: 2.8rem;
  }

  .circle-small .circle-label {
    font-size: 0.85rem;
    max-width: 120px;
  }
}

@media (max-width: 480px) {
  .circle-large {
    width: 220px;
    height: 220px;
  }

  .circle-small {
    width: 180px;
    height: 180px;
  }

  .circle-large .circle-number {
    font-size: 3.2rem;
  }

  .circle-large .circle-label {
    font-size: 0.9rem;
    max-width: 130px;
    margin-top: 6px;
  }

  .circle-small .circle-number {
    font-size: 2.5rem;
  }

  .circle-small .circle-label {
    font-size: 0.8rem;
    max-width: 110px;
    margin-top: 6px;
  }
}

@keyframes floatLarge {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-12px);
  }
}

@keyframes floatSmall {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(12px);
  }
}

.intro-content {
  width: 100%;
}

.intro-content p {
  font-size: clamp(1.5rem, 3.2vw, 2.1rem);
  color: var(--text-color);
  line-height: 1.35;
  font-weight: 500;
  margin-bottom: 40px;
  font-family: var(--font-sans);
}

.reveal-text {
  color: var(--text-color);
}

.reveal-line {
  display: inline-block;
  background: linear-gradient(to right, var(--text-color) 0%, var(--text-color) 100%) no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: rgba(35, 31, 32, 0.15);
  /* Muted initial text color matching --text-color opacity */
  background-position: left center;
  transition: background-size 0.08s linear;
  white-space: nowrap;
  /* Prevent words inside a line from wrapping internally */
}

#reveal-cta {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

#reveal-cta.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

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

/* 6. Our Mission Section */
.mission {
  background-color: var(--bg-color);
  padding: 100px 0 0 0;
  scroll-margin-top: -100px;
}

.mission-header {
  text-align: left;
  max-width: 850px;
  margin-bottom: 70px;
}

.mission-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 24px;
  letter-spacing: -0.02em;
  color: #e8274e;
}

.reveal-title {
  display: block;
}

.reveal-title-text {
  display: inline-block;
  background: linear-gradient(to right, #e8274e 0%, #e8274e 100%) no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: rgba(232, 39, 78, 0.15);
  background-position: left center;
  transition: background-size 1.2s cubic-bezier(0.77, 0, 0.175, 1);
}

.reveal-title.visible .reveal-title-text {
  background-size: 100% 100%;
}

.mission-lead {
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
  font-weight: 500;
}

.mission-sublead {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-orange);
  letter-spacing: 0.02em;
}

.mission-highlights {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.highlight-item {
  width: 100%;
  border-top: 1px solid rgba(35, 31, 32, 0.12);
  padding: 80px 0;
}

.highlight-item-inner {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.highlight-text {
  padding-right: 20px;
}

.highlight-text h3 {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 500;
  margin-bottom: 16px;
  color: var(--primary-color);
  letter-spacing: -0.01em;
}

.highlight-text p {
  font-size: 1.25rem;
  color: var(--text-light);
  line-height: 1.7;
}

.highlight-image {
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  position: relative;
}

.highlight-image::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--bg-color);
  transform: scaleX(1);
  transform-origin: left;
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1);
  z-index: 2;
}

.highlight-image.visible::after {
  transform: scaleX(0);
}

.highlight-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transform: scale(1.1);
  transition: transform 1.2s cubic-bezier(0.77, 0, 0.175, 1), opacity 0.8s ease;
}

.highlight-image.visible img {
  opacity: 1;
  transform: scale(1);
}

.highlight-item:hover .highlight-image.visible img {
  transform: scale(1.06);
}

/* 7. CTA Section */
.cta-banner {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  pointer-events: none;
  transform: scale(1.3);
}

.cta-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(35, 31, 32, 0.65);
  /* Elegant overlay to keep text highly readable */
  z-index: 2;
  pointer-events: none;
}

.cta-banner .container {
  position: relative;
  z-index: 3;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(254, 149, 2, 0.15) 0%, rgba(252, 105, 65, 0) 70%);
  pointer-events: none;
  z-index: 2;
  /* Sits on top of video, below text */
}

.cta-grid {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  gap: 32px;
  position: relative;
  z-index: 2;
  width: 100%;
}

.cta-content {
  max-width: 1000px;
}

.cta-content h2 {
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  margin-bottom: 20px;
}

.cta-content .reveal-title-text {
  background: linear-gradient(to right, #f94559 0%, #f94559 100%) no-repeat;
  background-size: 0% 100%;
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-color: rgba(249, 69, 89, 0.15);
  background-position: left center;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.2rem;
  line-height: 1.6;
}

.cta-actions {
  flex-shrink: 0;
}

.cta-actions .btn-primary {
  background: var(--white);
  color: var(--primary-color);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.25);
}

.cta-actions .btn-primary:hover {
  background: var(--accent-color);
  color: var(--white);
  box-shadow: 0 8px 25px rgba(254, 149, 2, 0.4);
}

/* 8. FAQ Section (Details/Summary Accordion) */
/* 9. FAQ Section Grid & Sticky Left Layout */
.faq-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 80px;
  align-items: start;
}

.faq-left {
  position: sticky;
  top: 140px;
}

.faq-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #05152a;
  background-color: rgba(5, 21, 42, 0.08);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
}

.faq-title {
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-family: var(--font-serif);
  color: #e8274e;
  line-height: 1.2;
  margin-bottom: 20px;
}

.faq-lead {
  font-size: 1.15rem;
  color: #05152a;
  opacity: 0.85;
  line-height: 1.6;
  margin-bottom: 40px;
}

.faq-cta-box {
  background: var(--white);
  box-shadow: var(--shadow);
  border: 1px solid rgba(5, 21, 42, 0.06);
  padding: 30px;
  border-radius: var(--radius-md);
}

.faq-cta-box p {
  font-weight: 600;
  color: #05152a;
  margin-bottom: 16px;
  font-size: 1.1rem;
}

.faq-cta-box .btn {
  width: 100%;
}

.faq-cta-box .btn-outline {
  border-color: #05152a;
  color: #05152a;
}

.faq-cta-box .btn-outline:hover {
  background-color: #05152a;
  color: var(--white);
}

/* 9.1 Modern Accordion */
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-accordion details {
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid rgba(5, 21, 42, 0.15);
  overflow: hidden;
  opacity: 0;
  transform: translateY(30px);
  transition:
    opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) calc(var(--faq-idx, 0) * 0.12s),
    transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) calc(var(--faq-idx, 0) * 0.12s),
    background-color 0.4s ease;
}

.faq-accordion details.visible {
  opacity: 1;
  transform: translateY(0);
}

.faq-accordion details[open],
.faq-accordion details.is-open {
  background-color: var(--white);
  box-shadow: var(--shadow-md);
  border-radius: var(--radius-sm);
  border-bottom-color: transparent;
}

.faq-accordion details[open] summary,
.faq-accordion details.is-open summary {
  color: #e8274e;
}

.faq-accordion details[open] summary:hover,
.faq-accordion details.is-open summary:hover {
  color: #e8274e;
}

.faq-accordion details[open] summary:hover::after,
.faq-accordion details.is-open summary:hover::after {
  background-color: #e8274e;
  color: var(--white);
  transform: rotate(135deg) scale(1.08);
}

.faq-accordion summary {
  padding: 28px 20px;
  font-size: 1.25rem;
  font-weight: 600;
  color: #05152a;
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
}

.faq-accordion summary:hover {
  color: #e8274e;
  padding-left: 28px;
}

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

/* Custom animated circle plus indicator */
.faq-accordion summary::after {
  content: '+';
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: rgba(5, 21, 42, 0.08);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #05152a;
  font-size: 1.4rem;
  font-weight: 300;
  transition: var(--transition);
  flex-shrink: 0;
  line-height: 1;
}

.faq-accordion summary:hover::after {
  background-color: #05152a;
  color: var(--white);
  transform: scale(1.08);
}

.faq-accordion details[open] summary::after,
.faq-accordion details.is-open summary::after {
  transform: rotate(135deg);
  background-color: #e8274e;
  color: var(--white);
}

.faq-content-wrapper {
  padding: 0 20px 28px;
  color: #05152a;
  opacity: 0.9;
  line-height: 1.8;
  font-size: 1.05rem;
  border-top: none;
  padding-top: 8px;
}

/* Responsive FAQ Grid */
@media (max-width: 992px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .faq-left {
    position: static;
  }

  .faq-cta-box {
    display: none;
  }
}

@media (max-width: 768px) {
  .faq-accordion summary {
    font-size: 1.1rem;
    padding: 20px 10px;
  }

  .faq-accordion summary:hover {
    padding-left: 18px;
  }
}

/* 9. Contact Section & Glassmorphic Form */
.contact {
  background-color: var(--white);
  scroll-margin-top: -100px;
}

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

.contact-info {
  padding-right: 20px;
}

.contact-info h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-light);
  font-size: 1.05rem;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail-item {
  display: flex;
  gap: 20px;
  align-items: center;
}

.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  color: var(--accent-orange);
  font-weight: bold;
}

.contact-detail-text h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 700;
}

.contact-detail-text p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

.contact-form-container {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-lg);
  min-width: 0;
  /* Prevents grid item from stretching on mobile viewports */
  max-width: 520px;
  justify-self: end;
  width: 100%;
}

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

.cf-turnstile {
  width: 300px;
  height: 65px;
  max-width: 100%;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(35, 31, 32, 0.15);
  background: rgba(255, 255, 255, 0.9);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--primary-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(252, 105, 65, 0.15);
}

/* User inputs validation style matching guide */
.form-group input:user-valid:not(:placeholder-shown),
.form-group select:user-valid,
.form-group textarea:user-valid:not(:placeholder-shown) {
  border-color: #2e7d32;
}

.form-group input:user-invalid,
.form-group textarea:user-invalid {
  border-color: var(--accent-pink);
  box-shadow: 0 0 0 3px rgba(249, 68, 89, 0.15);
}

/* 10. Footer Component */
.footer {
  background-color: var(--primary-color);
  color: var(--white);
  padding: 80px 0 40px;
  font-size: 0.95rem;
}

.footer h3 {
  color: var(--accent-color);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  margin-bottom: 24px;
  font-family: var(--font-sans);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-col p {
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.6;
}

.footer-social {
  display: flex;
  gap: 16px;
  margin-top: 24px;
}

.social-link {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-link:hover {
  background-color: var(--accent-orange);
  border-color: var(--accent-orange);
  transform: translateY(-3px);
}

.social-link svg {
  width: 18px;
  height: 18px;
  fill: var(--white);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

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

.footer-links a:hover {
  color: var(--white);
  transform: translateX(3px);
}

.footer-brand-row {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 40px 0;
  text-align: center;
}

.footer-brand-logo {
  height: 48px;
  width: auto;
  margin-bottom: 12px;
}

.footer-brand-name {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  line-height: 1.1;
  display: block;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--accent-color);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-top: 8px;
  display: block;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
  color: var(--white);
}

/* 11. Media Queries & Responsiveness */
@media (max-width: 992px) {
  .intro-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .intro-left-visual {
    justify-content: center;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero-content {
    max-width: 100%;
  }

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

  .hero-image-container {
    aspect-ratio: 16 / 9;
    max-height: 450px;
  }

  .highlight-item {
    padding: 50px 0;
  }

  .highlight-item-inner {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .highlight-text {
    padding-right: 0;
  }

  .highlight-text p {
    font-size: 1.05rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-form-container {
    justify-self: center;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  section {
    padding: 60px 0;
  }

  .navbar {
    padding: 16px 0;
  }

  .mobile-toggle {
    display: flex;
  }

  .mobile-toggle span {
    background-color: var(--white);
  }

  .nav-links {
    position: absolute;
    top: calc(100% - 1.5px);
    left: 0;
    width: 100%;
    background: #05152a;
    flex-direction: column;
    padding: 30px;
    gap: 24px;
    box-shadow: var(--shadow-lg);
    transform: translateY(-100%);
    z-index: -1;
    pointer-events: none;
    opacity: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s ease;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }

  .nav-links a:not(.btn-primary) {
    color: var(--white) !important;
  }

  .navbar.menu-open {
    background: #05152a !important;
    box-shadow: var(--shadow-lg);
    border-bottom-left-radius: 0 !important;
    border-bottom-right-radius: 0 !important;
  }

  .navbar.scrolled.menu-open {
    border-bottom: none !important;
  }

  .navbar.scrolled.menu-open .nav-links {
    left: -1px;
    width: calc(100% + 2px);
    border-left: 1px solid rgba(255, 255, 255, 0.12);
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .navbar.menu-open .nav-brand {
    color: var(--white) !important;
  }

  .navbar.menu-open .nav-logo .cls-2 {
    fill: var(--white) !important;
  }

  .navbar.menu-open .mobile-toggle span {
    background-color: var(--white) !important;
  }

  .navbar.menu-open .mobile-toggle span:nth-child(1) {
    transform: translateY(8.5px) rotate(45deg);
  }

  .navbar.menu-open .mobile-toggle span:nth-child(2) {
    opacity: 0;
  }

  .navbar.menu-open .mobile-toggle span:nth-child(3) {
    transform: translateY(-8.5px) rotate(-45deg);
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .contact-form-container {
    padding: 30px 20px;
  }

  .cta-video-bg {
    transform: scale(1.75);
  }
}

@media (max-width: 480px) {
  .cf-turnstile {
    transform: scale(0.85);
    transform-origin: left top;
    width: 255px;
    /* 300px * 0.85 */
    height: 56px;
    /* 65px * 0.85 ~ 55.25px */
  }
}

@media (max-width: 375px) {
  .contact-form-container {
    padding: 24px 16px;
  }

  .cf-turnstile {
    transform: scale(0.8);
    transform-origin: left top;
    width: 240px;
    /* 300px * 0.8 */
    height: 52px;
    /* 65px * 0.8 */
  }
}

/* 11.5 Trust Section Carousel */
.trust-section {
  padding: 100px 0;
  scroll-margin-top: -100px;
}

@media (min-width: 993px) {
  .trust-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
  }
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.trust-title {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  margin-bottom: 50px;
  color: var(--primary-color);
  font-family: var(--font-serif);
}

.trust-timeline {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.trust-timeline-item {
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.4s ease;
}

.trust-timeline-item.active {
  opacity: 1;
}

.trust-timeline-title {
  font-size: clamp(1.2rem, 2vw, 1.45rem);
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 12px;
  font-family: var(--font-serif);
  transition: color 0.3s ease;
}

.trust-timeline-item.active .trust-timeline-title {
  color: #e8274e;
}

.progress-bar-container {
  width: 100%;
  height: 2px;
  background-color: rgba(35, 31, 32, 0.08);
  border-radius: 1px;
  overflow: hidden;
  position: relative;
}

.progress-bar-line {
  height: 100%;
  width: 0%;
  background-color: #e8274e;
  border-radius: 1px;
  transition: width 0.1s linear;
}

.trust-right-visual {
  width: 100%;
  aspect-ratio: 1 / 1;
  /* Square aspect ratio */
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.carousel-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  z-index: 2;
}

.carousel-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.92);
  /* Premium off-white glassmorphic card */
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(35, 31, 32, 0.1);
  border-radius: var(--radius-sm);
  padding: 20px;
  color: var(--text-color);
  z-index: 5;
  box-shadow: var(--shadow-lg);
  pointer-events: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide.active .carousel-card {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.25s;
  /* Wait slightly for background fade to begin */
}

.carousel-card h4 {
  font-family: var(--font-sans);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--accent-pink);
  /* Highly visible pink/red brand accent */
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.carousel-card p {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  line-height: 1.55;
  color: var(--text-light);
  margin-bottom: 0;
}

@media (max-width: 480px) {
  .carousel-card {
    bottom: 12px;
    left: 12px;
    right: 12px;
    padding: 12px 16px;
  }

  .carousel-card h4 {
    font-size: 0.95rem;
    margin-bottom: 4px;
  }

  .carousel-card p {
    font-size: 0.8rem;
    line-height: 1.45;
  }
}

@media (max-width: 992px) {
  .trust-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .trust-right-visual {
    aspect-ratio: 4 / 5;
    /* Keep it taller on mobile/tablet so the info card doesn't block the image */
    max-height: 500px;
  }
}

/* 11.5 Pricing Section */
.pricing-section {
  background-color: #e8274e !important;
  padding: 100px 0;
  scroll-margin-top: -100px;
  position: relative;
  z-index: 10;
}

.pricing-section .section-header h2 {
  color: #05152a;
}

.pricing-section .section-header p {
  color: #05152a;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: stretch;
  margin-top: 20px;
}

.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  padding: 50px 35px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(35, 31, 32, 0.05);
  transition: var(--transition);
}

.pricing-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: rgba(35, 31, 32, 0.1);
}

.pricing-grid:hover .pricing-card {
  opacity: 0.6;
}

.pricing-grid:hover .pricing-card:hover {
  opacity: 1;
}

/* Badge styles */
.pricing-badge {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border-radius: 50px;
  background: rgba(35, 31, 32, 0.08);
  color: var(--primary-color);
}

.pricing-card.emergency .pricing-badge {
  background: rgba(232, 39, 78, 0.1);
  color: #e8274e;
}

.pricing-badge.featured {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-orange));
  color: var(--white);
}

.pricing-tier-name {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--primary-color);
  margin-bottom: 20px;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 24px;
}

.price-from {
  font-size: 0.85rem;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  margin-right: 4px;
}

.price-amount {
  font-size: 3rem;
  font-weight: 700;
  font-family: var(--font-sans);
  color: var(--primary-color);
  line-height: 1;
}

.price-period {
  font-size: 0.95rem;
  color: var(--text-light);
}

.pricing-desc {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 30px;
}

.pricing-features {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}

.pricing-features li {
  font-size: 0.95rem;
  color: var(--text-light);
  display: flex;
  align-items: flex-start;
  gap: 12px;
  line-height: 1.4;
}

.feature-icon {
  color: var(--accent-orange);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.pricing-card.emergency .feature-icon {
  color: #e8274e;
}

.pricing-features li:hover .feature-icon {
  transform: scale(1.15) translateX(2px);
}

.pricing-cta {
  margin-top: auto;
}

.pricing-cta .btn {
  width: 100%;
}

/* Featured / Highlighted Pro Card styling */
.pricing-card.highlighted {
  border: 2px solid transparent;
  background-clip: padding-box, border-box;
  background-origin: padding-box, border-box;
  background-image: linear-gradient(to right, var(--white), var(--white)),
    linear-gradient(135deg, var(--accent-color), var(--accent-orange));
  box-shadow: var(--shadow-lg);
}

.pricing-card.highlighted:hover {
  box-shadow: 0 20px 40px rgba(252, 105, 65, 0.15);
}

/* Responsive adjustments */
@media (max-width: 992px) {
  .pricing-grid {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }

  .pricing-card.emergency {
    grid-column: span 2;
  }
}

@media (max-width: 768px) {
  .pricing-section {
    padding: 80px 0;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .pricing-card.emergency {
    grid-column: span 1;
  }

  .pricing-card {
    padding: 40px 24px 30px;
  }
}

/* 11.6 Reviews Slider Section */
.reviews-section {
  background-color: var(--white) !important;
  padding: 100px 0;
  scroll-margin-top: -100px;
}

.reviews-section .section-header h2 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: #e8274e;
  font-family: var(--font-serif);
  font-weight: 500;
  margin-bottom: 16px;
}

.reviews-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 20px 0 10px;
  /* room for shadows */
}

.reviews-slider-track {
  display: flex;
  gap: 30px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc((100% - 60px) / 3);
  /* Desktop: 3 cards */
  background: var(--bg-color);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(0, 0, 0, 0.03);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
  min-height: 280px;
}

.review-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(254, 149, 2, 0.15);
}

.review-rating {
  color: var(--accent-color);
  font-size: 1.2rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 24px;
  flex-grow: 1;
}

.review-author {
  margin-top: auto;
}

.review-author h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--primary-color);
  margin-bottom: 4px;
}

.review-author p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.reviews-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 40px;
}

.reviews-btn {
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow);
  color: var(--primary-color);
}

.reviews-btn:hover {
  background: var(--primary-color);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.reviews-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.reviews-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(35, 31, 32, 0.2);
  cursor: pointer;
  transition: var(--transition);
}

.reviews-dot.active {
  background-color: var(--accent-orange);
  width: 24px;
  border-radius: 5px;
}

/* Responsive slider adjustments */
@media (max-width: 992px) {
  .review-card {
    flex: 0 0 calc((100% - 30px) / 2);
    /* Tablet: 2 cards */
    padding: 30px 24px;
  }

  .reviews-section {
    padding: 80px 0;
  }
}

@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
    /* Mobile: 1 card */
    padding: 24px 20px;
    min-height: auto;
  }

  .reviews-slider-track {
    gap: 20px;
  }
}

/* 12. Parallax Section Overlays */
.intro-section,
.trust-section,
.mission,
.pricing-section,
.reviews-section,
.cta-banner,
.faq,
.contact,
.footer {
  position: relative;
  z-index: 10;
  background-color: var(--white);
}

.trust-section {
  background-color: #e8274e !important;
}

.trust-section .trust-title {
  color: #05152a;
}

.trust-section .trust-timeline-title {
  color: #05152a;
}

.trust-section .trust-timeline-item.active .trust-timeline-title {
  color: var(--white);
}

.trust-section .progress-bar-container {
  background-color: rgba(5, 21, 42, 0.15);
}

.trust-section .progress-bar-line {
  background-color: var(--white);
}

.contact {
  background-color: var(--white) !important;
}

.mission {
  background-color: var(--white) !important;
}

.mission .highlight-image::after {
  background-color: var(--white) !important;
}

.cta-banner {
  background: linear-gradient(135deg, var(--primary-light), var(--primary-color)) !important;
}

.faq {
  background-color: #fafafa !important;
  scroll-margin-top: -100px;
}

.footer {
  background-color: var(--primary-color) !important;
}