:root {
  /* Brand Colors */
  --color-bg-dark: #021b2d;
  --color-primary-gold: #ffc736;
  --color-gold-hover: #e6b32e;
  --color-text-white: #ffffff;
  --color-text-gray: #e0e0e0;
  --color-text-muted: #a0a0a0;
  --color-card-bg: #03233a;
  --color-card-hover: #052f4d;
  --nav-bg: rgba(2, 27, 45, 0.95);

  /* Spacing */
  --spacing-xs: 8px;
  --spacing-sm: 16px;
  --spacing-md: 24px;
  --spacing-lg: 48px;
  --spacing-xl: 80px;

  /* Typography */
  --font-heading: 'Archivo', sans-serif;
  --font-body: 'Manrope', sans-serif;

  --header-height: 80px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg-dark);
  color: var(--color-text-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  padding-top: var(--header-height);
  /* Make room for fixed header */
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: var(--spacing-sm);
}

h1 {
  font-size: 2.5rem;
  color: var(--color-text-white);
}

h2 {
  font-size: 2rem;
  color: var(--color-primary-gold);
}

h3 {
  font-size: 1.5rem;
}

p {
  margin-bottom: var(--spacing-sm);
  color: var(--color-text-gray);
}

a {
  text-decoration: none;
  color: inherit;
  transition: all 0.3s ease;
}

.text-gold {
  color: var(--color-primary-gold);
}

/* Layout */
.container {
  width: 100%;
  max-width: 1200px;
  padding: 0 var(--spacing-md);
  margin: 0 auto;
}

section {
  padding: var(--spacing-xl) 0;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 32px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  border-radius: 4px;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.btn-primary {
  background-color: var(--color-primary-gold);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background-color: var(--color-gold-hover);
  transform: translateY(-2px);
}

.btn-secondary {
  background-color: transparent;
  border: 2px solid var(--color-text-white);
  color: var(--color-text-white);
}

.btn-secondary:hover {
  background-color: var(--color-text-white);
  color: var(--color-bg-dark);
  transform: translateY(-2px);
}

/* =========================================
   HEADER & NAV
   ========================================= */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background-color: var(--nav-bg);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  z-index: 1000;
  display: flex;
  align-items: center;
}

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

.site-logo img {
  height: 48px;
  /* Adjust based on logo aspect ratio */
  width: auto;
}

/* Desktop Nav */
.main-nav ul {
  display: none;
  /* Hidden on mobile by default */
  list-style: none;
  gap: 32px;
}

.main-nav a {
  font-weight: 500;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-text-gray);
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--color-primary-gold);
}

/* Mobile Nav Toggle */
.mobile-menu-toggle {
  display: block;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Mobile Checkbox Hack */
#nav-toggle {
  display: none;
}

#nav-toggle:checked+.site-header .main-nav {
  display: block;
  position: absolute;
  top: var(--header-height);
  left: 0;
  width: 100%;
  background-color: var(--color-bg-dark);
  padding: var(--spacing-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  animation: slideDown 0.3s ease forwards;
}

#nav-toggle:checked+.site-header .main-nav ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}


/* =========================================
   HERO SECTION
   ========================================= */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-height));
  display: flex;
  align-items: center;
  /* Smoother, premium gradient */
  background: radial-gradient(circle at top right, #0a3a5e 0%, #021b2d 60%);
  overflow: hidden;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  align-items: center;
  padding: var(--spacing-lg) 0;
}

.hero-text {
  max-width: 600px;
}

.hero-text h1 {
  font-size: 2.75rem;
  margin-bottom: var(--spacing-md);
}

.hero-text .subheadline {
  font-size: 1.25rem;
  margin-bottom: var(--spacing-lg);
  color: var(--color-text-gray);
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: var(--spacing-md);
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  background-color: rgba(255, 199, 54, 0.1);
  color: var(--color-primary-gold);
  border: 1px solid var(--color-primary-gold);
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.hero-text .stats-row {
  margin-top: var(--spacing-lg);
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  color: var(--color-primary-gold);
  font-weight: 700;
  font-size: 1.5rem;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.875rem;
  text-transform: uppercase;
  color: var(--color-text-muted);
}

.hero-actions {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.hero-visual {
  display: none;
  /* Mobile first */
}

/* =========================================
   SERVICES / RESULTS
   ========================================= */
.clients-section {
  background-color: #011220;
  padding: var(--spacing-lg) 0;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.clients-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--spacing-lg);
  opacity: 0.6;
  margin-top: var(--spacing-md);
}

.client-logo-placeholder {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--color-text-muted);
}

.about-section {
  text-align: left;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-md);
}

.service-item {
  background-color: var(--color-card-bg);
  padding: var(--spacing-md);
  border-bottom: 3px solid var(--color-primary-gold);
  border-radius: 4px;
  transition: transform 0.2s, background-color 0.2s;
}

.service-item:hover {
  transform: translateY(-5px);
  background-color: var(--color-card-hover);
}

.service-item h4 {
  color: var(--color-text-white);
  margin-bottom: 8px;
}

/* Case Studies */
.case-studies {
  background-color: var(--color-card-bg);
}

.case-study-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.case-card {
  background-color: var(--color-bg-dark);
  padding: var(--spacing-md);
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: transform 0.3s ease;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.case-card:hover {
  transform: translateY(-5px);
  border-color: rgba(255, 199, 54, 0.3);
}

.case-metric {
  font-size: 2.5rem;
  color: var(--color-primary-gold);
  font-weight: 700;
  font-family: var(--font-heading);
  margin-bottom: var(--spacing-xs);
}

.case-title {
  font-weight: 700;
  margin-bottom: var(--spacing-xs);
  color: var(--color-text-white);
}


/* =========================================
   TESTIMONIALS
   ========================================= */
.testimonials-section {
  background-color: var(--color-bg-dark);
  position: relative;
}

/* Video Layout */
.testimonial-featured {
  max-width: 900px;
  margin: 0 auto;
  margin-top: var(--spacing-lg);
  background-color: var(--color-card-bg);
  border-radius: 12px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
}

.testimonial-video-wrapper {
  width: 100%;
  max-width: 280px;
  /* Phone size */
  border-radius: 32px;
  /* Phone-like corners */
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
  border: 4px solid #1a1a1a;
  /* Bezel look */
}

.testimonial-video {
  width: 100%;
  display: block;
}

.testimonial-info {
  text-align: center;
}

.testimonial-info h4 {
  color: var(--color-text-white);
  font-size: 1.5rem;
  margin-bottom: 4px;
}

.testimonial-info p {
  color: var(--color-primary-gold);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.9rem;
  margin: 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.testimonial-card {
  background-color: var(--color-card-bg);
  padding: 32px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.quote-text {
  font-size: 1.1rem;
  font-style: italic;
  color: var(--color-text-gray);
  margin-bottom: 24px;
}

.testimonial-author h5 {
  color: var(--color-text-white);
  margin-bottom: 4px;
  font-size: 1.1rem;
}

.testimonial-author .role {
  color: var(--color-primary-gold);
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
}

.testimonial-author .location {
  color: var(--color-text-muted);
  font-size: 0.85rem;
  display: block;
  margin-top: 4px;
}


/* =========================================
   FOOTER
   ========================================= */
footer {
  background-color: #000b14;
  padding: var(--spacing-xl) 0 var(--spacing-lg);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin: 0 auto var(--spacing-md);
}

/* =========================================
   RESPONSIVE
   ========================================= */
@media (min-width: 768px) {
  h1 {
    font-size: 3.5rem;
  }

  h2 {
    font-size: 2.5rem;
  }

  /* Desktop Nav */
  .mobile-menu-toggle {
    display: none;
  }

  .main-nav ul {
    display: flex;
  }

  .site-header {
    padding: 0;
  }

  /* Hero */
  .hero-content {
    grid-template-columns: 1fr 1fr;
  }

  /* Logo Sizing */
  .site-logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
  }

  /* Updated Hero Visual */
  .hero-visual {
    display: block;
    /* Ensure visible on supported devices */
    position: relative;
    overflow: hidden;
    height: 100%;
    min-height: 400px;
    /* Ensure it has height */
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  }

  .hero-main-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
  }

  .hero-visual-collage:hover .collage-img {
    transform: scale(1.05);
  }

  /* About */
  .about-grid {
    grid-template-columns: 1fr 1.5fr;
    /* More space for services */
  }
}

@media (min-width: 1024px) {
  .hero-text h1 {
    font-size: 4rem;
  }
}

/* =========================================
   ANIMATIONS
   ========================================= */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s ease-out;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.delay-100 {
  transition-delay: 0.1s;
}

.delay-200 {
  transition-delay: 0.2s;
}

.delay-300 {
  transition-delay: 0.3s;
}


/* =========================================
   RESULTS FEED (Vertical Scroll)
   ========================================= */
.results-feed {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  padding: 0 var(--spacing-sm);
}

.result-feed-card {
  background: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 600px;
  /* Constrain width for readability */
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.result-image-wrapper {
  display: flex;
  justify-content: center;
  background: #000;
  /* Dark bg for images to pop */
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

/* Base image style */
.result-image-wrapper img {
  display: block;
  height: auto;
}

/* Portrait / Phone Screenshots */
.result-image-wrapper img.portrait-sms {
  width: 100%;
  max-width: 300px;
  /* Standard phone width */
}

/* Landscape / Desktop Screenshots */
.result-image-wrapper img.landscape-desktop {
  width: 100%;
}

.result-caption {
  text-align: center;
  color: var(--color-text-white);
  font-size: 1.1rem;
  font-style: italic;
  margin-bottom: 0;
}

.result-tag {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--color-primary-gold);
  color: var(--color-bg-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  text-transform: uppercase;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

/* =========================================
   ABOUT PAGE COMPONENTS
   ========================================= */

/* Use Grid for Who We Serve */
.verticals-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: var(--spacing-md);
}

.vertical-card {
  background-color: var(--color-card-bg);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.vertical-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-primary-gold);
}

/* Process Steps */
.process-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--spacing-md);
  margin-top: var(--spacing-lg);
}

.process-step {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  padding: 32px 24px;
  border-radius: 8px;
  border-top: 4px solid var(--color-primary-gold);
}

.process-step h3 {
  margin-top: 16px;
  font-size: 1.25rem;
  color: var(--color-text-white);
}

.step-number {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.05);
  position: absolute;
  top: 10px;
  right: 20px;
  line-height: 1;
}

/* FAQ */
.faq-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--color-card-bg);
  padding: 24px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

/* =========================================
   TESTIMONIALS REDESIGN
   ========================================= */

/* Hero Phone Frame */
.hero-phone-frame {
  width: 100%;
  max-width: 320px;
  /* Phone width */
  margin: 0 auto;
  border-radius: 48px;
  border: 12px solid #0f0f0f;
  /* Dark Bezel */
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 2px #333,
    /* Outer rim */
    0 0 40px rgba(255, 199, 54, 0.15),
    /* Subtle gold glow */
    0 30px 60px rgba(0, 0, 0, 0.7);
  /* Deep float shadow */
  background: #000;
  aspect-ratio: 9/19.5;
  /* iPhone aspect */
}

.hero-phone-frame video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.play-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  background: rgba(255, 199, 54, 0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  z-index: 10;
}

.hero-phone-frame:hover .play-overlay {
  background: #fff;
  transform: translate(-50%, -50%) scale(1.1);
}

.play-icon {
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 25px solid var(--color-bg-dark);
  margin-left: 5px;
}

/* Not Alone Band */
.not-alone-band {
  background-color: #052f4d;
  /* Slightly lighter than bg-dark */
  padding: var(--spacing-md) 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-top: var(--spacing-lg);
  text-align: center;
}

/* Screenshot Collage */
.collage-section {
  padding: var(--spacing-lg) 0;
}

.collage-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  align-items: flex-start;
}

.collage-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  max-width: 350px;
}

.screenshot-card {
  background: #fff;
  padding: 8px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  position: relative;
  transition: transform 0.3s ease;
  overflow: hidden;
}

.screenshot-card:hover {
  transform: translateY(-5px) scale(1.02);
  z-index: 5;
}

.screenshot-card img {
  width: 100%;
  display: block;
  border-radius: 8px;
}

.vertical-tag {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--color-primary-gold);
  color: var(--color-bg-dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.screenshot-caption {
  margin-top: 8px;
  text-align: center;
  color: var(--color-text-gray);
  font-size: 0.9rem;
  font-style: italic;
}

/* Redesigned Testimonial Cards */
.t-grid-clean {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 32px;
  margin-top: var(--spacing-lg);
}

.t-card-clean {
  background: var(--color-card-bg);
  padding: 32px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  position: relative;
  transition: all 0.3s ease;
}

.t-card-clean:hover {
  border-color: rgba(255, 199, 54, 0.3);
  transform: translateY(-5px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.t-card-clean .quote {
  font-size: 1.05rem;
  color: var(--color-text-white);
  margin-bottom: 24px;
  line-height: 1.6;
}

.t-card-clean .meta {
  display: flex;
  align-items: center;
  gap: 12px;
}

.t-card-clean .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--color-primary-gold);
  color: var(--color-bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  overflow: hidden;
  flex-shrink: 0;
}

.t-card-clean .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.t-card-clean .info h5 {
  margin: 0;
  font-size: 1rem;
  color: var(--color-text-white);
}

.t-card-clean .info span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.t-card-clean .metric-badge {
  display: inline-block;
  background: rgba(255, 199, 54, 0.1);
  color: var(--color-primary-gold);
  font-size: 0.75rem;
  padding: 4px 12px;
  border-radius: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  /* Push quote down */
  border: 1px solid rgba(255, 199, 54, 0.2);
}

/* =========================================
   SCROLLING MARQUEE
   ========================================= */
.marquee-section {
  padding: 80px 0;
  overflow: hidden;
  background: #011220;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.marquee-container {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.marquee-track {
  display: flex;
  gap: 24px;
  animation: scroll 40s linear infinite;
  width: max-content;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-card {
  background: var(--color-card-bg);
  padding: 24px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  width: 350px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.marquee-card p {
  font-size: 0.95rem;
  color: var(--color-text-gray);
  font-style: italic;
  margin-bottom: 16px;
}

.marquee-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.marquee-user img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary-gold);
}

.marquee-user h6 {
  margin: 0;
  color: var(--color-text-white);
  font-size: 0.9rem;
}

.marquee-user span {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(calc(-50% - 12px));
  }

  /* Scroll half the duplicate track */
}

/* =========================================
   TESTIMONIALS PAGE
   ========================================= */

.testimonials-hero {
  text-align: center;
  padding-bottom: var(--spacing-lg);
  background: radial-gradient(circle at bottom, #03233a 0%, #021b2d 70%);
}

.video-hero-block {
  max-width: 1000px;
  margin: 0 auto;
  margin-top: -60px;
  /* Overlap hero slightly or just tight spacing */
  position: relative;
  z-index: 2;
  padding: 0 var(--spacing-md);
}

.primary-video-container {
  background-color: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
  aspect-ratio: 16/9;
}

.primary-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-context {
  margin-top: 24px;
  text-align: left;
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.context-stats ul {
  list-style: none;
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.context-stats li {
  position: relative;
  padding-left: 16px;
  color: var(--color-text-white);
  font-weight: 500;
}

.context-stats li::before {
  content: "•";
  color: var(--color-primary-gold);
  position: absolute;
  left: 0;
  font-weight: bold;
}

/* Testimonial Grid Page */
.testimonial-grid-section {
  padding-top: var(--spacing-xl);
}

.grid-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--color-text-muted);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--color-primary-gold);
  color: var(--color-bg-dark);
  font-weight: 700;
}

.full-testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 24px;
}

.t-card {
  background-color: var(--color-card-bg);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.t-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border-color: rgba(255, 199, 54, 0.2);
}

.t-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}

.t-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-primary-gold);
  background-color: #052f4d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--color-primary-gold);
  font-size: 1.2rem;
}

.t-meta h4 {
  margin: 0;
  font-size: 1.1rem;
  color: var(--color-text-white);
}

.t-meta span {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.t-quote {
  font-size: 1rem;
  color: var(--color-text-gray);
  line-height: 1.6;
  margin-bottom: 24px;
  font-style: italic;
}

.t-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 4px;
  background: rgba(255, 199, 54, 0.15);
  color: var(--color-primary-gold);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
}

/* Homepage Compact Override */
.compact-testimonials {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  align-items: center;
}

.micro-testimonials .micro-header {
  margin-bottom: 24px;
}

.micro-card {
  background: rgba(255, 255, 255, 0.03);
  border-left: 3px solid var(--color-primary-gold);
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 0 8px 8px 0;
  transition: transform 0.2s ease;
}

.micro-card:hover {
  transform: translateX(5px);
  background: rgba(255, 255, 255, 0.05);
}

.micro-card p {
  margin-bottom: 8px;
  color: var(--color-text-white);
  font-style: italic;
}

.micro-card span {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (min-width: 900px) {
  .compact-testimonials {
    grid-template-columns: 1.2fr 1fr;
    /* Video larger */
  }

  .video-hero-block {
    margin-top: -80px;
  }
}

/* =========================================
   TESTIMONIALS CLEANUP
   ========================================= */

/* Hero Section Specifics */
.testimonials-hero {
  text-align: left;
  padding-top: 60px;
  background: radial-gradient(circle at top right, #0a3a5e 0%, #021b2d 60%);
}

.hero-compact-layout {
  display: flex;
  align-items: center;
  gap: 60px;
}

@media (max-width: 900px) {
  .hero-compact-layout {
    flex-direction: column;
    text-align: center;
  }

  .hero-key-outcomes {
    text-align: left;
  }
}

.hero-text-col {
  flex: 1;
}

.hero-headline {
  font-size: 2.5rem;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--color-text-white);
}

.hero-subheadline {
  font-size: 1.1rem;
  color: var(--color-text-white);
  margin-bottom: 32px;
}

.hero-key-outcomes {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 12px;
  padding: 24px;
  border-left: 4px solid var(--color-primary-gold);
}

.hero-key-outcomes h4 {
  color: var(--color-text-white);
  margin-bottom: 8px;
}

.outcomes-list {
  list-style: none;
  color: var(--color-text-gray);
  font-size: 0.95rem;
  padding: 0;
  margin: 0;
}

.outcomes-list li {
  margin-bottom: 8px;
}

.outcomes-list li:last-child {
  margin-bottom: 0;
}

/* Not Alone Band */
.not-alone-title {
  margin-bottom: 8px;
  font-size: 1.5rem;
  color: var(--color-text-white);
}

.not-alone-text {
  margin: 0;
  color: var(--color-text-muted);
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 80px 0;
}

.cta-title {
  font-size: 2.5rem;
  margin-bottom: 24px;
  color: var(--color-text-white);
}

.cta-text {
  margin-bottom: 40px;
  font-size: 1.25rem;
  color: var(--color-text-gray);
}