:root {
  --bg-color: #ffffff;
  --text-color: #000000;
  --accent-blue: #0057ff;
  --whatsapp-green: #25d366;
  --gray-light: #f5f5f5;
  --dark-bg: #0a0a0a;
  --dark-surface: #141414;
  --font-stack: "Inter", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-stack);
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.3s ease;
}

ul {
  list-style: none;
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* =====================
   Typography
   ===================== */
h1, h2, h3, h4 {
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -1px;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 6rem);
  line-height: 0.95;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 50px;
  border-left: 5px solid var(--accent-blue);
  padding-left: 20px;
}

.section-title-light {
  color: #fff;
  border-left-color: var(--accent-blue);
}

.eyebrow {
  color: var(--accent-blue);
  font-weight: 700;
  letter-spacing: 3px;
  margin-bottom: 20px;
  display: block;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.hero-text .eyebrow::after {
  content: '';
  display: block;
  width: 36px;
  height: 2px;
  background: var(--accent-blue);
  margin-top: 12px;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.5);
}

/* =====================
   TradingView Widget
   ===================== */
.tradingview-widget-copyright {
  display: none !important;
}

.tradingview-widget-container {
  line-height: 0;
  margin-bottom: 0;
  height: 46px !important;
  overflow: hidden;
}

/* =====================
   Header
   ===================== */
.sticky-header {
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  z-index: 1000;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding: 12px 0;
  transition: all 0.3s ease;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo-img {
  height: 40px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.nav-links a:hover {
  color: var(--accent-blue);
}

/* =====================
   Buttons
   ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-whatsapp {
  background-color: var(--whatsapp-green);
  color: #fff;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.35), 0 0 40px rgba(37, 211, 102, 0.1);
}

.btn-whatsapp:hover {
  background-color: #128c7e;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
  color: #fff;
}

.btn-hero-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.4);
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-hero-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  border: 2px solid #fff;
  padding: 12px 30px;
  width: fit-content;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9rem;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: white;
  color: black;
}

.btn-outline-blue {
  border-color: var(--accent-blue);
  color: var(--accent-blue);
  margin-top: 30px;
}

.btn-outline-blue:hover {
  background: var(--accent-blue);
  color: #fff;
}

/* =====================
   Hamburger (mobile)
   ===================== */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 26px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 100%;
  height: 2px;
  background: #000;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* =====================
   Mobile Nav
   ===================== */
.mobile-nav {
  display: none;
  background: rgba(255, 255, 255, 0.97);
  border-top: 1px solid rgba(0,0,0,0.08);
  padding: 20px 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s ease, padding 0.35s ease;
}

.mobile-nav.open {
  display: block;
  max-height: 400px;
  padding: 20px 0;
}

.mobile-nav ul {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-nav ul li a {
  display: block;
  padding: 12px 0;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.mobile-nav ul li a:hover {
  color: var(--accent-blue);
}

.mobile-nav-cta {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  background: var(--whatsapp-green);
  color: #fff !important;
  padding: 12px 24px !important;
  border-radius: 50px;
  margin-top: 10px;
  border-bottom: none !important;
}

.mobile-nav-cta:hover {
  background: #128c7e;
  color: #fff !important;
}

/* =====================
   Hero Section
   ===================== */
.hero-section {
  background: 
    linear-gradient(to right, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.7) 45%, rgba(0,0,0,0.1) 100%),
    url('../img/sillon.jpg?v=2');
  background-size: cover;
  /* background-position values: 
     First value (X-axis): 0% is visual left edge, 100% is right edge
     Second value (Y-axis): 0% is visual top edge, 100% is bottom edge
     Adjust these percentages to fine-tune exactly what part of the photo is visible. */
  background-position: 30% 40%;
  background-repeat: no-repeat;
  min-height: 100vh;
  padding: 0;
  color: #ffffff;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hero-grid {
  display: block;
  width: 100%;
  max-width: 550px;
  margin-left: 0;
  padding-left: 8%;
}

.hero-text {
  padding-top: 32px;
  padding-bottom: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 40px;
}

.hero-image-col {
  display: none;
}

.hero-photo-mobile {
  display: none;
}

.hero-title {
  font-size: clamp(2.2rem, 4.5vw, 4.8rem);
  font-weight: 900;
  line-height: 0.88;
  margin-bottom: 28px;
  text-transform: uppercase;
  letter-spacing: -3px;
}

.hero-subtitle {
  font-size: 1.1rem;
  max-width: 420px;
  margin-bottom: 36px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.7;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hero-social-icons {
  display: flex;
  gap: 32px;
  flex-wrap: nowrap;
}

.social-icon {
  font-size: 1.6rem;
  color: rgba(255, 255, 255, 0.5);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}

.social-icon:hover {
  color: #fff;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

.social-count {
  font-size: 1.1rem;
  font-weight: 800;
  display: inline;
  color: #fff;
  white-space: nowrap !important;
}

.social-count small {
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.7);
}

/* =====================
   Stats Section
   ===================== */
.stats-section {
  background: var(--dark-bg);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
  height: 60px;
  width: 1px;
  background: rgba(255,255,255,0.1);
}

.stat-value {
  display: flex;
  align-items: baseline;
  gap: 2px;
}

.stat-number {
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 900;
  color: #fff;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-plus,
.stat-prefix,
.stat-suffix {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: var(--accent-blue);
  line-height: 1;
  letter-spacing: -1px;
}

.stat-label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.4);
}

/* =====================
   Sections
   ===================== */
.section {
  padding: 100px 0;
}

/* =====================
   Bio Section
   ===================== */
.bio-section {
  background: #fff;
}

.bio-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: center;
}

.bio-image {
  position: relative;
}

.portrait-img {
  width: 100%;
  height: 560px;
  object-fit: cover;
  border-radius: 16px;
  display: block;
}

.bio-text h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 24px;
}

.bio-text .lead {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.bio-text .lead-list {
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
  list-style-type: disc;
  padding-left: 20px;
  color: #333;
}

.bio-text .lead-list li {
  margin-bottom: 10px;
}

.bio-text p {
  color: #444;
  line-height: 1.8;
}

.credentials-list {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.credentials-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding-left: 0;
  border-left: none;
  font-size: 0.95rem;
  color: #333;
}

.credentials-list li i {
  color: var(--accent-blue);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 3px;
}

/* =====================
   GBM Feature Section
   ===================== */
.gbm-section {
  background: var(--dark-bg);
  padding: 100px 0;
  overflow: hidden;
}

.gbm-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.gbm-text h2 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  color: #fff;
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.gbm-text p {
  color: rgba(255,255,255,0.65);
  line-height: 1.8;
  font-size: 1.05rem;
}

.gbm-text strong {
  color: #fff;
}

.gbm-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.gbm-photo-main {
  grid-column: 1 / -1;
}

.gbm-photo {
  width: 100%;
  height: 220px;
  object-fit: cover;
  object-position: center top; /* Keeps the focus on the upper part of the image so heads aren't cut off */
  border-radius: 12px;
  display: block;
  transition: transform 0.4s ease;
}

.gbm-photo-main {
  height: 300px;
}

.gbm-photo:hover {
  transform: scale(1.02);
}

.gbm-photo-stack {
  display: contents;
}

/* =====================
   Services Section
   ===================== */
.services-section {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  background: #fff;
  padding: 44px 36px;
  border-radius: 16px;
  transition: all 0.3s ease;
  border: 1px solid rgba(0,0,0,0.06);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--accent-blue);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.1);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  width: 52px;
  height: 52px;
  background: rgba(0, 87, 255, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: background 0.3s ease;
}

.service-card:hover .service-icon {
  background: var(--accent-blue);
}

.service-icon i {
  font-size: 1.3rem;
  color: var(--accent-blue);
  transition: color 0.3s ease;
}

.service-icon img {
  transition: filter 0.3s ease;
}

.service-card:hover .service-icon i {
  color: #fff;
}

.service-card:hover .service-icon img {
  /* CSS filter to turn blue to white */
  filter: brightness(0) invert(1);
}

.service-card h3 {
  margin-bottom: 14px;
  font-size: 1.3rem;
  letter-spacing: -0.5px;
}

.service-card p {
  color: #555;
  line-height: 1.7;
  margin-bottom: 28px;
  font-size: 0.95rem;
}

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--accent-blue);
  transition: gap 0.3s ease;
}

.service-cta:hover {
  gap: 12px;
  color: var(--accent-blue);
}

/* =====================
   Testimonials Section
   ===================== */
.testimonials-section {
  background: var(--dark-bg);
  padding: 100px 0;
  overflow: hidden;
}

/* 3D Carousel Layout */
.carousel-3d-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0;
  padding: 0 70px;
}

.carousel-3d-scene {
  flex: 1;
  perspective: 1200px;
  overflow: visible;
}

.carousel-3d-stage {
  position: relative;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
  height: 460px;
}

/* 3D Cards */
.card-3d {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  transition: all 0.7s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Active card — front and center */
.card-3d.is-active {
  transform: translateX(0) scale(1) rotateY(0deg);
  opacity: 1;
  z-index: 3;
  pointer-events: auto;
}

/* Previous card — behind and to the left */
.card-3d.is-prev {
  transform: translateX(-55%) scale(0.78) rotateY(14deg);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  filter: brightness(0.5);
}

/* Next card — behind and to the right */
.card-3d.is-next {
  transform: translateX(55%) scale(0.78) rotateY(-14deg);
  opacity: 1;
  z-index: 2;
  pointer-events: none;
  filter: brightness(0.5);
}

/* Hidden cards (if more than 3) */
.card-3d.is-hidden {
  transform: translateX(0) scale(0.6);
  opacity: 0;
  z-index: 1;
  pointer-events: none;
}

/* Navigation Buttons */
.carousel-btn {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  z-index: 10;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.carousel-btn-prev {
  left: -70px;
}

.carousel-btn-next {
  right: -70px;
}

.carousel-btn:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(0, 87, 255, 0.5);
  color: #fff;
  transform: translateY(-50%) scale(1.1);
}

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 36px;
}

.carousel-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}

.carousel-dot.active {
  background: var(--accent-blue);
  transform: scale(1.4);
  box-shadow: 0 0 12px rgba(0, 87, 255, 0.4);
}

/* Testimonial Card */
.testimonial-card {
  background: #1a1a2e;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 48px 44px;
  text-align: left;
  box-sizing: border-box;
}

.testimonial-card.is-active:hover {
  border-color: rgba(0, 87, 255, 0.3);
}

.testimonial-icon {
  font-size: 2.4rem;
  color: var(--accent-blue);
  margin-bottom: 24px;
  opacity: 0.6;
}

.testimonial-quote {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  line-height: 1.85;
  margin-bottom: 32px;
  font-style: italic;
  text-align: justify;
}

.testimonial-quote::before {
  content: none;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.06);
}

.testimonial-name {
  font-weight: 900;
  color: #fff;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.testimonial-role {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Mobile Carousel — flat single-card layout */
@media (max-width: 768px) {
  .testimonials-section {
    padding: 60px 0;
  }

  .carousel-3d-wrapper {
    padding: 0 16px;
  }

  .carousel-3d-scene {
    perspective: none;
    overflow: hidden;
  }

  .carousel-3d-stage {
    max-width: 100%;
  }

  .card-3d {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: translateX(110%);
    opacity: 0;
    filter: none !important;
    transition: transform 0.5s ease, opacity 0.5s ease;
    pointer-events: none;
  }

  .card-3d.is-active {
    display: block;
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }

  .card-3d.is-prev {
    transform: translateX(-110%) !important;
    opacity: 0;
  }

  .card-3d.is-next {
    transform: translateX(110%) !important;
    opacity: 0;
  }

  .testimonial-card {
    padding: 32px 24px;
  }

  .testimonial-quote {
    font-size: 0.95rem;
    line-height: 1.75;
    text-align: left;
  }

  .testimonial-icon {
    font-size: 1.8rem;
    margin-bottom: 16px;
  }

  .carousel-btn {
    display: none;
  }

  .carousel-btn:hover {
    transform: none;
  }

  .carousel-dots {
    margin-top: 24px;
  }
}

/* =====================
   Podcast Section
   ===================== */
.podcast-section {
  background: #fff;
}

.podcast-banner {
  background: #000;
  color: #fff;
  border-radius: 20px;
  display: grid;
  grid-template-columns: minmax(260px, 35%) 1fr;
  overflow: hidden;
}

.podcast-image-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: #1a1a1a;
}

.podcast-img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
  max-width: 340px;
}

.podcast-info {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.podcast-info h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 16px;
  letter-spacing: -1px;
}

.podcast-info p {
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  max-width: 420px;
}

.podcast-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* =====================
   Footer
   ===================== */
footer {
  background: #000;
  color: #fff;
  padding: 40px 0 0;
}

.footer-content {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 10px;
  text-align: center;
}

.copyright-container {
  display: flex;
  justify-content: center;
  padding-bottom: 20px;
  width: 100%;
}

.footer-brand-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.footer-logo-img {
  height: 50px;
  width: auto;
  display: block;
  margin-bottom: 8px;
}

.footer-brand p {
  color: rgba(255,255,255,0.4);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
}

.copyright-text {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  line-height: 1.6;
  margin: 0;
}

footer h5 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-nav ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.footer-legal ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.footer-nav a,
.footer-legal a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-nav a:hover,
.footer-legal a:hover {
  color: #fff;
}

.footer-links {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.footer-links a {
  color: rgba(255,255,255,0.5);
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #fff;
}

@media (max-width: 900px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 600px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

/* =====================
   Footer Ticker
   ===================== */
.ticker-wrap {
  overflow: hidden;
  padding: 18px 0;
  background: var(--accent-blue);
}

.ticker {
  display: flex;
  white-space: nowrap;
  animation: ticker-scroll 18s linear infinite;
}

.ticker__item {
  padding: 0 60px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  color: #fff;
}

.ticker__item::after {
  content: '·';
  margin-left: 60px;
  opacity: 0.4;
}

@keyframes ticker-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================
   Scroll Reveal
   ===================== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-child {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.reveal-child.visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children */
.reveal-child:nth-child(1) { transition-delay: 0.1s; }
.reveal-child:nth-child(2) { transition-delay: 0.2s; }
.reveal-child:nth-child(3) { transition-delay: 0.3s; }

/* =====================
   Responsive
   ===================== */
@media (max-width: 1024px) {
  .stats-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 20px;
  }

  .gbm-content {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .gbm-photos {
    order: -1;
  }
}

@media (max-width: 768px) {
  /* Header */
  .nav-links {
    display: none;
  }

  .sticky-header .btn-whatsapp.btn-lg {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  /* Hero */
  .hero-section {
    padding: 0;
    min-height: 89vh;
    background:
      linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.4) 40%, rgba(0,0,0,0.1) 100%),
      url('../img/sillonvertical.jpg?v=3');
    background-size: cover;
    background-position: 45% 0%;
    background-repeat: no-repeat;
  }

  .hero-grid {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    min-height: 89vh;
    gap: 0;
    padding: 60px 30px 0;
    max-width: 100%;
  }

  .hero-text {
    padding: 0;
    order: 1;
  }

  .hero-image-col {
    display: none;
  }

  .hero-text .eyebrow {
    color: rgba(255, 255, 255, 0.9);
  }

  .hero-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    letter-spacing: -1px;
    margin-bottom: 20px;
  }

  .hero-cta-group {
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
  }

  .hero-cta-group .btn-hero-outline {
    display: none;
  }

  .btn {
    width: 100%;
    justify-content: center;
  }

  /* Stats */
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-item::after {
    display: none;
  }

  /* Bio */
  .bio-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .bio-text .lead-list {
    font-size: 1.05rem;
  }

  .portrait-img {
    height: 360px;
  }

  /* Podcast */
  .podcast-banner {
    grid-template-columns: 1fr;
  }

  .podcast-image-wrapper {
    padding: 32px;
  }

  .podcast-img {
    height: auto;
    max-width: 240px;
    min-height: unset;
  }

  .podcast-info {
    padding: 32px 24px;
  }

  .podcast-info {
    padding: 40px 30px;
  }

  /* Footer */
  footer {
    padding: 30px 0 0;
  }

  .footer-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }

  /* GBM */
  .gbm-photos {
    grid-template-columns: 1fr;
  }

  .gbm-photo-main,
  .gbm-photo {
    height: 220px;
  }
}

@media (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }
}
