/* ========== CUSTOM FONTS ========== */
@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Light.otf') format('opentype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-LightItalic.otf') format('opentype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Medium.otf') format('opentype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-MediumItalic.otf') format('opentype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Bold.otf') format('opentype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-BoldItalic.otf') format('opentype');
  font-weight: 700;
  font-style: italic;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-Black.otf') format('opentype');
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Satoshi';
  src: url('./fonts/Satoshi-BlackItalic.otf') format('opentype');
  font-weight: 900;
  font-style: italic;
}

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

:root {
  --bg-color: #0a0a0a;
  --text-white: #ffffff;
  --text-gray: #888888;
  --accent-orange: #f06730;
  --tag-bg: #3a3a3a;
  --max-width: 100%;
  --max-width-tablet-portrait: 100%;
  --max-width-tablet: 992px;
  --max-width-laptop: 1140px;
  --max-width-desktop: 1240px;
  --max-width-wide: 1340px;
  --spacing-padding-inline: 0.25rem;
  /* Typography Scale - Bold & Hierarchical */
  --h1-size: clamp(2rem, 1.4718rem + 1.6901vw, 3.5rem);
  --h2-size: clamp(1.75rem, 1.3979rem + 1.1268vw, 2.75rem);
  --h3-size: clamp(1.5rem, 1.2799rem + 0.7042vw, 2.125rem);
  --h4-size: clamp(1.25rem, 1.0739rem + 0.5634vw, 1.75rem);
  --body-large: clamp(1.125rem, 0.993rem + 0.4225vw, 1.5rem);
  --body: clamp(1rem, 0.956rem + 0.1408vw, 1.125rem);

  /* Alpha Typography Scale */
  /* Headings with clamp */
  --alpha-heading-h0: clamp(32px, calc(20px + 4vw), 96px);
  --alpha-heading-h1: clamp(28px, calc(18px + 2.25vw), 64px);
  --alpha-heading-h2: clamp(24px, calc(16px + 1.75vw), 48px);
  /* Headings with static values */
  --alpha-heading-h3: 40px;
  --alpha-heading-h4: 32px;
  --alpha-heading-h5: 24px;
  /* Body */
  --alpha-body-large: 32px;
  --alpha-body-medium: 24px;
  --alpha-body-small: 20px;
  --alpha-body-xs: 16px;
  /* Button */
  --alpha-button-large: 32px;
  --alpha-button-medium: 24px;
  --alpha-button-small: 20px;

  --font-weight-bold: 700;
  --font-weight-semibold: 600;
  --font-weight-medium: 500;
  --font-weight-regular: 400;
  --font-weight-light: 300;
}

/* Alpha Typography - Responsive Variables */
/* 1800-1919px */
@media (max-width: 1919px) {
  :root {
    --alpha-heading-h0: clamp(84px, calc(60px + 1.25vw), 96px);
    --alpha-heading-h1: clamp(58px, calc(40px + 1vw), 64px);
    --alpha-heading-h2: clamp(44px, calc(32px + 0.75vw), 48px);
    --alpha-heading-h3: 38px;
    --alpha-heading-h4: 30px;
    --alpha-heading-h5: 24px;
    --alpha-body-large: 30px;
    --alpha-body-medium: 24px;
    --alpha-body-small: 20px;
    --alpha-body-xs: 16px;
    --alpha-button-large: 30px;
    --alpha-button-medium: 24px;
    --alpha-button-small: 20px;
  }
}

/* 1400-1799px */
@media (max-width: 1799px) {
  :root {
    --alpha-heading-h0: clamp(72px, calc(48px + 1.5vw), 84px);
    --alpha-heading-h1: clamp(52px, calc(32px + 1.5vw), 58px);
    --alpha-heading-h2: clamp(40px, calc(28px + 0.75vw), 44px);
    --alpha-heading-h3: 36px;
    --alpha-heading-h4: 28px;
    --alpha-heading-h5: 22px;
    --alpha-body-large: 28px;
    --alpha-body-medium: 22px;
    --alpha-body-small: 18px;
    --alpha-body-xs: 15px;
    --alpha-button-large: 28px;
    --alpha-button-medium: 22px;
    --alpha-button-small: 18px;
  }
}

/* 1025-1399px */
@media (max-width: 1399px) {
  :root {
    --alpha-heading-h0: clamp(60px, calc(36px + 2vw), 72px);
    --alpha-heading-h1: clamp(44px, calc(24px + 2vw), 52px);
    --alpha-heading-h2: clamp(36px, calc(24px + 1vw), 40px);
    --alpha-heading-h3: 32px;
    --alpha-heading-h4: 26px;
    --alpha-heading-h5: 20px;
    --alpha-body-large: 24px;
    --alpha-body-medium: 20px;
    --alpha-body-small: 18px;
    --alpha-body-xs: 15px;
    --alpha-button-large: 24px;
    --alpha-button-medium: 20px;
    --alpha-button-small: 18px;
  }
}

/* 768-1024px */
@media (max-width: 1024px) {
  :root {
    --alpha-heading-h0: clamp(48px, calc(24px + 3vw), 60px);
    --alpha-heading-h1: clamp(36px, calc(20px + 2vw), 44px);
    --alpha-heading-h2: clamp(32px, calc(20px + 1.5vw), 36px);
    --alpha-heading-h3: 28px;
    --alpha-heading-h4: 24px;
    --alpha-heading-h5: 20px;
    --alpha-body-large: 22px;
    --alpha-body-medium: 18px;
    --alpha-body-small: 18px;
    --alpha-body-xs: 14px;
    --alpha-button-large: 22px;
    --alpha-button-medium: 18px;
    --alpha-button-small: 16px;
  }
}

/* 480-767px */
@media (max-width: 767px) {
  :root {
    --alpha-heading-h0: clamp(40px, calc(28px + 2.5vw), 48px);
    --alpha-heading-h1: clamp(32px, calc(24px + 1.5vw), 36px);
    --alpha-heading-h2: clamp(28px, calc(20px + 1.5vw), 32px);
    --alpha-heading-h3: 24px;
    --alpha-heading-h4: 22px;
    --alpha-heading-h5: 18px;
    --alpha-body-large: 20px;
    --alpha-body-medium: 18px;
    --alpha-body-small: 16px;
    --alpha-body-xs: 14px;
    --alpha-button-large: 20px;
    --alpha-button-medium: 18px;
    --alpha-button-small: 16px;
  }
}

/* <480px */
@media (max-width: 479px) {
  :root {
    --alpha-heading-h0: 32px;
    --alpha-heading-h1: 28px;
    --alpha-heading-h2: 24px;
    --alpha-heading-h3: 22px;
    --alpha-heading-h4: 20px;
    --alpha-heading-h5: 16px;
    --alpha-body-large: 18px;
    --alpha-body-medium: 16px;
    --alpha-body-small: 15px;
    --alpha-body-xs: 13px;
    --alpha-button-large: 18px;
    --alpha-button-medium: 16px;
    --alpha-button-small: 15px;
  }
}

body {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-white);
  min-height: 100vh;
  overflow-x: hidden;
}
a[href] {
  cursor: pointer;
}
#strategy,
#design,
#development {
  scroll-margin-top: 100px;
}

/* Container */
.container {
  margin: 0 auto;
  max-width: var(--max-width);
  position: relative;
}
.container .container-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

@media (max-width: 1024px) {
  .container {
    max-width: var(--max-width-tablet-portrait);
  }
}
@media (max-width: 1190px) {
  .container {
    max-width: var(--max-width-tablet);
  }
}
@media (min-width: 1191px) {
  .container {
    max-width: var(--max-width-laptop);
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: var(--max-width-desktop);
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: var(--max-width-wide);
  }
}
/* Main - Padding works only for main section  */
@media screen and (width <= 64rem) {
  .main-section-padding {
    padding-inline: calc(var(--spacing-padding-inline) * 20) !important;
  }
}

/* Header */
header {
  padding: 24px 60px;
  min-height: 70px;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  animation: slideDown 0.8s ease-out;
  background: transparent;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
  border-bottom: 1px solid transparent;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    background 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    backdrop-filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Header scrolled states */
header.scrolled-dark {
  padding: 16px 60px;
  background: rgba(10, 10, 10, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

header.scrolled-light {
  padding: 16px 60px;
  background: rgba(255, 255, 255, 0.95) !important;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

header.scrolled-light nav a {
  color: var(--bg-color);
}

header.scrolled-light nav a::after {
  background: var(--accent-orange);
}

header.scrolled-light .cta-button {
  background-color: var(--bg-color);
  color: var(--text-white);
}

header.scrolled-light .cta-button:hover {
  background-color: var(--accent-orange);
}

header.scrolled-light .logo img {
  filter: invert(1);
}

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

.logo {
  display: flex;
  align-items: center;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

.logo img {
  height: 44px;
  width: auto;
  transition: filter 0.3s ease;
}

nav {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

header.scrolled-light nav {
  background: rgba(0, 0, 0, 0.04);
  border-color: rgba(0, 0, 0, 0.08);
}

nav a {
  color: var(--text-white);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 50px;
  transition: all 0.3s ease;
  position: relative;
}

nav a::after {
  display: none;
}

nav a:hover {
  background: rgba(255, 255, 255, 0.1);
}

header.scrolled-light nav a:hover {
  background: rgba(0, 0, 0, 0.06);
}

nav a.active {
  background: var(--text-white);
  color: var(--bg-color);
}

header.scrolled-light nav a.active {
  background: var(--bg-color);
  color: var(--text-white);
}

.cta-button {
  background: var(--text-white);
  color: var(--bg-color);
  padding: 14px 28px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cta-button:hover {
  background: var(--accent-orange);
  color: var(--text-white);
}

header.scrolled-light .cta-button {
  background: var(--bg-color);
  color: var(--text-white);
}

header.scrolled-light .cta-button:hover {
  background: var(--accent-orange);
}

.header-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  position: relative;
  z-index: 101;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  border-radius: 2px;
  transition: all 0.3s ease;
}

header.scrolled-light .mobile-menu-btn span {
  background: var(--bg-color);
}

/* Mobile Menu Active State (hamburger to X) */
.mobile-menu-btn.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.mobile-menu-btn.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.mobile-menu-btn.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* When menu is open, hamburger should always be white (overlay is dark) */
.mobile-menu-btn.active span {
  background: var(--text-white);
}
header.scrolled-light .mobile-menu-btn.active span {
  background: var(--bg-color);
}

/* Mobile Navigation Menu */
.mobile-nav {
  position: fixed;
  top: 100%;
  left: 0;
  right: 0;
  bottom: 0;
  background: #0a0a0a;
  z-index: -1;
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  opacity: 0;
  transform: translate(-100%, 0);
  transition: opacity 0.575s linear, transform 0.575s linear;
  height: 100vh;
}

.mobile-nav.active {
  opacity: 1;
  transform: translate(0%, 0);
  z-index: 99;
}

div.mobile-nav a {
  color: #ffffff !important;
  text-decoration: none;
  font-size: 32px;
  font-weight: 600;
  padding: 16px;
  width: 100%;
  text-align: center;
  transition: color 0.3s ease;
  background: transparent !important;
}

div.mobile-nav a:hover {
  color: #f06730 !important;
}

div.mobile-nav a.cta-button {
  margin-top: 24px;
  font-size: 20px;
  padding: 18px 36px;
  background: #ffffff !important;
  color: #0a0a0a !important;
  border-radius: 50px;
}

div.mobile-nav a.cta-button:hover {
  background: #f06730 !important;
  color: #ffffff !important;
}

/* Light Rays Container */
/* .light-rays-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  overflow: hidden;
} */

/* .light-rays-container canvas {
  display: block;
  width: 100%;
  height: 100%;
} */

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 200px 80px 0;
  /* position: relative;
  overflow: hidden; */
}
.hero .hero-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  /* position: relative;
  z-index: 1; */
}
.hero-headline {
  font-size: var(--h1-size);
  font-weight: var(--font-weight-medium);
  line-height: 1.05;
  max-width: var(--max-width);
  padding-top: 0px;
  margin-bottom: 64px;
  letter-spacing: normal;
  animation: fadeInUp 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-subheadline {
  font-size: var(--h3-size);
  font-weight: var(--font-weight-medium);
  line-height: 1.5;
  padding-bottom: 90px;
  color: var(--text-gray);
  max-width: 1100px;
  animation: fadeInUp 1s ease-out 0.6s both;
}

.highlight-tag {
  display: inline-block;
  /* background-color: var(--tag-bg); */
  background-color: var(--accent-orange);
  padding: 8px 24px;
  border-radius: 24px;
  /* color: var(--text-gray); */
  color: var(--text-white);
  margin: 8px 8px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease,
    box-shadow 0.3s ease;
  /* cursor: pointer; */
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
}

/* .highlight-tag:hover {
  background-color: var(--accent-orange);
  color: #ffffff;
} */

.plus {
  color: var(--text-white);
  margin: 0 12px;
  font-weight: 600;
}

/* Unified animation for all tags */
.hero-subheadline .highlight-tag {
  animation: tagPop 0.5s ease-out 1s both;
  font-size: inherit;
  padding: 12px 32px;
  border-radius: 24px;
}

@keyframes tagPop {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
/* Video Section */
.video-section {
  height: 90vh;
  width: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  padding: 0 30px;
}

.video-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 40px;
  overflow: hidden;
  backface-visibility: hidden;
}

.video-container video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Video Overlay & Play Icon */
.video-container {
  position: relative;
  cursor: pointer;
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background 0.3s ease;
  pointer-events: none;
}

.video-container:hover .video-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.video-play-icon {
  width: 80px;
  height: 80px;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.video-container:hover .video-play-icon {
  opacity: 1;
  transform: scale(1);
}

/* Video Popup Modal */
.video-popup {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup.active {
  opacity: 1;
  visibility: visible;
}

.video-popup-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.9);
}

.video-popup-content {
  position: relative;
  width: 95%;
  max-width: 1350px;
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.video-popup.active .video-popup-content {
  transform: scale(1);
}

.video-popup-content video {
  width: 100%;
  border-radius: 16px;
  display: block;
}

.video-popup-close {
  position: absolute;
  top: -50px;
  right: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.video-popup-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: scale(1.1);
}

.video-popup-close svg {
  width: 20px;
  height: 20px;
}

/* Video Section - Mobile Responsive */

@media (max-width: 1024px) {
  .video-section {
    height: 425px;
    padding: 0 40px;
  }

  .video-container {
    border-radius: 20px;
  }
}

@media (max-width: 767px) {
  .video-section {
    height: 100%;
    padding: 0 20px;
  }

  .video-container {
    border-radius: 20px;
  }
}

@media (max-width: 480px) {
  .video-section {
    /* aspect-ratio: 9/16; */
    padding: 0 16px;
    height: 100%;
  }
}


/* ========== COMMITMENT SECTION ========== */
.commitment-section {
  min-height: 100vh;
  width: 100%;
  background-color: var(--bg-color);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 30px;
}

.commitment-content {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.commitment-heading {
  font-size: var(--alpha-heading-h1);
  font-weight: var(--font-weight-medium);
  line-height: 130%;
  color: #919191;
  margin: 0;
}

.commitment-heading .word {
  display: inline-block;
  transition: color 0.3s ease;
}

.commitment-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 24px 32px 24px 32px;
  background-color: var(--text-white);
  color: rgba(0, 0, 0, 0.80);
  font-size: var(--alpha-button-large);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.commitment-button::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #F06831;
  filter: drop-shadow(0 0 10px #F06831);
  transition: all 0.6s ease-in-out;
  z-index: 0;
}

.commitment-button:hover::before {
  transform: translateY(-50%) scale(80);
  left: 0;
}

.commitment-button .button-text {
  position: relative;
  z-index: 10;
  margin-left: 36px;
  transition: all 0.5s ease;
}

.commitment-button:hover .button-text {
  margin-left: 0;
  color: var(--text-white);
}


/* Commitment Section - Responsive */
@media (max-width: 1399px) {
  .commitment-button {
    padding: 20px 40px 20px 40px;
  }

  .commitment-button::before {
    left: 32px;
    width: 18px;
    height: 18px;
  }

  .commitment-button .button-text {
    margin-left: 28px;
  }

  .commitment-content {
    gap: 60px;
  }
}

@media (max-width: 767px) {
  .commitment-section {
    padding: 80px 16px;
  }

  .commitment-button {
    padding: 12px 16px 12px 16px;
    gap: 14px;
  }

  .commitment-button::before {
    left: 24px;
    width: 12px;
    height: 12px;
  }

  .commitment-button .button-text {
    margin-left: 32px;
  }

  .commitment-content {
    gap: 64px;
  }
}

/* ========== IMPACT STATS SECTION ========== */
.impact-stats-section {
  min-height: 100vh;
  width: 100%;
  background-color: #F2F2F2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 80px;
}

.impact-stats-title {
  color: #000;
  text-align: center;
  font-family: Satoshi;
  font-size: var(--alpha-heading-h1);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin-bottom: 80px;
}

.impact-stats-title span {
  color: #F06831;
}

.impact-stats-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.impact-stat-box {
  background: #FFFFFF;
  border-radius: 40px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 96px;
}

.impact-stat-box:nth-child(1),
.impact-stat-box:nth-child(2),
.impact-stat-box:nth-child(3) {
  grid-column: span 2;
}

.impact-stat-box:nth-child(4),
.impact-stat-box:nth-child(5) {
  grid-column: span 3;
}

.stat-label {
  color: #888;
  font-family: Satoshi;
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
}

.stat-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
}

.stat-value {
  color: #000;
  font-family: Satoshi;
  font-size: var(--alpha-heading-h0);
  font-style: normal;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}

.stat-text {
  color: #000;
  font-family: Satoshi;
  font-size: 24px;
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0;
  max-width: 430px;
  flex: 1;
}


@media (min-width: 1800px) {
  .impact-stats-section {
    padding: 200px 120px;
  }

  .impact-stats-grid {
    max-width: var(--max-width-wide);
    gap: 16px;
  }

  .impact-stat-box {
    padding: 40px;
  }

  /* .stat-label {
    font-size: 22px;
  } */

  /* .stat-value {
    font-size: 94px;
  } */

  .stat-text {
    font-size: 24px;
  }
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .impact-stats-section {
    padding: 160px 120px;
  }

  .impact-stats-title {
    margin-bottom: 70px;
  }

  .impact-stats-grid {
    max-width: var(--max-width-wide);
    gap: 18px;
  }

  .impact-stat-box {
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  .impact-stats-section {
    padding: 100px 48px;
  }

  .impact-stats-title {
    margin-bottom: 50px;
  }

  .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .impact-stat-box {
    padding: 32px;
    border-radius: 20px;
  }

  .impact-stat-box:nth-child(1),
  .impact-stat-box:nth-child(2),
  .impact-stat-box:nth-child(3),
  .impact-stat-box:nth-child(4) {
    grid-column: span 1;
  }

  .impact-stat-box:nth-child(5) {
    grid-column: span 2;
  }

  .stat-label {
    font-size: 18px;
  }

  .impact-stat-box:nth-child(5) .stat-text{
    max-width: 100%;
  }

  .stat-text {
    font-size: 18px;
    max-width: 380px;
  }
}

@media (max-width: 768px) {
  .impact-stats-section {
    padding: 80px 28px;
  }

  .impact-stats-title {
    margin-bottom: 40px;
  }

  /* .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  } */

  .impact-stat-box {
    padding: 28px;
  }

  /* .impact-stat-box:nth-child(1),
  .impact-stat-box:nth-child(2),
  .impact-stat-box:nth-child(3),
  .impact-stat-box:nth-child(4),
  .impact-stat-box:nth-child(5) {
    grid-column: span 1;
  } */

  .stat-label {
    font-size: 16px;
  }

  /* .stat-text {
    font-size: clamp(16px, 2.5vw, 20px);
  } */
}

/* @media (width: 768px) {
    .impact-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .impact-stat-box:nth-child(1),
  .impact-stat-box:nth-child(2),
  .impact-stat-box:nth-child(3),
  .impact-stat-box:nth-child(4) {
    grid-column: span 1;
  }

  .impact-stat-box:nth-child(5) {
    grid-column: span 2;
  }
} */

@media (max-width: 600px) {

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .impact-stat-box:nth-child(1),
  .impact-stat-box:nth-child(2),
  .impact-stat-box:nth-child(3),
  .impact-stat-box:nth-child(4),
  .impact-stat-box:nth-child(5) {
    grid-column: span 1;
  }

}

@media (max-width: 480px) {
  .impact-stats-section {
    padding: 60px 20px;
  }

  .impact-stats-title {
    margin-bottom: 32px;
  }

  .impact-stats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .impact-stat-box {
    padding: 24px;
    gap: 40px;
  }

  .stat-label {
    font-size: 16px;
  }

  .stat-text {
    font-size: 16px;
    max-width: 100%;
  }
}

/* ========== CTA SECTION ========== */
.cta-section {
  min-height: 100vh;
  width: 100%;
  background-color: #0A0A0A;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 60px 32px;
}

.cta-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 90vh;
  border-radius: 40px;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cta-background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 40px;
  z-index: 1;
}

.cta-video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(118.28% 118.28% at 50% 50%, #F06831 0%, rgba(240, 104, 49, 0.00) 100%);
  z-index: 2;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 3;
  max-width: 1200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  padding: 60px 30px;
}

.cta-heading {
  font-size: 96px;
  font-weight: var(--font-weight-medium);
  line-height: 105px;
  color: #FFFFFF;
  margin: 0;
}

/* .cta-orange {
  color: #F06831;
} */

.cta-action-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 24px 48px 24px 48px;
  background-color: var(--text-white);
  color: rgba(0, 0, 0);
  font-size: var(--alpha-button-large);
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: 100px;
  background-color: rgba(255, 255, 255);
  /* box-shadow: 0 0 40px 0 #F06831; */
  overflow: hidden;
  transition: all 0.3s ease;
}

.cta-action-button::before {
  content: '';
  position: absolute;
  left: 40px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #000;
    /* filter: drop-shadow(0 0 10px #F06831); */
  transition: all 0.6s ease-in-out;
  z-index: 0;
}

.cta-action-button:hover::before {
  transform: translateY(-50%) scale(80);
  left: 0;
}

.cta-action-button .button-text {
  position: relative;
  z-index: 10;
  margin-left: 36px;
  transition: all 0.5s ease;
}

.cta-action-button:hover .button-text {
  margin-left: 0;
  color: var(--text-white);
}

/* CTA Section - Mobile Responsive */
@media (max-width: 1024px) {
  .cta-video-container {
    border-radius: 24px;
    min-height: 90vh;
  }

  .cta-background-video {
    border-radius: 24px;
  }

  .cta-content {
    padding: 50px 24px;
  }

  .cta-heading {
    font-size: clamp(48px, 8vw, 96px);
    line-height: 1.1;
  }

  .cta-action-button {
    padding: 20px 40px 20px 56px;
  }

  .cta-action-button::before {
    left: 32px;
    width: 18px;
    height: 18px;
  }

  .cta-action-button .button-text {
    margin-left: 28px;
  }

  .cta-content {
    gap: 60px;
  }
}

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

  .cta-video-container {
    border-radius: 24px;
    min-height: 90vh;
  }

  .cta-background-video {
    border-radius: 24px;
  }

  .cta-content {
    padding: 40px 20px;
  }

  .cta-heading {
    font-size: clamp(36px, 10vw, 64px);
  }

  .cta-action-button {
    padding: 18px 32px 18px 32px;
    gap: 12px;
  }

  .cta-action-button::before {
    left: 24px;
    width: 12px;
    height: 12px;
  }

  .cta-action-button .button-text {
    margin-left: 20px;
  }

  .cta-content {
    gap: 40px;
  }
}

/* Responsive - Extra Large screens */
@media (min-width: 1921px) {
}

@media (min-width: 1800px) {
  header {
    padding: 28px 100px;
  }

  header.scrolled-dark,
  header.scrolled-light {
    padding: 18px 100px;
  }

  .logo img {
    height: 70px;
  }

  nav {
    gap: 10px;
    padding: 8px;
  }

  nav a {
    font-size: 16px;
    padding: 12px 24px;
  }

  .cta-button {
    font-size: 16px;
    padding: 16px 32px;
  }

  .hero {
    padding: 250px 120px 0;
  }

  .hero-subheadline {
    padding-bottom: 150px;
  }

  .hero-headline {
    font-size: 98px;
    max-width: var(--max-width-wide);
  }
  .hero-subheadline {
    /* font-size: 80px; */
    font-size: 64px;
    max-width: var(--max-width-wide);
  }

  nav a {
    font-size: 24px;
  }

  .cta-button {
    font-size: 20px;
    padding: 18px 36px;
  }

  .hero-subheadline .highlight-tag {
    padding: 14px 36px;
    /* border-radius: 18px; */
  }
}

/* Responsive - Large screens */
@media (min-width: 1400px) and (max-width: 1799px) {
  header {
    padding: 26px 80px;
  }

  header.scrolled-dark,
  header.scrolled-light {
    padding: 16px 80px;
  }

  .logo img {
    height: 34px;
  }

  .hero {
    padding: 160px 120px 0;
  }

  .hero-headline {
    font-size: 96px;
    max-width: var(--max-width-wide);
  }

  .hero-subheadline {
    font-size: 72px;
    max-width: var(--max-width);
    padding-bottom: 120px;
  }
}

/* Responsive - Tablets */
@media (max-width: 1024px) {
  header {
    padding: 20px 40px;
  }

  header.scrolled-dark,
  header.scrolled-light {
    padding: 14px 40px;
  }

  .logo img {
    height: 28px;
  }

  nav {
    gap: 4px;
    padding: 5px;
  }

  nav a {
    font-size: 14px;
    padding: 8px 16px;
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 14px;
  }

  .hero {
    padding: 160px 60px 0;
  }

  .hero-headline {
    margin-bottom: 52px;
    font-size: clamp(42px, 6vw, 72px);
  }

  .hero-subheadline {
    font-size: clamp(32px, 4.5vw, 56px);
    padding-bottom: 90px;
  }

  .hero-subheadline .highlight-tag {
    padding: 10px 28px;
    /* border-radius: 14px; */
  }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
  header {
    padding: 16px 20px;
  }

  header.scrolled-dark,
  header.scrolled-light {
    padding: 12px 20px;
  }

  .logo img {
    height: 36px;
  }

  nav {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
    gap: 7px;
    padding: 10px;
  }

  .mobile-menu-btn span {
    width: 32px;
    height: 3px;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .cta-button {
    padding: 14px 28px;
    font-size: 16px;
  }

  .hero {
    padding: 160px 28px 0;
  }

  .hero-headline {
    font-size: clamp(36px, 9vw, 54px);
    margin-bottom: 44px;
  }

  .hero-subheadline {
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.6;
    padding-bottom: 75px;
  }

  .hero-subheadline .highlight-tag {
    padding: 8px 22px;
    /* border-radius: 12px; */
  }

  .plus {
    margin: 0 8px;
  }

  .hero-subheadline br {
    display: none;
  }
}

/* Responsive - Small Mobile */
@media (max-width: 480px) {
  header {
    padding: 14px 16px;
  }

  header.scrolled-dark,
  header.scrolled-light {
    padding: 12px 16px;
  }

  .logo img {
    height: 32px;
  }

  .mobile-menu-btn {
    gap: 6px;
    padding: 8px;
  }

  .mobile-menu-btn span {
    width: 28px;
    height: 3px;
  }

  .mobile-menu-btn.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
  }

  .mobile-menu-btn.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
  }

  .cta-button {
    padding: 12px 24px;
    font-size: 15px;
  }

  .hero {
    padding: 0px 20px 0;
  }

  .hero-headline {
    font-size: clamp(32px, 8vw, 42px);
    margin-bottom: 36px;
  }

  .hero-subheadline {
    font-size: clamp(24px, 6vw, 32px);
    padding-bottom: 60px;
  }

  .hero-subheadline .highlight-tag {
    padding: 6px 18px;
    /* border-radius: 10px; */
  }
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Clients Grid (inside Impact Section) */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: var(--max-width);
  margin: 0 auto 80px;
}

.client-box {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  perspective: 1000px;
  overflow: hidden;
}

.client-flipper {
  position: relative;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.client-box.flipping .client-flipper {
  transform: rotateX(180deg);
}

.client-front,
.client-back {
  position: absolute;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.client-back {
  transform: rotateX(180deg);
}
.client-logo-img {
  width: 140px;
  height: 140px;
  object-fit: contain;
}

.client-logo {
  max-width: 140px;
  max-height: 40px;
  opacity: 0.7;
  filter: grayscale(100%) brightness(2);
  transition: opacity 0.3s ease;
}

.client-box:hover .client-logo {
  opacity: 1;
}

.client-logo-text {
  font-size: 20px;
  font-weight: 600;
  color: var(--text-white);
  opacity: 0.7;
  letter-spacing: normal;
  transition: opacity 0.3s ease;
}

.client-box:hover .client-logo-text {
  opacity: 1;
}

/* Clients Grid Responsive */
@media (min-width: 1800px) {
  .clients-grid {
    max-width: var(--max-width-wide);
    gap: 16px;
    margin-bottom: 100px;
  }

  .client-box {
    height: 120px;
    /* border-radius: 20px; */
  }

  .client-logo {
    max-width: 160px;
    max-height: 50px;
  }

  .client-logo-text {
    font-size: 24px;
  }
}

@media (max-width: 1024px) {
  .clients-grid {
    gap: 16px;
    margin-bottom: 60px;
  }

  .client-box {
    height: 90px;
    /* border-radius: 14px; */
  }

  .client-logo {
    max-width: 120px;
    max-height: 35px;
  }

  .client-logo-text {
    font-size: 18px;
  }
}

@media (max-width: 768px) {
  .clients-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    margin-bottom: 48px;
  }

  .client-box {
    height: 80px;
    /* border-radius: 12px; */
  }

  .client-logo {
    max-width: 100px;
    max-height: 30px;
  }

  .client-logo-text {
    font-size: 16px;
  }
  .client-logo-img {
    width: 100px;
    height: 100px;
  }
}

@media (max-width: 480px) {
  .clients-grid {
    gap: 12px;
    margin-bottom: 40px;
  }

  .client-box {
    height: 70px;
    /* border-radius: 10px; */
  }

  .client-logo {
    max-width: 80px;
    max-height: 25px;
  }

  .client-logo-text {
    font-size: 14px;
  }
}

/* Stats Section */
.stats-section {
  background-color: #ffffff;
  padding: 120px 80px;
}

.stats-headline {
  font-size: var(--h2-size);
  font-weight: var(--font-weight-bold);
  color: var(--bg-color);
  max-width: 1200px;
  margin: 0 auto 80px;
  text-align: center;
  line-height: 1.2;
  letter-spacing: normal;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.stat-card {
  background-color: #fff;
  border-bottom: solid 1px #000;
  border-radius: 0 !important;
  padding: 32px;
  position: relative;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
/* 
.stat-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
} */

.stat-card-icon {
  position: absolute;
  top: 24px;
  right: 24px;
  opacity: 0.6;
}

.stat-card-icon i {
  font-size: 40px;
  color: #000;
}

.stat-number {
  font-size: var(--h3-size);
  font-weight: var(--font-weight-bold);
  color: #000;
  margin-bottom: 12px;
  letter-spacing: normal;
}

.stat-description {
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
  line-height: 1.5;
}

/* Stats Section Responsive */
@media (min-width: 1800px) {
  .stats-section {
    padding: 160px 120px;
  }

  .stats-headline {
    max-width: 1000px;
    margin-bottom: 100px;
    font-size: 58px;
  }

  .stats-grid {
    max-width: var(--max-width-wide);
    gap: 32px;
  }

  .stat-card {
    padding: 40px;
    border-radius: 24px;
  }

  .stat-description {
    font-size: 18px;
  }
}

@media (max-width: 1024px) {
  .stats-section {
    padding: 100px 48px;
  }

  .stats-headline {
    margin-bottom: 60px;
  }

  .stats-grid {
    gap: 20px;
  }

  .stat-card {
    padding: 28px;
    border-radius: 16px;
  }

  .stat-description {
    font-size: 15px;
  }
}

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

  .stats-headline {
    margin-bottom: 48px;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .stat-card {
    padding: 24px;
  }

  .stat-card-icon {
    top: 18px;
    right: 18px;
    width: 20px;
    height: 20px;
  }

  .stat-description {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .stats-section {
    padding: 60px 20px;
  }

  .stats-headline {
    margin-bottom: 36px;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .stat-card {
    padding: 24px;
  }
}

/* Approach Section */
.approach-section {
  background-color: var(--bg-color);
  padding: 120px 80px;
}

.approach-header {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.approach-label {
  /* font-size: var(--h2-size); */
  font-size: 64px;
  font-weight: var(--font-weight-medium);
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: normal;
}

.approach-tagline {
  font-size: var(--body-large);
  font-weight: var(--font-weight-regular);
  color: var(--text-white);
  letter-spacing: normal;
  line-height: 1.6;
  max-width: 720px;
  margin: 0 auto;
}

.approach-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.approach-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 32px;
  transition: border-color 0.3s ease;
}

.approach-card:hover {
  border-color: rgba(255, 255, 255, 0.2);
}

.approach-card-title {
  font-size: var(--h4-size);
  font-weight: var(--font-weight-bold);
  color: var(--text-white);
  margin-bottom: 16px;
}

.approach-card-num {
color: rgba(136, 136, 136, 0.53);
font-family: Satoshi;
font-size: 20px;
font-style: normal;
font-weight: 500;
line-height: 90%;
margin-bottom: 16px;
}

.approach-card-description {
  font-size: var(--body);
  /* color: var(--text-gray); */
  color: #fff;
  font-weight: var(--font-weight-regular);
  line-height: 1.6;
  margin-bottom: 24px;
}

.approach-card-link {
  display: inline-block;
  padding: 12px 24px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-white);
  text-decoration: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.approach-card-link:hover {
  background: var(--accent-orange);
}

.approach-card-image {
  margin-top: 24px;
  border-radius: 8px;
  overflow: hidden;
  aspect-ratio: 16/10;
  background: rgba(255, 255, 255, 0.05);
}

.approach-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Approach Section Responsive */
@media (min-width: 1800px) {
  .approach-section {
    padding: 160px 120px;
  }

  .approach-header {
    max-width: 1000px;
    margin-bottom: 100px;
  }

  .approach-cards {
    max-width: var(--max-width-wide);
    gap: 32px;
  }

  .approach-card {
    padding: 40px;
  }
}

@media (max-width: 1024px) {
  .approach-section {
    padding: 100px 48px;
  }

  .approach-header {
    margin-bottom: 60px;
  }

  .approach-cards {
    gap: 20px;
  }

  .approach-card {
    padding: 28px;
  }
}

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

  .approach-header {
    margin-bottom: 48px;
  }

  .approach-cards {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

@media (max-width: 480px) {
  .approach-section {
    padding: 60px 20px;
  }

  .approach-header {
    margin-bottom: 36px;
  }

  .approach-card {
    padding: 24px;
  }
}

/* Case Studies Section */
.case-studies-section {
  background-color: #ffffff;
  padding: 120px 80px;
}

.case-studies-header {
  max-width: var(--max-width);
  margin: 0 auto 80px;
  text-align: center;
}

.case-studies-title {
  font-size: var(--alpha-heading-h1);
  font-weight: var(--font-weight-medium);
  color: var(--bg-color);
  letter-spacing: normal;
  margin-bottom: 16px;
}

.case-studies-subtitle {
  font-size: var(--alpha-body-medium);
  color: var(--bg-color);
  font-weight: var(--font-weight-regular);
  max-width: 470px;
  margin: 0 auto;
}

.case-studies-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 60px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.case-study-card {
  display: flex;
  flex-direction: column;
}

.case-study-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/3;
  border-radius: 40px;
  overflow: hidden;
  margin-bottom: 28px;
  background: #f5f5f5;
}

.case-study-image img,
.case-study-image video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.case-study-card:hover .case-study-image img,
.case-study-card:hover .case-study-image video {
  transform: scale(1.05);
}

.case-study-view-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(0, 0, 0, 0.6);
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 500;
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  text-decoration: none;
}

.case-study-card:hover .case-study-view-btn {
  opacity: 1;
  transform: translateY(0);
}

.case-study-title {
  font-size: var(--alpha-heading-h4);
  font-weight: var(--font-weight-medium);
  color: var(--bg-color);
  margin-bottom: 16px;
  letter-spacing: normal;
  /* text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 6px; */
}

.case-study-description {
  font-size: var(--alpha-body-medium);
  color: #0A0A0A;
  line-height: 1.6;
  margin-bottom: 20px;
  max-width: 615px;
}

.case-study-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.case-study-tag {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 50px;
  font-size: var(--alpha-body-small);
  color: #666666;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.case-study-tag:hover {
  background: #f5f5f5;
  border-color: #999999;
}

.case-study-tag.coming-soon {
  background: #fffbeb;
  border-color: #fde68a;
  color: #92400e;
}

/* Case Studies Responsive */
@media (min-width: 1800px) {
  .case-studies-section {
    padding: 160px 120px;
  }

  .case-studies-header {
    max-width: var(--max-width-wide);
    margin-bottom: 100px;
  }

  .case-studies-grid {
    max-width: var(--max-width-wide);
    gap: 80px 60px;
  }

  .case-study-image {
    margin-bottom: 36px;
  }
}

@media (max-width: 1024px) {
  .case-studies-section {
    padding: 100px 48px;
  }

  .case-studies-header {
    margin-bottom: 60px;
  }

  .case-studies-grid {
    gap: 48px 32px;
  }

  .case-study-image {
    margin-bottom: 24px;
    border-radius: 24px;
  }
}

@media (max-width: 768px) {
  .case-studies-section {
    padding: 80px 28px;
  }

  .case-studies-header {
    margin-bottom: 48px;
  }

  .case-studies-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .case-study-image {
    margin-bottom: 20px;
  }

  .case-study-view-btn {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .case-studies-section {
    padding: 60px 20px;
  }

  .case-studies-header {
    margin-bottom: 36px;
  }

  .case-studies-grid {
    gap: 40px;
  }

  /* .case-study-image {
    border-radius: 10px;
  } */

  .case-study-tag {
    padding: 6px 14px;
    font-size: 12px;
  }
}

/* Impact Section */
.impact-section {
  background-color: var(--bg-color);
  padding: 120px 80px;
  overflow: hidden;
}

.impact-header {
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.impact-title {
  font-size: var(--alpha-heading-h1);
  font-weight: var(--font-weight-medium);
  color: var(--text-white);
  letter-spacing: normal;
}

.impact-subtitle {
  font-size: var(--alpha-body-medium);
  font-weight: var(--font-weight-regular);
  color: #C2C2C2;
  margin-top: 16px;
  letter-spacing: normal;
}

.impact-slider-header {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
}

.impact-slider-text {
  flex: 1;
}

.impact-slider-title {
  font-size: var(--alpha-heading-h1);
  font-weight: var(--font-weight-medium);
  color: var(--text-white);
  letter-spacing: normal;
  margin-bottom: 8px;
}

.impact-slider-subtitle {
  font-size: var(--alpha-body-medium);
  color: #C2C2C2;
}

.impact-slider-nav {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-shrink: 0;
}

/* Impact Slider Pagination - Hidden on desktop, shown on mobile */
.impact-slider-pagination {
  display: none;
}

/* Swiper Slider */
.swiper-wrapper {
  display: flex;
  align-items: stretch;
}

.swiper-slide {
  width: auto; /* important for your card widths */
  cursor: grab;
  height: auto !important;
  display: flex !important;
}
.swiper-slide.swiper-slide-next,
.swiper-slide.swiper-slide-prev {
  cursor: grabbing;
}
.impact-slider-wrapper {
  width: 100%;
  padding: 50px 0;
  position: relative;
  overflow: visible !important;
}

.impact-slider {
  display: flex;
  /* gap: 24px; */
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  padding: 20px 0;
}

/* --- Arrows --- */
.swiper-button-prev,
.swiper-button-next {
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 10;
  background: #fff;
  border: 0px;
  color: #000 !important;
  border-radius: 100%;
  padding: 24px;
  backdrop-filter: blur(33px);
  -webkit-backdrop-filter: blur(33px);
}

.swiper-button-prev {
  left: 0px;
}
.swiper-button-next {
  right: 0px;
}

/* Arrows in header navigation */
.impact-slider-nav .swiper-button-prev,
.impact-slider-nav .swiper-button-next {
  position: static;
  transform: none;
  width: 56px;
  height: 56px;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.impact-slider-nav .swiper-button-prev::after,
.impact-slider-nav .swiper-button-next::after {
  font-size: 20px !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: clamp(1.25rem, 1.162rem + 0.2817vw, 1.5rem) !important;
}

/* Custom SVG arrow icons - override Swiper defaults */
.swiper-button-prev::after,
.swiper-button-next::after {
  content: '' !important;
  width: 30px;
  height: 30px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

/* Previous arrow - black for enabled state */
.swiper-button-prev::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M3.93875 14.9376L12.9388 5.93755C13.2205 5.65576 13.6027 5.49745 14.0013 5.49745C14.3998 5.49745 14.782 5.65576 15.0638 5.93756C15.3455 6.21935 15.5039 6.60154 15.5039 7.00006C15.5039 7.39857 15.3455 7.78076 15.0638 8.06256L8.625 14.4988L27 14.4988C27.3978 14.4988 27.7794 14.6568 28.0607 14.9381C28.342 15.2195 28.5 15.601 28.5 15.9988C28.5 16.3966 28.342 16.7782 28.0607 17.0595C27.7794 17.3408 27.3978 17.4988 27 17.4988L8.625 17.4988L15.0613 23.9388C15.343 24.2206 15.5014 24.6028 15.5014 25.0013C15.5014 25.3998 15.343 25.782 15.0613 26.0638C14.7795 26.3456 14.3973 26.5039 13.9988 26.5039C13.6002 26.5039 13.218 26.3456 12.9363 26.0638L3.93625 17.0638C3.79639 16.9243 3.68547 16.7585 3.60986 16.5759C3.53426 16.3934 3.49546 16.1977 3.49569 16.0002C3.49592 15.8026 3.53518 15.607 3.61122 15.4247C3.68725 15.2423 3.79856 15.0768 3.93875 14.9376Z' fill='black'/%3E%3C/svg%3E");
}

/* Next arrow - black for enabled state */
.swiper-button-next::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M28.0613 17.0624L19.0613 26.0624C18.7795 26.3442 18.3973 26.5025 17.9988 26.5025C17.6002 26.5025 17.218 26.3442 16.9363 26.0624C16.6545 25.7807 16.4961 25.3985 16.4961 24.9999C16.4961 24.6014 16.6545 24.2192 16.9363 23.9374L23.375 17.5012H5C4.60218 17.5012 4.22064 17.3432 3.93934 17.0619C3.65804 16.7806 3.5 16.399 3.5 16.0012C3.5 15.6034 3.65804 15.2218 3.93934 14.9405C4.22064 14.6592 4.60218 14.5012 5 14.5012H23.375L16.9387 8.0612C16.657 7.7794 16.4986 7.39721 16.4986 6.9987C16.4986 6.60018 16.657 6.21799 16.9387 5.9362C17.2205 5.6544 17.6027 5.49609 18.0012 5.49609C18.3998 5.49609 18.782 5.6544 19.0637 5.9362L28.0637 14.9362C28.2036 15.0757 28.3145 15.2415 28.3901 15.4241C28.4657 15.6066 28.5045 15.8023 28.5043 15.9998C28.5041 16.1974 28.4648 16.393 28.3888 16.5753C28.3127 16.7577 28.2014 16.9232 28.0613 17.0624Z' fill='black'/%3E%3C/svg%3E");
}

/* Previous arrow - white for disabled state */
.swiper-button-prev.swiper-button-disabled::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M3.93875 14.9376L12.9388 5.93755C13.2205 5.65576 13.6027 5.49745 14.0013 5.49745C14.3998 5.49745 14.782 5.65576 15.0638 5.93756C15.3455 6.21935 15.5039 6.60154 15.5039 7.00006C15.5039 7.39857 15.3455 7.78076 15.0638 8.06256L8.625 14.4988L27 14.4988C27.3978 14.4988 27.7794 14.6568 28.0607 14.9381C28.342 15.2195 28.5 15.601 28.5 15.9988C28.5 16.3966 28.342 16.7782 28.0607 17.0595C27.7794 17.3408 27.3978 17.4988 27 17.4988L8.625 17.4988L15.0613 23.9388C15.343 24.2206 15.5014 24.6028 15.5014 25.0013C15.5014 25.3998 15.343 25.782 15.0613 26.0638C14.7795 26.3456 14.3973 26.5039 13.9988 26.5039C13.6002 26.5039 13.218 26.3456 12.9363 26.0638L3.93625 17.0638C3.79639 16.9243 3.68547 16.7585 3.60986 16.5759C3.53426 16.3934 3.49546 16.1977 3.49569 16.0002C3.49592 15.8026 3.53518 15.607 3.61122 15.4247C3.68725 15.2423 3.79856 15.0768 3.93875 14.9376Z' fill='white'/%3E%3C/svg%3E");
}

/* Next arrow - white for disabled state */
.swiper-button-next.swiper-button-disabled::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' fill='none'%3E%3Cpath d='M28.0613 17.0624L19.0613 26.0624C18.7795 26.3442 18.3973 26.5025 17.9988 26.5025C17.6002 26.5025 17.218 26.3442 16.9363 26.0624C16.6545 25.7807 16.4961 25.3985 16.4961 24.9999C16.4961 24.6014 16.6545 24.2192 16.9363 23.9374L23.375 17.5012H5C4.60218 17.5012 4.22064 17.3432 3.93934 17.0619C3.65804 16.7806 3.5 16.399 3.5 16.0012C3.5 15.6034 3.65804 15.2218 3.93934 14.9405C4.22064 14.6592 4.60218 14.5012 5 14.5012H23.375L16.9387 8.0612C16.657 7.7794 16.4986 7.39721 16.4986 6.9987C16.4986 6.60018 16.657 6.21799 16.9387 5.9362C17.2205 5.6544 17.6027 5.49609 18.0012 5.49609C18.3998 5.49609 18.782 5.6544 19.0637 5.9362L28.0637 14.9362C28.2036 15.0757 28.3145 15.2415 28.3901 15.4241C28.4657 15.6066 28.5045 15.8023 28.5043 15.9998C28.5041 16.1974 28.4648 16.393 28.3888 16.5753C28.3127 16.7577 28.2014 16.9232 28.0613 17.0624Z' fill='white'/%3E%3C/svg%3E");
}

/* Ensure disabled buttons remain visible with white arrows */
.swiper-button-disabled {
  opacity: 1 !important;
  background-color: rgba(255, 255, 255, 0.20);
  cursor: not-allowed !important;
}

.slider-nav {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50%;
  background: none;
  border: none;
  z-index: 20;
  display: flex;
  align-items: center;
  pointer-events: none;
}

.slider-nav svg {
  width: 100px;
  height: 100px;
  fill: var(--text-white);
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: auto;
  cursor: pointer;
}

.slider-nav svg:hover {
  opacity: 1;
}

.slider-nav.prev {
  left: 0;
  justify-content: flex-start;
  padding-left: 40px;
}

.slider-nav.next {
  right: 0;
  justify-content: flex-end;
  padding-right: 40px;
}

.slider-nav.prev svg:hover {
  transform: translateX(-12px);
}

.slider-nav.next svg:hover {
  transform: translateX(12px);
}

/* Case Study Card */
.case-card,
.testimonial-card {
  min-height: 100% !important;
  display: flex;
  flex-direction: column;
}

.case-card {
  flex: 0 0 420px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  padding: 32px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  justify-content: flex-start !important;
}

.case-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.case-card-stat {
  font-size: var(--alpha-heading-h4);
  font-weight: var(--font-weight-medium);
  color: var(--text-white);
  margin-bottom: 24px;
  line-height: 1.2;
}

.case-card-image {
  width: 100%;
  height: 260px;
  background: #1a1a1a;
  border-radius: 40px;
  margin-bottom: 24px;
  overflow: hidden;
}

.case-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.case-card-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}

.case-card-logo img {
  height: 24px;
  width: auto;
}

.case-card-logo span {
  font-size: var(--alpha-heading-h5);
  font-weight: 400;
  color: var(--text-white);
}

.case-card-description {
  font-size: var(--alpha-body-small);
  color: #fff;
  font-weight: var(--font-weight-light);
  line-height: 1.6;
  margin-bottom: 20px;
}

.case-card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.case-tag {
  padding: 6px 14px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  font-size: var(--alpha-body-xs);
  color: var(--text-gray);
  transition: background 0.3s ease, color 0.3s ease;
}

.case-tag:hover {
  background: rgba(255, 255, 255, 0.15);
  color: var(--text-white);
}

/* Testimonial Card */
.testimonial-card {
  flex: 0 0 520px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 255, 255, 0.2);
}

.testimonial-logo {
  margin-bottom: 24px;
}

.testimonial-logo img {
  height: 28px;
  width: auto;
}

.testimonial-logo svg {
  height: 28px;
  width: auto;
  fill: var(--text-white);
}

.testimonial-quote {
  font-size: var(--alpha-body-medium);
  line-height: 1.5;
  color: var(--text-gray);
  margin-bottom: 32px;
}

.testimonial-quote strong {
  color: var(--text-white);
  font-weight: 500;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #333;
}

.testimonial-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.testimonial-info p {
  font-size: 14px;
  color: var(--text-gray);
}


@media (min-width: 1800px) {
  .impact-section {
    padding: 160px 120px;
  }

  .impact-header {
    max-width: var(--max-width-wide);
    margin-bottom: 80px;
  }

  .impact-slider-header {
    max-width: var(--max-width-wide);
    margin-bottom: 50px;
  }

  .case-card {
    flex: 0 0 480px;
    padding: 40px;
  }

  .testimonial-card {
    flex: 0 0 600px;
    padding: 48px;
  }

  .slider-nav svg {
    width: 120px;
    height: 120px;
  }

  .slider-nav.prev {
    padding-left: 60px;
  }

  .slider-nav.next {
    padding-right: 60px;
  }
}

@media (max-width: 1024px) {
  .impact-section {
    padding: 100px 48px;
  }

  .impact-header {
    margin-bottom: 48px;
  }

  .impact-slider-header {
    margin-bottom: 32px;
  }

  .case-card {
    flex: 0 0 360px;
    padding: 28px;
    border-radius: 24px;
  }

  .testimonial-card {
    flex: 0 0 440px;
    padding: 32px;
  }

  .slider-nav svg {
    width: 80px;
    height: 80px;
  }

  .slider-nav.prev {
    padding-left: 30px;
  }

  .slider-nav.next {
    padding-right: 30px;
  }
    .case-card-image {
    border-radius: 24px;
  }

}

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

  .impact-header {
    margin-bottom: 40px;
  }

  .impact-slider-header {
    margin-bottom: 28px;
  }

  /* .impact-slider {
    gap: 16px;
  } */

  .case-card {
    flex: 0 0 300px;
    padding: 24px;
  }

  .case-card-image {
    height: initial !important;
    max-height:200px !important;
  }


  .testimonial-card {
    flex: 0 0 320px;
    padding: 28px;
  }

  .slider-nav svg {
    width: 60px;
    height: 60px;
  }

  .slider-nav.prev {
    padding-left: 20px;
  }

  .slider-nav.next {
    padding-right: 20px;
  }
}

@media (max-width: 480px) {
  .impact-section {
    padding: 60px 20px;
  }

  .impact-slider-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 36px;
  }

  /* Hide navigation arrows on mobile */
  .impact-slider-nav {
    display: none;
  }

  /* Show pagination dots on mobile */
  .impact-slider-pagination {
    display: flex;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
  }

  .impact-slider-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.20);
    opacity: 1;
    margin: 0 !important;
    border-radius: 50%;
    transition: background 0.3s ease;
  }

  .impact-slider-pagination .swiper-pagination-bullet-active {
    background: #fff;
  }

  .case-card {
    flex: 0 0 280px;
    padding: 20px;
  }

  .case-card-image {
    height: initial !important;
    max-height:200px !important;
  }

  .testimonial-card {
    flex: 0 0 280px;
    padding: 24px;
  }

  .slider-nav {
    display: none;
  }
  /* .swiper-slide {
    width: 100% !important;
  } */
  .case-card,
  .testimonial-card {
    flex: 0 0 100% !important;
  }
}

/* Footer CTA Section */
/* Contact Section */
.contact-section {
  background-color: #ffffff;
  padding: 120px 80px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.contact-header {
  text-align: center;
  max-width: var(--max-width);
  margin: 0 auto 60px;
}

.contact-headline {
  font-size: var(--h2-size);
  font-weight: var(--font-weight-bold);
  color: var(--bg-color);
  line-height: 1.2;
  margin-bottom: 24px;
}

.contact-container {
  max-width: var(--max-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: start;
}

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

.contact-description {
  font-size: 22px;
  color: #666666;
  line-height: 1.6;
  margin-bottom: 40px;
}

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

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

.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-icon i {
  font-size: 24px;
  color: var(--bg-color);
}

.contact-item-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.contact-item-label {
  font-size: 14px;
  color: #888888;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.contact-item-value {
  font-size: 20px;
  color: var(--bg-color);
  font-weight: 500;
}

.contact-item-value a {
  color: var(--bg-color);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-value a:hover {
  color: var(--accent-orange);
}

.main-video {
  border-radius: 12px 12px 0 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Contact Form */
.contact-form-wrapper {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 24px;
  padding: 48px;
}

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

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

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

.form-group.full-width {
  grid-column: 1 / -1;
}

.form-label {
  font-size: 16px;
  font-weight: 500;
  color: var(--bg-color);
}

.form-input,
.form-textarea,
.form-select {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  padding: 18px 24px;
  font-size: 18px;
  font-family: 'DM Sans', sans-serif;
  color: var(--bg-color);
  transition: all 0.3s ease;
  outline: none;
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: #999999;
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--accent-orange);
  box-shadow: 0 0 0 3px rgba(240, 103, 48, 0.1);
}

.form-select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 48px;
}

.form-select option {
  background: #ffffff;
  color: var(--bg-color);
}

.form-textarea {
  min-height: 140px;
  resize: vertical;
}

.form-submit {
  background: var(--bg-color);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  padding: 20px 44px;
  font-size: 18px;
  font-weight: 600;
  font-family: 'DM Sans', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.form-submit:hover {
  background: var(--accent-orange);
}

.form-submit i {
  font-size: 20px;
}

.form-note {
  font-size: 13px;
  color: #888888;
  text-align: center;
  margin-top: 8px;
}

/* Form Success/Error States */
.form-message {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 14px;
  display: none;
}

.form-message.success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.3);
  color: #16a34a;
  display: block;
}

.form-message.error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  color: #dc2626;
  display: block;
}

/* Contact Section Responsive */
@media (min-width: 1800px) {
  .contact-section {
    padding: 160px 120px;
  }

  .contact-header {
    max-width: var(--max-width-wide);
    margin-bottom: 80px;
  }

  .contact-container {
    max-width: var(--max-width-wide);
  }
}

@media (max-width: 1024px) {
  .contact-section {
    padding: 100px 48px;
  }

  .contact-header {
    margin-bottom: 48px;
  }

  .contact-container {
    gap: 60px;
  }

  .contact-form-wrapper {
    padding: 40px;
  }
}

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

  .contact-header {
    margin-bottom: 40px;
  }

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

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

  .contact-details {
    align-items: flex-start;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .contact-form-wrapper {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  .contact-section {
    padding: 60px 20px;
  }

  .contact-form-wrapper {
    padding: 24px 20px;
  }

  .form-submit {
    width: 100%;
  }
}

/* ========== WORK PAGE STYLES ========== */

/* Work Hero Section */
.work-hero-section, .av-blog-wrap {
  background-color: #F2F2F2;
  padding: 200px 80px 120px;
}

.work-hero-title {
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-heading-h0);
  font-style: normal;
  font-weight: 500;
  line-height: 105%;
  margin: 0 0 24px 0;
}

.work-hero-text {
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 130%;
  margin: 0 0 48px 0;
}

.work-filters-wrapper {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.filter-label {
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-medium);
  font-style: normal;
  font-weight: 500;
  line-height: 150%;
}

.work-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 16px 32px;
  border-radius: 100px;
  background: rgba(0, 0, 0, 0.08);
  border: none;
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-medium);
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-btn:hover {
  background: rgba(0, 0, 0, 0.15);
}

.filter-btn.active {
  background: #F06831;
  color: #FFF;
}

/* Work Grid Section */
.work-grid-section {
  background-color: #F2F2F2;
  padding: 0px 80px 120px;
  min-height: 50vh;
}

.work-grid-section .case-studies-grid {
  min-height: 400px;
}

.work-grid-section .case-study-card {
  opacity: 0;
  transform: translateY(30px);
  will-change: opacity, transform;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.work-grid-section .case-study-card.loaded {
  opacity: 1;
  transform: translateY(0);
}

.loading-indicator {
  text-align: center;
  padding: 40px 0;
  opacity: 0.7;
}

.loading-indicator p {
  color: #000;
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 400;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}

/* Responsive Styles for Work Page */
@media (min-width: 1800px) {
  .work-hero-section, .av-blog-wrap {
    padding: 200px 120px 120px;
  }

  .work-grid-section {
    padding: 0px 120px 200px;
  }
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .work-hero-section, .av-blog-wrap {
    padding: 160px 120px 120px;
  }

  .work-grid-section {
    padding: 0px 120px 160px;
  }
}

@media (max-width: 1024px) {
  .work-hero-section, .av-blog-wrap {
    padding: 140px 48px 100px;
  }

  .work-grid-section {
    padding: 0px 48px 100px;
  }
/* 
  .work-hero-title {
    font-size: 64px;
  } */

  /* .work-hero-text {
    font-size: 20px;
  } */

  /* .filter-label {
    font-size: 20px;
  } */

  .filter-btn {
    /* font-size: 20px; */
    padding: 14px 28px;
  }
}

@media (max-width: 768px) {
  .work-hero-section, .av-blog-wrap {
    padding: 140px 28px 80px;
  }

  .work-grid-section {
    padding: 0px 28px 80px;
  }
/* 
  .work-hero-title {
    font-size: 48px;
  } */

  /* .work-hero-text {
    font-size: 18px;
  } */

  .work-filters-wrapper {
    flex-direction: column;
    align-items: flex-start;
  }

  /* .filter-label {
    font-size: 18px;
  } */

  .filter-btn {
    /* font-size: 18px; */
    padding: 12px 24px;
  }
}

@media (max-width: 480px) {
  .work-hero-section, .av-blog-wrap {
    padding: 140px 20px 60px;
  }

  .work-grid-section {
    padding: 0px 20px 60px;
  }

  /* .work-hero-title {
    font-size: 36px;
  } */

  /* .work-hero-text {
    font-size: 16px;
  } */

  /* .filter-label {
    font-size: 16px;
  } */

  .filter-btn {
    /* font-size: 16px; */
    padding: 10px 20px;
  }
}

/* ========== TEAM PAGE STYLES ========== */
.team-hero-section {
  background-color: #0A0A0A;
  padding: 250px 32px 80px 32px;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  justify-content: center;
  gap: 80px;
}

.team-hero-title {
  color: #FFF;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 96px;
  font-weight: 500;
  line-height: 105px;
  max-width: 860px;
  margin: 0 auto;
}

.team-highlight {
  color: #F06831;
}

.team-hero-image-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.team-hero-image {
  width: 100%;
  min-height: 638px;
  aspect-ratio: 32/11;
  border-radius: 40px;
  object-fit: cover;
}

/* Team Page Responsive Styles */
@media (min-width: 1800px) {
  .team-hero-section {
    padding: 250px 120px 80px;
  }
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .team-hero-section {
    padding: 250px 80px 80px;
  }
}

@media (max-width: 1024px) {
  .team-hero-section {
    padding: 180px 40px 60px;
    gap: 60px;
  }

  .team-hero-title {
    font-size: 72px;
    line-height: 80px;
  }

  .team-hero-image {
    min-height: 480px;
  }
}

@media (max-width: 768px) {
  .team-hero-section {
    padding: 140px 28px 60px;
    gap: 40px;
  }

  .team-hero-title {
    font-size: 48px;
    line-height: 54px;
  }

  .team-hero-image {
    min-height: 360px;
    border-radius: 24px;
  }
}

@media (max-width: 480px) {
  .team-hero-section {
    padding: 120px 20px 40px;
    gap: 32px;
  }

  .team-hero-title {
    font-size: 36px;
    line-height: 42px;
  }

  .team-hero-image {
    min-height: 280px;
    border-radius: 20px;
  }
}

/* ========== CULTURE SECTION ========== */
.culture-section {
  background-color: #F2F2F2;
  padding: 200px 0;
  overflow: hidden;
}

.culture-content {
  padding: 0 120px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-bottom: 64px;
}

.culture-title {
  color: #000;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 130%;
  margin: 0;
}

.culture-text {
  color: #000;
  text-align: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 130%;
  max-width: 769px;
  margin: 0;
}

.culture-slider {
  width: 100%;
  position: relative;
  margin-top: 180px;
}

.culture-slider-track {
  display: flex;
  align-items: center;
  gap: 16px;
  will-change: transform;
  /* Animation will be applied dynamically via JavaScript */
}

.culture-image {
  flex-shrink: 0;
  width: auto;
  height: auto;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(0); /* base state */

}

/* Applies to 1st, 10th, 19th... */
.culture-image:nth-child(9n+1) {
    transform: translateY(-27px);
}

/* Applies to 2nd, 11th, 20th... */
.culture-image:nth-child(9n+2) {
    transform: translateY(-100px);
}

/* Applies to 6th, 15th, 24th... */
.culture-image:nth-child(9n+6) {
    transform: translateY(-65px);
}

/* Applies to 8th, 17th, 26th... */
.culture-image:nth-child(9n+8) {
    transform: translateY(100px);
}

/* Applies to 9th, 18th, 27th... */
.culture-image:nth-child(9n) {
    transform: translateY(-40px);
}

.culture-image img {
  width: 100%;
  height: auto;
  display: block;
}


/* Keyframe animation generated dynamically by JavaScript based on actual image widths */

/* Culture Section Responsive Styles */
@media (min-width: 1800px) {
  .culture-content {
    padding: 0 120px;
  }
}

@media (min-width: 1400px) and (max-width: 1799px) {
  .culture-content {
    padding: 0 120px;
  }
}

@media (max-width: 1024px) {
  .culture-section {
    padding: 120px 0;
  }

  .culture-content {
    padding: 0 40px;
    margin-bottom: 48px;
  }

  .culture-title {
    font-size: 40px;
  }

  .culture-text {
    font-size: 20px;
  }

  .culture-image {
    width: auto;
  }
}

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

  .culture-content {
    padding: 0 28px;
    margin-bottom: 40px;
  }

  .culture-title {
    font-size: 32px;
  }

  .culture-text {
    font-size: 18px;
  }

  .culture-slider-track {
    gap: 16px;
  }

  .culture-image {
    width: auto;
    border-radius: 16px;
  }

  .culture-image:nth-child(6n+2) {
    margin-top: -32px;
  }

  .culture-image:nth-child(6n+3) {
    margin-top: 16px;
  }

  .culture-image:nth-child(6n+4) {
    margin-top: -16px;
  }

  .culture-image:nth-child(6n+5) {
    margin-top: 32px;
  }
}

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

  .culture-content {
    padding: 0 20px;
    margin-bottom: 32px;
  }

  .culture-title {
    font-size: 28px;
  }

  .culture-text {
    font-size: 16px;
  }

  .culture-image {
    width: auto;
  }

  .culture-image:nth-child(6n+2) {
    margin-top: -24px;
  }

  .culture-image:nth-child(6n+3) {
    margin-top: 12px;
  }

  .culture-image:nth-child(6n+4) {
    margin-top: -12px;
  }

  .culture-image:nth-child(6n+5) {
    margin-top: 24px;
  }
}

/* ========== TEAM SHOWCASE SECTION ========== */

.team-alt-wrapper {
    background-color: #0A0A0A;
    position: relative;
    padding: 200px 32px 200px 32px;
}

.team-alt-section {
    position: relative;
    min-height: 100vh;
}

.team-alt-container {
    position: relative;
}

/* Sticky Image Container - Sticky on Right */
.team-alt-sticky-wrapper {
    position: absolute;
    top: 0;
    right: 0px;
    width: 400px;
    height: 100%;
    z-index: 10;
    pointer-events: none;
}

.team-alt-image-container {
    position: sticky;
    top: 20vh;
    width: 400px;
    height: 500px;
    border-radius: 24px;
    overflow: hidden;
}

.team-alt-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 0.6s ease-in-out;
}

.team-alt-image.active {
    opacity: 1;
    z-index: 1;
}

/* Scrolling Names Container */
.team-alt-names-wrapper {
    position: relative;
    z-index: 5;
    padding: 300px 0 100px 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    width: 100%;
    align-items: center;
}

.team-alt-name-item {
    text-align: center;
    width: 100%;
}

.team-alt-name-item.in-view h2 {
    color: #F06831;
}

.team-alt-name-item h2 {
    font-family: 'Satoshi', sans-serif;
    font-size: 64px;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0;
    line-height: 130%;
    cursor: pointer;
    transition: color 0.4s ease-in-out;
}


/* Responsive Design */

/* Large Screens */
@media (max-width: 1400px) {
    .team-alt-wrapper {
        padding: 180px 32px;
    }

    .team-alt-image-container {
        width: 400px;
        height: 480px;
    }

    .team-alt-name-item h2 {
        font-size: 56px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .team-alt-wrapper {
        padding: 150px 32px;
    }

    .team-alt-image-container {
        top: 30vh;
        width: 320px;
        height: 400px;
    }

    .team-alt-names-wrapper {
        width: 100%;
        gap: 16px;
    }

    .team-alt-name-item h2 {
        font-size: 40px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .team-alt-wrapper {
        padding: 120px 20px;
    }

    /* Stack layout on mobile */
    .team-alt-sticky-wrapper {
        position: relative;
        width: 100%;
        height: auto;
        margin: 0 auto 60px;
    }

    .team-alt-image-container {
        position: relative;
        top: 0;
        width: 100%;
        max-width: 300px;
        height: 380px;
        margin: 0 auto;
    }

    .team-alt-names-wrapper {
        max-width: 100%;
        padding: 40px 0;
        gap: 16px;
    }

    .team-alt-name-item {
        text-align: center;
    }

    .team-alt-name-item h2 {
        font-size: 32px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .team-alt-wrapper {
        padding: 100px 20px;
    }

    .team-alt-sticky-wrapper {
        margin-bottom: 40px;
    }

    .team-alt-image-container {
        max-width: 260px;
        height: 320px;
    }

    .team-alt-names-wrapper {
        padding: 30px 0;
    }

    .team-alt-name-item h2 {
        font-size: 28px;
    }
}


/* Footer */
.footer {
  background-color: #0A0A0A;
  padding: 80px 80px 50px;
}

.footer-main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  max-width: var(--max-width);
  margin: 0 auto;
  gap: 80px;
}

.footer-brand-section {
  flex: 1;
  max-width: 400px;
}

.footer-logo img {
  height: 70px;
  width: auto;
}

.footer-tagline {
  font-size: var(--alpha-body-medium);
  font-weight: var(--font-weight-regular);
  color: #FFFFFF;
  line-height: 1.6;
  margin-top: 25px;
}

.footer-social {
  display: flex;
  gap: 12px;
  margin-top: 50px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #FFFFFF;
  color: #000100;
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-orange);
  color: #fff;
}

.social-link svg {
  width: 20px;
  height: 20px;
}

.footer-nav-section {
  display: flex;
  gap: 80px;
}

.footer-nav-section .footer-nav-group {
  width: calc(33.33% - 40px);
}
.footer-nav-section .footer-nav-group:last-child {
  width: calc(66.66% - 40px);
}

.footer-nav-group h4 {
  font-size: var(--alpha-heading-h5);
  font-weight: var(--font-weight-medium);
  color: #FFFFFF;
  margin-bottom: 40px;
  letter-spacing: 0.05em;
  /* text-transform: uppercase; */
}

.footer-nav-group ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-nav-group ul li a {
  color: #FFFFFF;
  font-weight: var(--font-weight-regular);
  text-decoration: none;
  font-size: var(--alpha-body-medium);
  transition: color 0.3s ease;
}

.footer-nav-group ul li a:hover {
  color: var(--accent-orange);
}

.footer-bottom {
  max-width: var(--max-width);
  margin: 50px auto 0;
  padding-top: 30px;
  border-top: 1px solid #858585;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-copyright {
  color: #858585;
  font-size: var(--alpha-body-medium);
}

.footer-legal {
  display: flex;
  gap: 28px;
}

.footer-legal a {
  color: #858585;
  text-decoration: none;
  font-size: var(--alpha-body-medium);
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: #ffffff;
}

/* Footer Responsive */
@media (min-width: 1800px) {
  .footer-cta {
    padding: 160px 120px;
  }

  .footer-cta .highlight-tag {
    padding: 22px 60px;
    font-size: 24px;
  }

  .footer {
    padding: 100px 120px 60px;
  }

  .footer-main {
    max-width: var(--max-width-wide);
    gap: 120px;
  }

  .footer-brand-section {
    max-width: 450px;
  }

  /* .footer-tagline {
    font-size: 20px;
  } */

  .footer-nav-section {
    gap: 100px;
  }
  .footer-nav-section .footer-nav-group {
    width: calc(33.33% - 50px);
  }
  .footer-nav-section .footer-nav-group:last-child {
    width: calc(66.66% - 50px);
  }

  .footer-bottom {
    max-width: var(--max-width-wide);
  }
}

@media (max-width: 1024px) {
  .footer-cta {
    padding: 100px 48px;
  }

  .footer-cta-headline {
    margin-bottom: 40px;
  }

  .footer {
    padding: 60px 48px 40px;
  }

  .footer-main {
    gap: 60px;
  }

  .footer-nav-section {
    gap: 50px;
  }

  .footer-nav-section .footer-nav-group {
    width: calc(33.33% - 25px);
  }
  .footer-nav-section .footer-nav-group:last-child {
    width: calc(66.66% - 25px);
  }
}

@media (max-width: 768px) {
  .footer-cta {
    padding: 80px 28px;
  }

  .footer-cta-headline {
    margin-bottom: 36px;
  }

  .footer-cta .highlight-tag {
    padding: 16px 40px;
    font-size: 18px;
  }

  .footer {
    padding: 50px 28px 40px;
  }

  .footer-main {
    flex-direction: column;
    gap: 48px;
  }

  .footer-brand-section {
    max-width: 100%;
  }

  .footer-nav-section {
    width: 100%;
    justify-content: flex-start;
    gap: 60px;
  }

  .footer-nav-section .footer-nav-group {
    width: calc(50% - 30px);
  }
  .footer-nav-section .footer-nav-group:last-child {
    width: calc(50% - 30px);
  }
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  .footer-logo img {
  height: 55px;
}
}

@media (max-width: 480px) {
  .footer-cta {
    padding: 60px 20px;
  }

  .footer-cta .highlight-tag {
    padding: 14px 32px;
    font-size: 16px;
  }

  .footer {
    padding: 40px 20px 30px;
  }

  .footer-main {
    gap: 40px;
  }

  .footer-nav-section {
    gap: 40px;
  }

  .footer-nav-section .footer-nav-group {
    width: calc(50% - 20px);
  }
  .footer-nav-section .footer-nav-group:last-child {
    width: calc(50% - 20px);
  }

  /* .footer-tagline {
    font-size: 16px;
  } */

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

.swiper a{
  text-decoration: none !important;
}
/* ========== CTA PAGE STYLES ========== */

/* Additional styles specific to CTA page */
body {
    background-color: #0A0A0A;
}

/* Override header to be always dark on this page */
header {
    background-color: rgba(10, 10, 10, 0.95);
}

/* header.scrolled-dark,
header.scrolled-light {
    background-color: rgba(10, 10, 10, 0.95);
} */

header.scrolled-dark {
    background-color: rgba(10, 10, 10, 0.95);
}

/* CTA Section specific overrides */
.cta-section {
    min-height: 100vh;
}

/* .cta-video-container {
    min-height: 100vh;
    position: relative;
} */

/* Heading Wrapper - Centered Initially */
.cta-heading-wrapper {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
}

.cta-heading-line1,
.cta-heading-line2 {
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-heading-h0);
    font-weight: 500;
    line-height: 120%;
    color: #FFFFFF;
    margin: auto;
    white-space: nowrap;
    width: fit-content;
    text-align: center;
}

.cta-button-container {
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

/* Two Column Layout (Hidden Initially) */
.cta-two-column {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    gap: min(110px, 6vw);
    width: 100%;
    height: 100%;
    padding: 32px;
    opacity: 0;
    visibility: hidden;
    z-index: 5;
}

.cta-left-column {
    flex: 0 1 640px;
    display: flex;
    flex-direction: column;
}

.cta-right-column {
    flex: 1 1 640px;
    display: flex;
    flex-direction: column;
    perspective: 1500px;
    perspective-origin: center center;
    overflow: hidden;
}

/* Chat Container */
.chat-container {
    background: #F2F2F2;
    border-radius: 40px;
    /* padding: 32px; */
    height: 100%;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.7s ease-in-out;
    transform-style: preserve-3d;
    overflow: hidden;
}

.chat-container.flipped {
    transform: rotateY(180deg);
}

/* Chat Header */
.chat-header {
    display: flex;
    gap: 24px;
    /* margin-bottom: 32px; */
    background: #DFDFDF;
    padding: 24px 40px;
    border-radius: 40px 40px 0 0;
    align-items: center;
}

.chat-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

.chat-header-text {
    flex: 1;
}

.chat-title {
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-heading-h4);
    font-weight: 500;
    line-height: 130%;
    margin: 0 0 4px 0;
}

.chat-subtitle {
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-body-small);
    font-weight: 400;
    line-height: 130%;
    margin: 0;
}

/* Chat Messages Area */
.chat-messages {
    flex: 1;
    overflow-y: auto;
    /* margin-bottom: 24px; */
    padding: 32px 32px 16px 32px;
    scrollbar-gutter: stable;
}

/* Custom Scrollbar Styling */
/* .chat-messages::-webkit-scrollbar {
    width: 6px;
    height: 0px;
}

.chat-messages::-webkit-scrollbar-track {
    background: #DFDFDF;
    border-radius: 10px;
    margin: 0;
}

.chat-messages::-webkit-scrollbar-thumb {
    background: #F06831;
    border-radius: 10px;
}

.chat-messages::-webkit-scrollbar-thumb:hover {
    background: #d85a28;
} */

/* Hide scrollbar arrows/buttons - AGGRESSIVE APPROACH */
/* .chat-messages::-webkit-scrollbar-button {
    display: none !important;
    -webkit-appearance: none !important;
} */


/* Scrollbar width */
.chat-messages::-webkit-scrollbar {
  width: 12px;
}

/* Scrollbar thumb */
.chat-messages::-webkit-scrollbar-thumb {
  cursor: pointer;
  border-radius: 9999px; /* rounded-full */
  border: 3px solid transparent;
  background-color: #858585; /* bg-blue-200 */
  background-clip: padding-box;
}

/* Scrollbar track */
.chat-messages::-webkit-scrollbar-track {
  margin-top: 0.125rem;  /* my-0.5 */
  margin-bottom: 0.125rem;
  cursor: pointer;
  background-color: transparent;
}

/* Firefox scrollbar styling */
/* .chat-messages {
    scrollbar-width: thin;
    scrollbar-color: #F06831 #DFDFDF;
} */

.chat-message {
    margin-bottom: 16px;
}

.chat-message p {
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-body-medium);
    font-weight: 400;
    line-height: 130%;
    max-width: 450px;
    width: fit-content;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;

    border-radius: 40px 40px 40px 0px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    padding: 18px 40px;

}

.chat-message.bot-message p{
    max-width: 810px;
}

.chat-message.bot-message ol,
.chat-message.bot-message ul {
    margin: 8px 0;
    padding-left: 20px;
}

.chat-message.bot-message li {
    margin-bottom: 4px;
}

.chat-message.bot-message strong {
    font-weight: 600;
}

/* Chat Buttons */
.chat-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.chat-btn {
    display: flex;
    padding: 16px 24px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 100px;
    background: rgba(240, 104, 49, 0.08);
    color: #F06831;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-body-medium);
    font-weight: 500;
    line-height: 130%;
    border: none;
    cursor: pointer;
    transition: background 0.3s ease;
}

.chat-btn:hover {
    background: rgba(240, 104, 49, 0.15);
}

/* Chat Options (for email flow) */
.chat-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 16px;
}

.chat-option-btn {
    display: inline-flex;
    padding: 12px 24px;
    justify-content: center;
    align-items: center;
    border-radius: 40px;
    background: rgba(240, 104, 49, 0.08);
    color: #F06831;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-body-small);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
}

.chat-option-btn:hover {
    background: rgba(240, 104, 49, 0.2);
    border-color: var(--primary-orange);
}

.chat-option-btn:disabled {
    cursor: default;
}

.chat-option-btn.selected {
    background: var(--accent-orange);
    color: white;
    border-color: var(--primary-orange);
}

/* User Message */
.user-message {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.user-message-pill {
    display: inline-flex;
    padding: 18px 40px;
    align-items: flex-start;
    gap: 10px;
    border-radius: 40px 40px 0px 40px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: #FFF;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-body-medium);
    font-weight: 400;
    line-height: 130%;
    max-width: 450px;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    white-space: normal;
    hyphens: auto;
}

/* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 8px;
    padding: 16px 24px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    width: fit-content;
}

.typing-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #888;
    animation: typingAnimation 1.4s infinite;
}

.typing-dot:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typingAnimation {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

/* Status Indicator (for AI processing) */
.status-indicator {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 20px;
    background: rgba(0, 0, 0, 0.03);
    border-radius: 16px;
    width: fit-content;
}

.status-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-icon .spinner {
    width: 16px;
    height: 16px;
    border: 2px solid rgba(0, 0, 0, 0.1);
    border-top-color: #000;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.status-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 14px;
    color: #666;
    font-style: italic;
}

/* Streaming indicator - removed ugly cursor */

/* Chat Input */
.chat-input-wrapper {
    margin-top: auto;
    padding: 0px 32px 32px 32px;
}

.chat-input-container {
    display: flex;
    padding: 16px 32px;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    border-radius: 100px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #FFF;
    width: 100%;
}

.chat-input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-body-medium);
    font-weight: 400;
    line-height: 130%;
}

.chat-input::placeholder {
    color: #888;
}

.mic-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
}

.mic-waves {
    display: flex;
    align-items: center;
    gap: 2px;
    height: 20px;
}

.mic-waves span {
    display: block;
    width: 3px;
    background: #F06831;
    border-radius: 2px;
    animation: micWave 0.8s ease-in-out infinite;
}

.mic-waves span:nth-child(1) { height: 6px;  animation-delay: 0s; }
.mic-waves span:nth-child(2) { height: 12px; animation-delay: 0.1s; }
.mic-waves span:nth-child(3) { height: 18px; animation-delay: 0.2s; }
.mic-waves span:nth-child(4) { height: 12px; animation-delay: 0.3s; }
.mic-waves span:nth-child(5) { height: 6px;  animation-delay: 0.4s; }

@keyframes micWave {
    0%, 100% { transform: scaleY(0.5); opacity: 0.6; }
    50%       { transform: scaleY(1.2); opacity: 1; }
}

.send-btn {
    background: var(--bg-color);
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s ease;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    flex-shrink: 0;
}


.send-btn img {
    width: 48px;
    height: 48px;
}

/* COMMENTED OUT: Email form CSS - Planning to use for chat assistant integration */
/* Chat Flip Back */
/* .chat-flip-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #F2F2F2;
    border-radius: 40px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    transform: rotateY(180deg);
    backface-visibility: hidden;
    overflow: hidden;
} */

/* Scrollbar styling for flip back */
/* .chat-flip-back::-webkit-scrollbar {
    width: 6px;
    height: 0px;
}

/* .chat-flip-back::-webkit-scrollbar-track {
    background: #DFDFDF;
    border-radius: 10px;
    margin: 0;
}

.chat-flip-back::-webkit-scrollbar-thumb {
    background: #F06831;
    border-radius: 10px;
}

.chat-flip-back::-webkit-scrollbar-thumb:hover {
    background: #d85a28;
} */

/* Hide scrollbar arrows/buttons - AGGRESSIVE APPROACH */
/* .chat-flip-back::-webkit-scrollbar-button {
    display: none !important;
    -webkit-appearance: none !important;
} */

/* Firefox scrollbar styling for flip back */
/* .chat-flip-back {
    scrollbar-width: thin;
    scrollbar-color: #F06831 #DFDFDF;
} */

/* Scrollbar styling for form fields wrapper */
/* .form-fields-wrapper::-webkit-scrollbar {
  width: 12px;
} */

/* Scrollbar thumb */
/* .form-fields-wrapper::-webkit-scrollbar-thumb {
  cursor: pointer;
  border-radius: 9999px;
  border: 3px solid transparent;
  background-color: #bfdbfe;
  background-clip: padding-box;
} */

/* Scrollbar track */
/* .form-fields-wrapper::-webkit-scrollbar-track {
  margin-top: 0.125rem;
  margin-bottom: 0.125rem;
  cursor: pointer;
  background-color: transparent;
} */

/* Back to Chat Button */
/* .back-to-chat-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    background: none;
    border: none;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 130%;
    cursor: pointer;
    padding: 0;
    margin-bottom: 34px;
    transition: opacity 0.2s ease;
    width: fit-content;
    flex-shrink: 0;
}

.back-to-chat-btn:hover {
    opacity: 0.7;
}

.back-to-chat-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
} */

/* Form Content */
/* .form-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.email-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    overflow: hidden;
} */

/* Scrollable form fields wrapper */
/* .form-fields-wrapper {
    display: flex;
    flex-direction: column;
    gap: 24px;
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 8px;
    scrollbar-gutter: stable;
} */

/* Form Row (for Name and Email) */
/* .form-row {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
} */

/* Form Field */
/* .form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.field-label {
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 500;
    line-height: 130%;
}

.field-input,
.field-textarea {
    padding: 24px 32px;
    border-radius: 40px;
    border: 1px solid rgba(0, 0, 0, 0.12);
    background: #FFF;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    outline: none;
    transition: border-color 0.2s ease;
}

.field-input::placeholder,
.field-textarea::placeholder {
    color: #888;
}

.field-input:focus,
.field-textarea:focus {
    border-color: #F06831;
}

.field-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Satoshi', sans-serif;
} */

/* Pills */
/* .pill-group {
    display: flex;
    padding: 16px 0px;
    flex-wrap: wrap;
    gap: 8px;
}

.pill-btn {
    padding: 16px 32px;
    border-radius: 100px;
    background: rgba(0, 0, 0, 0.08);
    border: none;
    color: #000;
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 150%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pill-btn:hover {
    background: rgba(0, 0, 0, 0.12);
}

.pill-btn.active {
    background: #F06831;
    color: #FFF;
} */

/* Submit Button */
/* .form-submit-btn {
    display: flex;
    padding: 24px 80px;
    justify-content: center;
    align-items: center;
    gap: 16px;
    border-radius: 100px;
    background: #000;
    border: none;
    color: #FFF;
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 700;
    line-height: 150%;
    cursor: pointer;
    margin-top: 24px;
    transition: background 0.3s ease;
    align-self: center;
    flex-shrink: 0;
}

.form-submit-btn:hover {
    background: #333;
}

.form-submit-btn svg {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
} */

/* Success Message */
/* .success-message {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 16px;
}

.success-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    margin: 0;
}

.success-text {
    font-family: 'Satoshi', sans-serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 130%;
    color: #000;
    margin: 0;
} */

/* Responsive adjustments */
/* Below 1160px: Two-column layout shown from start */
@media (max-width: 1160px) {
    .cta-left-column .cta-heading-line1,
    .cta-left-column .cta-heading-line2 {
        font-size: 64px;
    }

    .cta-left-column {
        justify-content: center;
    }
        .cta-two-column {
        flex-direction: column;
        gap: 24px;
        height: 100%;
    }
        .cta-left-column {
        flex: 0;
    }
}

@media (max-width: 1110px) {
    .cta-left-column .cta-heading-line1,
    .cta-left-column .cta-heading-line2 {
        font-size: var(--alpha-heading-h0) !important;
    }
}

@media (max-width: 1024px) {
    /* .cta-video-container {
        min-height: 100vh;
    } */

    .cta-left-column {
        flex: 0;
    }

    .cta-two-column {
        flex-direction: column;
        gap: 24px;
        height: 100%;
    }

    .cta-right-column {
        flex: 1;
        min-height: 0;
    }

    .chat-container {
        min-height: 500px;
        height: 100%;
    }


    /* .cta-heading-line1,
    .cta-heading-line2,
    .cta-left-column .cta-heading-line1,
    .cta-left-column .cta-heading-line2 {
        font-size: 64px;
    } */

    /* .chat-title {
        font-size: 28px;
    } */

    /* .chat-subtitle {
        font-size: 18px;
    } */

    /* .chat-message p,
    .chat-btn,
    .user-message-pill,
    .chat-input {
        font-size: 20px;
    } */

    /* Form responsive */
    .field-label {
        font-size: 20px;
    }

    .field-input,
    .field-textarea,
    .pill-btn {
        font-size: 20px;
        padding: 20px 28px;
    }

    .pill-btn {
        padding: 14px 28px;
    }

    .form-submit-btn {
        font-size: 20px;
        padding: 20px 60px;
    }

    .success-title {
        font-size: 28px;
    }

    .success-text {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    /* .cta-video-container {
        min-height: 100vh;
    } */

    .cta-two-column {
        padding: 20px;
    }

    /* .cta-heading-line1,
    .cta-heading-line2,
    .cta-left-column .cta-heading-line1,
    .cta-left-column .cta-heading-line2 {
        font-size: 48px;
    } */

    .chat-container {
        /* padding: 24px; */
        border-radius: 24px;
        min-height: 500px;
    }

    .chat-icon {
        width: 40px;
        height: 40px;
    }

    .chat-header {
        gap: 16px;
        border-radius: 24px 24px 0px 0px;
    }


    .send-btn img {
    width: 42px;
    height: 42px;
}
/* 
    .chat-title {
        font-size: 24px;
    } */
/* 
    .chat-subtitle {
        font-size: 16px;
    } */

    /* .chat-message p,
    .chat-btn,
    .user-message-pill {
        font-size: 18px;
    }

    .chat-input {
        font-size: 18px;
    } */

    .chat-buttons {
        gap: 12px;
    }

    .chat-btn {
        padding: 12px 20px;
    }

    .user-message-pill {
        padding: 20px 32px;
    }

    /* Form responsive - COMMENTED OUT */
    /* .chat-flip-back {
        padding: 24px;
    }

    .back-to-chat-btn {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .back-to-chat-btn svg {
        width: 28px;
        height: 28px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .email-form {
        gap: 20px;
    }

    .field-label {
        font-size: 18px;
    }

    .field-input,
    .field-textarea,
    .pill-btn {
        font-size: 18px;
        padding: 18px 24px;
    }

    .pill-btn {
        padding: 12px 24px;
    }

    .form-submit-btn {
        font-size: 18px;
        padding: 18px 50px;
        margin-top: 32px;
        gap: 12px;
    }

    .form-submit-btn svg {
        width: 28px;
        height: 28px;
    }

    .success-title {
        font-size: 24px;
    }

    .success-text {
        font-size: 18px;
    } */
}

@media (max-width: 480px) {
    .cta-video-container {
        min-height: 90vh;
    }

    .cta-heading-line1,
    .cta-heading-line2,
    .cta-left-column .cta-heading-line1,
    .cta-left-column .cta-heading-line2 {
        font-size: var(--alpha-heading-h1);
    }

    .chat-container {
        /* padding: 20px; */
        border-radius: 20px;
        min-height: 450px;
    }


    .send-btn img {
    width: 38px;
    height: 38px;
}

.chat-messages {
    padding: 16px 24px 16px 24px;
}

.chat-header {
    padding: 16px 24px;
}
    /* .chat-title {
        font-size: 20px;
    } */

    /* .chat-subtitle {
        font-size: 14px;
    } */

    /* .chat-message p,
    .chat-btn,
    .user-message-pill {
        font-size: 16px;
    }

    .chat-input {
        font-size: 16px;
    } */

    /* Form responsive - COMMENTED OUT */
    /* .chat-flip-back {
        padding: 20px;
    }

    .back-to-chat-btn {
        font-size: 16px;
        margin-bottom: 16px;
        gap: 8px;
    }

    .back-to-chat-btn svg {
        width: 24px;
        height: 24px;
    }

    .email-form {
        gap: 16px;
    }

    .form-field {
        gap: 6px;
    }

    .field-label {
        font-size: 16px;
    }

    .field-input,
    .field-textarea {
        font-size: 16px;
        padding: 16px 20px;
    }

    .pill-btn {
        font-size: 16px;
        padding: 10px 20px;
    }

    .form-submit-btn {
        font-size: 16px;
        padding: 16px 40px;
        margin-top: 24px;
        gap: 10px;
    }

    .form-submit-btn svg {
        width: 24px;
        height: 24px;
    }

    .success-title {
        font-size: 20px;
    }

    .success-text {
        font-size: 16px;
    } */
}

/* ========== PROCESS STICKY SECTION ========== */
.process-sticky-section {
  background: #0A0A0A;
  width: 100%;
  position: relative;
  overflow: clip;
}

/* Header */
.process-sticky-header {
  padding: 160px 120px;
}

.process-sticky-title {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-heading-h0);
  font-weight: 500;
  line-height: 110%;
  color: #fff;
  margin: 0 0 40px 0;
}

.process-sticky-title span {
  color: #F06831;
}

.process-sticky-text {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-medium);
  font-weight: 400;
  line-height: 130%;
  color: #fff;
  margin: 0;
  max-width: 800px;
}

/* Sticky container - creates scroll space for animation */
.process-sticky-container {
  position: relative;
  height: 300vh; /* 100vh per item */
  overflow: visible;
}

.process-sticky-container > .container {
  height: 100%;
  overflow: visible;
}

.process-sticky-wrapper {
  position: sticky;
  top: 0;
  height: 105vh; /* Extra 5vh pushes bottom off-screen while sticky */
  display: flex;
  gap: 60px;
  align-items: stretch;
  box-sizing: border-box;
  overflow: visible;
  border-top: 1px solid rgba(255, 255, 255, 0.80);
  border-left: 1px solid rgba(255, 255, 255, 0.80);
  border-bottom: 1px solid rgba(255, 255, 255, 0.80);
  border-radius: 40px 0px 0px 40px;
}

/* Extend borders to the right edge of viewport */
.process-sticky-wrapper::after {
  content: '';
  position: absolute;
  right: 0;
  top: -1px;
  bottom: -1px;
  width: calc(50vw - 50% + 48px); /* Extends to viewport edge */
  border-top: 1px solid rgba(255, 255, 255, 0.80);
  border-bottom: 1px solid rgba(255, 255, 255, 0.80);
  transform: translateX(100%);
  pointer-events: none;
  box-sizing: border-box;
}

/* Left side - Video */
.process-sticky-left {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  /* padding-right: 24px; */
}

.process-video-container {
  position: relative;
  width: 100%;
  /* max-width: 600px; */
  aspect-ratio: 319 / 253;
  border-radius: 40px;
  overflow: hidden;
  background: #1a1a1a;
  margin-left: -160px;
}

.process-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.process-video.active {
  opacity: 1;
}

/* Right side - Content with scrolling items */
.process-sticky-right {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.process-content-items {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  will-change: transform;
}

/* Content item - full height, centered */
.process-content-item {
  height: 105vh; /* Match wrapper height for proper centering */
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

/* Video inside each card - hidden on desktop, shown on tablet/mobile */
.process-item-video {
  display: none;
}

.process-item-label {
  display: flex;
  align-items: top;
  gap: 12px;
  margin-bottom: 40px;
}

.process-item-label span {
  font-family: 'Satoshi', sans-serif;
font-size: var(--alpha-heading-h4);
font-style: normal;
font-weight: 500;
  color: #E0E0E0;
}

.process-star-icon {
  width: 24px;
  height: 24px;
}

.process-item-title {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-heading-h1);
  font-weight: 500;
  line-height: 110%;
  color: #fff;
  margin: 0 0 48px 0;
}

.process-item-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.12);
  margin-bottom: 24px;
}

.process-item-text {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-medium);
  font-weight: 400;
  line-height: 150%;
  color: #A3A3A3;
  margin: 0;
  /* max-width: 500px; */
}

/* Responsive - Process Sticky Section */

@media (min-width: 1800px) {
  .process-sticky-header {
    padding: 160px 120px;
  }
}

@media (max-width: 1200px) {
  /* .process-sticky-title {
    font-size: 72px;
  }

  .process-sticky-text {
    font-size: 20px;
  }

  .process-item-title {
    font-size: 48px;
  } */

  .process-sticky-left {
    padding-right: 24px;
  }
}

/* iPad devices - Grid layout instead of sticky scroll */
@media (min-width: 768px) and (max-width: 1024px) {
  .process-sticky-section {
    padding-bottom: 0 !important;
    overflow: hidden;
  }

  .process-sticky-header {
    padding: 80px 48px 60px 48px;
  }

  .process-sticky-container {
    height: auto !important;
    padding: 0 48px 80px 48px;
    overflow: hidden;
  }

  .process-sticky-container > .container {
    height: auto !important;
    overflow: hidden;
  }

  .process-sticky-wrapper {
    position: relative !important;
    top: auto !important;
    flex-direction: row;
    gap: 20px;
    border: none;
    height: 100% !important;
  }

  .process-sticky-wrapper::before,
  .process-sticky-wrapper::after {
    display: none;
  }

  .process-sticky-left {
    display: none;
  }

  .process-sticky-right {
    flex: 1;
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: hidden;
  }

  .process-content-items {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    transform: none !important;
  }

  .process-content-item {
    height: auto !important;
    min-height: auto;
    justify-content: flex-start;
    padding: 0;
    position: relative;
  }

  .process-content-item .process-item-video {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    margin-bottom: 24px;
    object-fit: cover;
    background: #fff;
    min-height: 170px;
  }

  .process-video-container {
    display: none;
  }

  .process-item-label {
    margin-bottom: 8px;
  }

  .process-item-title {
    margin-bottom: 8px;
  }

  .process-item-divider {
    margin-top: 8px;
    margin-bottom: 12px;
  }
}

/* Mobile devices - Single column grid layout */
@media (max-width: 767px) {
  .process-sticky-section {
    padding-bottom: 0 !important;
    overflow: hidden;
  }

  .process-sticky-title{
    margin: 0 0 28px 0;
  }

  .process-sticky-header {
    padding: 80px 28px 60px 28px;
  }

  .process-sticky-container {
    height: auto !important;
    padding: 0 28px 80px 28px;
    overflow: hidden;
  }

  .process-sticky-container > .container {
    height: auto !important;
    overflow: hidden;
  }

  .process-sticky-wrapper {
    position: relative !important;
    top: auto !important;
    flex-direction: column;
    gap: 24px;
    border: none;
    height: 100% !important;
  }

  .process-sticky-wrapper::before,
  .process-sticky-wrapper::after {
    display: none;
  }

  .process-sticky-left {
    display: none;
  }

  .process-sticky-right {
    flex: 1;
    position: relative !important;
    top: auto !important;
    height: auto !important;
    overflow: hidden;
  }

  .process-content-items {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    display: flex;
    flex-direction: column;
    gap: 52px;
    transform: none !important;
  }

  .process-content-item {
    height: auto !important;
    min-height: auto;
    justify-content: flex-start;
    padding: 0;
    position: relative;
  }

  .process-content-item .process-item-video {
    display: block;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 24px;
    margin-bottom: 16px;
    object-fit: cover;
    background: #fff;
  }

  .process-video-container {
    display: none;
  }

  .process-item-label {
    margin-bottom: 10px;
    gap: 8px;
  }

  .process-item-title {
    margin-bottom: 0px;
  }

  .process-item-divider {
    margin-bottom: 12px;
    margin-top: 14px;
  }

  /* .process-item-text {
    font-size: var(--alpha-body-small);
  } */

  .process-star-icon {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .process-sticky-header {
    padding: 60px 20px 64px 20px;
  }

  .process-sticky-container {
    padding: 0 20px 60px 20px;
  }

    .process-sticky-title{
    margin: 0 0 20px 0;
  }
/* 
  .process-sticky-title {
    font-size: 36px;
  }

  .process-sticky-text {
    font-size: 16px;
  }

  .process-item-title {
    font-size: 28px;
  }

  .process-item-text {
    font-size: 14px;
  } */
}

/* ========== CHAT PAGE (contact.html) ========== */
.chat-page-section {
  padding: 130px 32px 32px 32px;
  background-color: white;
  
}

.chat-page-box {
  background: #F2F2F2;
  border-radius: 40px;
  min-height: 300px;
  height: calc(99vh - 130px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
}

.chat-page-content {
  max-width: var(--max-width-laptop);
  margin: 0 auto;
  width: 100%;
  padding: 100px 0 40px;
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  min-height: 0;
}

/* Landing State */
.chat-landing {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  justify-content: space-between;
}

.chat-landing-avatar {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.avatar-and-heading{
  display: flex;
  align-items: center;
  gap: 40px;
  flex-direction: column;
}

.chat-landing-avatar img {
  width: 58px;
  height: auto;
  object-fit: contain;
}

.chat-landing-heading {
  font-size: var(--alpha-heading-h2);
  font-weight: 500;
  color: #000;
  text-align: center;
  line-height: 1.2;
  margin: 0;
}

.chat-landing-prompts {
  display: flex;
  gap: 16px;
  width: 100%;
  margin-top: auto;
}

.chat-prompt-card {
  flex: 1;
  padding: 24px;
  border-radius: 24px;
  background: #fff;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
  text-align: left;
  transition: box-shadow 0.2s ease;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

}

.chat-prompt-card:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.chat-prompt-label {
  font-size: var(--alpha-body-xs);
  font-weight: var(--font-weight-bold);
  color: var(--accent-orange);
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.chat-prompt-card p {
  font-size: var(--alpha-body-medium);
  color: #3d3d3d;
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 31px;
  margin: 0;
  font-weight: var(--font-weight-medium);
}

/* Chat interface on chat page */
.chat-page-interface {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  overflow: hidden;
}

.chat-page-interface .chat-container {
  background: transparent;
  border-radius: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.chat-page-interface .chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 0 16px 70px 0;
  min-height: 0;
}

/* Scroll-down arrow button */
.scroll-down-btn {
  position: absolute;
  bottom: 100px;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 10;
}
.scroll-down-btn.visible {
  opacity: 1;
  pointer-events: auto;
}
.scroll-down-btn:hover {
  background: #f5f5f5;
}

/* Chat page message layout */
.chat-page-section .bot-msg-row {
  display: flex;
  align-items: flex-start;
  gap: 24px;
}

.chat-page-section .bot-avatar {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 50%;
  display: block;
}

.chat-page-section .bot-msg-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  min-width: 0;
}

.chat-page-section .bot-message p {
  border: none;
  border-radius: 0;
  background: transparent;
  padding: 0;
  max-width: 100%;
}

.chat-page-section .user-message {
  flex-direction: column;
  align-items: flex-end;
}

.chat-page-section .user-msg-wrap {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.chat-page-section .user-message-pill {
  max-width: 617px;
  padding: 24px;
  align-items: center;
  border-radius: 40px 4px 40px 40px;
  border: 1px solid var(--Neutrals-100, #E0E0E0);
  background: white;
}

.chat-page-content.chat-active {
  padding-top: 80px;
}

/* Message action buttons */
.msg-actions {
  display: flex;
  gap: 8px;
  transition: opacity 0.3s ease;
}

/* 40px gap between user message and bot reply */
.chat-page-section .chat-message {
  margin-bottom: 40px;
}

.chat-page-section .user-message {
  margin-bottom: 40px;
}

.msg-action-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  color: #999;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  transition: color 0.2s ease, background 0.2s ease;
}

.msg-action-btn:hover {
  color: #333;
  background: rgba(0, 0, 0, 0.05);
}

/* Input wrapper override for chat page */
.chat-page-section .chat-input-wrapper {
  padding: 0;
  margin-top: 24px;
}
@media (max-width: 1300px) {

  .chat-page-content{
    padding: 128px 24px 24px;
  }

}

/* Responsive */
@media (max-width: 1024px) {
  .chat-page-section {
    padding: 100px 16px 16px;
  }

  .chat-page-content {
    padding: 160px 24px 40px;
  }
  .avatar-and-heading{
    gap: 16px;
  }
  .chat-landing-heading{
    font-size: var(--alpha-heading-h3);
  }
  .chat-landing-avatar img{
    width: 84px;
  }
  .chat-landing-avatar {
    width: 160px;
    height: 160px;
  }
  .chat-page-section .chat-input-wrapper{
    margin-top: 16px;
  }
  .chat-prompt-card{
    padding: 16px;
    border-radius: 16px;
    gap: 16px;
  }
  .chat-page-box{
    border-radius: 24px;
    min-height: 912px;
  }
  .chat-input-container{
    padding: 12px 8px 12px 16px;
    gap: 8px;
  }
  .chat-landing-prompts{
    gap: 8px;
  }
  .chat-page-section .chat-message, .chat-page-section .user-message{
    margin-bottom: 8px;
  }
  .chat-page-section .bot-msg-row{
    flex-direction: column;
    gap: 12px;
  }
  .chat-page-section .user-message-pill{
    padding: 12px 16px;
  }
  .chat-page-content.chat-active{
    padding-top: 32px;
  }
  .chat-page-interface .chat-messages{
    padding: 0 0 80px 0;
  }
  .chat-page-section .user-message-pill{
  border-radius: 24px 4px 24px 24px;

}
}

@media (max-width: 767px) {
  .chat-page-box{
    min-height: 88vh;
  }
  .chat-landing-heading{
    font-size: var(--alpha-heading-h2);
  }
  .chat-page-section {
    padding: 80px 16px 16px 16px;
  }

  .chat-page-content {
    padding: 40px 16px 24px;
  }

  .chat-landing-avatar {
    width: 80px;
    height: 80px;
  }
  .chat-landing-avatar img{
    width: 42px;
  }
  .chat-landing-prompts{
    flex-direction: column;
    gap: 8px;
  }
  .chat-prompt-card p{
    font-size: var(--alpha-body-medium);
    line-height: 21px;
  }
  .chat-input-container{
    padding: 6px 8px 8px 16px;
  }
  .send-btn{
    width: 32px;
    height: 32px;
  }
  .send-btn svg{
    width: 16px;
    height: 16pxs;
  }
  .mic-btn svg{
    width: 24px;
    height: 24px;
  }
  .chat-page-content.chat-active{
    padding-top: 24px;
  }
  .chat-page-content{
    padding: 24px 16px 16px 16px;
  }
  .chat-page-section .bot-avatar{
    width: 32px;
    height: 32px;
  }
  .chat-page-section .chat-message, .chat-page-section .user-message{
    margin-bottom: 24px;
  }
  /* Typing Indicator */
.typing-indicator {
    display: flex;
    gap: 6px;
    padding: 8px 12px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    width: fit-content;
}

.typing-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #888;
    animation: typingAnimation 1.4s infinite;
}

  .chat-page-interface .chat-messages {
    padding: 0 0 70px 0;
    scrollbar-width: none;
  }
  .chat-page-interface .chat-messages::-webkit-scrollbar {
    display: none;
  }
  .chat-page-box {
    overflow: visible;
  }
  .chat-page-content {
    overflow: visible;
  }
  .chat-page-interface {
    overflow: visible;
  }

}

@media (max-width: 400px) {
  .chat-page-section {
    padding: 70px 12px 12px 12px;
  }
  .chat-page-box {
    height: calc(100svh - 84px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }
  .chat-page-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    padding: 24px 16px 16px 16px;
  }
  .chat-page-content.chat-active {
    padding-top: 24px;
  }
  .chat-landing {
    gap: 30px;
    flex: 1;
    min-height: 0;
  }
  .chat-page-interface {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    min-height: 0;
  }
  .chat-page-interface .chat-container {
    flex: 1;
    overflow: hidden;
    min-height: 0;
  }
  .chat-page-interface .chat-messages {
    flex: 1;
    overflow-y: auto;
    padding: 0 0 70px 0;
    scrollbar-width: none;
  }
  .chat-page-interface .chat-messages::-webkit-scrollbar {
    display: none;
  }
  .chat-page-section .chat-input-wrapper {
    flex-shrink: 0;
    margin-top: 8px;
    padding-top: 16px;
    background: #F2F2F2;
    border-radius: 0 0 20px 20px;
  }
  .chat-page-content.chat-active .chat-input-wrapper {
    padding-top: 6px;
  }
  .scroll-down-btn {
    display: none;
  }
}

/* ─── Nest Hub Max (1280×800) ─────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1280px) and (max-height: 800px) {
  .chat-page-section {
    padding: 90px 24px 16px 24px;
  }
  .chat-page-box {
    height: calc(100vh - 110px);
    min-height: 0;
  }
  .chat-page-content {
    padding: 32px 40px 16px 40px;
  }
  .chat-page-content.chat-active {
    padding-top: 24px;
  }
  .avatar-and-heading {
    gap: 20px;
  }
  .chat-landing-avatar {
    width: 128px;
    height: 128px;
  }
  .chat-landing-avatar img {
    width: 68px;
  }
  .chat-landing-heading {
    font-size: var(--alpha-heading-h3);
  }
  .chat-landing-prompts {
    gap: 12px;
    flex-direction: row;
  }
  .chat-prompt-card {
    padding: 16px;
    gap: 16px;
    border-radius: 16px;
  }
  .chat-prompt-card p {
    font-size: var(--alpha-body-small);
    line-height: 1.4;
  }
  .chat-page-section .chat-input-wrapper {
    padding-bottom: 0;
  }
}

/* ─── Nest Hub (1024×600) ─────────────────────────────────────── */
@media (min-width: 768px) and (max-width: 1024px) and (max-height: 600px) {
  .chat-page-section {
    padding: 75px 20px 12px 20px;
  }
  .chat-page-box {
    height: calc(100vh - 90px);
    min-height: 0;
  }
  .chat-page-content {
    padding: 20px 32px 12px 32px;
  }
  .chat-page-content.chat-active {
    padding-top: 16px;
  }
  .avatar-and-heading {
    gap: 16px;
  }
  .chat-landing-avatar {
    width: 128px;
    height: 128px;
  }
  .chat-landing-avatar img {
    width: 68px;
  }
  .chat-landing-heading {
    font-size: var(--alpha-heading-h3);
  }
  .chat-landing {
    gap: 16px;
    justify-content: space-between;
  }
  .chat-landing-prompts {
    gap: 10px;
    flex-direction: row;
  }
  .chat-prompt-card {
    padding: 16px;
    gap: 16px;
    border-radius: 14px;
  }
  .chat-prompt-card p {
    font-size: var(--alpha-body-small);
    line-height: 1.4;
  }
  .chat-page-section .chat-input-wrapper {
    padding-bottom: 0;
  }
}



/* Blog Page CSS */

/* -- All variables scoped to the blog wrapper -- */
.av-blog-wrap,
.av-single-blog-wrap {
  --av-white: #ffffff;
  --av-ink: #0a0a0a;
  --av-ink2: #444444;
  --av-ink3: #888888;
  --av-border: #e0e0e0;
  --av-border2: #d0d0d0;
  --av-tag-bg: rgba(240, 104, 49, 0.08);
  --av-tag-text: #F06831;
  --av-tag-border: rgba(240, 104, 49, 0.2);
  --av-btn-bg: #0a0a0a;
  --av-btn-text: #ffffff;
  --av-radius-lg: 14px;
  --av-radius-xl: 20px;
  --av-shadow-card: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
  --av-shadow-hover: 0 6px 24px rgba(0, 0, 0, .10);
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--av-ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.av-blog-card-grid { align-items: stretch; }
.av-blog-post-card { display: flex; flex-direction: column; height: 100%; }
.av-blog-card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.av-blog-card-meta { margin-top: auto; padding-top: 0px; }


/* -- Reset scoped to blog wrapper only -- */
.av-blog-wrap *,
.av-blog-wrap *::before,
.av-blog-wrap *::after {
  box-sizing: border-box;
}

.av-blog-wrap a {
  text-decoration: none;
  color: inherit;
}


/* -- Page Header -- */
.av-blog-header {
  padding: 60px 0 40px;
}

.av-blog-header-eyebrow {
  font-family: 'Satoshi', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: #F06831;
  margin-bottom: 18px;
}

.av-blog-header-title {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-heading-h1);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.05;
  color: var(--av-ink);
  margin-bottom: 18px;
 
}

.av-blog-header-sub {
  font-size: var(--alpha-body-medium);
  font-weight: 400;
  color: var(--av-ink2);
  line-height: 1.65;
  
}

/* -- Featured Post -- */
.av-blog-featured {
  margin: 120px 0;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  border: 1px solid var(--av-border);
  border-radius: 24px;
  overflow: hidden;
  background: var(--av-white);
  box-shadow: var(--av-shadow-card);
}

.av-blog-feat-img {

  background: #e8e8e2;
  overflow: hidden;
  position: relative;
}

.av-blog-feat-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.av-blog-feat-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-blog-feat-img-placeholder svg {
  opacity: .2;
}

.av-blog-feat-body {
  padding: 44px 44px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.av-blog-feat-tag {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 50px;
  font-size: var(--alpha-body-xs);
  color: #666666;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.av-blog-feat-title {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-heading-h2);
  font-weight: 500;
  letter-spacing: -.03em;
  line-height: 1.1;
  color: var(--av-ink);
  margin-bottom: 16px;
}

.av-blog-feat-excerpt {
  font-size: var(--alpha-body-small);
  font-weight: 400;
  color: var(--av-ink2);
  line-height: 1.7;
  margin-bottom: 28px;
}

.av-blog-feat-author {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 28px;
}

.av-blog-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--av-tag-bg);
  border: 1.5px solid var(--av-tag-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Satoshi', sans-serif;
  font-size: 11px;
  font-weight: 700;
  color: var(--av-tag-text);
  flex-shrink: 0;
  overflow: hidden;
}

.av-blog-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.av-blog-author-meta {
  font-size: 13px;
  color: var(--av-ink3);
  line-height: 1.4;
}

.av-blog-author-meta strong {
  color: var(--av-ink2);
  font-weight: 500;
}

/* -- Read button � matches commitment-button style -- */
.av-blog-read-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 12px 20px 12px 20px;
  background-color: var(--bg-color);
  color: #fff !important;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-button-small);
  font-weight: 600;
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  transition: all 0.3s ease;

  width: fit-content;
}



.av-blog-read-btn .button-text {
  position: relative;
  z-index: 10;

  transition: all 0.5s ease;
}


.av-blog-read-btn svg {
  display: none;
}

.av-single-blog-wrap .av-single-post-body ul li{
      font-size: var(--alpha-body-medium);
}

.av-single-blog-wrap .av-single-post-body ul{
  margin-left: 50px;
}

/* .av-single-blog-wrap .av-single-post-body p:empty,
.av-single-blog-wrap .av-single-post-body p:has(> br:only-child) {
  height: 20px;      
  min-height: 0;
  margin: 0;
  padding: 0;
  line-height: 20px;  
  font-size: 0;     
} */

/* -- Filters -- */
.av-blog-filters {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.av-blog-filter-btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  padding: 10px 20px;
  border-radius: 100px;
  border: 1.5px solid var(--av-border2);
  color: var(--av-ink2);
  background: var(--av-white);
  transition: all .2s ease;
  line-height: 1;
}

.av-blog-filter-btn.av-blog-active {
  background: #F06831;
  color: #ffffff;
  border-color: #F06831;
}

.av-blog-filter-btn:hover:not(.av-blog-active) {
  border-color: #F06831;
  color: #F06831;
  background: var(--av-tag-bg);
}

/* -- Card Grid -- */
.av-blog-grid-section {
  margin-bottom: 60px;
}

.av-blog-card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.av-blog-post-card {



  overflow: hidden;



}



.av-blog-post-card.av-blog-hidden {
  display: none;
}

.av-blog-card-img {
  height: 240px;
  overflow: hidden;
  position: relative;
  border-radius: 40px;
}

.av-blog-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.av-blog-card-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-blog-card-img-placeholder svg {
  opacity: .15;
}

.av-blog-card-body {
  padding: 28px 0px 22px;
}

.av-blog-card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.av-blog-card-tag {
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #d0d0d0;
  border-radius: 50px;
  font-size: var(--alpha-body-xs);
  color: #666666;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.av-blog-card-date {
  font-size: var(--alpha-body-xs);
  color: #888;
  font-family: 'Satoshi', sans-serif;
  display: none;
}

.av-blog-card-title {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-heading-h5);
  font-weight: 500;
  letter-spacing: -.02em;
  line-height: 1.3;
  color: var(--av-ink);
  margin-bottom: 10px;
}

.av-blog-card-excerpt {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-small);
  font-weight: 400;
  color: #0A0A0A;
  line-height: 1.6;
  margin-bottom: 18px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.av-blog-card-author {
  display: flex;
  align-items: center;
  gap: 9px;
  padding-top: 14px;
  border-top: 1px solid var(--av-border);
}

.av-blog-card-author .av-blog-avatar {
  width: 28px;
  height: 28px;
  font-size: 9px;
}

.av-blog-card-author-text {
  font-family: 'Satoshi', sans-serif;
  font-size: 12.5px;
  color: var(--av-ink3);
}

.av-blog-card-author-text strong {
  color: var(--av-ink2);
  font-weight: 500;
}

/* -- No results -- */
.av-blog-no-results {
  grid-column: 1 / -1;
  padding: 60px 0;
  text-align: center;
  font-size: 15px;
  font-family: 'Satoshi', sans-serif;
  color: var(--av-ink3);
  display: none;
}

.av-blog-no-results.av-blog-visible {
  display: block;
}

/* -- Blog CTA (replaces newsletter) -- */
.av-blog-cta {
  margin-bottom: 72px;
  border-radius: 24px;
  overflow: hidden;
}

.av-blog-cta-inner {
  position: relative;
  width: 100%;
  min-height: 420px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.av-blog-cta-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.av-blog-cta-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(118.28% 118.28% at 50% 50%, #F06831 0%, rgba(240, 104, 49, 0.00) 100%);
  z-index: 2;
  pointer-events: none;
}

.av-blog-cta-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 80px 40px;
  text-align: center;
}

.av-blog-cta-line1,
.av-blog-cta-line2 {
  font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: clamp(40px, 5vw, 80px);
  font-weight: 500;
  line-height: 1.05;
  color: #ffffff;
  margin: 0;
  letter-spacing: -0.02em;
}

.av-blog-cta-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  padding: 20px 40px 20px 56px;
  background-color: #ffffff;
  color: rgba(0, 0, 0, 0.85);
  font-family: 'Satoshi', sans-serif;
  font-size: 20px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 100px;
  overflow: hidden;
  transition: all 0.3s ease;
  letter-spacing: -0.01em;
}

.av-blog-cta-btn::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #000;
  transition: all 0.6s ease-in-out;
  z-index: 0;
}

.av-blog-cta-btn:hover::before {
  transform: translateY(-50%) scale(90);
  left: 0;
}

.av-blog-cta-btn .button-text {
  position: relative;
  z-index: 10;
  transition: all 0.5s ease;
}

.av-blog-cta-btn:hover .button-text {
  color: #ffffff;
}

/* -- Placeholder image bg tones -- */
.av-blog-bg-warm {
  background: linear-gradient(135deg, #e8e4dc 0%, #d4cfc4 100%);
}

.av-blog-bg-dark {
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.av-blog-bg-sage {
  background: linear-gradient(135deg, #dde8dd 0%, #c8d8c8 100%);
}

.av-blog-bg-sand {
  background: linear-gradient(135deg, #ece8e0 0%, #d8d0c4 100%);
}

.av-blog-bg-slate {
  background: linear-gradient(135deg, #d8dce8 0%, #c4cadc 100%);
}

.av-blog-bg-night {
  background: linear-gradient(135deg, #101820 0%, #1a2030 100%);
}

.av-blog-bg-rose {
  background: linear-gradient(135deg, #e8ddd8 0%, #d4c8c0 100%);
}

.av-blog-container {
  background-color: #F2F2F2;
}

/* Replaces .av-blog-feat-author */
.av-blog-feat-meta {
  font-size: 13px;
  color: var(--av-ink3);

  font-family: 'Satoshi', sans-serif;
}




.av-blog-feat-meta-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 18px;
}

/* Remove the old standalone tag margin since the row handles spacing now */
.av-blog-feat-meta-row .av-blog-feat-tag {
  margin-bottom: 0;
}

.av-blog-feat-meta {
  font-size: 13px;
  color: var(--av-ink3);
  font-family: 'Satoshi', sans-serif;
}



.av-blog-card-img img {
  transition: 0.5s;
}



@media(min-width:1025px) {
  .av-blog-post-card:hover .av-blog-card-img img {
    transform: scale(1.08);
  }

  .av-blog-read-btn:hover {
    background: var(--accent-orange);
  }

  .av-blog-card-tag:hover,
  .av-blog-feat-tag:hover
  {
        background: #f5f5f5;
    border-color: #999999;
  }

}

/* -- Responsive -- */
@media (max-width: 1024px) {
  .av-blog-card-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .av-blog-featured {
    grid-template-columns: 1fr;
  }

  .av-blog-feat-img {
    height: 260px;
  }

  .av-blog-feat-body {
    padding: 28px;
  }

  .av-blog-cta-inner {
    min-height: 340px;
  }

  .av-blog-cta-content {
    padding: 60px 28px;
    gap: 32px;
  }

  .av-blog-cta-btn {
    font-size: 17px;
    padding: 16px 36px 16px 48px;
  }
}

@media (max-width: 650px) {
  .av-blog-card-grid {
    grid-template-columns: 1fr;
  }

  

  .av-blog-cta-inner {
    min-height: 300px;
  }

  .av-blog-cta-content {
    padding: 48px 20px;
    gap: 24px;
  }

  .av-blog-cta-btn {
    font-size: 15px;
    padding: 14px 28px 14px 40px;
  }

  .av-blog-cta-btn::before {
    left: 22px;
    width: 12px;
    height: 12px;
  }
}

/* -- Pagination ---------------------------------------- */

.av-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  flex-wrap: wrap;
}

/* Number buttons */
.av-page-btn {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  font-weight: 500;
  width: 40px;
  height: 40px;
  
  border: none !important;
  background: transparent !important;
  color: var(--av-ink2, #444444);
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.18s;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
}

.av-page-btn:hover:not(.av-page-active) {
  border-color: #F06831;
  color: #F06831;
  background: rgba(240, 104, 49, 0.06);
}

.av-page-btn.av-page-active {
  
  
  color: #F06831;
  pointer-events: none;
}

/* Prev / Next arrows */
.av-page-arrow {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none !important;
  background: #ffffff;
  color: var(--av-ink2, #444444);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.18s, border-color 0.18s, color 0.18s;
  padding: 0px;
}

.av-page-arrow:hover:not(.av-page-arrow-disabled) {
  border-color: #F06831;
  color: #F06831;
  background: rgba(240, 104, 49, 0.06);
}

.av-page-arrow-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

/* Ellipsis */
.av-page-dots {
  font-family: 'Satoshi', sans-serif;
  font-size: 14px;
  color: var(--av-ink3, #888888);
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  user-select: none;
}


/* --- REPLACE these rules in style.css (inside the Blog Page CSS block) --- */

/* -- Filters -- */
.av-blog-filters {
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.av-blog-filter-btns {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.av-blog-filter-btn {
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-medium);
  font-weight: 400;
  padding: 16px 32px;
  border-radius: 100px;
  border: none;
  background: rgba(0, 0, 0, 0.08);
  color: #000;
  line-height: 150%;
  cursor: pointer;
  transition: all 0.3s ease;
}

.av-blog-filter-btn.av-blog-active {
  background: #F06831;
  color: #fff;
}

.av-blog-filter-btn:hover:not(.av-blog-active) {
  background: rgba(0, 0, 0, 0.15);
}

/* Responsive � shrink padding on smaller screens */
@media (max-width: 768px) {
  .av-blog-filters {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }

  .av-blog-filter-btn {
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .av-blog-filter-btn {
    padding: 10px 20px;
  }
}

.av-page-arrow svg
{
  width: 16px;
  height: 16px;
}

/* -- END Pagination -- */


.av-blog-card-grid { align-items: stretch; }
.av-blog-post-card { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.av-blog-card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.av-blog-card-meta { margin-top: auto; padding-top: 0px; }

/* -- Featured Grid (1 big + 2 stacked) --------- */
.av-feat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 20px;
  margin: 56px 0 80px;
  height: clamp(420px, 50vw, 600px);
}
.av-feat-grid-solo { grid-template-columns: 1fr; height: auto; }
.av-feat-grid-solo .av-feat-card-large { aspect-ratio: 21/9; }
.av-feat-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #1a1a1a;
  height: 100%;
}
.av-feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}
.av-feat-card:hover img { transform: scale(1.04); }
.av-feat-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.av-feat-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
  min-height: 0;
}
.av-feat-card-title-pill {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  padding: 16px 24px;
  border: none;
  border-radius: 16px;
  z-index: 2;
}


.av-feat-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.3) 40%, transparent 70%);
  border-radius: inherit;
  z-index: 1;
  pointer-events: none;
}
.av-feat-card-title {
  color: #ffffff;
  font-family: Satoshi, sans-serif;
  font-weight: 600;
  font-size: var(--alpha-heading-h5);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}
.av-feat-card-small .av-feat-card-title {     font-size: var(--alpha-body-small); }
.av-feat-card-small .av-feat-card-title-pill {
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  border-radius: 0;
}

@media (max-width: 1024px) {
  .av-feat-card-title { font-size: 19px; }
  .av-feat-card-small .av-feat-card-title { font-size: 15px; }

.av-blog-wrap a
{
  max-height: 100%;
}
.av-blog-card-img{
  border-radius: 24px;
}
}


@media (max-width: 768px) {
  .av-feat-grid {
    grid-template-columns: auto;
    grid-template-rows: auto;
    height: auto;
    gap: 16px;
    margin: 40px 0 60px;
  }
  
  .av-feat-stack { grid-template-rows: auto; gap: 16px; }

  .av-feat-card-title-pill { left: 16px; right: 16px; bottom: 16px; padding: 12px 18px; }
  .av-feat-card-title { font-size: 17px; }
}


/* Card meta pinned to bottom of card */
.av-blog-card-grid { align-items: stretch; }
.av-blog-post-card { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.av-blog-card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.av-blog-card-meta { margin-top: auto; padding-top: 0px; }

/* -- Featured Grid (1 big + 2 stacked) --------- */
.av-feat-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  grid-auto-rows: minmax(0, 1fr);
  gap: 20px;
  margin: 56px 0 80px;
  height: clamp(420px, 50vw, 600px);
}
.av-feat-card {
  position: relative;
  display: block;
  border-radius: 24px;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  background: #1a1a1a;
  height: 100%;
}
.av-feat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: 0.5s ;
}
.av-feat-card:hover img { transform: scale(1.08); }
.av-feat-card-img-placeholder {
  width: 100%; height: 100%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}
.av-feat-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 20px;
  height: 100%;
  min-height: 0;
}

.av-feat-cat-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  padding: 8px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  color: #ffffff;
  font-family: 'Satoshi', sans-serif;
  font-size: var(--alpha-body-xs);
  font-weight: 500;
  line-height: 1;
  pointer-events: none;
}

/* Slightly tighter on small stack cards */
.av-feat-card-small .av-feat-cat-badge {
  top: 14px;
  left: 14px;
  padding: 6px 14px;
}
.av-feat-card-title {
  color: #ffffff;
  font-family: Satoshi, sans-serif;
  font-weight: 400;
  font-size: var(--alpha-heading-h3);
  line-height: 1.35;
  margin: 0;
  letter-spacing: -0.01em;
}
.av-feat-card-small .av-feat-card-title { font-size: var(--alpha-heading-h5); }
.av-feat-card-small .av-feat-card-title-pill {
  left: 18px; right: 18px; bottom: 18px;
  padding: 12px 18px; border-radius: 14px;
}

@media (max-width: 1024px) {
  .av-feat-card-title { font-size: 19px; }
  .av-feat-card-small .av-feat-card-title { font-size: 15px; }
    .av-feat-grid-solo .av-feat-card-large { aspect-ratio: 16 / 9; }
}
@media (max-width: 768px) {
  .av-feat-grid {
    grid-template-columns: 1fr;
    height: auto;
    gap: 16px;
    margin: 40px 0 60px;
  }
  
  .av-feat-stack { grid-template-rows: auto; gap: 16px; }
  .av-feat-card-small { aspect-ratio: 16/10; }
  .av-feat-card-title-pill { left: 16px; right: 16px; bottom: 16px; padding: 12px 18px; }
  .av-feat-card-title { font-size: 17px; }
}

/* Blog Page CSS Ends */





/* Single Blog Page CSS Starts */




    /* --- POST PAGE OVERRIDES & ADDITIONS --- */


    /* --- HERO --- */
    .av-single-post-hero {
      background: var(--bg-color);
      padding: 250px 32px 32px;
      display: flex;
      flex-direction: column;
      min-height: 100vh;
      justify-content: center;
    }

    .av-single-post-hero .container { width: 100%; }

    /* --- BREADCRUMBS --- */
    .av-single-breadcrumbs {
      display: flex;
      padding: 8px 24px;
      align-items: center;
      gap: 8px;
      border-radius: 100px;
      border: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(255, 255, 255, 0.06);
      width: fit-content;
    }

    .av-single-breadcrumb-item {
      color: #FFF;
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-xs);
      font-weight: var(--font-weight-regular);
      line-height: 130%;
      text-decoration: none;
      transition: opacity 0.3s ease;
    }

    .av-single-breadcrumb-item:hover { opacity: 0.7; }
    .av-single-breadcrumb-item.av-single-current { pointer-events: none; }
    .av-single-breadcrumbs svg { flex-shrink: 0; }

    /* --- HERO TITLE --- */
    .av-single-post-hero-title-wrapper {
      display: flex;
      align-items: center;
      gap: 32px;
      margin-top: 32px;
    }

    .av-single-post-hero-title {
      color: #FFF;
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-heading-h1);
      font-weight: var(--font-weight-medium);
      line-height: 130%;
      margin: 0;
    }

    .av-single-post-hero-subtitle {
      color: #FFF;
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-large);
      font-weight: var(--font-weight-regular);
      line-height: 130%;
      margin-top: 16px;
    }

    .av-single-post-hero-image-wrapper { margin-top: 80px; }

    .av-single-post-hero-image {
      width: 100%;
      border-radius: 40px;
      display: block;
    }

    @media (max-width: 1024px) {
      .av-single-post-hero { padding: 200px 40px 40px; }
      .av-single-post-hero-image { border-radius: 24px; }
      .av-single-post-hero-image-wrapper { margin-top: 60px; }
    }

    @media (max-width: 768px) {
      .av-single-post-hero { padding: 150px 20px 32px; }
      .av-single-post-hero-title-wrapper { gap: 24px; }
      .av-single-post-hero-image { border-radius: 24px; }
      .av-single-post-hero-image-wrapper { margin-top: 60px; }
    }

    @media (max-width: 480px) {
      .av-single-post-hero { padding: 120px 20px 24px; }
      .av-single-breadcrumbs { padding: 6px 16px; }
      .av-single-post-hero-image-wrapper { margin-top: 40px; }
          .av-feat-grid-solo .av-feat-card-large { aspect-ratio: auto; height: 240px; }
    }

    @media (max-width: 380px) {
      .av-single-breadcrumb-item{
        font-size: 11px;
      }
    }

    /* --- CONTENT LAYOUT --- */
    .av-single-post-content-section { background: #F2F2F2; }

    .av-single-post-layout {
      display: grid;
      grid-template-columns: 1fr; /* TOC hidden for now — restore: 240px 1fr */
      gap: 64px;
      align-items: start;
    }

    /* --- TOC SIDEBAR --- */
    .av-single-toc-sidebar {
      position: sticky;
      top: 140px;
    }

    .av-single-toc-wrap {
      background: #ffffff;
      border: 1px solid #e0e0e0;
      border-radius: 20px;
      padding: 28px 24px;
    }

    .av-single-toc-head {
      font-family: 'Satoshi', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #888;
      margin-bottom: 16px;
      padding-bottom: 14px;
      border-bottom: 1px solid #e0e0e0;
    }

    .av-single-toc-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 2px;
    }

    .av-single-toc-item a {
      display: block;
      font-family: 'Satoshi', sans-serif;
      font-size: 13.5px;
      font-weight: 400;
      color: #888;
      text-decoration: none;
      padding: 8px 0px;
      border-left: 2px solid transparent;
      border-radius: 0 10px 10px 0;
      transition: all 0.2s ease;
      line-height: 1.4;
    }

    .av-single-toc-item a:hover {
      color: #F06831;
      
    }

    .av-single-toc-item.av-single-toc-active a {
      color: #F06831;
      font-weight: 600;
    }

    /* --- MOBILE TOC --- */
    .av-single-mobile-toc-btn {
      display: none;
      align-items: center;
      gap: 8px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 100px;
      padding: 10px 20px;
      font-family: 'Satoshi', sans-serif;
      font-size: 14px;
      font-weight: 600;
      color: #0a0a0a;
      cursor: pointer;
      margin-bottom: 28px;
      transition: all 0.2s;
    }

    .av-single-mobile-toc-btn:hover { border-color: #F06831; color: #F06831; }

    .av-single-mobile-toc-panel {
      display: none;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 16px;
      padding: 20px;
      margin-bottom: 32px;
    }

    .av-single-mobile-toc-panel.av-single-open { display: block; }

    /* --- ARTICLE --- */
    .av-single-post-article { min-width: 0; }

    .av-single-post-lead {
      font-family: 'Satoshi', sans-serif;
      font-size: 20px;
      font-weight: 400;
      color: #0a0a0a;
      line-height: 1.75;
      padding-bottom: 44px;
      margin-bottom: 52px;
      border-bottom: 2px solid #0a0a0a;
    }

    .av-single-post-article h2 {
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-heading-h3);
      font-weight: 500;
      letter-spacing: -0.03em;
      line-height: 1.2;
      color: #0a0a0a;
      margin: 56px 0 25px;
      scroll-margin-top: 110px;
    }

    .av-single-post-article p {
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-medium);
      line-height: 1.5;
      color: #0a0a0a;
      margin-bottom: 22px;
    }

    .av-single-post-article p img{
      width: 100%;
      margin-bottom: 32px;
      margin-top: 32px;
    }

    .ai-poem span {
    display: block;
    font-style: italic;
    font-family: 'Satoshi', sans-serif;
    font-size: var(--alpha-heading-h4);
    line-height: 130%;
    color: #666666; 
    }

    .ai-poem{
      margin-left: 50px; 
      position: relative; 
    }

    .ai-poem::before {
  content: "";
  position: absolute;
  top: -70px;
  left: -50px;
    width: 100px;
    height: 135px;
  background-image: url("https://alphaventure.com/cms/uploads/quote-orange.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}

    .ai-poem span.poem-author{
        font-size: var(--alpha-heading-h5);
        color: #0A0A0A;
    }

    .av-single-post-body a {
      color: #F06831 !important;
      text-decoration: none;
    }

    .av-single-post-video{
      display: block;
      max-width: 100%;
      width: 100%;
      height: auto;
    }

    .av-single-post-video video {
      display: block;
      max-width: 100%;
      width: 100%;
      height: auto;
      border-radius: 40px;
      margin: 60px 0;
      background: transparent;
    }

    p.av-single-pull-quote{
      color: #fff;
    }

    /* --- HIGHLIGHT BLOCK --- */
    .av-single-highlight {
      margin: 40px 0;
      padding: 32px 36px;
      background: #fff;
      border: 1px solid #e0e0e0;
      border-radius: 20px;
      position: relative;
    }

    .av-single-highlight::before {
      content: '';
      position: absolute;
      left: 0;
      top: 20px;
      bottom: 20px;
      width: 3px;
      background: #F06831;
      border-radius: 0 3px 3px 0;
    }

    .av-single-highlight-label {
      font-family: 'Satoshi', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #F06831;
      margin-bottom: 12px;
    }

    .av-single-highlight p {
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-xs);
      font-weight: 500;
      color: #0a0a0a;
      line-height: 1.65;
      margin: 0;
    }

    .av-single-highlight .av-single-source {
      font-size: 13px;
      color: #888;
      margin-top: 12px !important;
      font-style: italic;
      font-weight: 400;
    }

    /* --- NUMBERED LIST --- */
    .av-single-numbered-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
      margin: 28px 0 36px;
      border: 1px solid #e0e0e0;
      border-radius: 20px;
      overflow: hidden;
      background: #fff;
    }

    .av-single-nl-item {
      display: flex;
      gap: 24px;
      align-items: flex-start;
      padding: 28px 32px;
      border-bottom: 1px solid #e0e0e0;
      transition: background 0.18s;
    }

    .av-single-nl-item:last-child { border-bottom: none; }
    .av-single-nl-item:hover { background: rgba(240, 104, 49, 0.03); }

    .av-single-nl-num {
      min-width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(240, 104, 49, 0.08);
      border: 1.5px solid rgba(240, 104, 49, 0.2);
      color: #F06831;
      font-family: 'Satoshi', sans-serif;
      font-size: 12px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      margin-top: 3px;
    }

    .av-single-nl-text {
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-xs);
      line-height: 1.7;
      color: #444;
    }

    .av-single-nl-text strong {
      display: block;
      color: #0a0a0a;
      font-weight: 600;
      margin-bottom: 5px;
      font-size: 15px;
    }

    /* --- INLINE IMAGE --- */
    .av-single-inline-img {
      width: 100%;
      border-radius: 20px;
      margin: 36px 0;
      display: block;
    }

    /* --- SECTION RULE --- */
    hr.av-single-section-rule {
      border: none;
      border-top: 1px solid #e0e0e0;
      margin: 52px 0;
    }

    /* --- PULL QUOTE --- */
    .av-single-pull-quote {
      margin: 44px 0;
      padding: 36px 40px;
      background: #0a0a0a;
      border-radius: 20px;
    }

    .av-single-pull-quote p,
    .av-single-pull-quote span {
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-medium);
      font-weight: 500;
      letter-spacing: -0.02em;
      line-height: 1.55;
      color: #fff;
      margin: 0;
    }

    .av-single-pull-quote:before {
      content: '';
      width: 28px;
      height: 3px;
      display: block;
      background: #F06831;
      border-radius: 2px;
      margin-bottom: 20px;
    }

    /* --- POST FOOTER --- */
    .av-single-post-footer-row {
      margin-top: 60px;
      padding-top: 36px;
      border-top: 1px solid #e0e0e0;
      display: flex;
      flex-direction: column;
      flex-wrap: wrap;
      align-items: flex-start;
      justify-content: space-between;
      gap: 28px;
    }

    .av-single-post-categories-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .av-single-post-footer-label {
      color: #000;
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-medium);
      font-weight: var(--font-weight-medium);
      line-height: 150%;
    }

    .av-single-post-categories {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }

    .av-single-post-category-tag {
      padding: 8px 18px;
      background: transparent;
      border: 1px solid #d0d0d0;
      border-radius: 50px;
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-xs);
      font-weight: 400;
      color: #666;
      text-decoration: none;
      transition: background 0.2s ease, border-color 0.2s ease;
      cursor: pointer;
    }

    .av-single-post-category-tag:hover {
      background: #f5f5f5;
      border-color: #999;
    }

    .av-single-post-share-group {
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .av-single-post-share-btns { display: flex; gap: 8px; }

    .av-single-post-share-btn {
      color: #FFF;
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-body-medium);
      font-weight: var(--font-weight-regular);
      line-height: 150%;
      padding: 14px 32px;
      background: #000;
      border: none;
      border-radius: 100px;
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .av-single-post-share-btn:hover { background-color: #F06831; }

    /* --- RELATED POSTS --- */
    .av-single-related-section .container {
      border-top: 1px solid #e0e0e0;
      padding: 100px 0;
    }

    .av-single-related-eyebrow {
      font-family: 'Satoshi', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.14em;
      text-transform: uppercase;
      color: #F06831;
      margin-bottom: 8px;
    }

    .av-single-related-title {
      font-family: 'Satoshi', sans-serif;
      font-size: var(--alpha-heading-h3);
      font-weight: 500;
      letter-spacing: -0.03em;
      color: #0a0a0a;
      margin-bottom: 48px;
    }

    .av-single-related-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 28px;
    }

    /* av-blog-post-card used as <a> tag needs display:block */
    .av-single-related-grid .av-blog-post-card {
      display: block;
      text-decoration: none;
      color: inherit;
    }

    /* Image hover on related cards */
    @media (min-width: 1025px) {
      .av-single-related-grid .av-blog-post-card:hover .av-blog-card-img img {
        transform: scale(1.08);
      }
    }

    /* --- RESPONSIVE --- */
    @media (min-width: 1400px) {
      .av-single-post-content-section { padding: 80px 0 120px; }
    }

    @media (max-width: 1024px) {
      .av-single-post-content-section { padding: 60px 48px 100px; }
      .av-single-post-layout { grid-template-columns: 1fr; gap: 48px; } /* TOC hidden for now — restore: 200px 1fr */
      .av-single-related-section .container { padding: 80px 48px; }
      .av-single-related-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    }

    @media (max-width: 768px) {
      .av-single-post-content-section { padding: 48px 28px 80px; }
      .av-single-post-layout { grid-template-columns: 1fr; gap: 0; }
      .av-single-toc-sidebar { display: none; }
      .av-single-mobile-toc-btn { display: flex; }
      .av-single-post-footer-row { flex-direction: column; align-items: flex-start; }
      .av-single-post-share-group { align-items: flex-start; }
      .av-single-related-section .container { padding: 60px 28px; }
      .av-single-related-grid { grid-template-columns: 1fr; }
    }

    @media (max-width: 767px) {
      .av-single-author-box { flex-direction: column; }
      .av-single-post-video video{border-radius: 20px;}
    }

    @media (max-width: 480px) {
      .av-single-post-content-section { padding: 36px 20px 60px; }
      .av-single-post-share-btns { flex-wrap: wrap; }
      .av-single-related-section .container { padding: 48px 20px; }
      .av-single-blog-wrap .av-single-post-body ul, .ai-poem{margin-left: 30px;}
      .ai-poem::before {top: -70px; left: -30px; width: 70px;}
      .ai-poem span{font-size: var(--alpha-heading-h5);}
      .av-single-post-article p img{margin-bottom: 20px; margin-top: 20px;}
    }
  

    .av-single-blog-wrap
{
  background: #F2F2F2;
}


.av-single-related-grid { align-items: stretch; }
.av-single-related-grid .av-blog-post-card { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.av-single-related-grid .av-blog-card-body { display: flex; flex-direction: column; flex: 1 1 auto; }
.av-single-related-grid .av-blog-card-meta { margin-top: auto; padding-top: 0px; }

.av-single-toc-item a:empty
{
  display: none;
}

/* Single Blog Page CSS Ends */

 


