/* ==========================================================================
   Premium Futuristic Creative Agency Hero Section - style.css
   Based on DESIGN.md tokens & ElevenLabs styling language
   ========================================================================== */

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Syne:wght@700;800&family=EB+Garamond:ital,wght@0,400;0,500;1,400&display=swap');

:root {
  /* Colors from DESIGN.md */
  --color-primary: #292524;
  --color-primary-active: #0c0a09;
  --color-ink: #0c0a09;
  --color-body: #4e4e4e;
  --color-body-strong: #292524;
  --color-muted: #777169;
  --color-muted-soft: #a8a29e;
  --color-hairline: #e7e5e4;
  --color-hairline-soft: #f0efed;
  --color-hairline-strong: #d6d3d1;
  --color-canvas: #f5f5f5;
  --color-canvas-soft: #fafafa;
  --color-canvas-deep: #0c0a09;
  --color-surface-card: #ffffff;
  --color-surface-strong: #f0efed;
  --color-surface-dark: #0c0a09;
  --color-surface-dark-elevated: #1c1917;
  --color-on-primary: #ffffff;
  --color-on-dark: #ffffff;
  --color-on-dark-soft: #a8a29e;

  /* Atmospheric Gradient Stops */
  --gradient-mint: #a7e5d3;
  --gradient-peach: #f4c5a8;
  --gradient-lavender: #c8b8e0;
  --gradient-sky: #a8c8e8;
  --gradient-rose: #e8b8c4;

  /* Typography */
  --font-display: 'Syne', sans-serif;
  /* Futuristic Auvora alternative */
  --font-serif: 'EB Garamond', serif;
  /* ElevenLabs custom serif alternative */
  --font-body: 'Inter', sans-serif;

  /* Border Radii */
  --rounded-none: 0px;
  --rounded-xs: 4px;
  --rounded-sm: 6px;
  --rounded-md: 8px;
  --rounded-lg: 12px;
  --rounded-xl: 16px;
  --rounded-xxl: 24px;
  --rounded-xxxl: 32px;
  --rounded-pill: 9999px;
  --rounded-full: 9999px;

  /* Transitions */
  --transition-smooth: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-card: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s ease, filter 0.8s ease;
  --transition-fast: all 0.2s ease;
  --bg-grid: #e2e2e2b7;
}

/* Base resets & styles */
body {
  /* background-color: var(--color-canvas); */
  background-image: linear-gradient(var(--bg-grid) 1px, transparent 1px),
    linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  color: var(--color-ink);
  font-family: var(--font-body);
  letter-spacing: 0.16px;
  /* +0.16px letter-spacing for editorial Inter */
  overflow-x: hidden;
  margin: 0;
  padding: 0;
  /* background-color: #efe7d2; */
  background-color: #fff7e4;
  background-image: linear-gradient(var(--bg-grid) 1px, transparent 1px), linear-gradient(90deg, var(--bg-grid) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* Minimal scrollbar — transparent track, only the pill visible */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: transparent;
}

::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.25);
  border-radius: 9999px;
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(0, 0, 0, 0.4);
}

/* Firefox */
html {
  scrollbar-width: thin;
  scrollbar-color: rgba(0, 0, 0, 0.25) transparent;
}

/* Top Navigation Header (DESIGN.md aligned) */
.main-header {
  height: 64px;
  backdrop-filter: blur(10px);
    /* background: #00000036; */
  display: flex;
  align-items: center;
  width: 100%;
  padding: 0 48px;
  position: sticky;
  top: 0;
  z-index: 100;
}

@media (max-width: 991px) {
  .main-header {
    padding: 0 24px;
    height: auto;
    min-height: 64px;
    padding-top: 12px;
    padding-bottom: 12px;
  }
}

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

/* Light mode primary button (ink pill) */
.btn-ink-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-primary);
  color: var(--color-on-primary);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  height: 40px;
  /* Aligned to 40px height from DESIGN.md */
  padding: 0 6px 0 16px;
  border-radius: var(--rounded-pill);
  border: 1px solid var(--color-primary);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(41, 37, 36, 0.15);
}

.btn-ink-primary .btn-text {
  margin-right: 8px;
}

.btn-ink-primary .btn-circle-icon {
  width: 28px;
  height: 28px;
  background-color: #ffffff;
  color: var(--color-ink);
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-ink-primary .btn-circle-icon svg {
  width: 12px;
  height: 12px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

.btn-ink-primary:hover {
  background-color: var(--color-primary-active);
  border-color: var(--color-primary-active);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(12, 10, 9, 0.25);
  color: #ffffff;
}

.btn-ink-primary:hover .btn-circle-icon svg {
  transform: translate(1px, -1px) rotate(-45deg);
}

/* App container background to frame the hero section beautifully */
.app-wrapper {
  padding: 24px;
  min-height: calc(100vh - 64px);
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 768px) {
  .app-wrapper {
    padding: 12px;
  }
}

/* Hero Section Container */
.hero-section {
  position: relative;
  width: 100%;
  max-width: 1400px;
  background-color: var(--color-canvas-deep);
  border-radius: var(--rounded-xxxl);
  overflow: hidden;
  padding: 96px 64px;
  /* Section rhythm padding */
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (max-width: 1024px) {
  .hero-section {
    padding: 64px 32px;
    border-radius: var(--rounded-xxl);
  }
}

@media (max-width: 768px) {
  .hero-section {
    padding: 48px 20px;
    border-radius: var(--rounded-xl);
  }
}

/* Hero Background Video */
.hero-bg-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Dark overlay on top of video so text stays legible */
.hero-section::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(12, 10, 9, 0.55);
  z-index: 0;
  pointer-events: none;
}

/* Animated Ambient Gradient Orbs */
.glow-orbs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.glow-orb {
  position: absolute;
  border-radius: var(--rounded-full);
  filter: blur(140px);
  opacity: 0.25;
  mix-blend-mode: screen;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: var(--gradient-lavender);
  top: -150px;
  right: -50px;
  animation: floatOrb1 25s infinite alternate ease-in-out;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: var(--gradient-sky);
  bottom: -100px;
  left: 20%;
  animation: floatOrb2 20s infinite alternate ease-in-out;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: var(--gradient-mint);
  top: 30%;
  right: 25%;
  animation: floatOrb3 18s infinite alternate ease-in-out;
}

.orb-4 {
  width: 300px;
  height: 300px;
  background: var(--gradient-rose);
  top: 10%;
  left: -50px;
  animation: floatOrb4 22s infinite alternate ease-in-out;
}

/* Animations for orbs */
@keyframes floatOrb1 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-100px, 80px) scale(1.1);
  }
}

@keyframes floatOrb2 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(80px, -90px) scale(0.95);
  }
}

@keyframes floatOrb3 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(-70px, -50px) scale(1.15);
  }
}

@keyframes floatOrb4 {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(60px, 60px) scale(0.9);
  }
}

/* Subtle technological grid pattern overlay */
.grid-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
  z-index: 2;
  mask-image: radial-gradient(circle at 60% 50%, black 30%, transparent 85%);
  -webkit-mask-image: radial-gradient(circle at 60% 50%, black 30%, transparent 85%);
}

/* Hero Content Grid (Asymmetrical Layout) */
.hero-content {
  position: relative;
  z-index: 3;
}

/* Left Side Content */
.hero-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  color: var(--color-on-dark);
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 24px;
  position: relative;
  padding-left: 20px;
}

.hero-tag::before {
  content: '';
  position: absolute;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--gradient-mint);
  border-radius: var(--rounded-full);
  box-shadow: 0 0 10px var(--gradient-mint);
}

.hero-title {
  font-family: var(--font-display);
  font-size: 46px;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -2px;
  color: var(--color-on-dark);
  margin-bottom: 28px;
  max-width: 580px;
}

/* Responsive heading text sizes matching DESIGN.md with modern tweaks */
@media (max-width: 1200px) {
  .hero-title {
    font-size: 60px;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 44px;
    letter-spacing: -1px;
    margin-bottom: 20px;
  }
}

.hero-title span {
  display: inline-block;
  background: linear-gradient(135deg, #ffffff 30%, rgba(255, 255, 255, 0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-title span.accent {
  background: linear-gradient(135deg, var(--gradient-mint) 0%, var(--gradient-lavender) 50%, var(--gradient-peach) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: textShift 12s infinite alternate ease-in-out;
}

@keyframes textShift {
  0% {
    filter: hue-rotate(0deg);
  }

  100% {
    filter: hue-rotate(45deg);
  }
}

.hero-desc {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: var(--color-on-dark-soft);
  margin-bottom: 40px;
  max-width: 480px;
  font-weight: 400;
  letter-spacing: 0.16px;
}

@media (max-width: 768px) {
  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }
}

/* Buttons System */
.cta-group {
  display: flex;
  gap: 16px;
  align-items: center;
  flex-wrap: wrap;
}

/* White filled primary button */
.btn-premium-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 8px 0 24px;
  /* Room for the circular icon */
  border-radius: var(--rounded-pill);
  border: 1px solid #ffffff;
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.btn-premium-primary .btn-text {
  margin-right: 12px;
  z-index: 2;
}

.btn-premium-primary .btn-circle-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-ink);
  color: #ffffff;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
  z-index: 2;
}

.btn-premium-primary .btn-circle-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Primary Button Hover Actions */
.btn-premium-primary:hover {
  background-color: #ffffff;
  box-shadow: 0 8px 30px rgba(255, 255, 255, 0.2);
  transform: translateY(-2px);
}

.btn-premium-primary:hover .btn-circle-icon {
  transform: scale(1.05);
}

.btn-premium-primary:hover .btn-circle-icon svg {
  transform: translate(2px, -2px) rotate(-45deg);
}

/* Secondary outline button */
.btn-premium-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  color: var(--color-on-dark);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 28px;
  border-radius: var(--rounded-pill);
  border: 1px solid rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
}

.btn-premium-outline:hover {
  border-color: #ffffff;
  background-color: rgba(255, 255, 255, 0.05);
  transform: translateY(-2px);
  color: #ffffff;
}

/* Right Side - Slider Container */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  min-height: 480px;
}

@media (max-width: 991px) {
  .hero-right {
    min-height: 400px;
    margin-top: 48px;
  }
}

/* Overlapping Slider Track */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 440px;
  height: 400px;
  perspective: 1000px;
}

.slider-track {
  position: relative;
  width: 100%;
  height: 100%;
  transform-style: preserve-3d;
}

/* Premium Floating Cards */
.slide-card {
  position: absolute;
  top: 0;
  left: 0;
  width: 320px;
  height: 360px;
  border-radius: var(--rounded-xxl);
  padding: 28px;
  background: rgba(28, 25, 23, 0.45);
  /* Transparent Surface Dark Elevated */
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  user-select: none;
  cursor: grab;
  transition: var(--transition-card);
}

.slide-card:active {
  cursor: grabbing;
}

/* Glassmorphism gradient orb inside card (Atmospheric branding) */
.slide-card::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -30%;
  width: 200px;
  height: 200px;
  border-radius: var(--rounded-full);
  filter: blur(40px);
  opacity: 0.15;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

/* Custom card themes using atmospheric gradients */
.slide-card[data-theme="mint"]::before {
  background: var(--gradient-mint);
}

.slide-card[data-theme="peach"]::before {
  background: var(--gradient-peach);
}

.slide-card[data-theme="lavender"]::before {
  background: var(--gradient-lavender);
}

.slide-card[data-theme="sky"]::before {
  background: var(--gradient-sky);
}

/* Card components */
.card-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  border: none;
  padding: 0;
}

.card-category {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-on-dark-soft);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  background: rgba(255, 255, 255, 0.06);
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.card-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--rounded-full);
  background: rgba(255, 255, 255, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 16px;
}

/* Card central visual graphics built in CSS */
.card-graphic {
  position: relative;
  width: 100%;
  height: 120px;
  margin: 16px 0;
  border-radius: var(--rounded-lg);
  overflow: hidden;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.03);
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-graphic-bg {
  position: absolute;
  width: 120%;
  height: 120%;
  opacity: 0.15;
  filter: blur(15px);
  background-size: cover;
  transition: opacity 0.5s ease;
}

.slide-card[data-theme="mint"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-mint), transparent);
}

.slide-card[data-theme="peach"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-peach), transparent);
}

.slide-card[data-theme="lavender"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-lavender), transparent);
}

.slide-card[data-theme="sky"] .card-graphic-bg {
  background-image: radial-gradient(circle, var(--gradient-sky), transparent);
}

/* SVG Canvas / Vector lines inside cards */
.card-graphic svg {
  width: 80%;
  height: auto;
  opacity: 0.8;
  z-index: 2;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-footer {
  background: transparent;
  border: none;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.card-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 6px;
}

.card-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--color-on-dark-soft);
  margin-bottom: 0;
  line-height: 1.4;
}

/* Active / Inactive states animations */
.slide-card.inactive {
  pointer-events: none;
}

.slide-card.active {
  z-index: 10;
  opacity: 1;
  filter: blur(0);
}

.slide-card.active:hover {
  transform: translateY(-8px) rotateX(4deg) rotateY(-4deg) !important;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(255, 255, 255, 0.05),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.18);
}

.slide-card.active:hover::before {
  opacity: 0.35;
}

.slide-card.active:hover .card-graphic svg {
  transform: scale(1.05);
}

/* Slider Navigation & Progress Line */
.slider-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 24px;
}

@media (max-width: 991px) {
  .slider-footer {
    position: relative;
    margin-top: 20px;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
  }
}

.slider-navigation {
  display: flex;
  gap: 12px;
  align-items: center;
}

.slider-arrow-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-full);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
}

.slider-arrow-btn:hover {
  border-color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
}

.slider-arrow-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Bottom Progress Line and Number Count */
.slider-progress-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-grow: 1;
  margin-left: 24px;
}

.slider-counter {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--color-on-dark-soft);
  min-width: 35px;
}

.slider-counter .active-num {
  color: #ffffff;
  font-weight: 700;
}

.slider-progress-bar {
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  flex-grow: 1;
  border-radius: var(--rounded-pill);
  overflow: hidden;
}

.slider-progress-fill {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 33%;
  background: linear-gradient(90deg, var(--gradient-mint), var(--gradient-lavender));
  border-radius: var(--rounded-pill);
  transition: width 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Vertical Scroll Down Indicator */
.scroll-indicator-wrap {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  z-index: 5;
}

@media (max-width: 1024px) {
  .scroll-indicator-wrap {
    display: none;
    /* Hide on smaller screens to maximize layout space */
  }
}

.scroll-text {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  color: var(--color-on-dark-soft);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 2.5px;
}

.scroll-line-container {
  width: 1px;
  height: 60px;
  background: rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.scroll-line-fill {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30%;
  background: linear-gradient(to bottom, var(--gradient-mint), transparent);
  animation: scrollAnim 2s infinite ease-in-out;
}

@keyframes scrollAnim {
  0% {
    transform: translateY(-100%);
  }

  80% {
    transform: translateY(350%);
  }

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

/* Premium micro-interactions and transitions */
.hero-tag, .hero-title, .hero-desc, .cta-group {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-tag {
  animation-delay: 0.1s;
}

.hero-title {
  animation-delay: 0.2s;
}

.hero-desc {
  animation-delay: 0.3s;
}

.cta-group {
  animation-delay: 0.4s;
}

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

/* ==========================================================================
   Why Choose Us Section - style.css
   ========================================================================== */

.why-choose-us-section {
  /* background-color: #f3f3f3;  */
  padding: 96px 0;
  /* 96px section padding rhythm */
  position: relative;
  overflow: hidden;
  color: var(--color-ink);
}

.why-content-wrap {
  padding-left: 20px;
}

@media (max-width: 991px) {
  .why-content-wrap {
    padding-left: 0;
    margin-top: 32px;
  }
}

.why-tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 16px;
}

.why-title {
  font-family: var(--font-display);
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -1.5px;
  color: var(--color-ink);
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .why-title {
    font-size: 32px;
    letter-spacing: -0.8px;
  }
}

.why-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-body);
  margin-bottom: 36px;
  max-width: 520px;
  letter-spacing: 0.16px;
}

.service-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-highlight-card {
  background-color: var(--color-surface-dark-elevated);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--rounded-xxl);
  padding: 32px;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.18);
  transition: var(--transition-fast);
}

.service-highlight-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.22);
}

.service-highlight-label {
  display: inline-block;
  color: var(--color-on-dark-soft);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.service-highlight-title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #ffffff;
  margin-bottom: 12px;
}

.service-highlight-copy {
  color: var(--color-on-dark-soft);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.8;
  margin: 0;
}

@media (max-width: 768px) {
  .service-highlight-card {
    padding: 24px;
  }
}

/* White filled CTA with black circular arrow */
.btn-light-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  height: 52px;
  padding: 0 8px 0 24px;
  border-radius: var(--rounded-pill);
  border: 1px solid var(--color-hairline-strong);
  cursor: pointer;
  transition: var(--transition-fast);
  text-decoration: none;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
}

.btn-light-primary .btn-text {
  margin-right: 12px;
}

.btn-light-primary .btn-circle-icon {
  width: 36px;
  height: 36px;
  background-color: var(--color-ink);
  color: #ffffff;
  border-radius: var(--rounded-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-fast);
}

.btn-light-primary .btn-circle-icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
  transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Button Hover states */
.btn-light-primary:hover {
  background-color: #ffffff;
  border-color: var(--color-ink);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
  color: var(--color-ink);
}

.btn-light-primary:hover .btn-circle-icon svg {
  transform: translate(2px, -2px) rotate(-45deg);
}

/* Image Container Styles */
.why-image-container {
  /* position: relative; */
  border-radius: 32px;
  /* 28px+ rounded corners */
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.04);
  /* aspect-ratio: 4 / 3.4; */
  width: 100%;
}





.why-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.why-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, transparent 60%, rgba(0, 0, 0, 0.15));
  pointer-events: none;
}

.why-image-container:hover .why-img {
  transform: scale(1.04);
}

/* Bottom Metric Cards */
.why-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 40px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.015);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 400px;
  height: 100%;
  transition: var(--transition-card);
  position: relative;
}

@media (max-width: 768px) {
  .why-card {
    padding: 32px;
    min-height: 360px;
  }
}

.why-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.04);
  border-color: var(--color-hairline-strong);
}

.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.stat-wrap {
  display: flex;
  align-items: baseline;
  color: var(--color-ink);
}

.stat-number {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.stat-suffix {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 700;
  color: var(--color-ink);
  margin-left: 2px;
}

/* Badge overlay inside card */
.growth-badge {
  background-color: rgba(167, 229, 211, 0.35);
  /* Soft light mint overlay */
  color: #0f5132;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: var(--rounded-pill);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.growth-badge svg {
  transform: translateY(-1px);
}

.stat-label {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--color-muted);
  background: #f5f5f5;
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
}

/* Dashboard Visuals Area */
.why-card-visual {
  height: 80px;
  margin: 32px 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

/* Card 1 Line Graph Animation */
.growth-line-svg {
  overflow: visible;
}

.graph-path {
  stroke-dasharray: 240;
  stroke-dashoffset: 240;
  transition: stroke-dashoffset 1.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.growth-line-svg.animate .graph-path {
  stroke-dashoffset: 0;
}

.graph-point {
  transform: scale(0);
  transform-origin: 190px 10px;
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1) 1.5s;
}

.growth-line-svg.animate .graph-point {
  transform: scale(1);
}

/* Card 2 Vertical Bar Chart */
.bar-chart-container {
  display: flex;
  align-items: flex-end;
  gap: 10px;
  height: 100%;
  width: 100%;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--color-hairline-soft);
}

.chart-bar {
  flex-grow: 1;
  max-width: 24px;
  background-color: var(--color-hairline);
  border-radius: 4px 4px 0 0;
  height: 0;
  transition: height 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.chart-bar.active {
  background-color: var(--color-ink);
  /* Highlighted active dark bar */
}

/* Card 3 Avatar List */
.avatar-group {
  display: flex;
  align-items: center;
}

.avatar-circle {
  width: 44px;
  height: 44px;
  border-radius: var(--rounded-full);
  border: 2px solid #ffffff;
  margin-right: -12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.avatar-circle.plus-more {
  background-color: var(--color-ink);
  color: #ffffff;
  font-size: 12px;
}

/* Card Footer Content */
.card-bottom {
  position: relative;
  width: 100%;
}

.card-headline {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-ink);
  margin-bottom: 8px;
}

.card-text {
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  color: var(--color-body);
  margin-bottom: 0;
}

.card-index {
  position: absolute;
  bottom: 0;
  right: 0;
  font-family: var(--font-display);
  font-size: 48px;
  font-weight: 800;
  line-height: 1;
  color: rgba(12, 10, 9, 0.025);
  /* Muted layout index indicator */
  user-select: none;
}

/* Intersection Scroll Reveal System */
.reveal-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1),
    transform 1s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-fade-up.revealed {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Selected Work Showcase - style.css
   ========================================================================== */

.project-showcase-section {
  /* background-color: var(--color-canvas); */
  /* ElevenLabs Canvas #f5f5f5 */
  padding: 96px 0;
  /* Spacing rhythm */
  color: var(--color-ink);
  position: relative;
  border
}

.showcase-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-muted);
  margin-bottom: 12px;
}

.showcase-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  color: var(--color-ink);
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .showcase-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
}

.showcase-count {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--color-muted);
  font-weight: 500;
}

.showcase-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-body);
  margin-top: 16px;
  max-width: 520px;
  letter-spacing: 0.16px;
}

/* Stacking Cards Deck */
.stacking-deck {
  position: relative;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.project-card {
  position: sticky;
  top: 120px;
  /* Sticky scroll limit anchor */
  width: 100%;
  max-width: 1300px;
  height: 560px;
  border-radius: var(--rounded-xxxl);
  overflow: hidden;
  background-color: var(--color-ink);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
  /* Forces scrolling depth */
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
  transform-origin: top center;
}

/* Hide native cursor for custom cursor experience inside card */
.project-card:hover {
  cursor: none;
}

@media (max-width: 991px) {
  .project-card {
    height: 480px;
    margin-bottom: 80px;
  }

  .project-card:hover {
    cursor: auto;
    /* Fallback on mobile/tablet */
  }
}

@media (max-width: 768px) {
  .project-card {
    height: 420px;
    border-radius: var(--rounded-xxl);
    margin-bottom: 60px;
  }
}

/* Dark wavy carbon structure */
.card-bg-mesh {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%) -10px 0,
    linear-gradient(225deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%) -10px 0,
    linear-gradient(45deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%),
    linear-gradient(315deg, rgba(255, 255, 255, 0.01) 25%, transparent 25%),
    radial-gradient(circle at 20% 30%, rgba(200, 184, 224, 0.12), transparent 50%),
    /* Atmospheric lavender */
    radial-gradient(circle at 80% 70%, rgba(167, 229, 211, 0.08), transparent 50%),
    /* Atmospheric mint */
    var(--color-surface-dark);
  /* Ink deep background */
  background-size: 20px 20px, 20px 20px, 20px 20px, 20px 20px, 100% 100%, 100% 100%, 100% 100%;
  pointer-events: none;
}

/* Inner Frosted Glass Card */
.inner-glass-card {
  position: absolute;
  top: 48px;
  left: 48px;
  right: 48px;
  bottom: 48px;
  z-index: 2;
  border-radius: var(--rounded-xxl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.15),
    0 25px 60px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

@media (max-width: 768px) {
  .inner-glass-card {
    top: 24px;
    left: 24px;
    right: 24px;
    bottom: 24px;
    border-radius: var(--rounded-xl);
  }
}

.inner-card-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.45;
  /* Dark integrated portrait feel */
  z-index: 1;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
  filter: grayscale(10%) contrast(105%);
}

.project-card:hover .inner-card-img {
  transform: scale(1.05);
  opacity: 0.55;
}

.inner-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  background: linear-gradient(to top, rgba(12, 10, 9, 0.95) 15%, rgba(12, 10, 9, 0.45) 55%, transparent 100%);
  pointer-events: none;
}

.inner-card-content {
  position: relative;
  z-index: 3;
  padding: 48px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .inner-card-content {
    padding: 24px;
  }
}

.card-wordmark {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -2px;
  line-height: 1;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .card-wordmark {
    font-size: 38px;
  }
}

.inner-card-footer {
  width: 100%;
}

.project-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
}

.meta-tag {
  color: var(--gradient-mint);
  text-shadow: 0 0 10px rgba(167, 229, 211, 0.3);
}

.meta-separator {
  color: rgba(255, 255, 255, 0.2);
}

.meta-loc {
  color: var(--color-on-dark-soft);
}

.project-headline {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
  font-weight: 400;
}

@media (max-width: 768px) {
  .project-headline {
    font-size: 13px;
    line-height: 1.4;
  }
}

.btn-read-more {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: #ffffff;
  text-decoration: none;
  letter-spacing: 1px;
  transition: var(--transition-fast);
  border-bottom: 1px dashed rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
}

.btn-read-more:hover {
  color: var(--gradient-mint);
  border-color: var(--gradient-mint);
  text-shadow: 0 0 8px rgba(167, 229, 211, 0.4);
}

/* Custom Cursor floating view badge */
.floating-view-badge {
  position: absolute;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  z-index: 20;
  opacity: 0;
  transform: scale(0.5);
  transition: opacity 0.3s ease, transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Active followers */
.project-card:hover .floating-view-badge {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 991px) {
  .floating-view-badge {
    display: none !important;
    /* Disable mouse badges on touch interfaces */
  }
}

/* ==========================================================================
   Our Services Section - style.css
   ========================================================================== */

.services-section {
  background-color: var(--color-canvas-deep);
  padding: 96px 70px;
  color: #ffffff;
  position: relative;
  border-radius: 40px;
}

.services-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--color-on-dark-soft);
  margin-bottom: 12px;
}

.services-title {
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .services-title {
    font-size: 40px;
    letter-spacing: -1px;
  }
}

.services-count {
  font-family: var(--font-serif);
  font-size: 28px;
  font-style: italic;
  color: var(--color-on-dark-soft);
  font-weight: 500;
}

.services-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  max-width: 520px;
  letter-spacing: 0.16px;
  margin-bottom: 0;
}

@media (min-width: 992px) {
  .services-desc {
    padding-left: 20px;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
  }
}

/* Stacking Cards */
.services-deck {
  position: relative;
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.service-card {
  position: sticky;
  top: 130px;
  /* Sticky anchor limit */
  width: 100%;
  max-width: 1300px;
  height: 480px;
  border-radius: var(--rounded-xxxl);
  background-color: var(--color-surface-dark-elevated);
  /* Slightly lighter dark card #1c1917 */
  border: 1px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
  margin-bottom: 100px;
  /* Overlap scroll depth */
  padding: 48px 64px;
  overflow: hidden;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1),
    opacity 0.6s ease,
    filter 0.6s ease;
  transform-origin: top center;
  display: flex;
  align-items: center;
}

@media (max-width: 991px) {
  .service-card {
    height: auto;
    padding: 48px 32px;
    margin-bottom: 60px;
  }
}

@media (max-width: 768px) {
  .service-card {
    padding: 32px 24px;
    border-radius: var(--rounded-xxl);
    margin-bottom: 40px;
  }
}

/* Overlapping title typography system */
.service-title-group {
  position: relative;
}

.service-title-stroke {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.08);
  text-transform: uppercase;
  letter-spacing: -1px;
  display: block;
  line-height: 1;
}

.service-title-solid {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: -1px;
  line-height: 1;
  margin-top: -24px;
  /* Stack overlap pull */
  position: relative;
  z-index: 2;
}

@media (max-width: 1200px) {
  .service-title-stroke, .service-title-solid {
    font-size: 44px;
  }

  .service-title-solid {
    margin-top: -20px;
  }
}

@media (max-width: 768px) {
  .service-title-stroke, .service-title-solid {
    font-size: 32px;
  }

  .service-title-solid {
    margin-top: -14px;
  }
}

/* Service Pills */
.service-pills {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.service-pill {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 600;
  color: var(--color-on-dark-soft);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 6px 14px;
  border-radius: var(--rounded-pill);
  background: rgba(255, 255, 255, 0.02);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-text {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-on-dark-soft);
  max-width: 520px;
  margin-bottom: 0;
}

@media (max-width: 768px) {
  .service-text {
    font-size: 14px;
    line-height: 1.5;
  }
}

/* Image styling */
.service-image-wrap {
  border-radius: var(--rounded-xxl);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  aspect-ratio: 4 / 3;
  width: 100%;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
  .service-image-wrap {
    margin-top: 16px;
  }
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.service-card:hover .service-img {
  transform: scale(1.04);
}