/* =================================================
   SWASTHLIVING — DARK CINEMATIC (REFINED)
   Calm • Premium • Athletic • High-Conversion
================================================= */

/* ===============================
   ROOT VARIABLES
================================ */
:root {
  --black: #0b0d10;
  --black-soft: #11141a;
  --black-card: #151922;

  --steel: #161a22;
  --steel-card: #1c212b;

  --silver: #cfd3da;
  --silver-muted: #9aa0aa;

  --yellow: #FFA800;
  --yellow-dark: #FFD27A;

  --white: #ffffff;
}

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

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Inter, Arial, sans-serif;
  background-color: var(--black);
  color: var(--silver);
  line-height: 1.65;
}

/* ===============================
   HEADER (YELLOW)
================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--yellow);
}

.header-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1.4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.brand a {
  font-size: 1.9rem;
  font-weight: 900;
  color: var(--black);
  text-decoration: none;
}

.main-nav {
  display: flex;
  gap: 2.5rem;
}

.main-nav a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.main-nav a:hover {
  text-decoration: underline;
}

/* ===============================
   HERO — CINEMATIC
================================ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(
      to bottom,
      rgba(11,13,16,0.2),
      rgba(11,13,16,0.45)
    ),
    url("/assets/images/hero-athlete.jpg") center 23% / cover no-repeat;
    background-attachment: fixed;
}

.hero-content {
  max-width: 900px;
  padding: 0 2rem;
}

.hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.hero-subheadline {
  font-size: 1.25rem;
  color: var(--silver);
  max-width: 720px;
  margin-bottom: 3rem;
}

/* ===============================
   BUTTONS
================================ */
.hero-cta {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.btn {
  padding: 0.9rem 1.9rem;
  font-weight: 700;
  border-radius: 6px;
  text-decoration: none;
  transition: all 0.25s ease;
}

/* PRIMARY CTA */
.btn-primary {
  background-color: var(--yellow);
  color: var(--black);
}

.btn-primary:hover {
  background-color: var(--yellow-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(255,168,0,0.45);
}

/* SECONDARY CTA */
.btn-secondary {
  border: 2px solid var(--silver);
  color: var(--silver);
}

.btn-secondary:hover {
  background-color: var(--silver);
  color: var(--black);
}
/* ===============================
   CTA BUTTON COLOR LOCK
================================ */
.btn-primary,
.btn-primary:hover,
.btn-primary:focus,
.btn-primary:active,
.btn-primary:visited {
  color: var(--black);
  text-decoration: none;
}
/* =================================================
   CINEMATIC GLOW SYSTEM — ALL CARDS
================================================= */

/* Base glow for all cards */
.program-card,
.why-card,
.feature-card,
.cta-card {
  position: relative;
  background-color: var(--black-card);

  /* Ambient depth */
  box-shadow:
    0 20px 45px rgba(0,0,0,0.55),
    0 0 0 rgba(255,168,0,0);

  transition:
    transform 0.35s ease,
    box-shadow 0.35s ease;
}

/* Hover glow */
.program-card:hover,
.why-card:hover,
.feature-card:hover,
.cta-card:hover {
  transform: translateY(-10px);

  box-shadow:
    0 35px 75px rgba(0,0,0,0.75),
    0 0 35px rgba(255,168,0,0.35); /* cinematic glow */
}
.program-card::before,
.why-card::before,
.feature-card::before,
.cta-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;

  background: linear-gradient(
    120deg,
    rgba(255,168,0,0.25),
    rgba(255,168,0,0),
    rgba(255,168,0,0.25)
  );

  opacity: 0;
  transition: opacity 0.35s ease;
}

.program-card:hover::before,
.why-card:hover::before,
.feature-card:hover::before,
.cta-card:hover::before {
  opacity: 1;
}

/* ===============================
   SECTIONS
================================ */
section {
  padding: 6.5rem 2rem;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.7rem;
}

.section-subheadline {
  color: var(--silver-muted);
  max-width: 720px;
  margin-bottom: 3.6rem;
  font-size: 1.15rem;
}

/* ===============================
   WHY SECTION (STEEL)
================================ */
.why-section {
  background-color: var(--steel);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.6rem;
}

.why-card {
  background-color: var(--steel-card);
  padding: 2.4rem;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

.why-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}
.why-section h2 {
  text-align: center;
}

.why-section .section-subheadline {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
/* ===============================
   PROGRAMS (3 + 2 GRID)
================================ */
.program-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.6rem;
}

.program-card {
  background-color: var(--black-card);
  padding: 2.6rem;
  border-radius: 18px;
  text-decoration: none;
  color: var(--silver);
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.program-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.program-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 70px rgba(0,0,0,0.7);
}

/* Force 3 + 2 layout */
.program-card:nth-child(4) { grid-column: 1 / 2; }
.program-card:nth-child(5) { grid-column: 2 / 3; }

@media (max-width: 900px) {
  .program-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

/* ===============================
   SOCIAL PROOF
================================ */
.social-proof {
  background-color: var(--black-soft);
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  text-align: center;
  gap: 2rem;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  color: var(--yellow);
}

.stat-label {
  color: var(--silver-muted);
}

/* ===============================
   CONTACT STRIP (STEEL)
================================ */
.contact-strip {
  background-color: var(--steel);
  padding: 4.8rem 2rem;
}

.contact-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.contact-text h3 {
  color: var(--white);
  font-size: 1.8rem;
}

.contact-text p {
  color: var(--silver-muted);
}

/* ===============================
   FOOTER (YELLOW)
================================ */
.site-footer {
  background-color: var(--yellow);
  padding: 4.5rem 2rem 2rem;
}

.site-footer * {
  color: var(--black);
}

.footer-bottom {
  margin-top: 3rem;
  text-align: center;
  font-size: 0.9rem;
}

/* ===============================
   RESPONSIVE
================================ */
@media (max-width: 768px) {
  .main-nav {
    display: none;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .contact-strip-inner {
    flex-direction: column;
    text-align: center;
  }
}
/* ===============================
   CONVERSION CTA — FIXED
================================ */
.conversion-cta {
  background-color: var(--steel);
  padding: 6rem 2rem;
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(0,0,0,0.4);
}

.conversion-cta h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 0.6rem;
}

.conversion-cta .section-subheadline {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  color: var(--silver-muted);
}

/* CTA card layout */
.cta-options {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.6rem;
}

/* CTA cards — calmer than program cards */
.cta-card {
  background-color: var(--steel-card);
  padding: 2.6rem;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.cta-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 28px 60px rgba(0,0,0,0.6);
}

.cta-card h3 {
  color: var(--white);
  margin-bottom: 0.6rem;
}

.cta-card p {
  color: var(--silver-muted);
}

/* CTA tag (optional badge like "Fast", "Flagship") */
.cta-tag {
  display: inline-block;
  margin-bottom: 0.8rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--black);
  background-color: var(--yellow);
  padding: 0.35rem 0.7rem;
  border-radius
}
/* ===============================
   HEADER NAV — DROPDOWN FIX
================================ */

/* Ensure nav stays horizontal */
.main-nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

/* Allow dropdown positioning */
.nav-item {
  position: relative;
}

/* Programs link style */
.dropdown-toggle {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
}

/* Arrow indicator */
.dropdown-toggle::after {
  content: "▾";
  font-size: 0.7rem;
  margin-left: 0.4rem;
}

/* Dropdown container */
.dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  left: 0;
  min-width: 280px;

  background-color: var(--black-card);
  border-radius: 14px;
  padding: 0.6rem 0;

  box-shadow: 0 30px 70px rgba(0,0,0,0.65);
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}

/* Show on hover */
.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.dropdown-menu a {
  display: block;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  color: var(--silver);
  text-decoration: none;
}

.dropdown-menu a:hover {
  background-color: rgba(255,255,255,0.06);
  color: var(--yellow);
}

/* Normal nav links */
.main-nav > a {
  color: var(--black);
  font-weight: 700;
  text-decoration: none;
}

.main-nav > a:hover {
  text-decoration: underline;
}
/* ===============================
   FOOTER — TWO COLUMN
================================ */

.site-footer {
  background-color: var(--yellow);
  padding: 5rem 2rem 2rem;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;

  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 4rem;
}

/* Brand column */
.footer-brand h3 {
  font-size: 1.8rem;
  font-weight: 900;
  margin-bottom: 0.6rem;
  color: var(--black);
}

.footer-tagline {
  color: var(--black);
  opacity: 0.85;
  margin-bottom: 1.6rem;
  max-width: 420px;
}

.footer-contact {
  list-style: none;
}

.footer-contact li {
  margin-bottom: 0.6rem;
  color: var(--black);
}

.footer-contact a {
  color: var(--black);
  font-weight: 600;
  text-decoration: none;
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-geo {
  font-weight: 600;
  margin-top: 1rem;
}

/* Links column */
.footer-links h4 {
  font-size: 1.1rem;
  font-weight: 800;
  margin-bottom: 1.2rem;
  color: var(--black);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.7rem;
}

.footer-links a {
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover {
  text-decoration: underline;
}

/* Bottom strip */
.footer-bottom {
  margin-top: 4rem;
  padding-top: 1.4rem;
  border-top: 1px solid rgba(0,0,0,0.15);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.9rem;
  color: var(--black);
}

/* Responsive */
@media (max-width: 768px) {
  .footer-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
}
/* =================================================
   PROGRAM PAGES — DARK CINEMATIC SYSTEM
================================================= */

/* ===============================
   PROGRAM HERO
================================ */
.program-hero {
  position: relative;
  padding: 8rem 2rem 7rem;
  background-size: cover;
  background-position: 40% 23;
  background-repeat: no-repeat;
}

.program-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(11,13,16,0.55),
    rgba(11,13,16,0.9)
  );
}

.program-hero .container {
  position: relative;
  max-width: 1100px;
}

.program-hero h1 {
  font-size: clamp(3rem, 5vw, 4.6rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 1.4rem;
}

.program-subheadline {
  font-size: 1.25rem;
  max-width: 760px;
  color: var(--silver);
  margin-bottom: 3rem;
}

/* Example per-program image hooks */
.program-12week { background-image: url("/assets/images/hero-athlete.jpg"); }
.program-8week { background-image: url("/assets/images/hero-athlete.jpg"); }
.program-24week { background-image: url("/assets/images/hero-athlete.jpg"); }
.program-gut { background-image: url("/assets/images/hero-athlete"); }
.program-injury { background-image: url("/assets/images/hero-athlete"); }

/* ===============================
   PROGRAM SECTIONS
================================ */
.program-section {
  padding: 6.5rem 2rem;
}

.program-section.dark {
  background-color: var(--black-soft);
}

/* Headings */
.program-section h2 {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 1.2rem;
}

/* Body copy */
.program-text {
  max-width: 820px;
  color: var(--silver-muted);
  font-size: 1.12rem;
  line-height: 1.7;
  margin-bottom: 2.8rem;
}

/* ===============================
   LISTS (CLEAN & AIRY)
================================ */
.program-list {
  list-style: none;
  max-width: 820px;
}

.program-list li {
  position: relative;
  padding-left: 1.8rem;
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
  color: var(--silver);
}

.program-list li::before {
  content: "—";
  position: absolute;
  left: 0;
  color: var(--yellow);
  font-weight: 700;
}

/* ===============================
   FEATURE GRID
================================ */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.6rem;
  margin-top: 4rem;
}

.feature-card {
  background-color: var(--black-card);
  padding: 2.8rem 2.6rem;
  border-radius: 20px;
  box-shadow: 0 22px 55px rgba(0,0,0,0.55);
}

.feature-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.feature-card p {
  color: var(--silver-muted);
  line-height: 1.6;
}

/* ===============================
   WHO IT'S FOR / NOT FOR
================================ */
.feature-card ul {
  margin-top: 1rem;
}

.feature-card ul li {
  margin-bottom: 0.8rem;
  font-size: 1.02rem;
}

/* ===============================
   PROGRAM CTA
================================ */
.program-cta {
  padding: 7rem 2rem;
  text-align: center;
  background:
    linear-gradient(
      to bottom,
      rgba(11,13,16,0.85),
      rgba(0,0,0,1)
    );
}

.program-cta h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
}

.program-cta .section-subheadline {
  max-width: 700px;
  margin: 0 auto 3rem;
  color: var(--silver-muted);
}

/* ===============================
   RESPONSIVE REFINEMENT
================================ */
@media (max-width: 900px) {
  .program-hero {
    padding: 6rem 1.8rem;
    background-position: center;
  }

  .program-section {
    padding: 5rem 1.8rem;
  }
}

@media (max-width: 600px) {
  .program-hero h1 {
    font-size: 2.4rem;
  }

  .program-subheadline {
    font-size: 1.1rem;
  }

  .feature-card {
    padding: 2.2rem;
  }
}
/* ===============================
   CINEMATIC DEPTH LAYER
================================ */
body {
  background:
    radial-gradient(
      circle at top,
      #1a1f2b 0%,
      #0b0d10 55%
    );
}
.why-section,
.contact-strip,
.conversion-cta {
  background:
    linear-gradient(
      to bottom,
      #1a1f2b,
      #0b0d10
    );
}
h1, h2 {
  text-shadow:
    0 0 18px rgba(255,168,0,0.12);
}
.btn-primary {
  box-shadow:
    0 0 0 rgba(255,168,0,0),
    0 8px 25px rgba(0,0,0,0.45);
}

.btn-primary:hover {
  background-color: var(--yellow);
  color: var(--black);
  box-shadow:
    0 0 28px rgba(255,168,0,0.45),
    0 14px 45px rgba(0,0,0,0.65);
}
.program-card,
.why-card,
.cta-card,
.feature-card {
  position: relative;
  overflow: hidden;
}

.program-card::before,
.why-card::before,
.cta-card::before,
.feature-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background:
    linear-gradient(
      120deg,
      transparent 30%,
      rgba(255,168,0,0.08),
      transparent 70%
    );
  opacity: 0;
  transition: opacity 0.35s ease;
}

.program-card:hover::before,
.why-card:hover::before,
.cta-card:hover::before,
.feature-card:hover::before {
  opacity: 1;
}
.program-card,
.why-card,
.cta-card,
.feature-card {
  box-shadow:
    0 20px 55px rgba(0,0,0,0.55),
    inset 0 0 0 1px rgba(255,255,255,0.03);
}

.program-card:hover,
.why-card:hover,
.cta-card:hover,
.feature-card:hover {
  box-shadow:
    0 30px 75px rgba(0,0,0,0.75),
    0 0 35px rgba(255,168,0,0.18);
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/assets/images/noise.png");
  opacity: 0.035;
  pointer-events: none;
  z-index: 0;
}
.hero {
  background:
    radial-gradient(
      circle at top left,
      rgba(255,168,0,0.08),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(11,13,16,0.25),
      rgba(11,13,16,0.6)
    ),
    url("/assets/images/hero-athlete.jpg") center 23% / cover no-repeat;
}


/* Subtle stagger helpers */
.reveal.delay-1 { transition-delay: 0.15s; }
.reveal.delay-2 { transition-delay: 0.3s; }
.reveal.delay-3 { transition-delay: 0.45s; }

/* Horizontal reveal (optional) */
.reveal-left {
  transform: translateX(-40px);
}
.reveal-right {
  transform: translateX(40px);
}


/* ===============================
   SCROLL REVEAL (SAFE)
================================ */

.reveal {
  opacity: 0;
  transform: translateY(48px);
  transition:
    opacity 0.9s ease,
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal {
    opacity: 1;
    transform: none;
  }
}
/* ===============================
   BLOG HOME
================================ */

.blog-hero {
  padding: 6rem 2rem;
  text-align: center;
}

.blog-intro {
  max-width: 720px;
  margin: 1.5rem auto 0;
  color: var(--silver-muted);
  font-size: 1.15rem;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
}

.blog-card {
  background-color: var(--black-card);
  padding: 2.4rem;
  border-radius: 18px;
  text-decoration: none;
  color: var(--silver);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog-card h3 {
  color: var(--white);
  margin-bottom: 0.5rem;
}

.blog-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.6);
}
/* ===============================
   BLOG CATEGORY
================================ */

.category-hero {
  padding: 5.5rem 2rem 3rem;
  text-align: center;
}

.category-intro {
  max-width: 680px;
  margin: 1.2rem auto 0;
  color: var(--silver-muted);
}

.post-list {
  display: grid;
  gap: 1.6rem;
  max-width: 820px;
  margin: 0 auto;
}

.post-item {
  display: block;
  padding: 1.6rem 2rem;
  border-radius: 14px;
  background-color: var(--steel-card);
  text-decoration: none;
  color: var(--silver);
  transition: background 0.25s ease;
}

.post-item h3 {
  color: var(--white);
  margin-bottom: 0.3rem;
}

.post-item:hover {
  background-color: var(--black-card);
}
.blog-post h1 {
  margin-bottom: 1.5rem;
}

.blog-intro {
  font-size: 1.15rem;
  color: var(--silver-muted);
  margin-bottom: 3rem;
  max-width: 720px;
}

.blog-post article {
  max-width: 760px;
}

.blog-post p {
  margin-bottom: 1.4rem;
  line-height: 1.8;
}

.blog-post h2 {
  margin-top: 3.5rem;
  margin-bottom: 1rem;
}
/* ===============================
   BLOG HERO — CINEMATIC
================================ */

.blog-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;

  background:
    radial-gradient(
      circle at top,
      rgba(255,168,0,0.12),
      transparent 55%
    ),
    linear-gradient(
      to bottom,
      rgba(11,13,16,0.55),
      rgba(11,13,16,0.9)
    ),
    url("/assets/images/hero-athlete.jpg") center / cover no-repeat;
}

.blog-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0,0,0,0.2),
    rgba(0,0,0,0.6)
  );
}

.blog-hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  padding: 0 2rem;
}

.blog-hero h1 {
  font-size: clamp(3.5rem, 6vw, 5.2rem);
  font-weight: 900;
  letter-spacing: -0.02em;
  color: var(--white);
  margin-bottom: 1rem;

  /* Elegant cinematic font feel */
  font-family: "Inter", -apple-system, BlinkMacSystemFont, sans-serif;
}

.blog-hero p {
  font-size: 1.25rem;
  color: var(--silver);
  max-width: 720px;
  margin: 0 auto;
}

/* Blog list spacing */
.blog-list-section {
  padding: 6rem 2rem;
}
/* ===============================
   BLOG HERO — EDITORIAL (DISCORD-INSPIRED)
================================ */

.blog-hero {
  position: relative;
  padding: 7rem 2rem 5.5rem;
  background:
    radial-gradient(
      circle at top,
      rgba(255,168,0,0.08),
      transparent 60%
    ),
    linear-gradient(
      to bottom,
      #0f1320,
      #0b0d10
    );
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.blog-hero-inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.blog-title {
  font-size: clamp(3.2rem, 6vw, 4.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  color: var(--white);
  margin-bottom: 1.2rem;
}

.blog-subtitle {
  font-size: 1.25rem;
  line-height: 1.6;
  color: var(--silver-muted);
  max-width: 720px;
  margin: 0 auto;
}

/* ===============================
   BLOG LIST SECTION
================================ */

.blog-list-section {
  padding: 5.5rem 2rem;
}
/* ===============================
   TESTIMONIALS
================================ */

.testimonials-section {
  background-color: var(--black-soft);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2.4rem;
}

.testimonial-card {
  background-color: var(--black-card);
  padding: 2.2rem;
  border-radius: 18px;
  box-shadow: 0 20px 45px rgba(0,0,0,0.55);
}

.testimonial-text {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 1.4rem;
}

.testimonial-meta {
  font-size: 0.9rem;
  color: var(--silver-muted);
}

.testimonial-meta strong {
  color: var(--white);
  display: block;
}

/* Image proof */
.image-proof img {
  width: 100%;
  border-radius: 12px;
}

.proof-caption {
  display: block;
  margin-top: 0.6rem;
  font-size: 0.85rem;
  color: var(--silver-muted);
}

/* Before / After */
.before-after {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
}

.before-after img {
  width: 100%;
  border-radius: 10px;
}

.testimonial-cta {
  text-align: center;
  margin-top: 4rem;
}
/* ===============================
   TESTIMONIALS — SIDE SCROLL STRIP
================================ */

.testimonials-strip-section {
  padding: 6.5rem 0 4rem;
  background:
    linear-gradient(
      to bottom,
      #0b0d10,
      #0f1320
    );
  overflow: hidden;
}

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

.testimonials-header h2 {
  font-size: 2.6rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.testimonials-header p {
  color: var(--silver-muted);
  font-size: 1.1rem;
}

/* STRIP */
.testimonials-strip {
  display: flex;
  gap: 2rem;
  padding: 1.5rem 2rem 3rem;

  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;

  scrollbar-width: none; /* Firefox */
}

.testimonials-strip::-webkit-scrollbar {
  display: none; /* Chrome */
}

/* ITEM */
.testimonial-item {
  flex: 0 0 auto;
  scroll-snap-align: start;

  background-color: var(--black-card);
  border-radius: 18px;
  padding: 0.8rem;

  box-shadow:
    0 18px 45px rgba(0,0,0,0.55);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

/* IMAGE */
.testimonial-item img {
  height: 420px;
  width: auto;
  display: block;
  border-radius: 14px;
}

/* TYPES */
.testimonial-item.transform img {
  height: 460px;
}

.testimonial-item.chat img {
  height: 380px;
}

/* HOVER (desktop only) */
@media (hover: hover) {
  .testimonial-item:hover {
    transform: translateY(-10px);
    box-shadow:
      0 30px 70px rgba(0,0,0,0.75),
      0 0 28px rgba(255,168,0,0.18);
  }
}

/* MOBILE */
@media (max-width: 768px) {
  .testimonial-item img {
    height: 320px;
  }
}

