/* ============================================
   INSPIREX - PROFESSIONAL WEBSITE
   Complete CSS with all improvements
   ============================================ */

@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&display=swap");

/* ===== ROOT VARIABLES ===== */
:root {
  --navy: #0a0e1a;
  --navy-light: #121828;
  --navy-mid: #1a2440;
  --orange: #ff6b35;
  --orange-light: #ff8c5a;
  --orange-dark: #e55a2b;
  --orange-glow: rgba(255, 107, 53, 0.15);
  --orange-gradient: linear-gradient(135deg, #ff6b35, #ff8c5a, #ffa07a);
  --cream: #f5efe8;
  --cream-dark: #e8dfd6;
  --white: #ffffff;
  --text: #0a0e1a;
  --text-light: #4a4a5a;
  --text-lighter: #8a8a9a;
  --shadow: 0 20px 80px rgba(10, 14, 26, 0.06);
  --shadow-hover: 0 30px 90px rgba(10, 14, 26, 0.1);
  --shadow-glow: 0 20px 60px rgba(255, 107, 53, 0.12);
  --radius: 28px;
  --radius-sm: 16px;
  --radius-xs: 12px;
  --transition: 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  --transition-fast: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== RESET ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}
a {
  text-decoration: none;
  color: inherit;
}
ul {
  list-style: none;
}
img,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

/* ===== SCROLL PROGRESS ===== */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: var(--orange-gradient);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
}
.scroll-progress::after {
  content: "";
  position: absolute;
  right: -8px;
  top: -4px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
  animation: progressPulse 2s ease-in-out infinite;
}
@keyframes progressPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.5;
  }
}

/* ===== LOADER ===== */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.page-loader.done {
  opacity: 0;
  transform: scale(1.1);
  pointer-events: none;
  display: none !important;
  height: 0 !important;
}
.loader-content {
  text-align: center;
}
.loader-svg {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
}
.loader-svg .ring {
  fill: none;
  stroke: rgba(255, 107, 53, 0.05);
  stroke-width: 3;
}
.loader-svg .ring-active {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 200;
  stroke-dashoffset: 200;
  animation: loaderRing 1.2s ease-in-out infinite;
}
.loader-svg .check {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 40;
  stroke-dashoffset: 40;
  animation: loaderCheck 0.6s 0.8s ease forwards;
}
@keyframes loaderRing {
  0% {
    stroke-dashoffset: 200;
    transform: rotate(0deg);
  }
  50% {
    stroke-dashoffset: 40;
  }
  100% {
    stroke-dashoffset: 200;
    transform: rotate(720deg);
  }
}
@keyframes loaderCheck {
  to {
    stroke-dashoffset: 0;
  }
}
.loader-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.6rem;
  color: #fff;
  letter-spacing: 0.08em;
}
.loader-text span {
  color: var(--orange);
}
.loader-sub {
  color: orange;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 32px);
  max-width: 1200px;
  z-index: 1000;
  padding: 12px 20px;
  border-radius: 50px;
  transition: var(--transition);
  background: rgba(10, 14, 26, 0.75);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.navbar.scrolled {
  top: 8px;
  background: rgba(10, 14, 26, 0.92);
  box-shadow: 0 4px 40px rgba(0, 0, 0, 0.2);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.1rem;
  color: #fff;
  flex-shrink: 0;
}
.logo-svg {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
}
.logo-svg .bg {
  fill: var(--orange);
  rx: 8;
}
.logo-svg .text {
  fill: #fff;
  font-weight: 800;
  font-size: 16px;
  font-family: "Inter", sans-serif;
}
.logo-svg .ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 2;
}
.logo-svg .sparkle {
  fill: var(--orange);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
}
.nav-links a {
  color: rgba(255, 255, 255, 0.4);
  font-weight: 500;
  font-size: 0.82rem;
  transition: var(--transition);
  position: relative;
  white-space: nowrap;
}
.nav-links a::before {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--orange-gradient);
  transition: var(--transition);
}
.nav-links a:hover::before,
.nav-links a.active::before {
  width: 100%;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
}
.nav-cta {
  background: var(--orange-gradient) !important;
  color: #fff !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 600 !important;
  font-size: 0.78rem !important;
  box-shadow: 0 4px 20px var(--orange-glow);
  white-space: nowrap;
  transition: var(--transition-fast);
}
.nav-cta:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.35);
}

/* ===== MOBILE MENU ===== */
.menu-toggle {
  display: none;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 10px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  transition: var(--transition);
  flex-shrink: 0;
}
.menu-toggle:hover {
  background: rgba(255, 255, 255, 0.08);
}
.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--transition);
}
.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
  width: 22px;
}
.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
  width: 22px;
}

.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 998;
}
.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-links-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 380px;
  height: 100vh;
  background: var(--navy);
  padding: 80px 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  transition: right 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 999;
  border-left: 1px solid rgba(255, 255, 255, 0.04);
  overflow-y: auto;
}
.nav-links-mobile.active {
  right: 0;
}
.nav-links-mobile a {
  font-weight: 500;
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.3);
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.03);
  transition: var(--transition);
  font-family: "Playfair Display", serif;
}
.nav-links-mobile a:hover,
.nav-links-mobile a.active {
  color: #fff;
  padding-left: 16px;
}
.nav-links-mobile .nav-cta-mobile {
  background: var(--orange-gradient);
  color: #fff;
  padding: 16px 24px;
  border-radius: var(--radius-sm);
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
  border: none;
  font-size: 1rem;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: 0 4px 24px var(--orange-glow);
}
.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.35);
}
.btn-secondary {
  background: var(--navy);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-secondary:hover {
  background: var(--navy-light);
  transform: translateY(-3px);
}
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-3px);
}
.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--navy);
}
.btn-outline:hover {
  background: var(--navy);
  color: #fff;
  transform: translateY(-3px);
}
.btn-lg {
  padding: 18px 36px;
  font-size: 1rem;
}
.btn-full {
  width: 100%;
  justify-content: center;
}

/* ===== REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(0.96);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition:
    opacity 0.8s ease,
    transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}
.delay-1 {
  transition-delay: 0.08s;
}
.delay-2 {
  transition-delay: 0.16s;
}
.delay-3 {
  transition-delay: 0.24s;
}
.delay-4 {
  transition-delay: 0.32s;
}
.delay-5 {
  transition-delay: 0.4s;
}

/* ===== SECTION HEADER ===== */
.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--orange);
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--orange-glow);
  margin-bottom: 12px;
}
.section-header {
  text-align: center;
  margin-bottom: 40px;
}
.section-header h2 {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--navy);
  line-height: 1.15;
}
.section-header h2 .highlight {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.section-header p {
  color: var(--text-light);
  font-size: 0.95rem;
  max-width: 520px;
  margin: 8px auto 0;
}
.section-header.light h2 {
  color: #fff;
}
.section-header.light p {
  color: rgba(255, 255, 255, 0.4);
}

/* ============================================
   CINEMATIC HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orbFloat 20s ease-in-out infinite;
}
.hero-bg .orb.g1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.05);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}
.hero-bg .orb.g2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.03);
  bottom: -20%;
  left: -10%;
  animation-delay: -7s;
}
.hero-bg .orb.g3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.02);
  top: 40%;
  left: 30%;
  animation-delay: -14s;
}
@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}
.hero-left {
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.4);
  margin-bottom: 28px;
  backdrop-filter: blur(10px);
}
.hero-badge .live-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5.2rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.hero-title .gradient-text {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--orange-gradient);
  opacity: 0.2;
  border-radius: 4px;
  -webkit-text-fill-color: transparent;
}
.hero-description {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.4);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-actions .btn {
  position: relative;
  overflow: hidden;
}
.hero-actions .btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: shine 3s ease-in-out infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}
.hero-stats .stat-item {
  text-align: left;
}
.hero-stats .stat-item .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats .stat-item .number .suffix {
  color: var(--orange);
}
.hero-stats .stat-item .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.25);
  margin-top: 4px;
  display: block;
}
.hero-stats .stat-item .trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.65rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.1);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-scene {
  width: 100%;
  max-width: 480px;
  position: relative;
  perspective: 1000px;
}
.hero-scene-inner {
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
}
.hero-scene svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(255, 107, 53, 0.05));
}

/* Scene SVG Elements */
.scene-ring {
  fill: none;
  stroke: rgba(255, 107, 53, 0.06);
  stroke-width: 1.5;
}
.scene-ring.active {
  stroke: rgba(255, 107, 53, 0.12);
  stroke-dasharray: 8 16;
  animation: ringRotate 25s linear infinite;
}
@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}
.scene-dot {
  fill: var(--orange);
  animation: dotOrbit 12s ease-in-out infinite;
}
.scene-dot:nth-child(2) {
  animation-delay: 2s;
}
.scene-dot:nth-child(3) {
  animation-delay: 4s;
}
.scene-dot:nth-child(4) {
  animation-delay: 6s;
}
@keyframes dotOrbit {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  50% {
    transform: translate(0, -12px) scale(1.3);
    opacity: 1;
  }
}
.scene-center {
  fill: var(--orange);
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.scene-center-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  opacity: 0.1;
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0;
  }
}
.scene-card {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 1;
  rx: 12;
  transition: all 0.3s ease;
}
.scene-card:hover {
  fill: rgba(255, 255, 255, 0.04);
  stroke: rgba(255, 107, 53, 0.15);
}
.scene-card-text {
  fill: rgba(255, 255, 255, 0.15);
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.scene-card-sub {
  fill: rgba(255, 255, 255, 0.05);
  font-size: 7px;
  font-family: "Inter", sans-serif;
}
.scene-card-icon {
  fill: var(--orange);
  font-size: 14px;
}
.floating-card {
  animation: cardFloat 5s ease-in-out infinite;
}
.floating-card:nth-child(2) {
  animation-delay: 0.8s;
}
.floating-card:nth-child(3) {
  animation-delay: 1.6s;
}
.floating-card:nth-child(4) {
  animation-delay: 2.4s;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
}
.scene-sparkle {
  fill: var(--orange);
  animation: sparklePulse 2.5s ease-in-out infinite;
}
.scene-sparkle:nth-child(2) {
  animation-delay: 0.5s;
}
.scene-sparkle:nth-child(3) {
  animation-delay: 1s;
}
.scene-sparkle:nth-child(4) {
  animation-delay: 1.5s;
}
@keyframes sparklePulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}
.scene-meteor {
  animation: meteorFly 4s ease-in-out infinite;
}
@keyframes meteorFly {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  30% {
    transform: translate(80px, 60px);
    opacity: 1;
  }
  40% {
    opacity: 0;
  }
  100% {
    transform: translate(80px, 60px);
    opacity: 0;
  }
}

.scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.15);
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  animation: scrollBounce 2s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator .mouse {
  width: 20px;
  height: 32px;
  border: 2px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  position: relative;
}
.scroll-indicator .mouse .wheel {
  width: 3px;
  height: 8px;
  background: var(--orange);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2s ease-in-out infinite;
}
@keyframes wheelScroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(16px);
    opacity: 0;
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* ============================================
   FEATURES SECTION
   ============================================ */
.animated-features {
  padding: 80px 0;
  background: var(--cream);
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.feature-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(10, 14, 26, 0.04);
  position: relative;
  overflow: hidden;
}
.feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.feature-card:hover::before {
  transform: scaleX(1);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.feature-card .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
  display: block;
}
.feature-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.feature-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */
.problem-solution {
  padding: 80px 0;
  background: var(--white);
}
.ps-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}
.ps-card {
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}
.ps-card.problem {
  background: #fef2f2;
  border: 1px solid #fecaca;
}
.ps-card.solution {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}
.ps-card .icon {
  font-size: 2.8rem;
  margin-bottom: 12px;
  display: block;
}
.ps-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}
.ps-card p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-light);
}
.ps-card .stat {
  display: inline-block;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  margin-top: 12px;
}
.ps-card .stat-label {
  display: block;
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ============================================
   STATS SHOWCASE
   ============================================ */
.stats-showcase {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  position: relative;
  z-index: 2;
}
.stat-card {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}
.stat-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}
.stat-card .icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  display: block;
}
.stat-card .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  font-weight: 700;
  color: #fff;
  display: block;
}
.stat-card .number .suffix {
  color: var(--orange);
}
.stat-card .label {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.82rem;
  margin-top: 4px;
  display: block;
}

/* ============================================
   PROGRAMS SHOWCASE
   ============================================ */
.programs-showcase {
  padding: 80px 0;
  background: var(--cream);
}
.programs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.program-card {
  background: #fff;
  padding: 32px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(10, 14, 26, 0.04);
}
.program-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}
.program-card .num {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--orange);
  opacity: 0.12;
  line-height: 1;
  display: block;
  margin-bottom: 4px;
}
.program-card .icon {
  font-size: 2.2rem;
  margin-bottom: 8px;
  display: block;
}
.program-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin: 6px 0;
}
.program-card p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
}
.program-card .meta {
  display: flex;
  gap: 16px;
  margin: 12px 0;
  flex-wrap: wrap;
}
.program-card .meta span {
  font-size: 0.78rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 4px;
}
.program-card .arrow {
  display: inline-block;
  margin-top: 12px;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  transition: var(--transition);
}
.program-card:hover .arrow {
  transform: translateX(6px);
}

/* ============================================
   TESTIMONIALS - SIMPLE HORIZONTAL SCROLLER
   ============================================ */

.testimonials-simple {
  padding: 80px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

/* ===== SCROLLER ===== */
.simple-scroller {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}

/* ===== TRACK ===== */
.simple-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ===== CARD ===== */
.simple-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 16px;
  padding: 28px 24px;
  flex-shrink: 0;
  transition: all 0.3s ease;
}

.simple-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.08);
  transform: translateY(-4px);
}

.simple-stars {
  color: #f59e0b;
  font-size: 0.85rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.simple-text {
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 16px;
}

.simple-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.simple-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}

.simple-info h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 0;
}

.simple-info span {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.72rem;
}

/* ===== CONTROLS ===== */
.simple-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 32px;
}

.simple-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.15);
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.simple-btn:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  border-color: rgba(255, 107, 53, 0.08);
  transform: scale(1.05);
}

.simple-dots {
  display: flex;
  gap: 10px;
}

.simple-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.04);
  cursor: pointer;
  transition: all 0.3s ease;
}

.simple-dot:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: scale(1.2);
}

.simple-dot.active {
  background: var(--orange);
  width: 28px;
  border-radius: 6px;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .simple-card {
    min-width: calc(50% - 12px);
  }
}

@media (max-width: 768px) {
  .testimonials-simple {
    padding: 50px 0 30px;
  }

  .simple-card {
    min-width: calc(100% - 0px);
    padding: 20px 18px;
  }

  .simple-text {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  .simple-controls {
    gap: 14px;
    margin-top: 24px;
  }

  .simple-btn {
    width: 38px;
    height: 38px;
  }

  .simple-dots {
    gap: 8px;
  }

  .simple-dot {
    width: 8px;
    height: 8px;
  }

  .simple-dot.active {
    width: 22px;
  }
}

@media (max-width: 480px) {
  .simple-card {
    padding: 16px 14px;
    border-radius: 14px;
  }

  .simple-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }

  .simple-stars {
    font-size: 0.75rem;
  }

  .simple-avatar {
    width: 36px;
    height: 36px;
    font-size: 0.7rem;
  }

  .simple-info h4 {
    font-size: 0.8rem;
  }

  .simple-info span {
    font-size: 0.65rem;
  }

  .simple-controls {
    gap: 10px;
    margin-top: 18px;
  }

  .simple-btn {
    width: 32px;
    height: 32px;
  }

  .simple-btn svg {
    width: 16px;
    height: 16px;
  }

  .simple-dots {
    gap: 6px;
  }

  .simple-dot {
    width: 6px;
    height: 6px;
  }

  .simple-dot.active {
    width: 16px;
  }
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-showcase {
  padding: 80px 0;
  background: var(--white);
}
.cta-inner {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}
.cta-inner h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.15;
}
.cta-inner h2 .highlight {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.cta-inner p {
  color: var(--text-light);
  font-size: 1rem;
  margin: 12px 0 24px;
}
.cta-inner .btn-group {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-inner .trust-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 32px;
  flex-wrap: wrap;
}
.cta-inner .trust-badge span {
  font-size: 0.78rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ============================================
   FAQ SECTION
   ============================================ */
.faq-section {
  padding: 80px 0;
  background: var(--cream);
}
.faq-grid {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  margin-bottom: 12px;
  box-shadow: var(--shadow);
  cursor: pointer;
  transition: var(--transition);
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
}
.faq-item .question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
}
.faq-item .question .toggle {
  font-size: 1.4rem;
  color: var(--orange);
  transition: var(--transition);
}
.faq-item.active .question .toggle {
  transform: rotate(45deg);
}
.faq-item .answer {
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    padding 0.4s ease;
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
}
.faq-item.active .answer {
  max-height: 200px;
  padding-top: 16px;
}

/* ============================================
   PAGE HERO (About, Programs, Vision, Contact)
   ============================================ */
.page-hero {
  padding: 80px 0 50px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
  min-height: auto;
}
.page-hero .bg-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero .bg-glow .sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.page-hero .bg-glow .sphere.g1 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.03);
  right: -10%;
  top: -20%;
}
.page-hero .bg-glow .sphere.g2 {
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 53, 0.02);
  left: -10%;
  bottom: -20%;
}
.page-hero .container {
  position: relative;
  z-index: 2;
}
.page-hero h1 {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: #fff;
  line-height: 1.1;
}
.page-hero h1 .highlight {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}
.page-hero p {
  color: rgba(255, 255, 255, 0.4);
  font-size: clamp(0.95rem, 1.2vw, 1.05rem);
  max-width: 540px;
  margin-top: 12px;
}
.page-hero .sub-highlight {
  color: var(--orange-light);
  font-weight: 600;
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  margin-top: 12px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  padding: 80px 0;
  background: var(--cream);
}
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-text h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}
.about-text p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
  font-size: 0.95rem;
}
.about-text .points {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}
.about-text .points li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--navy);
}
.about-text .points li .check {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.2rem;
}
.about-image {
  background: var(--navy);
  border-radius: var(--radius-sm);
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.05);
  position: relative;
  overflow: hidden;
}
.about-image .pattern {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at 30% 40%,
    rgba(255, 107, 53, 0.04),
    transparent 60%
  );
}

/* ============================================
   VALUES SECTION
   ============================================ */
.values-section {
  padding: 80px 0;
  background: var(--white);
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.value-card {
  text-align: center;
  padding: 32px 24px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: var(--transition);
  border: 1px solid transparent;
}
.value-card:hover {
  border-color: var(--orange);
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.value-card .num {
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
}
.value-card .icon {
  font-size: 2rem;
  margin-bottom: 8px;
  display: block;
}
.value-card h4 {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy);
}
.value-card p {
  color: var(--text-light);
  font-size: 0.85rem;
  margin-top: 6px;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-page {
  padding: 80px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}
.contact-info p {
  color: var(--text-light);
  margin-bottom: 24px;
  font-size: 0.95rem;
}
.contact-info .item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(10, 14, 26, 0.04);
  font-weight: 500;
}
.contact-info .item .icon {
  color: var(--orange);
  font-weight: 800;
  font-size: 1.2rem;
}
.contact-info .stat-box {
  margin-top: 32px;
  background: var(--navy);
  color: #fff;
  padding: 28px;
  border-radius: var(--radius-sm);
}
.contact-info .stat-box .label {
  font-size: 0.7rem;
  opacity: 0.3;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}
.contact-info .stat-box .big {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  margin: 4px 0;
}
.contact-info .stat-box .sub {
  font-size: 0.75rem;
  opacity: 0.3;
}

.contact-form {
  background: #fff;
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
}
.contact-form .group {
  margin-bottom: 18px;
}
.contact-form .group label {
  display: block;
  font-weight: 600;
  font-size: 0.82rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.contact-form .group input,
.contact-form .group select,
.contact-form .group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(10, 14, 26, 0.06);
  border-radius: var(--radius-xs);
  font-size: 0.9rem;
  transition: var(--transition);
  font-family: "Inter", sans-serif;
  background: var(--cream);
  color: var(--text);
}
.contact-form .group input:focus,
.contact-form .group select:focus,
.contact-form .group textarea:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
  background: #fff;
}
.contact-form .group textarea {
  resize: vertical;
  min-height: 80px;
}
.contact-form .submit-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}
.contact-form .submit-row .note {
  font-size: 0.75rem;
  color: var(--text-lighter);
}
.form-success {
  text-align: center;
  padding: 30px 20px;
}
.form-success .icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}
.form-success h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}
.form-success p {
  color: var(--text-light);
}
.hidden {
  display: none !important;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy);
  padding: 50px 0 20px;
  color: rgba(255, 255, 255, 0.3);
}
.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}
.footer-brand .logo {
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-brand p {
  font-size: 0.85rem;
}
.footer-brand .tagline {
  color: var(--orange);
  font-weight: 600;
  margin-top: 4px;
  font-size: 0.85rem;
}
.footer-links {
  display: flex;
  gap: 48px;
}
.footer-links .col h4 {
  color: #fff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 10px;
  font-weight: 600;
}
.footer-links .col a {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 4px;
  transition: var(--transition);
}
.footer-links .col a:hover {
  color: #fff;
  transform: translateX(4px);
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 16px;
  text-align: center;
  font-size: 0.78rem;
}

/* ============================================
   RESPONSIVE BREAKPOINTS
   ============================================ */

/* Laptops & Small Desktops */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-scene {
    max-width: 380px;
  }
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .programs-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ps-grid {
    grid-template-columns: 1fr;
  }
  .about-grid {
    gap: 40px;
  }
  .contact-grid {
    gap: 40px;
  }
}

/* Tablets */
@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }
  .nav-links {
    display: none;
  }

  .navbar {
    top: 12px;
    padding: 10px 16px;
    border-radius: 30px;
    width: calc(100% - 24px);
  }
  .logo {
    font-size: 0.95rem;
    gap: 8px;
  }
  .logo-svg {
    width: 30px;
    height: 30px;
  }

  .hero {
    padding: 80px 0 30px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .stat-item {
    text-align: center;
  }
  .hero-scene {
    max-width: 280px;
    margin: 0 auto;
  }
  .scroll-indicator {
    display: none;
  }

  .features-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .programs-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .values-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }

  .about-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .about-text .points li {
    justify-content: center;
  }
  .about-image {
    max-width: 340px;
    margin: 0 auto;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .contact-info {
    text-align: center;
  }
  .contact-info .item {
    justify-content: center;
  }
  .contact-info .stat-box {
    max-width: 340px;
    margin: 32px auto 0;
  }
  .contact-form {
    max-width: 480px;
    margin: 0 auto;
  }

  .page-hero {
    padding: 70px 0 30px;
    text-align: center;
  }
  .page-hero p {
    margin-left: auto;
    margin-right: auto;
  }

  .section-header h2 {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  .section-header p {
    font-size: 0.9rem;
  }

  .footer-top {
    flex-direction: column;
  }
  .footer-links {
    flex-direction: column;
    gap: 20px;
  }

  .nav-links-mobile {
    width: 80%;
    padding: 70px 24px 24px;
  }

  .cta-inner .btn-group {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .cta-inner .btn-group .btn {
    width: 100%;
    justify-content: center;
  }
  .cta-inner .trust-badge {
    flex-direction: column;
    gap: 8px;
  }
  .ps-card {
    padding: 28px 24px;
  }
}

/* Small Tablets & Large Phones */
@media (max-width: 600px) {
  .hero-title {
    font-size: clamp(2rem, 7vw, 2.8rem);
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 16px;
  }
  .hero-stats .stat-item .number {
    font-size: 1.2rem;
  }
  .hero-scene {
    max-width: 200px;
  }
  .hero-badge {
    font-size: 0.6rem;
    padding: 4px 12px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .stat-card {
    padding: 16px 12px;
  }
  .stat-card .number {
    font-size: 1.6rem;
  }
  .stat-card .icon {
    font-size: 1.6rem;
  }

  .btn-lg {
    padding: 14px 28px;
    font-size: 0.9rem;
  }
  .btn {
    padding: 12px 24px;
    font-size: 0.85rem;
  }

  .container {
    padding: 0 16px;
  }

  .feature-card {
    padding: 24px 20px;
  }
  .program-card {
    padding: 24px 20px;
  }
  .testimonial-card {
    padding: 20px 16px;
  }
  .value-card {
    padding: 24px 16px;
  }

  .section-header {
    margin-bottom: 28px;
  }
  .section-header p {
    font-size: 0.85rem;
  }

  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }
  .page-hero .sub-highlight {
    font-size: 1rem;
  }

  .about-text h2 {
    font-size: 1.6rem;
  }
  .contact-info h2 {
    font-size: 1.6rem;
  }

  /* .contact-form {
    padding: 24px 20px;
  } */

  .faq-item {
    padding: 18px 20px;
  }
  .faq-item .question {
    font-size: 0.9rem;
  }
}

/* Mobile Phones */
@media (max-width: 400px) {
  .hero {
    padding: 70px 0 20px;
  }
  .hero-title {
    font-size: clamp(1.6rem, 8vw, 2.2rem);
  }
  .hero-description {
    font-size: 0.8rem;
  }
  .hero-scene {
    max-width: 160px;
  }
  .hero-stats {
    gap: 12px;
  }
  .hero-stats .stat-item .number {
    font-size: 1rem;
  }
  .hero-stats .stat-item .label {
    font-size: 0.65rem;
  }

  .navbar {
    padding: 6px 12px;
  }
  .logo {
    font-size: 0.85rem;
    gap: 6px;
  }
  .logo-svg {
    width: 24px;
    height: 24px;
  }
  .menu-toggle {
    width: 32px;
    height: 32px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 6px;
  }
  .stat-card {
    padding: 10px 8px;
  }
  .stat-card .number {
    font-size: 1.2rem;
  }
  .stat-card .label {
    font-size: 0.65rem;
  }
  .stat-card .icon {
    font-size: 1.4rem;
  }

  .page-hero {
    padding: 60px 0 20px !important;
  }
  .page-hero h1 {
    font-size: 1.6rem;
  }
  .page-hero p {
    font-size: 0.85rem;
  }

  /* .contact-form {
    padding: 20px 16px;
  } */
  .contact-form .group input,
  .contact-form .group select,
  .contact-form .group textarea {
    padding: 10px 14px;
    font-size: 0.85rem;
  }

  .btn {
    font-size: 0.8rem;
    padding: 10px 20px;
  }
  .btn-lg {
    font-size: 0.85rem;
    padding: 12px 24px;
  }

  .nav-links-mobile {
    padding: 60px 16px 16px;
  }
  .nav-links-mobile a {
    font-size: 1rem;
    padding: 10px 0;
  }

  .value-card .num {
    font-size: 1.4rem;
  }
  .value-card h4 {
    font-size: 0.95rem;
  }
}

/* Landscape Phones */
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 70px 0 20px;
  }
  .hero-grid {
    gap: 20px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }
  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .hero-actions {
    margin-bottom: 16px;
  }
  .hero-stats {
    padding-top: 16px;
    gap: 20px;
  }
  .hero-scene {
    max-width: 160px;
  }
  .hero-badge {
    margin-bottom: 12px;
  }
  .scroll-indicator {
    display: none;
  }

  .page-hero {
    padding: 70px 0 20px !important;
  }
  .page-hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.4rem);
  }

  .section-header {
    margin-bottom: 20px;
  }
  .section-header h2 {
    font-size: 1.4rem;
  }
}

/* Very Large Screens */
@media (min-width: 1400px) {
  .container {
    max-width: 1280px;
  }
  .hero-scene {
    max-width: 560px;
  }
  .hero-title {
    font-size: 5.5rem;
  }
  .features-grid {
    gap: 32px;
  }
  .programs-grid {
    gap: 28px;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal-left {
    opacity: 1 !important;
    transform: none !important;
  }
  .reveal-right {
    opacity: 1 !important;
    transform: none !important;
  }
  .page-loader {
    transition: none !important;
  }
  .scroll-progress {
    transition: none !important;
  }
  .hero-bg .orb {
    animation: none !important;
  }
  .particle {
    animation: none !important;
    opacity: 0 !important;
  }
  .scene-ring.active {
    animation: none !important;
  }
  .scene-dot {
    animation: none !important;
  }
  .scene-center {
    animation: none !important;
  }
  .scene-center-ring {
    animation: none !important;
  }
  .floating-card {
    animation: none !important;
  }
  .scene-sparkle {
    animation: none !important;
  }
  .scene-meteor {
    animation: none !important;
  }
  .scroll-indicator {
    animation: none !important;
  }
  .scroll-indicator .mouse .wheel {
    animation: none !important;
  }
  .hero-actions .btn .btn-shine {
    animation: none !important;
  }
}

/* ===== TOUCH DEVICES ===== */
@media (hover: none) {
  .feature-card:hover {
    transform: none;
    box-shadow: var(--shadow);
  }
  .feature-card:hover::before {
    transform: scaleX(0);
  }
  .program-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: var(--shadow);
  }
  .stat-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
  }
  .testimonial-card:hover {
    transform: none;
    background: rgba(255, 255, 255, 0.02);
  }
  .value-card:hover {
    transform: none;
    border-color: transparent;
    box-shadow: none;
  }
  .btn-primary:hover {
    transform: none;
    box-shadow: 0 4px 24px var(--orange-glow);
  }
  .btn-secondary:hover {
    transform: none;
  }
  .btn-ghost:hover {
    transform: none;
  }
  .btn-outline:hover {
    transform: none;
    background: transparent;
    color: var(--navy);
  }
  .nav-links a::before {
    display: none;
  }
  .program-card .arrow {
    display: inline-block;
  }
  .faq-item:hover {
    box-shadow: var(--shadow);
  }
  .scene-card:hover {
    fill: rgba(255, 255, 255, 0.02);
    stroke: rgba(255, 255, 255, 0.04);
  }
}

/* ===== ACCESSIBILITY ===== */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}

/* ===== PERFORMANCE ===== */
img,
video {
  background: var(--cream);
  transition: opacity 0.3s ease;
}
img:not([src]),
video:not([src]) {
  opacity: 0;
}

/* ===== PRINT STYLES ===== */
@media print {
  .navbar,
  .scroll-progress,
  .page-loader,
  .scroll-indicator,
  .hero-bg,
  .particles-container,
  .hero-grid-lines {
    display: none !important;
  }
  .hero {
    min-height: auto;
    padding: 40px 0;
    background: #fff;
  }
  .hero h1 {
    color: var(--navy);
  }
  .hero p {
    color: var(--text-light);
  }
  .hero-stats .stat-item .number {
    color: var(--navy);
  }
  .section-header h2 {
    color: var(--navy);
  }
  .footer {
    background: #fff;
    color: var(--text-light);
  }
  .footer-brand .logo {
    color: var(--navy);
  }
  .footer-links .col h4 {
    color: var(--navy);
  }
  .footer-links .col a {
    color: var(--text-light);
  }
}

/* ===== UTILITY CLASSES ===== */
.text-center {
  text-align: center;
}
.text-left {
  text-align: left;
}
.text-right {
  text-align: right;
}
.mt-1 {
  margin-top: 8px;
}
.mt-2 {
  margin-top: 16px;
}
.mt-3 {
  margin-top: 24px;
}
.mt-4 {
  margin-top: 32px;
}
.mb-1 {
  margin-bottom: 8px;
}
.mb-2 {
  margin-bottom: 16px;
}
.mb-3 {
  margin-bottom: 24px;
}
.mb-4 {
  margin-bottom: 32px;
}
.hidden {
  display: none !important;
}
.visible {
  display: block !important;
}

/* ============================================
   ANIMATED SVG ICONS - ADD TO EXISTING CSS
   ============================================ */

/* ===== SVG Icon Base ===== */
.svg-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: block;
}
.svg-icon.sm {
  width: 32px;
  height: 32px;
}
.svg-icon.lg {
  width: 64px;
  height: 64px;
}
.svg-icon.xl {
  width: 80px;
  height: 80px;
}

/* ===== Icon Colors ===== */
.icon-orange {
  stroke: var(--orange);
  fill: none;
}
.icon-orange-fill {
  fill: var(--orange);
}
.icon-navy {
  stroke: var(--navy);
  fill: none;
}
.icon-white {
  stroke: #fff;
  fill: none;
}
.icon-white-fill {
  fill: #fff;
}

/* ===== SVG Animations ===== */
@keyframes iconPulse {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
@keyframes iconSpin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes iconDraw {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}
@keyframes iconFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}
@keyframes iconBounce {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.15);
  }
}
@keyframes iconRotate {
  to {
    transform: rotate(360deg);
  }
}
@keyframes iconDash {
  to {
    stroke-dashoffset: 0;
  }
}

.icon-pulse {
  animation: iconPulse 2s ease-in-out infinite;
}
.icon-spin {
  animation: iconSpin 8s linear infinite;
  transform-origin: center;
}
.icon-float {
  animation: iconFloat 3s ease-in-out infinite;
}
.icon-bounce {
  animation: iconBounce 2s ease-in-out infinite;
}
.icon-draw {
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  animation: iconDash 1.5s ease forwards;
}

/* ============================================
   VIDEO SECTION - ENHANCED
   ============================================ */
.video-showcase {
  padding: 100px 0;
  background: var(--cream);
}
.video-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 30px;
  margin-top: 20px;
}
.video-main-card {
  background: var(--navy);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: var(--transition);
}
.video-main-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.video-main-card .video-wrapper {
  position: relative;
  aspect-ratio: 16/9;
  cursor: pointer;
  overflow: hidden;
}
.video-main-card .video-wrapper .video-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(145deg, var(--navy), #1a3558);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.video-main-card .video-wrapper .video-placeholder .play-circle {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.4);
  position: relative;
  z-index: 2;
}
.video-main-card .video-wrapper .video-placeholder .play-circle:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.5);
}
.video-main-card .video-wrapper .video-placeholder .play-circle svg {
  width: 32px;
  height: 32px;
  margin-left: 4px;
}
.video-main-card .video-wrapper .video-placeholder .play-ring {
  position: absolute;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.15);
  animation: playRing 2.5s ease-out infinite;
}
@keyframes playRing {
  0% {
    transform: scale(0.8);
    opacity: 1;
  }
  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}
.video-main-card .video-wrapper .video-placeholder .video-duration {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  padding: 4px 12px;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  backdrop-filter: blur(8px);
}
.video-main-card .video-info {
  padding: 24px 28px;
}
.video-main-card .video-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 6px;
}
.video-main-card .video-info p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.9rem;
}
.video-main-card .video-info .video-meta {
  display: flex;
  gap: 20px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.video-main-card .video-info .video-meta span {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  gap: 6px;
}

.video-side-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.video-side-item {
  background: #fff;
  border-radius: var(--radius-sm);
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.video-side-item:hover {
  transform: translateX(6px);
  box-shadow: var(--shadow-hover);
  border-color: var(--orange);
}
.video-side-item .thumb {
  width: 80px;
  height: 56px;
  border-radius: 10px;
  background: var(--navy);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.video-side-item .thumb .play-icon {
  color: #fff;
  font-size: 1.2rem;
  opacity: 0.6;
  transition: var(--transition);
}
.video-side-item:hover .thumb .play-icon {
  opacity: 1;
  transform: scale(1.1);
}
.video-side-item .thumb .duration {
  position: absolute;
  bottom: 4px;
  right: 4px;
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  font-size: 0.55rem;
  padding: 1px 6px;
  border-radius: 4px;
}
.video-side-item .info h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 2px;
}
.video-side-item .info p {
  font-size: 0.78rem;
  color: var(--text-light);
}

/* ============================================
   GUIDER SECTION
   ============================================ */
.guider-section {
  padding: 100px 0;
  background: var(--white);
}
.guider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.guider-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 32px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}
.guider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}
.guider-card:hover::before {
  transform: scaleX(1);
}
.guider-card:hover {
  transform: translateY(-8px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.guider-card .avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  margin: 0 auto 16px;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: var(--transition);
}
.guider-card .avatar .ring {
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.15);
  animation: avatarRing 2s ease-in-out infinite;
}
@keyframes avatarRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}
.guider-card .avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.guider-card h3 {
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.guider-card .role {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
}
.guider-card .bio {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 10px;
  line-height: 1.6;
}
.guider-card .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 14px;
}
.guider-card .social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  color: var(--text-light);
  font-size: 0.9rem;
}
.guider-card .social-links a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}
.guider-card .expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 10px;
}
.guider-card .expertise span {
  font-size: 0.65rem;
  padding: 2px 12px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 600;
}

/* ============================================
   INTERACTIVE TESTIMONIALS
   ============================================ */
.testimonials-showcase {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(255, 107, 53, 0.03),
    transparent 70%
  );
  pointer-events: none;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 0;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 32px 28px;
  transition: var(--transition);
  flex-shrink: 0;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}
.testimonial-card .stars {
  color: var(--orange);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
}
.testimonial-card .quote-icon {
  font-size: 1.6rem;
  color: rgba(255, 107, 53, 0.15);
  margin-bottom: 8px;
  display: block;
}
.testimonial-card blockquote {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.95rem;
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 16px;
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.testimonial-card .author .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
  position: relative;
}
.testimonial-card .author .avatar .status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #10b981;
  border: 2px solid var(--navy);
}
.testimonial-card .author h4 {
  color: #fff;
  font-size: 0.9rem;
  font-weight: 600;
}
.testimonial-card .author p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
}
.testimonial-card .tags {
  display: flex;
  gap: 6px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.testimonial-card .tags span {
  font-size: 0.6rem;
  padding: 2px 10px;
  border-radius: 50px;
  background: rgba(255, 107, 53, 0.08);
  color: rgba(255, 107, 53, 0.5);
  border: 1px solid rgba(255, 107, 53, 0.06);
}

/* Testimonial Controls */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 40px;
}
.testimonial-controls button {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-controls button:hover {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: scale(1.05);
}
.testimonial-controls button:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.testimonial-controls .dots {
  display: flex;
  gap: 8px;
}
.testimonial-controls .dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: var(--transition);
}
.testimonial-controls .dots .dot.active {
  background: var(--orange);
  width: 24px;
  border-radius: 4px;
}
.testimonial-controls .dots .dot:hover {
  background: rgba(255, 255, 255, 0.3);
}
.testimonial-controls .dots .dot.active:hover {
  background: var(--orange);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .video-grid {
    grid-template-columns: 1fr;
  }
  .guider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .guider-grid {
    grid-template-columns: 1fr;
    max-width: 360px;
    margin: 0 auto;
  }
  .testimonial-card {
    min-width: calc(100%);
  }
  .video-main-card .video-info {
    padding: 16px 20px;
  }
  .video-side-item {
    padding: 14px 16px;
  }
  .video-side-item .thumb {
    width: 60px;
    height: 42px;
  }
  .testimonial-controls {
    gap: 12px;
  }
  .testimonial-controls button {
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .video-main-card .video-wrapper .video-placeholder .play-circle {
    width: 56px;
    height: 56px;
  }
  .video-main-card .video-wrapper .video-placeholder .play-circle svg {
    width: 22px;
    height: 22px;
  }
  .video-side-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .video-side-item .thumb {
    width: 100%;
    height: 120px;
  }
}

/* ============================================
   INTERACTIVE LOADER - PREMIUM
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 0.8s ease,
    transform 0.8s ease;
}
.page-loader.done {
  opacity: 0;
  transform: scale(1.05);
  pointer-events: none;
  display: none !important;
  height: 0 !important;
}

.loader-content {
  text-align: center;
  position: relative;
}

/* Loader Animated Rings */
.loader-rings {
  position: relative;
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
}
.loader-rings .ring {
  position: absolute;
  border-radius: 50%;
  border: 2px solid transparent;
}
.loader-rings .ring.r1 {
  width: 120px;
  height: 120px;
  border-top-color: var(--orange);
  border-right-color: var(--orange-light);
  animation: loaderSpin 1.2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
.loader-rings .ring.r2 {
  width: 90px;
  height: 90px;
  top: 15px;
  left: 15px;
  border-bottom-color: var(--orange);
  border-left-color: var(--orange-light);
  animation: loaderSpin 1.6s cubic-bezier(0.34, 1.56, 0.64, 1) infinite reverse;
}
.loader-rings .ring.r3 {
  width: 60px;
  height: 60px;
  top: 30px;
  left: 30px;
  border-top-color: #ffa07a;
  border-right-color: var(--orange);
  animation: loaderSpin 2s cubic-bezier(0.34, 1.56, 0.64, 1) infinite;
}
.loader-rings .ring.r4 {
  width: 30px;
  height: 30px;
  top: 45px;
  left: 45px;
  background: var(--orange);
  opacity: 0.3;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

@keyframes loaderSpin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loaderPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.6;
  }
}

/* Loader Progress */
.loader-progress {
  width: 200px;
  height: 3px;
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
  overflow: hidden;
  margin: 20px auto 0;
  position: relative;
}
.loader-progress .bar {
  height: 100%;
  width: 0%;
  background: var(--orange-gradient);
  border-radius: 4px;
  animation: loaderProgress 2s ease forwards;
}
.loader-progress .bar-text {
  position: absolute;
  right: 0;
  top: -20px;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
  letter-spacing: 0.05em;
}
@keyframes loaderProgress {
  0% {
    width: 0%;
  }
  20% {
    width: 15%;
  }
  40% {
    width: 35%;
  }
  60% {
    width: 60%;
  }
  80% {
    width: 80%;
  }
  100% {
    width: 100%;
  }
}

.loader-text {
  font-family: "Playfair Display", serif;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  letter-spacing: 0.08em;
  margin-top: 20px;
}
.loader-text span {
  color: var(--orange);
}
.loader-sub {
  color: rgba(255, 255, 255, 0.08);
  font-size: 0.6rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-top: 4px;
}

/* ============================================
   CINEMATIC HERO - PREMIUM
   ============================================ */
.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Hero Background - Cinematic */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

/* Gradient Orbs - Enhanced */
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: orbFloat 25s ease-in-out infinite;
}
.hero-bg .orb.g1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 107, 53, 0.04);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}
.hero-bg .orb.g2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.02);
  bottom: -20%;
  left: -10%;
  animation-delay: -8s;
}
.hero-bg .orb.g3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 107, 53, 0.03);
  top: 50%;
  left: 30%;
  animation-delay: -16s;
}
.hero-bg .orb.g4 {
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 53, 0.06);
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  25% {
    transform: translate(80px, -60px) scale(1.1);
  }
  50% {
    transform: translate(-40px, 80px) scale(0.9);
  }
  75% {
    transform: translate(60px, 40px) scale(1.05);
  }
}

/* Floating Particles - Enhanced */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
}
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 5%;
  top: 15%;
  animation: particleFloat 10s ease-in-out infinite;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 20%;
  top: 70%;
  animation: particleFloat 12s ease-in-out infinite 1.5s;
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 3%;
  top: 45%;
  animation: particleFloat 8s ease-in-out infinite 3s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  right: 12%;
  top: 10%;
  animation: particleFloat 11s ease-in-out infinite 0.8s;
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  right: 5%;
  top: 55%;
  animation: particleFloat 13s ease-in-out infinite 2.2s;
}
.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  right: 20%;
  top: 35%;
  animation: particleFloat 9.5s ease-in-out infinite 3.5s;
}
.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  left: 40%;
  top: 8%;
  animation: particleFloat 10.5s ease-in-out infinite 4.2s;
}
.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  left: 30%;
  top: 82%;
  animation: particleFloat 8.5s ease-in-out infinite 1.2s;
}
.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  right: 35%;
  top: 70%;
  animation: particleFloat 11.5s ease-in-out infinite 2.8s;
}
.particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 50%;
  top: 45%;
  animation: particleFloat 9.2s ease-in-out infinite 3.8s;
}
.particle:nth-child(11) {
  width: 3px;
  height: 3px;
  right: 8%;
  top: 80%;
  animation: particleFloat 10.8s ease-in-out infinite 0.5s;
}
.particle:nth-child(12) {
  width: 5px;
  height: 5px;
  left: 12%;
  top: 50%;
  animation: particleFloat 8.2s ease-in-out infinite 1.8s;
}
.particle:nth-child(13) {
  width: 4px;
  height: 4px;
  right: 45%;
  top: 20%;
  animation: particleFloat 9.8s ease-in-out infinite 2.5s;
}
.particle:nth-child(14) {
  width: 6px;
  height: 6px;
  left: 55%;
  top: 75%;
  animation: particleFloat 10.2s ease-in-out infinite 3.2s;
}
.particle:nth-child(15) {
  width: 3px;
  height: 3px;
  right: 25%;
  top: 90%;
  animation: particleFloat 8.8s ease-in-out infinite 0.3s;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translate(0, 0) scale(0) rotate(0deg);
  }
  15% {
    opacity: 0.5;
    transform: translate(40px, -50px) scale(1) rotate(45deg);
  }
  40% {
    opacity: 0.4;
    transform: translate(-20px, -100px) scale(0.8) rotate(90deg);
  }
  70% {
    opacity: 0.3;
    transform: translate(30px, -150px) scale(0.6) rotate(135deg);
  }
  100% {
    opacity: 0;
    transform: translate(50px, -200px) scale(0) rotate(180deg);
  }
}

/* Hero Grid Lines - Enhanced */
.hero-grid-lines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 80px 80px;
  animation: gridMove 40s linear infinite;
}
@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(80px, 80px);
  }
}

/* ===== HERO CONTENT ===== */
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ===== HERO LEFT ===== */
.hero-left {
  position: relative;
}

/* Hero Badge - Premium */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.35);
  margin-bottom: 32px;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  animation: badgePulse 3s ease-in-out infinite;
}
@keyframes badgePulse {
  0%,
  100% {
    border-color: rgba(255, 255, 255, 0.04);
  }
  50% {
    border-color: rgba(255, 107, 53, 0.15);
  }
}
.hero-badge .live-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10b981;
  animation: livePulse 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
}
@keyframes livePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
    box-shadow: 0 0 20px rgba(16, 185, 129, 0.2);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
    box-shadow: 0 0 40px rgba(16, 185, 129, 0);
  }
}

/* Hero Title - Premium Typography */
.hero-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(3rem, 7.5vw, 5.5rem);
  color: #fff;
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
}
.hero-title .gradient-text {
  background: var(--orange-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}
.hero-title .gradient-text::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 6px;
  background: var(--orange-gradient);
  opacity: 0.15;
  border-radius: 4px;
  -webkit-text-fill-color: transparent;
}
.hero-title .typewriter {
  display: inline-block;
  border-right: 3px solid var(--orange);
  padding-right: 8px;
  animation: blink 0.8s step-end infinite;
}
@keyframes blink {
  0%,
  100% {
    border-color: var(--orange);
  }
  50% {
    border-color: transparent;
  }
}

/* Hero Description - Premium */
.hero-description {
  font-size: clamp(1rem, 1.2vw, 1.15rem);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 36px;
}
.hero-description strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Hero Actions - Premium */
.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 44px;
}
.hero-actions .btn {
  position: relative;
  overflow: hidden;
  padding: 16px 34px;
  font-size: 0.95rem;
}
.hero-actions .btn-primary {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.25);
}
.hero-actions .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.4);
}
.hero-actions .btn .btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.15),
    transparent
  );
  animation: shine 3.5s ease-in-out infinite;
}
@keyframes shine {
  0% {
    left: -100%;
  }
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
.hero-actions .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.06);
}
.hero-actions .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* Hero Stats - Premium */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.hero-stats .stat-item {
  text-align: left;
}
.hero-stats .stat-item .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats .stat-item .number .suffix {
  color: var(--orange);
}
.hero-stats .stat-item .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 6px;
  display: block;
}
.hero-stats .stat-item .trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
  font-weight: 600;
}

/* ===== HERO RIGHT - 3D INTERACTIVE SCENE ===== */
.hero-right {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-scene {
  width: 100%;
  max-width: 520px;
  position: relative;
  perspective: 1200px;
}
.hero-scene-inner {
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}

/* 3D SVG Scene - Premium */
.hero-scene svg {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 30px 80px rgba(255, 107, 53, 0.03));
}

/* Scene Rings - Enhanced */
.scene-ring {
  fill: none;
  stroke: rgba(255, 107, 53, 0.04);
  stroke-width: 1.5;
}
.scene-ring.active {
  stroke: rgba(255, 107, 53, 0.08);
  stroke-dasharray: 10 20;
  animation: ringRotate 30s linear infinite;
}
.scene-ring.active2 {
  stroke: rgba(255, 107, 53, 0.05);
  stroke-dasharray: 4 12;
  animation: ringRotate 20s linear infinite reverse;
}
@keyframes ringRotate {
  to {
    transform: rotate(360deg);
  }
}

/* Scene Orbital Dots - Enhanced */
.scene-dot {
  fill: var(--orange);
  animation: dotOrbit 14s ease-in-out infinite;
}
.scene-dot:nth-child(2) {
  animation-delay: 2.5s;
  fill: var(--orange-light);
}
.scene-dot:nth-child(3) {
  animation-delay: 5s;
}
.scene-dot:nth-child(4) {
  animation-delay: 7.5s;
  fill: var(--orange-light);
}
@keyframes dotOrbit {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.2;
  }
  25% {
    transform: translate(0, -14px) scale(1.3);
    opacity: 1;
  }
  75% {
    transform: translate(0, 8px) scale(0.8);
    opacity: 0.5;
  }
}

/* Scene Center - Enhanced */
.scene-center {
  fill: var(--orange);
  animation: centerPulse 3.5s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.12);
    opacity: 1;
  }
}
.scene-center-ring {
  fill: none;
  stroke: var(--orange);
  stroke-width: 1.5;
  opacity: 0.08;
  animation: ringPulse 3s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

/* Scene Floating Cards - Premium */
.scene-card {
  fill: rgba(255, 255, 255, 0.015);
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 1;
  rx: 14;
  transition: all 0.4s ease;
  cursor: pointer;
}
.scene-card:hover {
  fill: rgba(255, 255, 255, 0.03);
  stroke: rgba(255, 107, 53, 0.12);
  stroke-width: 1.5;
}
.scene-card-text {
  fill: white;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.scene-card-sub {
  fill: gray;
  font-size: 10px;
  font-family: "Inter", sans-serif;
}
.scene-card-icon {
  fill: var(--orange);
  font-size: 15px;
}

/* Floating Cards Animation - Enhanced */
.floating-card {
  animation: cardFloat 6s ease-in-out infinite;
}
.floating-card:nth-child(2) {
  animation-delay: 1s;
}
.floating-card:nth-child(3) {
  animation-delay: 2s;
}
.floating-card:nth-child(4) {
  animation-delay: 3s;
}
@keyframes cardFloat {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-8px) rotate(1deg);
  }
  75% {
    transform: translateY(4px) rotate(-1deg);
  }
}

/* Scene Sparkles - Enhanced */
.scene-sparkle {
  fill: var(--orange);
  animation: sparklePulse 3s ease-in-out infinite;
}
.scene-sparkle:nth-child(2) {
  animation-delay: 0.6s;
  fill: var(--orange-light);
}
.scene-sparkle:nth-child(3) {
  animation-delay: 1.2s;
}
.scene-sparkle:nth-child(4) {
  animation-delay: 1.8s;
  fill: var(--orange-light);
}
.scene-sparkle:nth-child(5) {
  animation-delay: 2.4s;
}
.scene-sparkle:nth-child(6) {
  animation-delay: 3s;
  fill: var(--orange-light);
}
@keyframes sparklePulse {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
}

/* Scene Meteor - Enhanced */
.scene-meteor {
  animation: meteorFly 6s ease-in-out infinite;
}
@keyframes meteorFly {
  0% {
    transform: translate(0, 0) rotate(0deg);
    opacity: 0;
  }
  5% {
    opacity: 0.8;
  }
  15% {
    transform: translate(100px, 70px) rotate(10deg);
    opacity: 0.6;
  }
  30% {
    transform: translate(60px, 120px) rotate(20deg);
    opacity: 0.3;
  }
  40% {
    opacity: 0;
  }
  100% {
    transform: translate(60px, 120px);
    opacity: 0;
  }
}
.scene-meteor-trail {
  animation: meteorTrail 6s ease-in-out infinite;
}
@keyframes meteorTrail {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 0.3;
  }
  20% {
    opacity: 0.1;
  }
  40% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}

/* ===== SCROLL INDICATOR - Enhanced ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.06);
  font-size: 0.55rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.scroll-indicator .mouse {
  width: 24px;
  height: 38px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  position: relative;
}
.scroll-indicator .mouse .wheel {
  width: 3px;
  height: 10px;
  background: var(--orange);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelScroll 2.2s ease-in-out infinite;
}
@keyframes wheelScroll {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(20px);
    opacity: 0;
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
.scroll-indicator .label {
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.04);
  letter-spacing: 0.3em;
}

/* ============================================
   HERO RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid {
    gap: 40px;
  }
  .hero-scene {
    max-width: 380px;
  }
  .hero-bg .orb.g1 {
    width: 400px;
    height: 400px;
  }
  .hero-bg .orb.g2 {
    width: 350px;
    height: 350px;
  }
  .hero-bg .orb.g3 {
    width: 250px;
    height: 250px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 30px;
    min-height: auto;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-left {
    text-align: center;
  }
  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-actions {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .stat-item {
    text-align: center;
  }
  .hero-scene {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-bg .orb.g1 {
    width: 250px;
    height: 250px;
  }
  .hero-bg .orb.g2 {
    width: 200px;
    height: 200px;
  }
  .hero-bg .orb.g3 {
    width: 150px;
    height: 150px;
  }
  .scroll-indicator {
    display: none;
  }
  .hero-grid-lines {
    display: none;
  }
  .particles-container {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 70px 0 20px;
  }
  .hero-title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-description {
    font-size: 0.85rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stats .stat-item .number {
    font-size: 1.2rem;
  }
  .hero-scene {
    max-width: 200px;
  }
  .hero-badge {
    font-size: 0.55rem;
    padding: 4px 12px;
    gap: 6px;
  }
  .hero-badge .live-dot {
    width: 5px;
    height: 5px;
  }
}
@media (max-width: 400px) {
  .hero-scene {
    max-width: 160px;
  }
  .hero-stats {
    gap: 14px;
  }
  .hero-stats .stat-item .number {
    font-size: 1rem;
  }
  .hero-stats .stat-item .label {
    font-size: 0.6rem;
  }
}
@media (max-height: 600px) and (orientation: landscape) {
  .hero {
    min-height: auto;
    padding: 70px 0 20px;
  }
  .hero-grid {
    gap: 20px;
  }
  .hero-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }
  .hero-description {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }
  .hero-actions {
    margin-bottom: 16px;
  }
  .hero-stats {
    padding-top: 16px;
    gap: 20px;
  }
  .hero-scene {
    max-width: 160px;
  }
  .hero-badge {
    margin-bottom: 12px;
  }
  .scroll-indicator {
    display: none;
  }
}
@media (min-width: 1400px) {
  .hero-scene {
    max-width: 600px;
  }
  .hero-title {
    font-size: 5.8rem;
  }
  .hero-bg .orb.g1 {
    width: 700px;
    height: 700px;
  }
  .hero-bg .orb.g2 {
    width: 600px;
    height: 600px;
  }
}

/* ============================================
   HERO - ULTRA INTERACTIVE
   ============================================ */

/* Hero Background - Enhanced */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg .orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: orbFloat 25s ease-in-out infinite;
  transition: transform 0.3s ease;
}
.hero-bg .orb.g1 {
  width: 600px;
  height: 600px;
  background: rgba(255, 107, 53, 0.04);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}
.hero-bg .orb.g2 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.02);
  bottom: -20%;
  left: -10%;
  animation-delay: -8s;
}
.hero-bg .orb.g3 {
  width: 350px;
  height: 350px;
  background: rgba(255, 107, 53, 0.03);
  top: 50%;
  left: 30%;
  animation-delay: -16s;
}
.hero-bg .orb.g4 {
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 53, 0.06);
  bottom: 20%;
  right: 15%;
  animation-delay: -4s;
}

/* Hero Floating Particles - Enhanced */
.particles-container {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--orange);
  opacity: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}
.particle:hover {
  transform: scale(2) !important;
  background: #fff;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}
.particle:nth-child(1) {
  width: 4px;
  height: 4px;
  left: 5%;
  top: 15%;
  animation: particleFloat 10s ease-in-out infinite;
}
.particle:nth-child(2) {
  width: 6px;
  height: 6px;
  left: 20%;
  top: 70%;
  animation: particleFloat 12s ease-in-out infinite 1.5s;
}
.particle:nth-child(3) {
  width: 3px;
  height: 3px;
  left: 3%;
  top: 45%;
  animation: particleFloat 8s ease-in-out infinite 3s;
}
.particle:nth-child(4) {
  width: 5px;
  height: 5px;
  right: 12%;
  top: 10%;
  animation: particleFloat 11s ease-in-out infinite 0.8s;
}
.particle:nth-child(5) {
  width: 4px;
  height: 4px;
  right: 5%;
  top: 55%;
  animation: particleFloat 13s ease-in-out infinite 2.2s;
}
.particle:nth-child(6) {
  width: 7px;
  height: 7px;
  right: 20%;
  top: 35%;
  animation: particleFloat 9.5s ease-in-out infinite 3.5s;
}
.particle:nth-child(7) {
  width: 3px;
  height: 3px;
  left: 40%;
  top: 8%;
  animation: particleFloat 10.5s ease-in-out infinite 4.2s;
}
.particle:nth-child(8) {
  width: 5px;
  height: 5px;
  left: 30%;
  top: 82%;
  animation: particleFloat 8.5s ease-in-out infinite 1.2s;
}
.particle:nth-child(9) {
  width: 4px;
  height: 4px;
  right: 35%;
  top: 70%;
  animation: particleFloat 11.5s ease-in-out infinite 2.8s;
}
.particle:nth-child(10) {
  width: 6px;
  height: 6px;
  left: 50%;
  top: 45%;
  animation: particleFloat 9.2s ease-in-out infinite 3.8s;
}

/* Hero Stats - Animated */
.hero-stats .stat-item {
  position: relative;
  cursor: pointer;
  padding: 8px 16px;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.hero-stats .stat-item:hover {
  background: rgba(255, 255, 255, 0.02);
  transform: translateY(-4px);
}
.hero-stats .stat-item .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 2.8vw, 2.6rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
  transition: color 0.3s ease;
}
.hero-stats .stat-item:hover .number {
  color: var(--orange);
}
.hero-stats .stat-item .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 6px;
  display: block;
  transition: color 0.3s ease;
}
.hero-stats .stat-item:hover .label {
  color: rgba(255, 255, 255, 0.5);
}
.hero-stats .stat-item .trend {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 0.6rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
  font-weight: 600;
  transition: all 0.3s ease;
}
.hero-stats .stat-item:hover .trend {
  background: rgba(16, 185, 129, 0.12);
  transform: scale(1.05);
}
.hero-stats .stat-item .stat-bar {
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--orange-gradient);
  border-radius: 2px;
  transition: width 1s ease;
}
.hero-stats .stat-item:hover .stat-bar {
  width: 100%;
}

/* Hero Scene Interactive */
.hero-scene {
  width: 100%;
  max-width: 520px;
  position: relative;
  perspective: 1200px;
}
.hero-scene-inner {
  width: 100%;
  transform-style: preserve-3d;
  transition: transform 0.15s ease;
}
.hero-scene .scene-card {
  fill: rgba(255, 255, 255, 0.015);
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 1;
  rx: 14;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.hero-scene .scene-card:hover {
  fill: rgba(255, 107, 53, 0.06);
  stroke: rgba(255, 107, 53, 0.2);
  stroke-width: 1.5;
  transform: scale(1.05);
  filter: drop-shadow(0 4px 20px rgba(255, 107, 53, 0.1));
}
.hero-scene .scene-card:active {
  transform: scale(0.95);
}
.hero-scene .scene-dot {
  fill: var(--orange);
  animation: dotOrbit 14s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}
.hero-scene .scene-dot:hover {
  fill: #fff;
  transform: scale(1.8);
  filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
}

/* ============================================
   GUIDER SECTION - ULTRA INTERACTIVE
   ============================================ */
.guider-section {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.guider-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 0%,
    rgba(255, 107, 53, 0.02),
    transparent 70%
  );
  pointer-events: none;
}

.guider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.guider-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: 36px 28px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}
.guider-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}
.guider-card:hover::before {
  transform: scaleX(1);
}
.guider-card:hover {
  transform: translateY(-12px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}
.guider-card:active {
  transform: scale(0.96) translateY(-4px);
}

.guider-card .avatar {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  margin: 0 auto 18px;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.6rem;
  color: #fff;
  font-weight: 700;
  position: relative;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.guider-card:hover .avatar {
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.25);
}
.guider-card .avatar .ring {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.08);
  animation: avatarRing 3s ease-in-out infinite;
}
.guider-card .avatar .ring2 {
  position: absolute;
  inset: -12px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.04);
  animation: avatarRing 4s ease-in-out infinite reverse;
}
@keyframes avatarRing {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.1);
    opacity: 0;
  }
}
.guider-card .avatar .status {
  position: absolute;
  bottom: 4px;
  right: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 3px solid var(--cream);
  transition: all 0.3s ease;
}
.guider-card .avatar .status.online {
  background: #10b981;
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}
.guider-card .avatar .status.busy {
  background: #f59e0b;
  box-shadow: 0 0 20px rgba(245, 158, 11, 0.3);
}
.guider-card .avatar .status.offline {
  background: #6b7280;
}

.guider-card h3 {
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
  transition: color 0.3s ease;
}
.guider-card:hover h3 {
  color: var(--orange);
}
.guider-card .role {
  font-size: 0.82rem;
  color: var(--orange);
  font-weight: 600;
  transition: all 0.3s ease;
}
.guider-card:hover .role {
  transform: scale(1.05);
}
.guider-card .bio {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 12px;
  line-height: 1.7;
  transition: all 0.3s ease;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.guider-card:hover .bio {
  color: var(--text);
}
.guider-card .expertise {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  justify-content: center;
  margin-top: 12px;
}
.guider-card .expertise span {
  font-size: 0.65rem;
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: default;
}
.guider-card:hover .expertise span {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}
.guider-card .social-links {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 16px;
}
.guider-card .social-links a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  color: var(--text-light);
  font-size: 0.9rem;
  text-decoration: none;
  font-weight: 600;
  position: relative;
  overflow: hidden;
}
.guider-card .social-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: var(--orange-gradient);
  opacity: 0;
  transition: all 0.3s ease;
}
.guider-card .social-links a:hover {
  transform: translateY(-4px) scale(1.1);
  color: #fff;
}
.guider-card .social-links a:hover::before {
  opacity: 1;
}
.guider-card .social-links a span {
  position: relative;
  z-index: 1;
}
.guider-card .guider-hover-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 28px;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.95), transparent);
  transform: translateY(100%);
  transition: transform 0.5s ease;
  pointer-events: none;
}
.guider-card:hover .guider-hover-content {
  transform: translateY(0);
}

/* ============================================
   TESTIMONIALS - ULTRA INTERACTIVE
   ============================================ */
.testimonials-showcase {
  padding: 100px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}
.testimonials-showcase::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 20% 50%,
    rgba(255, 107, 53, 0.03),
    transparent 70%
  );
  pointer-events: none;
}

.testimonials-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0;
}
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.testimonial-card {
  min-width: calc(33.333% - 16px);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: var(--radius);
  padding: 34px 30px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  flex-shrink: 0;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 50%,
    rgba(255, 107, 53, 0.03),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}
.testimonial-card:hover::before {
  opacity: 1;
}
.testimonial-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-8px);
  border-color: rgba(255, 107, 53, 0.12);
}
.testimonial-card:active {
  transform: scale(0.97) translateY(-4px);
}
.testimonial-card .stars {
  color: var(--orange);
  font-size: 0.95rem;
  letter-spacing: 3px;
  margin-bottom: 14px;
  transition: all 0.3s ease;
}
.testimonial-card:hover .stars {
  transform: scale(1.05);
}
.testimonial-card .quote-icon {
  font-size: 1.8rem;
  color: rgba(255, 107, 53, 0.08);
  margin-bottom: 8px;
  display: block;
  transition: all 0.3s ease;
}
.testimonial-card:hover .quote-icon {
  color: rgba(255, 107, 53, 0.2);
  transform: scale(1.1);
}
.testimonial-card blockquote {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.95rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 18px;
  transition: color 0.3s ease;
}
.testimonial-card:hover blockquote {
  color: rgba(255, 255, 255, 0.7);
}
.testimonial-card .author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-card .author .avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  flex-shrink: 0;
  position: relative;
  transition: all 0.3s ease;
}
.testimonial-card:hover .author .avatar {
  transform: scale(1.08);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}
.testimonial-card .author .avatar .status {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 2px solid var(--navy);
  background: #10b981;
}
.testimonial-card .author .avatar .status.verified {
  background: #3b82f6;
}
.testimonial-card .author h4 {
  color: #fff;
  font-size: 0.95rem;
  font-weight: 600;
  transition: color 0.3s ease;
}
.testimonial-card:hover .author h4 {
  color: var(--orange-light);
}
.testimonial-card .author p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.78rem;
}
.testimonial-card .tags {
  display: flex;
  gap: 6px;
  margin-top: 14px;
  flex-wrap: wrap;
}
.testimonial-card .tags span {
  font-size: 0.6rem;
  padding: 3px 12px;
  border-radius: 50px;
  background: rgba(255, 107, 53, 0.06);
  color: rgba(255, 107, 53, 0.4);
  border: 1px solid rgba(255, 107, 53, 0.04);
  transition: all 0.3s ease;
  cursor: default;
}
.testimonial-card:hover .tags span {
  background: rgba(255, 107, 53, 0.1);
  color: rgba(255, 107, 53, 0.6);
  transform: translateY(-2px);
}
.testimonial-card .like-btn {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 50px;
  padding: 6px 16px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 6px;
}
.testimonial-card:hover .like-btn {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.4);
}
.testimonial-card .like-btn:hover {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
  color: var(--orange);
  transform: scale(1.05);
}
.testimonial-card .like-btn.liked {
  background: rgba(255, 107, 53, 0.1);
  border-color: rgba(255, 107, 53, 0.2);
  color: var(--orange);
}

/* Testimonial Controls - Enhanced */
.testimonial-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 48px;
}
.testimonial-controls button {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.04);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: flex;
  align-items: center;
  justify-content: center;
}
.testimonial-controls button:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  transform: scale(1.08);
  border-color: rgba(255, 107, 53, 0.1);
}
.testimonial-controls button:active:not(:disabled) {
  transform: scale(0.92);
}
.testimonial-controls button:disabled {
  opacity: 0.2;
  cursor: not-allowed;
}
.testimonial-controls .dots {
  display: flex;
  gap: 10px;
}
.testimonial-controls .dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}
.testimonial-controls .dots .dot::after {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid transparent;
  transition: all 0.3s ease;
}
.testimonial-controls .dots .dot:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.2);
}
.testimonial-controls .dots .dot.active {
  background: var(--orange);
  width: 30px;
  border-radius: 6px;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.2);
}
.testimonial-controls .dots .dot.active::after {
  border-color: rgba(255, 107, 53, 0.2);
}
.testimonial-controls .counter {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.15);
  font-weight: 500;
  min-width: 40px;
  text-align: center;
}

/* ============================================
   RESPONSIVE - UPDATED
   ============================================ */
@media (max-width: 1024px) {
  .guider-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .testimonial-card {
    min-width: calc(50% - 12px);
  }
}
@media (max-width: 768px) {
  .guider-grid {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto;
  }
  .testimonial-card {
    min-width: calc(100%);
  }
  .testimonial-controls {
    gap: 16px;
  }
  .testimonial-controls button {
    width: 44px;
    height: 44px;
  }
  .testimonial-controls .dots .dot {
    width: 8px;
    height: 8px;
  }
  .testimonial-controls .dots .dot.active {
    width: 24px;
  }
}

/* ============================================
   NEW HERO SECTION - FRESH DESIGN
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

/* ===== BACKGROUND ===== */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
}
.hero-bg .glow.g1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.04);
  top: -20%;
  right: -10%;
  animation: glowMove 20s ease-in-out infinite;
}
.hero-bg .glow.g2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.02);
  bottom: -20%;
  left: -10%;
  animation: glowMove 25s ease-in-out infinite reverse;
}
@keyframes glowMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.1);
  }
}

/* ===== HERO LAYOUT ===== */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== LEFT CONTENT ===== */
.hero-content {
  position: relative;
}

/* Badge */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: dotFlash 2s ease-in-out infinite;
}
@keyframes dotFlash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Heading */
.hero-heading {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-heading .highlight {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a, #ffa07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.hero-text {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-text strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.35);
}
.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.hero-stats .stat {
  text-align: left;
}
.hero-stats .stat .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats .stat .number .suffix {
  color: #ff6b35;
}
.hero-stats .stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
  display: block;
}
.hero-stats .stat .trend {
  display: inline-block;
  font-size: 0.6rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ===== RIGHT - ANIMATED ILLUSTRATION ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illustration {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.hero-illustration svg {
  width: 100%;
  height: auto;
}

/* Illustration Elements */
.ill-ring {
  fill: none;
  stroke: rgba(255, 107, 53, 0.05);
  stroke-width: 1.5;
}
.ill-ring.active {
  stroke: rgba(255, 107, 53, 0.08);
  stroke-dasharray: 8 16;
  animation: ringSpin 25s linear infinite;
}
@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.ill-dot {
  fill: #ff6b35;
  animation: dotFloat 4s ease-in-out infinite;
}
.ill-dot:nth-child(2) {
  animation-delay: 1s;
  fill: #ff8c5a;
}
.ill-dot:nth-child(3) {
  animation-delay: 2s;
}
.ill-dot:nth-child(4) {
  animation-delay: 3s;
  fill: #ff8c5a;
}
@keyframes dotFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(0, -12px) scale(1.3);
    opacity: 1;
  }
}

.ill-center {
  fill: #ff6b35;
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.ill-center-ring {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 1.5;
  opacity: 0.08;
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ill-card {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 1;
  rx: 12;
  transition: all 0.3s ease;
}
.ill-card:hover {
  fill: rgba(255, 107, 53, 0.04);
  stroke: rgba(255, 107, 53, 0.12);
}
.ill-card-text {
  fill: rgba(255, 255, 255, 0.12);
  font-size: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.ill-card-sub {
  fill: rgba(255, 255, 255, 0.04);
  font-size: 7px;
  font-family: "Inter", sans-serif;
}
.ill-card-icon {
  fill: #ff6b35;
  font-size: 14px;
}

.ill-float {
  animation: floatCard 5s ease-in-out infinite;
}
.ill-float:nth-child(2) {
  animation-delay: 1.2s;
}
.ill-float:nth-child(3) {
  animation-delay: 2.4s;
}
.ill-float:nth-child(4) {
  animation-delay: 3.6s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.ill-sparkle {
  fill: #ff6b35;
  animation: sparklePop 2.5s ease-in-out infinite;
}
.ill-sparkle:nth-child(2) {
  animation-delay: 0.6s;
  fill: #ff8c5a;
}
.ill-sparkle:nth-child(3) {
  animation-delay: 1.2s;
}
.ill-sparkle:nth-child(4) {
  animation-delay: 1.8s;
  fill: #ff8c5a;
}
@keyframes sparklePop {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.ill-meteor {
  animation: meteorFly 5s ease-in-out infinite;
}
@keyframes meteorFly {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  30% {
    transform: translate(80px, 60px);
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    transform: translate(80px, 60px);
    opacity: 0;
  }
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  position: relative;
}
.hero-scroll .mouse .wheel {
  width: 3px;
  height: 8px;
  background: #ff6b35;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 2s ease-in-out infinite;
}
@keyframes wheelMove {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 40px;
  }
  .hero-illustration {
    max-width: 380px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 30px;
    min-height: auto;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .stat {
    text-align: center;
  }
  .hero-illustration {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 70px 0 20px;
  }
  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-text {
    font-size: 0.85rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stats .stat .number {
    font-size: 1.2rem;
  }
  .hero-illustration {
    max-width: 200px;
  }
  .hero-tag {
    font-size: 0.55rem;
    padding: 4px 12px;
  }
}
@media (min-width: 1400px) {
  .hero-illustration {
    max-width: 560px;
  }
  .hero-heading {
    font-size: 5.5rem;
  }
}

/* ============================================
   NEW HERO SECTION STYLES
   ============================================ */

.hero {
  min-height: 100vh;
  background: #0a0e1a;
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

/* Background */
.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}
.hero-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
}
.hero-bg .glow.g1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.04);
  top: -20%;
  right: -10%;
  animation: glowMove 20s ease-in-out infinite;
}
.hero-bg .glow.g2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.02);
  bottom: -20%;
  left: -10%;
  animation: glowMove 25s ease-in-out infinite reverse;
}
@keyframes glowMove {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  50% {
    transform: translate(60px, -40px) scale(1.1);
  }
}

/* Layout */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* Left Content */
.hero-content {
  position: relative;
}

/* Badge */
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}
.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: dotFlash 2s ease-in-out infinite;
}
@keyframes dotFlash {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.2;
  }
}

/* Heading */
.hero-heading {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}
.hero-heading .highlight {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a, #ffa07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Description */
.hero-text {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 32px;
}
.hero-text strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* Buttons */
.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.35);
}
.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

/* Stats */
.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.hero-stats .stat {
  text-align: left;
}
.hero-stats .stat .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}
.hero-stats .stat .number .suffix {
  color: #ff6b35;
}
.hero-stats .stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
  display: block;
}
.hero-stats .stat .trend {
  display: inline-block;
  font-size: 0.6rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* Right - Illustration */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-illustration {
  width: 100%;
  max-width: 480px;
  position: relative;
}
.hero-illustration svg {
  width: 100%;
  height: auto;
}

/* Illustration Elements */
.ill-ring {
  fill: none;
  stroke: rgba(255, 107, 53, 0.05);
  stroke-width: 1.5;
}
.ill-ring.active {
  stroke: rgba(255, 107, 53, 0.08);
  stroke-dasharray: 8 16;
  animation: ringSpin 25s linear infinite;
}
@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.ill-dot {
  fill: #ff6b35;
  animation: dotFloat 4s ease-in-out infinite;
}
.ill-dot:nth-child(2) {
  animation-delay: 1s;
  fill: #ff8c5a;
}
.ill-dot:nth-child(3) {
  animation-delay: 2s;
}
.ill-dot:nth-child(4) {
  animation-delay: 3s;
  fill: #ff8c5a;
}
@keyframes dotFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
    opacity: 0.3;
  }
  50% {
    transform: translate(0, -12px) scale(1.3);
    opacity: 1;
  }
}

.ill-center {
  fill: #ff6b35;
  animation: centerPulse 3s ease-in-out infinite;
}
@keyframes centerPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.6;
  }
  50% {
    transform: scale(1.1);
    opacity: 1;
  }
}
.ill-center-ring {
  fill: none;
  stroke: #ff6b35;
  stroke-width: 1.5;
  opacity: 0.08;
  animation: ringPulse 2.5s ease-in-out infinite;
}
@keyframes ringPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.08;
  }
  50% {
    transform: scale(1.5);
    opacity: 0;
  }
}

.ill-card {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.03);
  stroke-width: 1;
  rx: 12;
  transition: all 0.3s ease;
}
.ill-card:hover {
  fill: rgba(255, 107, 53, 0.04);
  stroke: rgba(255, 107, 53, 0.12);
}
.ill-card-text {
  fill: rgba(255, 255, 255, 0.12);
  font-size: 9px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
.ill-card-sub {
  fill: rgba(255, 255, 255, 0.04);
  font-size: 7px;
  font-family: "Inter", sans-serif;
}
.ill-card-icon {
  fill: #ff6b35;
  font-size: 14px;
}

.ill-float {
  animation: floatCard 5s ease-in-out infinite;
}
.ill-float:nth-child(2) {
  animation-delay: 1.2s;
}
.ill-float:nth-child(3) {
  animation-delay: 2.4s;
}
.ill-float:nth-child(4) {
  animation-delay: 3.6s;
}
@keyframes floatCard {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

.ill-sparkle {
  fill: #ff6b35;
  animation: sparklePop 2.5s ease-in-out infinite;
}
.ill-sparkle:nth-child(2) {
  animation-delay: 0.6s;
  fill: #ff8c5a;
}
.ill-sparkle:nth-child(3) {
  animation-delay: 1.2s;
}
.ill-sparkle:nth-child(4) {
  animation-delay: 1.8s;
  fill: #ff8c5a;
}
@keyframes sparklePop {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.5);
  }
  50% {
    opacity: 1;
    transform: scale(1.3);
  }
}

.ill-meteor {
  animation: meteorFly 5s ease-in-out infinite;
}
@keyframes meteorFly {
  0% {
    transform: translate(0, 0);
    opacity: 0;
  }
  10% {
    opacity: 0.8;
  }
  30% {
    transform: translate(80px, 60px);
    opacity: 1;
  }
  45% {
    opacity: 0;
  }
  100% {
    transform: translate(80px, 60px);
    opacity: 0;
  }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  animation: scrollBounce 2.5s ease-in-out infinite;
  z-index: 2;
}
.hero-scroll .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  position: relative;
}
.hero-scroll .mouse .wheel {
  width: 3px;
  height: 8px;
  background: #ff6b35;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 2s ease-in-out infinite;
}
@keyframes wheelMove {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
  }
}
@keyframes scrollBounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-6px);
  }
}

/* Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 40px;
  }
  .hero-illustration {
    max-width: 380px;
  }
}
@media (max-width: 768px) {
  .hero {
    padding: 80px 0 30px;
    min-height: auto;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .stat {
    text-align: center;
  }
  .hero-illustration {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-scroll {
    display: none;
  }
}
@media (max-width: 480px) {
  .hero {
    padding: 70px 0 20px;
  }
  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-text {
    font-size: 0.85rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stats .stat .number {
    font-size: 1.2rem;
  }
  .hero-illustration {
    max-width: 200px;
  }
  .hero-tag {
    font-size: 0.55rem;
    padding: 4px 12px;
  }
}
@media (min-width: 1400px) {
  .hero-illustration {
    max-width: 560px;
  }
  .hero-heading {
    font-size: 5.5rem;
  }
}
/* ============================================
   GROWTH CARDS - COMPLETE FIXED
   ============================================ */

.growth-interactive {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Grid */
.growth-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  position: relative;
  margin-top: 20px;
}

/* Card */
.growth-card {
  position: relative;
  border-radius: var(--radius-sm);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.04);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(10, 14, 26, 0.04);
  cursor: pointer;
  height: 420px;
  display: flex;
  flex-direction: column;
}

.growth-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 60px rgba(10, 14, 26, 0.08);
  border-color: rgba(255, 107, 53, 0.12);
}

/* Card Inner */
.growth-card-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 32px 28px;
}

/* Background SVG */
.growth-card-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.4;
  z-index: 0;
}
.growth-card-bg svg {
  width: 100%;
  height: 100%;
}

/* Card Glow */
.growth-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(255, 107, 53, 0.04) 0%,
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}
.growth-card:hover .growth-card-glow {
  opacity: 1;
}

/* Content */
.growth-card-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  height: 100%;
}

/* Icon */
.growth-card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: 12px;
  position: relative;
  flex-shrink: 0;
}
.growth-card-icon svg {
  width: 100%;
  height: 100%;
}

/* Number */
.growth-card-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.04;
  line-height: 1;
  margin-bottom: -16px;
  position: absolute;
  top: 16px;
  right: 20px;
  z-index: 0;
  transition: all 0.4s ease;
}
.growth-card:hover .growth-card-number {
  opacity: 0.08;
  transform: scale(1.1);
}

/* Title */
.growth-card-content h3 {
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--navy);
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.growth-card-content h3::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 30px;
  height: 3px;
  background: var(--orange-gradient);
  border-radius: 4px;
  transition: all 0.4s ease;
}
.growth-card:hover .growth-card-content h3::after {
  width: 60px;
}

/* Description */
.growth-card-content p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}

/* Stats */
.growth-card-stats {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  padding: 12px 0;
  border-top: 1px solid rgba(10, 14, 26, 0.04);
  border-bottom: 1px solid rgba(10, 14, 26, 0.04);
  flex-shrink: 0;
}
.growth-stat {
  text-align: center;
  flex: 1;
}
.growth-stat .stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  transition: all 0.3s ease;
}
.growth-card:hover .growth-stat .stat-number {
  color: var(--orange);
}
.growth-stat .stat-label {
  font-size: 0.6rem;
  color: var(--text-lighter);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Footer */
.growth-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
  flex-shrink: 0;
}
.growth-tag {
  font-size: 0.6rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--orange);
  padding: 4px 12px;
  background: var(--orange-glow);
  border-radius: 50px;
  transition: all 0.3s ease;
}
.growth-card:hover .growth-tag {
  background: var(--orange);
  color: #fff;
}
.growth-link {
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.growth-link:hover {
  transform: translateX(4px);
  color: var(--orange-dark);
}

/* ===== REVEAL ANIMATION ===== */
.growth-card.reveal {
  opacity: 0;
  transform: translateY(40px);
}
.growth-card.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.growth-card.reveal.visible:hover {
  transform: translateY(-10px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .growth-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
  .growth-card {
    height: 400px;
  }
}
@media (max-width: 768px) {
  .growth-interactive {
    padding: 60px 0;
  }
  .growth-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .growth-card {
    height: auto;
    min-height: 340px;
  }
  .growth-card-content h3::after {
    width: 40px;
  }
  .growth-card:hover .growth-card-content h3::after {
    width: 60px;
  }
}
@media (max-width: 480px) {
  .growth-card {
    min-height: 300px;
  }
  .growth-card-inner {
    padding: 24px 18px;
  }
  .growth-card-icon {
    width: 48px;
    height: 48px;
  }
  .growth-card-content h3 {
    font-size: 1.1rem;
  }
  .growth-card-content p {
    font-size: 0.85rem;
  }
  .growth-card-number {
    font-size: 2.4rem;
    top: 12px;
    right: 16px;
  }
  .growth-card-stats {
    gap: 8px;
    flex-wrap: wrap;
  }
  .growth-stat {
    flex: 1 1 30%;
  }
  .growth-stat .stat-number {
    font-size: 1rem;
  }
}

/* ============================================
   INTERACTIVE GALLERY - COMPLETE STYLES
   ============================================ */

.gallery-home {
  padding: 100px 0;
  background: var(--cream);
}

/* Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
}
.gallery-filter-btn:hover {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.gallery-filter-btn.active {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

/* Gallery Grid */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 10px;
}

/* Gallery Card */
.gallery-card {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.04);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(10, 14, 26, 0.08);
  border-color: rgba(255, 107, 53, 0.08);
}
.gallery-card-inner {
  padding: 16px;
}

/* Main Image */
.gallery-main {
  position: relative;
  border-radius: var(--radius-xs);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--navy);
}
.gallery-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}
.gallery-card:hover .gallery-main-img {
  transform: scale(1.03);
}

/* Main Overlay */
.gallery-main-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.7) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 24px;
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-card:hover .gallery-main-overlay {
  opacity: 1;
}
.gallery-main-info {
  color: #fff;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-card:hover .gallery-main-info {
  transform: translateY(0);
}
.gallery-main-info .main-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
}
.gallery-main-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.gallery-main-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Thumbnail Strip */
.gallery-thumbnails {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumbnails::-webkit-scrollbar {
  height: 3px;
}
.gallery-thumbnails::-webkit-scrollbar-track {
  background: rgba(10, 14, 26, 0.04);
  border-radius: 4px;
}
.gallery-thumbnails::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}
.thumb-btn {
  flex-shrink: 0;
  width: 80px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
}
.thumb-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-btn:hover {
  transform: scale(1.05);
  border-color: rgba(255, 107, 53, 0.3);
}
.thumb-btn.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.thumb-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.2);
  transition: all 0.3s ease;
}
.thumb-btn.active::after {
  background: transparent;
}
.thumb-btn .thumb-index {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: 0.5rem;
  color: rgba(255, 255, 255, 0.5);
  background: rgba(0, 0, 0, 0.3);
  padding: 0 6px;
  border-radius: 4px;
}

/* Card Footer */
.gallery-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 4px;
  flex-wrap: wrap;
  gap: 8px;
}
.card-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-actions span {
  font-size: 0.75rem;
  color: var(--text-lighter);
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-actions span:hover {
  color: var(--orange);
}
.action-view {
  padding: 4px 14px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.action-view:hover {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
}

/* Gallery Home Footer */
.gallery-home-footer {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   LIGHTBOX
   ============================================ */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
}
.lightbox-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
}
.lightbox-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}
.lightbox-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.lightbox-main {
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/10;
  position: relative;
}
.lightbox-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
.lightbox-main-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.8) 0%,
    transparent 100%
  );
}
.lightbox-main-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.lightbox-main-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}

.lightbox-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
}
.lightbox-thumbnails::-webkit-scrollbar {
  height: 3px;
}
.lightbox-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.lightbox-thumbnails::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}
.lightbox-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.lightbox-thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.lightbox-thumb.active {
  border-color: var(--orange);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.lightbox-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .thumb-btn {
    width: 60px;
    height: 44px;
  }
}
@media (max-width: 768px) {
  .gallery-home {
    padding: 60px 0;
  }
  .gallery-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .gallery-filters {
    gap: 6px;
  }
  .gallery-filter-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  .thumb-btn {
    width: 50px;
    height: 38px;
  }
  .gallery-main-info h4 {
    font-size: 0.95rem;
  }
  .gallery-card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .lightbox-content {
    width: 96%;
    padding: 12px;
  }
  .lightbox-close {
    top: -30px;
    font-size: 1.4rem;
  }
  .lightbox-thumb {
    width: 60px;
    height: 44px;
  }
  .lightbox-main-info h3 {
    font-size: 1rem;
  }
  .lightbox-main-info p {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .gallery-grid {
    max-width: 100%;
  }
  .gallery-main {
    aspect-ratio: 4/3;
  }
  .thumb-btn {
    width: 40px;
    height: 32px;
  }
  .lightbox-thumb {
    width: 50px;
    height: 36px;
  }
  .card-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
  .action-view {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
}

/* ============================================
   GALLERY PAGE - FULL STYLES
   ============================================ */

.gallery-page-full {
  padding: 60px 0 100px;
  background: var(--cream);
}

/* Stats */
.gallery-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}
.gallery-stat {
  text-align: center;
  padding: 24px 16px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.3s ease;
}
.gallery-stat:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.gallery-stat .stat-number {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--navy);
}
.gallery-stat .stat-label {
  font-size: 0.8rem;
  color: var(--text-light);
}

/* Filters */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
}
.gallery-filter-btn:hover {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.gallery-filter-btn.active {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

/* Gallery Grid */
.gallery-page-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

/* Gallery Card - Full */
.gallery-card-full {
  background: #fff;
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.04);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.gallery-card-full:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 56px rgba(10, 14, 26, 0.08);
  border-color: rgba(255, 107, 53, 0.08);
}
.gallery-card-full-inner {
  padding: 16px;
}

/* Main Image - Full */
.gallery-main-full {
  position: relative;
  border-radius: var(--radius-xs);
  overflow: hidden;
  aspect-ratio: 16/10;
  background: var(--navy);
}
.gallery-main-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.6s ease,
    opacity 0.4s ease;
}
.gallery-card-full:hover .gallery-main-full-img {
  transform: scale(1.03);
}

/* Overlay - Full */
.gallery-main-full-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.7) 0%,
    transparent 60%
  );
  display: flex;
  align-items: flex-end;
  padding: 20px;
  opacity: 0;
  transition: all 0.4s ease;
}
.gallery-card-full:hover .gallery-main-full-overlay {
  opacity: 1;
}
.gallery-main-full-info {
  color: #fff;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
.gallery-card-full:hover .gallery-main-full-info {
  transform: translateY(0);
}
.gallery-main-full-info .main-full-icon {
  font-size: 1.6rem;
  display: block;
  margin-bottom: 4px;
}
.gallery-main-full-info h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.gallery-main-full-info p {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

/* Thumbnails - Full */
.gallery-thumbnails-full {
  display: flex;
  gap: 8px;
  margin-top: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: thin;
}
.gallery-thumbnails-full::-webkit-scrollbar {
  height: 3px;
}
.gallery-thumbnails-full::-webkit-scrollbar-track {
  background: rgba(10, 14, 26, 0.04);
  border-radius: 4px;
}
.gallery-thumbnails-full::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}
.thumb-full-btn {
  flex-shrink: 0;
  width: 90px;
  height: 60px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  padding: 0;
  background: transparent;
  transition: all 0.3s ease;
  position: relative;
}
.thumb-full-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.thumb-full-btn:hover {
  transform: scale(1.05);
  border-color: rgba(255, 107, 53, 0.3);
}
.thumb-full-btn.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.thumb-full-btn::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.2);
  transition: all 0.3s ease;
}
.thumb-full-btn.active::after {
  background: transparent;
}

/* Footer - Full */
.gallery-card-full-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 4px 4px;
  flex-wrap: wrap;
  gap: 8px;
}
.card-full-category {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.card-full-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}
.card-full-actions span {
  font-size: 0.75rem;
  color: var(--text-lighter);
  cursor: pointer;
  transition: all 0.3s ease;
}
.card-full-actions span:hover {
  color: var(--orange);
}
.action-full-view {
  padding: 4px 16px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.action-full-view:hover {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
}

/* Load More */
.gallery-load-more {
  text-align: center;
  margin-top: 48px;
}

/* ============================================
   LIGHTBOX - FULL
   ============================================ */
.gallery-lightbox-full {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
}
.gallery-lightbox-full.active {
  opacity: 1;
  visibility: visible;
}
.lightbox-full-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(20px);
}
.lightbox-full-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  width: 92%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 20px;
}
.lightbox-full-close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.3);
  font-size: 2rem;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 3;
}
.lightbox-full-close:hover {
  color: #fff;
  transform: rotate(90deg);
}

.lightbox-full-main {
  border-radius: 16px;
  overflow: hidden;
  background: var(--navy);
  aspect-ratio: 16/10;
  position: relative;
}
.lightbox-full-main-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: opacity 0.4s ease;
}
.lightbox-full-main-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px 24px;
  background: linear-gradient(
    to top,
    rgba(10, 14, 26, 0.8) 0%,
    transparent 100%
  );
}
.lightbox-full-main-info h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 2px;
}
.lightbox-full-main-info p {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.4);
}
.lightbox-full-meta {
  display: flex;
  gap: 16px;
  margin-top: 8px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.2);
}

.lightbox-full-thumbnails {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  overflow-x: auto;
  padding: 4px 0;
  scrollbar-width: thin;
}
.lightbox-full-thumbnails::-webkit-scrollbar {
  height: 3px;
}
.lightbox-full-thumbnails::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.04);
  border-radius: 4px;
}
.lightbox-full-thumbnails::-webkit-scrollbar-thumb {
  background: var(--orange);
  border-radius: 4px;
}
.lightbox-full-thumb {
  flex-shrink: 0;
  width: 100px;
  height: 70px;
  border-radius: 8px;
  overflow: hidden;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 0.5;
}
.lightbox-full-thumb:hover {
  opacity: 0.8;
  transform: scale(1.05);
}
.lightbox-full-thumb.active {
  border-color: var(--orange);
  opacity: 1;
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.15);
}
.lightbox-full-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .gallery-page-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .thumb-full-btn {
    width: 70px;
    height: 48px;
  }
  .gallery-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .gallery-page-full {
    padding: 40px 0 60px;
  }
  .gallery-page-grid {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin: 0 auto;
  }
  .gallery-filters {
    gap: 6px;
  }
  .gallery-filter-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  .thumb-full-btn {
    width: 60px;
    height: 42px;
  }
  .gallery-main-full-info h4 {
    font-size: 0.95rem;
  }
  .gallery-card-full-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
  }
  .gallery-stats {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .gallery-stat {
    padding: 16px 12px;
  }
  .gallery-stat .stat-number {
    font-size: 1.4rem;
  }
  .lightbox-full-content {
    width: 96%;
    padding: 12px;
  }
  .lightbox-full-close {
    top: -30px;
    font-size: 1.4rem;
  }
  .lightbox-full-thumb {
    width: 60px;
    height: 44px;
  }
  .lightbox-full-main-info h3 {
    font-size: 1rem;
  }
  .lightbox-full-main-info p {
    font-size: 0.75rem;
  }
}
@media (max-width: 480px) {
  .gallery-page-grid {
    max-width: 100%;
  }
  .gallery-main-full {
    aspect-ratio: 4/3;
  }
  .thumb-full-btn {
    width: 50px;
    height: 36px;
  }
  .card-full-actions {
    gap: 8px;
    flex-wrap: wrap;
  }
  .action-full-view {
    font-size: 0.65rem;
    padding: 3px 10px;
  }
  .gallery-stats {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }
  .lightbox-full-thumb {
    width: 50px;
    height: 36px;
  }
}

/* ============================================
   FAQ - INTERACTIVE
   ============================================ */

.faq-interactive {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

/* Toolbar */
.faq-toolbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* Search */
.faq-search {
  position: relative;
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 50px;
  padding: 4px 8px 4px 18px;
  border: 1.5px solid rgba(10, 14, 26, 0.06);
  transition: all 0.3s ease;
  box-shadow: var(--shadow);
}
.faq-search:focus-within {
  border-color: var(--orange);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.08);
}
.faq-search svg {
  flex-shrink: 0;
  color: var(--text-lighter);
}
.faq-search-input {
  flex: 1;
  padding: 12px 12px;
  border: none;
  background: transparent;
  font-size: 0.95rem;
  font-family: "Inter", sans-serif;
  color: var(--text);
  outline: none;
}
.faq-search-input::placeholder {
  color: var(--text-lighter);
}
.faq-search-clear {
  display: none;
  background: none;
  border: none;
  color: var(--text-lighter);
  font-size: 1.2rem;
  cursor: pointer;
  padding: 8px 12px;
  transition: all 0.3s ease;
}
.faq-search-clear:hover {
  color: var(--text);
}
.faq-search-clear.visible {
  display: block;
}

/* Categories */
.faq-categories {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}
.faq-cat-btn {
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.faq-cat-btn:hover {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.faq-cat-btn.active {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

/* FAQ Grid */
.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

/* FAQ Item */
.faq-item {
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}
.faq-item.visible {
  opacity: 1;
  transform: translateY(0);
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 53, 0.06);
}
.faq-item.active {
  border-color: rgba(255, 107, 53, 0.12);
}
.faq-item.hidden {
  display: none;
}
.faq-item-inner {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  align-items: flex-start;
}

/* FAQ Icon */
.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-top: 2px;
}
.faq-icon svg {
  width: 100%;
  height: 100%;
}

/* FAQ Content */
.faq-content {
  flex: 1;
  min-width: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question {
  color: var(--orange);
}
.faq-toggle {
  font-size: 1.4rem;
  color: var(--orange);
  transition: all 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

/* FAQ Answer */
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 12px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-answer p strong {
  color: var(--text);
}
.faq-answer-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.faq-answer-meta .meta-tag {
  font-size: 0.65rem;
  padding: 2px 12px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 600;
}

/* No Results */
.faq-no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 14, 26, 0.04);
  max-width: 800px;
  margin: 0 auto;
}
.faq-no-results.show {
  display: block;
}
.faq-no-results .no-results-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}
.faq-no-results h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.faq-no-results p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ CTA */
.faq-cta {
  max-width: 800px;
  margin: 48px auto 0;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 40px 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.faq-cta-content {
  color: #fff;
}
.faq-cta-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}
.faq-cta-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.faq-cta-content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.faq-cta-content .btn {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.15);
}
.faq-cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.25);
}
.faq-cta-content .btn svg {
  transition: transform 0.3s ease;
}
.faq-cta-content .btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .faq-interactive {
    padding: 60px 0;
  }
  .faq-item-inner {
    padding: 16px 18px;
    gap: 12px;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
  }
  .faq-question {
    font-size: 0.9rem;
  }
  .faq-answer p {
    font-size: 0.85rem;
  }
  .faq-answer-meta .meta-tag {
    font-size: 0.6rem;
    padding: 2px 10px;
  }
  .faq-cta {
    padding: 30px 24px;
    margin-top: 32px;
  }
  .faq-cta-content h3 {
    font-size: 1.2rem;
  }
  .faq-cta-content p {
    font-size: 0.85rem;
  }
  .faq-cat-btn {
    font-size: 0.7rem;
    padding: 4px 14px;
  }
  .faq-search-input {
    font-size: 0.85rem;
    padding: 10px 8px;
  }
}
@media (max-width: 480px) {
  .faq-item-inner {
    padding: 14px 14px;
    gap: 10px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
  }
  .faq-question {
    font-size: 0.82rem;
  }
  .faq-cta {
    padding: 24px 16px;
  }
  .faq-categories {
    gap: 4px;
  }
  .faq-cat-btn {
    font-size: 0.65rem;
    padding: 4px 10px;
  }
}

/* ============================================
   PROGRAMS - ULTIMATE INTERACTIVE
   ============================================ */

.programs-ultimate {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* Filters */
.programs-ultimate-filters {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}
.program-ultimate-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 22px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
}
.program-ultimate-filter svg {
  flex-shrink: 0;
  transition: all 0.3s ease;
}
.program-ultimate-filter:hover {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}
.program-ultimate-filter:hover svg {
  transform: rotate(10deg) scale(1.1);
}
.program-ultimate-filter.active {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}
.program-ultimate-filter.active svg {
  stroke: #fff;
}

/* Grid */
.programs-ultimate-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 10px;
}

/* Card */
.program-ultimate-card {
  perspective: 1200px;
  height: 440px;
  transition: all 0.4s ease;
}
.program-ultimate-card:hover {
  transform: translateY(-6px);
}
.program-ultimate-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 14, 26, 0.04);
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.program-ultimate-card:hover .program-ultimate-card-inner {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 53, 0.08);
  transform: rotateY(2deg) rotateX(2deg);
}

/* Background SVG */
.program-ultimate-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.5;
  z-index: 0;
}
.program-ultimate-bg svg {
  width: 100%;
  height: 100%;
}

/* Content */
.program-ultimate-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 24px;
  transition: all 0.5s ease;
}
.program-ultimate-card:hover .program-ultimate-content {
  transform: scale(0.96);
  filter: blur(2px);
  opacity: 0.15;
}

/* Header */
.program-ultimate-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 8px;
}
.program-ultimate-number {
  font-family: "Playfair Display", serif;
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--orange);
  opacity: 0.06;
  line-height: 1;
}
.program-ultimate-icon {
  font-size: 2rem;
}

/* Title */
.program-ultimate-content h3 {
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 6px;
}
.program-ultimate-content p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.6;
  flex: 1;
}

/* Meta */
.program-ultimate-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 10px 0;
}
.meta-item {
  font-size: 0.7rem;
  color: var(--text-lighter);
  padding: 2px 12px;
  background: rgba(10, 14, 26, 0.03);
  border-radius: 50px;
}

/* Skills */
.program-ultimate-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.skill-tag {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 2px 12px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  border: 1px solid rgba(255, 107, 53, 0.06);
  transition: all 0.3s ease;
}
.program-ultimate-card:hover .skill-tag {
  background: var(--orange);
  color: #fff;
  transform: translateY(-2px);
}

/* Footer */
.program-ultimate-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 8px;
}
.program-ultimate-label {
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 3px 12px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
}
.program-ultimate-label.featured {
  background: var(--orange-gradient);
  color: #fff;
}
.program-ultimate-learn {
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
}
.program-ultimate-learn:hover {
  transform: translateX(4px);
}

/* Overlay */
.program-ultimate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.5s ease;
  z-index: 3;
  padding: 24px;
  border-radius: var(--radius-sm);
}
.program-ultimate-card:hover .program-ultimate-overlay {
  opacity: 1;
}
.program-ultimate-overlay-content {
  color: #fff;
  text-align: center;
  transform: translateY(20px);
  transition: all 0.5s ease;
}
.program-ultimate-card:hover .program-ultimate-overlay-content {
  transform: translateY(0);
}
.program-ultimate-overlay-content .overlay-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
}
.program-ultimate-overlay-content h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 10px;
}
.program-ultimate-overlay-content ul {
  list-style: none;
  margin-bottom: 16px;
  text-align: left;
}
.program-ultimate-overlay-content ul li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}
.program-ultimate-overlay-content ul li::before {
  content: "✦";
  color: var(--orange);
  font-size: 0.6rem;
}
.overlay-cta {
  display: inline-block;
  padding: 8px 28px;
  background: var(--orange-gradient);
  color: #fff;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: all 0.3s ease;
  text-decoration: none;
}
.overlay-cta:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.3);
}

/* View All Button */
.programs-ultimate-footer-btn {
  text-align: center;
  margin-top: 48px;
}
.btn-ultimate-viewall {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 38px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  color: #fff;
  background: var(--orange-gradient);
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}
.btn-ultimate-viewall:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.25);
}
.btn-ultimate-viewall svg {
  transition: transform 0.3s ease;
}
.btn-ultimate-viewall:hover svg {
  transform: translateX(4px);
}

/* Filter Animation */
.program-ultimate-card {
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.program-ultimate-card.filter-hidden {
  opacity: 0;
  transform: scale(0.8) translateY(20px);
  pointer-events: none;
  position: absolute;
  visibility: hidden;
}
.program-ultimate-card.filter-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .programs-ultimate-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .program-ultimate-card {
    height: 420px;
  }
}
@media (max-width: 768px) {
  .programs-ultimate {
    padding: 60px 0;
  }
  .programs-ultimate-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }
  .program-ultimate-card {
    height: auto;
    min-height: 380px;
  }
  .program-ultimate-filters {
    gap: 6px;
  }
  .program-ultimate-filter {
    padding: 6px 14px;
    font-size: 0.7rem;
  }
  .program-ultimate-filter svg {
    width: 14px;
    height: 14px;
  }
  .program-ultimate-content {
    padding: 20px 18px;
  }
  .program-ultimate-content h3 {
    font-size: 1.05rem;
  }
  .program-ultimate-content p {
    font-size: 0.82rem;
  }
  .program-ultimate-skills .skill-tag {
    font-size: 0.55rem;
    padding: 2px 8px;
  }
  .program-ultimate-overlay-content ul li {
    font-size: 0.78rem;
  }
}
@media (max-width: 480px) {
  .program-ultimate-card {
    min-height: 340px;
  }
  .program-ultimate-content {
    padding: 16px 14px;
  }
  .program-ultimate-number {
    font-size: 1.8rem;
  }
  .program-ultimate-icon {
    font-size: 1.6rem;
  }
  .program-ultimate-meta .meta-item {
    font-size: 0.6rem;
    padding: 2px 8px;
  }
  .btn-ultimate-viewall {
    padding: 12px 24px;
    font-size: 0.85rem;
  }
}

/* ============================================
   PROGRAMS - PREMIUM INTERACTIVE
   ============================================ */

.programs-premium {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

/* ===== ANIMATED BACKGROUND ===== */
.programs-premium-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  animation: orbFloat 25s ease-in-out infinite;
}

.bg-orb.orb1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.03);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.bg-orb.orb2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.02);
  bottom: -20%;
  left: -10%;
  animation-delay: -8s;
}

.bg-orb.orb3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.015);
  top: 40%;
  left: 40%;
  animation-delay: -16s;
}

@keyframes orbFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

.bg-grid {
  position: absolute;
  inset: 0;
  opacity: 0.02;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ===== SECTION HEADER ===== */
.premium-header {
  position: relative;
  z-index: 2;
}

.programs-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-top: 20px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(12px);
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.04);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 8px;
}

.stat-item .stat-number {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.stat-item .stat-label {
  font-size: 0.75rem;
  color: var(--text-light);
  font-weight: 500;
}

.stat-divider {
  width: 1px;
  height: 24px;
  background: rgba(10, 14, 26, 0.06);
}

/* ===== FILTERS ===== */
.programs-premium-filters {
  display: flex;
  flex-direction: row; /* Default flex direction */
  justify-content: center;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
  z-index: 2;
}

.premium-filter {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  border-radius: 50px;
  border: 1.5px solid rgba(10, 14, 26, 0.04);
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.82rem;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  font-family: "Inter", sans-serif;
  position: relative;
  box-shadow: 0 2px 10px rgba(10, 14, 26, 0.02);
}

.premium-filter .filter-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--text-lighter);
  transition: all 0.3s ease;
}

.premium-filter .filter-icon {
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.premium-filter .filter-name {
  font-weight: 600;
}

.premium-filter .filter-count {
  font-size: 0.6rem;
  background: rgba(10, 14, 26, 0.04);
  padding: 1px 10px;
  border-radius: 50px;
  font-weight: 700;
  color: var(--text-lighter);
  transition: all 0.3s ease;
}

.premium-filter:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--text);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(10, 14, 26, 0.06);
}

.premium-filter:hover .filter-icon {
  transform: scale(1.2) rotate(-10deg);
}

.premium-filter.active {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.premium-filter.active .filter-dot {
  background: #fff;
  box-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
}

.premium-filter.active .filter-count {
  background: rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.8);
}

/* ===== GRID ===== */
.programs-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* ===== CARD ===== */
.premium-card {
  perspective: 1200px;
  height: 500px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card.filter-hidden {
  opacity: 0;
  transform: scale(0.8) translateY(40px);
  pointer-events: none;
  visibility: hidden;
  position: absolute;
}

.premium-card.filter-visible {
  opacity: 1;
  transform: scale(1) translateY(0);
  visibility: visible;
  position: relative;
}

.premium-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.04);
  border: 1px solid rgba(10, 14, 26, 0.04);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.premium-card-inner:hover {
  transform: rotateY(4deg) rotateX(4deg) translateY(-12px);
  box-shadow: 0 30px 100px rgba(10, 14, 26, 0.08);
  border-color: rgba(255, 107, 53, 0.08);
}

/* ===== PARTICLE CANVAS ===== */
.card-particle-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.3;
}

/* ===== CARD GLOW ===== */
.premium-card-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 50% 100%,
    rgba(255, 107, 53, 0.04),
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
  z-index: 1;
}

.premium-card-inner:hover .premium-card-glow {
  opacity: 1;
}

/* ===== CARD CONTENT ===== */
.premium-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
}

/* ===== CARD TOP ===== */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 4px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.card-badge .badge-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

.card-badge.featured {
  background: var(--orange-gradient);
  color: #fff;
}

.card-badge.featured .badge-pulse {
  background: #fff;
}

.card-number {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(10, 14, 26, 0.03);
  line-height: 1;
  transition: all 0.4s ease;
}

.premium-card-inner:hover .card-number {
  color: rgba(255, 107, 53, 0.06);
  transform: scale(1.1);
}

/* ===== ICON ===== */
.card-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.06);
  animation: ringSpin 20s linear infinite;
}

.card-icon-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.03);
  animation: ringSpin 15s linear infinite reverse;
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.card-icon-wrapper .card-icon {
  font-size: 2.2rem;
  transition: all 0.4s ease;
  z-index: 1;
}

.premium-card-inner:hover .card-icon-wrapper .card-icon {
  transform: scale(1.15) rotate(-6deg);
}

/* ===== TITLE ===== */
.premium-card-content h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.premium-card-inner:hover .premium-card-content h3 {
  color: var(--orange);
}

.premium-card-content p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

/* ===== META ===== */
.card-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-lighter);
  padding: 3px 12px;
  background: rgba(10, 14, 26, 0.02);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.meta-chip .meta-chip-icon {
  font-size: 0.6rem;
}

.premium-card-inner:hover .meta-chip {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
}

/* ===== SKILLS ===== */
.card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.skill-pill {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 50px;
  background: rgba(10, 14, 26, 0.02);
  color: var(--text-light);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.3s ease;
  cursor: default;
}

.premium-card-inner:hover .skill-pill {
  background: var(--orange-glow);
  color: var(--orange);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 14, 26, 0.04);
}

.card-level {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-lighter);
}

.level-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.level-dot.beginner {
  background: #10b981;
}

.level-dot.intermediate {
  background: #f59e0b;
}

.level-dot.advanced {
  background: #ef4444;
}

.level-dot.all-levels {
  background: #8b5cf6;
}

.card-learn-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  padding: 0;
}

.card-learn-btn svg {
  transition: transform 0.3s ease;
}

.card-learn-btn:hover {
  color: var(--orange-dark);
}

.card-learn-btn:hover svg {
  transform: translateX(4px);
}

/* ===== OVERLAY ===== */
.premium-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(20px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  z-index: 3;
  padding: 28px;
  border-radius: var(--radius);
}

.premium-card-inner:hover .premium-card-overlay {
  opacity: 1;
}

.overlay-inner {
  color: #fff;
  text-align: left;
  transform: translateY(20px) scale(0.95);
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  width: 100%;
}

.premium-card-inner:hover .overlay-inner {
  transform: translateY(0) scale(1);
}

.overlay-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.overlay-header .overlay-icon {
  font-size: 2rem;
}

.overlay-header h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #fff;
}

.overlay-features {
  list-style: none;
  margin-bottom: 20px;
}

.overlay-features li {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  padding: 5px 0;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
}

.overlay-features li .feature-check {
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  opacity: 0.5;
  transition: all 0.3s ease;
}

.premium-card-inner:hover .overlay-features li {
  color: rgba(255, 255, 255, 0.7);
}

.premium-card-inner:hover .overlay-features li .feature-check {
  opacity: 1;
}

.overlay-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.overlay-btn {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.8rem;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  border: none;
}

.overlay-btn.primary {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: 0 4px 24px rgba(255, 107, 53, 0.15);
}

.overlay-btn.primary:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.25);
}

.overlay-btn.primary svg {
  transition: transform 0.3s ease;
}

.overlay-btn.primary:hover svg {
  transform: translateX(3px);
}

.overlay-btn.secondary {
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.06);
}

.overlay-btn.secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  transform: scale(1.05);
}

.overlay-btn.secondary svg {
  transition: transform 0.3s ease;
}

.overlay-btn.secondary:hover svg {
  transform: scale(1.1);
}

/* ===== VIEW ALL BUTTON ===== */
.programs-premium-footer {
  text-align: center;
  margin-top: 48px;
  position: relative;
  z-index: 2;
}

.premium-viewall {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 42px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  color: #fff;
  background: var(--orange-gradient);
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.15);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.premium-viewall .viewall-pulse {
  position: absolute;
  inset: -4px;
  border-radius: 50px;
  border: 2px solid rgba(255, 107, 53, 0.2);
  animation: viewallPulse 2s ease-in-out infinite;
}

@keyframes viewallPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0;
  }
}

.premium-viewall::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.1),
    transparent 60%
  );
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.premium-viewall:hover::before {
  transform: translateX(0);
}

.premium-viewall:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.25);
}

.premium-viewall .viewall-arrow {
  display: inline-flex;
  transition: transform 0.3s ease;
}

.premium-viewall:hover .viewall-arrow {
  transform: translateX(4px);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .programs-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .premium-card {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .programs-premium {
    padding: 60px 0;
  }
  .programs-premium-grid {
    grid-template-columns: 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .premium-card {
    height: auto;
    min-height: 420px;
  }
  .programs-premium-filters {
    gap: 6px;
  }
  .premium-filter {
    padding: 8px 14px;
    font-size: 0.7rem;
  }
  .premium-filter .filter-count {
    display: none;
  }
  .premium-filter .filter-name {
    font-size: 0.7rem;
  }
  .premium-card-content {
    padding: 20px 18px;
  }
  .premium-card-content h3 {
    font-size: 1.1rem;
  }
  .premium-card-content p {
    font-size: 0.82rem;
  }
  .card-number {
    font-size: 2.2rem;
  }
  .card-icon-wrapper {
    width: 60px;
    height: 60px;
  }
  .card-icon-wrapper .card-icon {
    font-size: 1.8rem;
  }
  .programs-stats {
    padding: 8px 20px;
    gap: 12px;
  }
  .stat-item .stat-number {
    font-size: 1rem;
  }
  .stat-divider {
    height: 16px;
  }
}

@media (max-width: 480px) {
  .premium-card {
    min-height: 380px;
  }
  .premium-card-content {
    padding: 16px 14px;
  }
  .premium-card-content h3 {
    font-size: 1rem;
  }
  .card-number {
    font-size: 1.8rem;
  }
  .card-icon-wrapper {
    width: 48px;
    height: 48px;
  }
  .card-icon-wrapper .card-icon {
    font-size: 1.4rem;
  }
  .card-meta {
    gap: 4px;
  }
  .meta-chip {
    font-size: 0.6rem;
    padding: 2px 8px;
  }
  .skill-pill {
    font-size: 0.55rem;
    padding: 2px 10px;
  }
  .card-footer {
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }
  .overlay-actions {
    flex-direction: column;
    width: 100%;
  }
  .overlay-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.75rem;
  }
  .premium-viewall {
    padding: 14px 24px;
    font-size: 0.85rem;
  }
  .programs-stats {
    padding: 6px 14px;
    gap: 8px;
    flex-wrap: wrap;
    border-radius: 30px;
  }
  .stat-item .stat-number {
    font-size: 0.9rem;
  }
  .stat-item .stat-label {
    font-size: 0.65rem;
  }
}

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  .bg-orb,
  .card-icon-ring,
  .card-icon-ring::before,
  .badge-pulse,
  .viewall-pulse {
    animation: none !important;
  }
  .premium-card-inner:hover {
    transform: none !important;
  }
  .premium-card-overlay {
    transition: none !important;
  }
  .overlay-inner {
    transition: none !important;
  }
  .premium-card-inner:hover .premium-card-overlay {
    opacity: 1;
  }
  .premium-card-inner:hover .overlay-inner {
    transform: none;
  }
  .card-particle-canvas {
    display: none;
  }
}

/* ============================================
   IMPROVED PAGE STYLES
   ============================================ */

/* ===== PAGE HERO IMPROVEMENTS ===== */
.page-hero .hero-content-wrapper {
  position: relative;
  z-index: 2;
}

.page-hero .hero-stats-mini {
  display: flex;
  gap: 30px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.page-hero .mini-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(255, 255, 255, 0.03);
  padding: 8px 20px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.page-hero .mini-stat .mini-number {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--orange);
}

.page-hero .mini-stat .mini-label {
  font-size: 0.6rem;
  color: rgba(255, 255, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.hero-stats-mini {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.programs-hero-stats,
.contact-hero-stats {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 16px;
}

.programs-hero-stats span,
.contact-hero-stats span {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.03);
  padding: 4px 16px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

/* ===== ABOUT PAGE ===== */
.about-cta {
  margin-top: 24px;
}

.about-image-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.image-badges {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: center;
}

.image-badges .img-badge {
  font-size: 0.6rem;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.04);
  transition: all 0.3s ease;
}

.image-badges .img-badge:hover {
  background: rgba(255, 107, 53, 0.1);
  color: var(--orange-light);
  border-color: rgba(255, 107, 53, 0.1);
}

/* ===== JOURNEY TIMELINE ===== */
.journey-section {
  padding: 80px 0;
  background: var(--cream);
}

.timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--orange-gradient);
  transform: translateX(-50%);
  border-radius: 4px;
  opacity: 0.15;
}

.timeline-item {
  position: relative;
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
}

.timeline-item:nth-child(odd) {
  flex-direction: row;
}

.timeline-item:nth-child(even) {
  flex-direction: row-reverse;
}

.timeline-dot {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange-gradient);
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.15);
  z-index: 2;
}

.timeline-content {
  width: 42%;
  background: #fff;
  padding: 24px 28px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(10, 14, 26, 0.04);
}

.timeline-content:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 53, 0.08);
}

.timeline-item:nth-child(odd) .timeline-content {
  margin-right: auto;
  margin-left: 0;
}

.timeline-item:nth-child(even) .timeline-content {
  margin-left: auto;
  margin-right: 0;
}

.timeline-year {
  font-family: "Playfair Display", serif;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.timeline-content h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-content p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin: 0;
}

/* ===== TEAM SECTION ===== */
.team-section {
  padding: 80px 0;
  background: var(--white);
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.team-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius-sm);
  background: var(--cream);
  transition: var(--transition);
  border: 1px solid transparent;
}

.team-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
  box-shadow: var(--shadow-hover);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto 12px;
  transition: var(--transition);
}

.team-card:hover .team-avatar {
  transform: scale(1.05) rotate(-4deg);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.2);
}

.team-card h4 {
  font-weight: 700;
  font-size: 1rem;
  color: var(--navy);
  margin-bottom: 2px;
}

.team-card .team-role {
  font-size: 0.78rem;
  color: var(--orange);
  font-weight: 600;
  margin-bottom: 6px;
}

.team-card .team-bio {
  font-size: 0.82rem;
  color: var(--text-light);
  line-height: 1.5;
  margin-bottom: 12px;
}

.team-social {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.team-social a {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(10, 14, 26, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-light);
  transition: var(--transition);
}

.team-social a:hover {
  background: var(--orange);
  color: #fff;
  transform: translateY(-3px);
}

/* ===== PROGRAMS PAGE ===== */
.program-categories {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.cat-btn {
  padding: 8px 20px;
  border-radius: 50px;
  border: 1px solid rgba(10, 14, 26, 0.06);
  background: transparent;
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.78rem;
  cursor: pointer;
  transition: all 0.4s ease;
  font-family: "Inter", sans-serif;
}

.cat-btn:hover {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

.cat-btn.active {
  background: var(--orange-gradient);
  color: #fff;
  border-color: var(--orange);
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.15);
}

.program-card-icon {
  font-size: 2rem;
  margin-bottom: 6px;
  display: block;
}

.program-tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 8px 0;
}

.program-tags .tag {
  font-size: 0.55rem;
  font-weight: 700;
  padding: 2px 12px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.program-tags .tag.featured {
  background: var(--orange-gradient);
  color: #fff;
}

/* ===== PRICING ===== */
.pricing-section {
  padding: 80px 0;
  background: var(--white);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pricing-card {
  background: var(--cream);
  padding: 32px 28px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
}

.pricing-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.08);
  box-shadow: var(--shadow-hover);
}

.pricing-card.featured {
  border: 2px solid var(--orange);
  background: #fff;
}

.pricing-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--orange-gradient);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  padding: 4px 20px;
  border-radius: 50px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  white-space: nowrap;
}

.pricing-header h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.pricing-header .price {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--orange);
  margin: 6px 0;
}

.pricing-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.pricing-features {
  list-style: none;
  margin: 20px 0;
  text-align: left;
}

.pricing-features li {
  padding: 6px 0;
  font-size: 0.85rem;
  color: var(--text-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* ===== VISION PAGE ===== */
.vision-mission {
  padding: 80px 0;
  background: var(--cream);
}

.vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.vm-card {
  padding: 40px 36px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  text-align: center;
}

.vm-card.vision {
  background: var(--navy);
  color: #fff;
  border: none;
}

.vm-card.mission {
  background: var(--orange-gradient);
  color: #fff;
  border: none;
}

.vm-card .vm-icon {
  font-size: 3rem;
  margin-bottom: 12px;
  display: block;
}

.vm-card h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.vm-card p {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.8;
}

.vm-stats {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 16px;
}

.vm-stats span {
  font-size: 0.7rem;
  padding: 4px 14px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.6);
}

.impact-stats {
  padding: 80px 0;
  background: var(--white);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.impact-card {
  text-align: center;
  padding: 24px 16px;
  background: var(--cream);
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.impact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.impact-number {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--navy);
  display: block;
}

.impact-label {
  font-size: 0.8rem;
  color: var(--text-light);
  display: block;
  margin: 4px 0 8px;
}

.impact-bar {
  width: 100%;
  height: 4px;
  background: rgba(10, 14, 26, 0.04);
  border-radius: 4px;
  overflow: hidden;
}

.impact-bar span {
  display: block;
  height: 100%;
  background: var(--orange-gradient);
  border-radius: 4px;
  transition: width 1s ease;
}

.future-plans {
  padding: 80px 0;
  background: var(--cream);
}

.future-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.future-card {
  background: #fff;
  padding: 28px 24px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  transition: var(--transition);
  border: 1px solid rgba(10, 14, 26, 0.04);
}

.future-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

.future-year {
  font-family: "Playfair Display", serif;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--orange);
  display: block;
  margin-bottom: 4px;
}

.future-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.future-card p {
  font-size: 0.85rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 12px;
}

.future-status {
  font-size: 0.65rem;
  font-weight: 600;
  padding: 2px 14px;
  border-radius: 50px;
  display: inline-block;
}

.future-status.completed {
  background: #d1fae5;
  color: #065f46;
}

.future-status.in-progress {
  background: #fef3c7;
  color: #92400e;
}

.future-status.planned {
  background: #e5e7eb;
  color: #4b5563;
}

.social-impact {
  padding: 80px 0;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.social-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 28px 20px;
  border-radius: var(--radius-sm);
  text-align: center;
  transition: var(--transition);
}

.social-card:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-4px);
}

.social-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 8px;
}

/* ===== CONTACT PAGE ===== */
.contact-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 20px 0;
}

.contact-feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-xs);
  transition: var(--transition);
}

.contact-feature:hover {
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-feature .feature-icon {
  font-size: 1.2rem;
}

.contact-feature h4 {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 0;
}

.contact-feature p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

.contact-extra {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 20px;
}

.extra-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  background: var(--cream);
  border-radius: var(--radius-xs);
}

.extra-item span {
  font-size: 1.2rem;
}

.extra-item strong {
  font-size: 0.78rem;
  color: var(--navy);
  display: block;
}

.extra-item p {
  font-size: 0.78rem;
  color: var(--text-light);
  margin: 0;
}

.contact-form .form-header {
  text-align: center;
  margin-bottom: 24px;
}

.contact-form .form-header h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--navy);
}

.contact-form .form-header p {
  font-size: 0.85rem;
  color: var(--text-light);
}

.contact-form .form-note {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-lighter);
  margin-top: 12px;
}

.success-sub {
  font-size: 0.85rem;
  color: var(--text-light);
  margin-top: 8px;
}

.stat-box-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* ===== NEWSLETTER ===== */
.newsletter-section {
  padding: 80px 0;
  background: var(--cream);
}

.newsletter-inner {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  margin-top: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.newsletter-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 20px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 50px;
  font-size: 0.95rem;
  background: #fff;
  font-family: "Inter", sans-serif;
}

.newsletter-form input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 4px var(--orange-glow);
}

.newsletter-note {
  font-size: 0.75rem;
  color: var(--text-lighter);
  margin-top: 12px;
}

/* ===== LOCATION ===== */
.location-section {
  padding: 80px 0;
  background: var(--white);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.location-info h2 {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.8rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.location-info p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.7;
}

.location-address {
  margin: 20px 0 24px;
  padding: 20px 24px;
  background: var(--cream);
  border-radius: var(--radius-xs);
}

.location-address p {
  font-size: 0.9rem;
  margin: 2px 0;
}

.map-placeholder {
  width: 100%;
  aspect-ratio: 4/3;
  background: var(--navy);
  border-radius: var(--radius-sm);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.1);
}

.map-placeholder svg {
  stroke: rgba(255, 255, 255, 0.05);
  margin-bottom: 12px;
}

.map-placeholder p {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.9rem;
  font-weight: 600;
}

.map-placeholder span {
  color: rgba(255, 255, 255, 0.04);
  font-size: 0.7rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .future-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .social-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .impact-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .vm-grid {
    grid-template-columns: 1fr;
  }
  .location-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .location-address {
    text-align: left;
  }
  .contact-extra {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }
  .timeline-item {
    flex-direction: column !important;
    padding-left: 50px;
  }
  .timeline-dot {
    left: 20px;
    transform: translateX(-50%);
  }
  .timeline-content {
    width: 100%;
  }
  .timeline-item:nth-child(odd) .timeline-content,
  .timeline-item:nth-child(even) .timeline-content {
    margin: 0;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin: 0 auto;
  }
  .future-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .social-grid {
    grid-template-columns: 1fr 1fr;
    max-width: 440px;
    margin: 0 auto;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .page-hero .hero-stats-mini {
    justify-content: center;
  }
  .program-categories {
    gap: 4px;
  }
  .cat-btn {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .contact-feature {
    padding: 10px 14px;
  }
  .newsletter-form {
    flex-direction: column;
    align-items: stretch;
  }
  .newsletter-form input {
    min-width: unset;
  }
  .newsletter-form button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
    max-width: 300px;
    margin: 0 auto;
  }
  .future-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .social-grid {
    grid-template-columns: 1fr;
    max-width: 320px;
    margin: 0 auto;
  }
  .impact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .impact-number {
    font-size: 1.6rem;
  }
  .pricing-card {
    padding: 24px 20px;
  }
  .pricing-header .price {
    font-size: 1.8rem;
  }
  .timeline-content {
    padding: 16px 18px;
  }
  .vm-card {
    padding: 28px 20px;
  }
  .page-hero .hero-stats-mini {
    gap: 12px;
  }
  .page-hero .mini-stat {
    padding: 6px 14px;
  }
  .page-hero .mini-stat .mini-number {
    font-size: 1rem;
  }
  .stat-box {
    padding: 20px 16px;
  }
  .contact-extra {
    grid-template-columns: 1fr;
  }
  .extra-item {
    padding: 10px 14px;
  }
  .location-address {
    padding: 16px 18px;
  }
}

/* ============================================
   CONTACT PAGE IMPROVEMENTS
   ============================================ */

/* Contact Badge */
.contact-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--orange-glow);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 20px;
}

.contact-badge svg {
  flex-shrink: 0;
}

/* Feature Icons */
.feature-icon-wrapper {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
}

.contact-feature:hover .feature-icon-wrapper {
  background: var(--orange-gradient);
  transform: scale(1.05);
}

.feature-icon-wrapper svg {
  width: 24px;
  height: 24px;
}

/* Social Proof */
.social-proof {
  margin-top: 24px;
  padding: 16px 20px;
  background: var(--cream);
  border-radius: var(--radius-xs);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.proof-avatars {
  display: flex;
  align-items: center;
}

.proof-avatars .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--orange-gradient);
  color: #fff;
  font-size: 0.6rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: -8px;
  border: 2px solid #fff;
}

.proof-avatars .avatar-more {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.55rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
}

.social-proof p {
  font-size: 0.8rem;
  color: var(--text-light);
  margin: 0;
}

/* Form Improvements */
.contact-form .group {
  position: relative;
}

.contact-form .group .input-icon {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1rem;
  opacity: 0.3;
  pointer-events: none;
}

.contact-form .group textarea + .input-icon {
  top: 20px;
  transform: none;
}

.contact-form .group input,
.contact-form .group select,
.contact-form .group textarea {
  padding-right: 44px;
}

.form-header-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--orange-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 12px;
}

.form-header-icon svg {
  width: 28px;
  height: 28px;
}

.form-footer {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
}

.form-trust {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.form-trust span {
  font-size: 0.65rem;
  color: var(--text-lighter);
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Success Animation */
.success-animation {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

/* Newsletter Icon */
.newsletter-icon {
  display: flex;
  justify-content: center;
  margin-bottom: 16px;
}

.newsletter-icon svg {
  width: 50px;
  height: 50px;
}

/* Location Address */
.location-address {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.address-icon {
  flex-shrink: 0;
  margin-top: 4px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .contact-badge {
    font-size: 0.6rem;
    padding: 6px 14px;
  }

  .social-proof {
    flex-direction: column;
    text-align: center;
  }

  .proof-avatars {
    justify-content: center;
  }

  .form-trust {
    gap: 8px;
  }

  .form-trust span {
    font-size: 0.6rem;
  }

  .location-address {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .feature-icon-wrapper {
    width: 36px;
    height: 36px;
  }

  .feature-icon-wrapper svg {
    width: 18px;
    height: 18px;
  }

  .contact-feature {
    padding: 10px 12px;
  }

  .contact-feature h4 {
    font-size: 0.8rem;
  }

  .contact-feature p {
    font-size: 0.7rem;
  }

  .stat-box .stat-big {
    font-size: 1.8rem;
  }

  .form-header-icon {
    width: 44px;
    height: 44px;
  }

  .form-header-icon svg {
    width: 22px;
    height: 22px;
  }

  .proof-avatars .avatar,
  .proof-avatars .avatar-more {
    width: 28px;
    height: 28px;
    font-size: 0.5rem;
  }
}

/* ============================================
   WHY INSPIREX EXISTS - COMPLETE REDESIGN
   ============================================ */

.why-inspirex {
  padding: 100px 0;
  background: var(--white);
  position: relative;
  overflow: hidden;
}

.why-inspirex::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at 30% 50%,
    rgba(255, 107, 53, 0.02),
    transparent 70%
  );
  pointer-events: none;
}

/* ===== STATS ROW ===== */
.why-stats-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 50px;
}

.why-stat-card {
  background: var(--cream);
  border-radius: var(--radius-sm);
  padding: 28px 24px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

.why-stat-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--orange-gradient);
  transform: scaleX(0);
  transition: var(--transition);
  transform-origin: left;
}

.why-stat-card:hover::before {
  transform: scaleX(1);
}

.why-stat-card:hover {
  transform: translateY(-6px);
  border-color: rgba(255, 107, 53, 0.08);
  box-shadow: var(--shadow-hover);
}

.why-stat-number {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 800;
  color: var(--orange);
  display: block;
  line-height: 1;
}

.why-stat-label {
  font-size: 0.85rem;
  color: var(--text-light);
  display: block;
  margin: 6px 0 10px;
}

.why-stat-bar {
  width: 100%;
  height: 6px;
  background: rgba(10, 14, 26, 0.04);
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto;
}

.why-stat-bar span {
  display: block;
  height: 100%;
  background: var(--orange-gradient);
  border-radius: 6px;
  transition: width 1.5s ease;
  animation: statBarGrow 1.5s ease forwards;
}

@keyframes statBarGrow {
  from {
    width: 0;
  }
}

.why-stat-icon {
  font-size: 1.8rem;
  margin-top: 10px;
  display: block;
}

/* ===== MAIN GRID ===== */
.why-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 30px;
  align-items: stretch;
  margin-bottom: 50px;
}

/* ===== COLUMNS ===== */
.why-column {
  padding: 36px 32px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.why-column.problem {
  background: #fef2f2;
  border: 1px solid #fecaca;
}

.why-column.problem:hover {
  box-shadow: 0 8px 40px rgba(239, 68, 68, 0.08);
  transform: translateY(-4px);
}

.why-column.solution {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
}

.why-column.solution:hover {
  box-shadow: 0 8px 40px rgba(16, 185, 129, 0.08);
  transform: translateY(-4px);
}

.why-column-header {
  margin-bottom: 16px;
}

.why-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 4px 14px;
  border-radius: 50px;
  margin-bottom: 8px;
}

.why-badge.problem-badge {
  background: #fecaca;
  color: #dc2626;
}

.why-badge.solution-badge {
  background: #bbf7d0;
  color: #16a34a;
}

.why-column h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--navy);
}

.why-column p {
  font-size: 0.95rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 16px;
}

.why-problem-list,
.why-solution-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}

.why-problem-list li,
.why-solution-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  transition: var(--transition);
}

.why-problem-list li:hover {
  background: rgba(239, 68, 68, 0.04);
}

.why-solution-list li:hover {
  background: rgba(16, 185, 129, 0.04);
}

.why-icon {
  font-size: 0.9rem;
  flex-shrink: 0;
  margin-top: 2px;
  width: 20px;
  text-align: center;
}

.why-icon.wrong {
  color: #ef4444;
}

.why-icon.correct {
  color: #10b981;
}

.why-problem-list li div,
.why-solution-list li div {
  flex: 1;
}

.why-problem-list li strong,
.why-solution-list li strong {
  font-size: 0.85rem;
  color: var(--navy);
  display: block;
}

.why-problem-list li span,
.why-solution-list li span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: block;
}

.why-stat-highlight {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 12px;
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.8);
}

.why-stat-highlight .highlight-number {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  font-weight: 800;
}

.why-column.problem .why-stat-highlight .highlight-number {
  color: #ef4444;
}

.why-column.solution .why-stat-highlight .highlight-number {
  color: #10b981;
}

.why-stat-highlight .highlight-text {
  font-size: 0.85rem;
  color: var(--text-light);
}

/* ===== VS DIVIDER ===== */
.why-vs {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  align-self: center;
}

.vs-circle {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--orange-gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
  position: relative;
}

.vs-line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.08);
  animation: vsPulse 2s ease-in-out infinite;
}

@keyframes vsPulse {
  0%,
  100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0;
  }
}

.vs-arrow {
  margin-top: 8px;
}

/* ===== BRIDGE VISUAL ===== */
.bridge-visual {
  padding: 40px 36px;
  background: var(--navy);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.bridge-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    ellipse at center,
    rgba(255, 107, 53, 0.04),
    transparent 70%
  );
  pointer-events: none;
}

.bridge-container {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.bridge-side {
  flex: 1;
  min-width: 200px;
}

.bridge-label {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
  text-align: center;
}

.bridge-bars {
  display: flex;
  height: 36px;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.03);
}

.bridge-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.6rem;
  font-weight: 600;
  color: #fff;
  transition: width 1.5s ease;
  height: 100%;
}

.bridge-bar.theory {
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.2);
}

.bridge-bar.practical {
  background: var(--orange-gradient);
}

.bridge-arrow {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.bridge-note {
  text-align: center;
  margin-top: 20px;
  position: relative;
  z-index: 2;
}

.bridge-highlight {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.5);
  padding: 8px 24px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  border-radius: 50px;
  background: rgba(255, 107, 53, 0.04);
  transition: var(--transition);
}

.bridge-highlight:hover {
  border-color: rgba(255, 107, 53, 0.2);
  color: rgba(255, 255, 255, 0.7);
}

/* ===== BOTTOM CTA ===== */
.why-cta {
  text-align: center;
  margin-top: 48px;
}

.why-cta .btn {
  position: relative;
  overflow: hidden;
}

.why-cta-note {
  display: block;
  font-size: 0.8rem;
  color: var(--text-lighter);
  margin-top: 12px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .why-stats-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
  }

  .why-stat-number {
    font-size: 2.4rem;
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .why-vs {
    flex-direction: row;
    padding: 10px 0;
    gap: 16px;
  }

  .vs-arrow {
    transform: rotate(90deg);
  }

  .bridge-container {
    flex-direction: column;
    gap: 16px;
  }

  .bridge-side {
    width: 100%;
    min-width: unset;
  }

  .bridge-arrow {
    transform: rotate(90deg);
  }
}

@media (max-width: 768px) {
  .why-inspirex {
    padding: 60px 0;
  }

  .why-stats-row {
    grid-template-columns: 1fr;
    max-width: 380px;
    margin: 0 auto 32px;
  }

  .why-stat-card {
    padding: 20px 16px;
  }

  .why-stat-number {
    font-size: 2rem;
  }

  .why-column {
    padding: 24px 20px;
  }

  .why-column h3 {
    font-size: 1.2rem;
  }

  .why-column p {
    font-size: 0.88rem;
  }

  .why-problem-list li,
  .why-solution-list li {
    padding: 6px 8px;
  }

  .why-stat-highlight {
    padding: 12px 14px;
    flex-direction: column;
    text-align: center;
  }

  .why-stat-highlight .highlight-number {
    font-size: 1.6rem;
  }

  .vs-circle {
    width: 50px;
    height: 50px;
    font-size: 1rem;
  }

  .bridge-visual {
    padding: 24px 16px;
    border-radius: var(--radius-sm);
  }

  .bridge-bars {
    height: 28px;
  }

  .bridge-bar {
    font-size: 0.55rem;
  }

  .bridge-highlight {
    font-size: 0.8rem;
    padding: 6px 16px;
  }

  .why-cta {
    margin-top: 32px;
  }
}

@media (max-width: 480px) {
  .why-stat-number {
    font-size: 1.6rem;
  }

  .why-stat-label {
    font-size: 0.75rem;
  }

  .why-column {
    padding: 18px 14px;
  }

  .why-column h3 {
    font-size: 1.1rem;
  }

  .why-problem-list li strong,
  .why-solution-list li strong {
    font-size: 0.8rem;
  }

  .why-problem-list li span,
  .why-solution-list li span {
    font-size: 0.7rem;
  }

  .why-stat-highlight .highlight-number {
    font-size: 1.4rem;
  }

  .bridge-bars {
    height: 24px;
  }

  .bridge-bar {
    font-size: 0.5rem;
  }

  .bridge-highlight {
    font-size: 0.7rem;
    padding: 4px 12px;
  }
}

/* ============================================
   MODERN HERO - TYPOGRAPHY IMPROVED + ANIMATED SVGS
   ============================================ */

.hero-modern {
  position: relative;
  min-height: 100vh;
  background: #0a0e1a;
  display: flex;
  align-items: center;
  padding: 120px 0 60px;
  overflow: hidden;
}

/* ===== BACKGROUND ===== */
.hero-bg-modern {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.bg-shape {
  position: absolute;
  border-radius: 50%;
  opacity: 0.3;
  filter: blur(100px);
}

.shape-1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.06);
  top: -20%;
  right: -10%;
  animation: shapeFloat 20s ease-in-out infinite;
}

.shape-2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.04);
  bottom: -20%;
  left: -10%;
  animation: shapeFloat 25s ease-in-out infinite reverse;
}

.shape-3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.03);
  top: 40%;
  left: 30%;
  animation: shapeFloat 18s ease-in-out infinite 2s;
}

.shape-4 {
  width: 200px;
  height: 200px;
  background: rgba(255, 107, 53, 0.05);
  bottom: 20%;
  right: 15%;
  animation: shapeFloat 22s ease-in-out infinite 4s;
}

@keyframes shapeFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(80px, -60px) scale(1.1);
  }
  66% {
    transform: translate(-60px, 80px) scale(0.9);
  }
}

.bg-dots {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(
    rgba(255, 255, 255, 0.02) 1px,
    transparent 1px
  );
  background-size: 40px 40px;
}

/* ===== HERO WRAPPER ===== */
.hero-modern-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

/* ===== LEFT CONTENT ===== */
.hero-modern-content {
  position: relative;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 107, 53, 0.08);
  border: 1px solid rgba(255, 107, 53, 0.12);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 28px;
  position: relative;
}

.hero-badge .badge-icon {
  color: var(--orange);
  font-size: 0.8rem;
}

.badge-pulse {
  position: absolute;
  inset: -2px;
  border-radius: 50px;
  border: 1px solid rgba(255, 107, 53, 0.1);
  animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.5;
  }
  50% {
    transform: scale(1.05);
    opacity: 0;
  }
}

/* ===== TYPOGRAPHY ===== */
.hero-modern-title {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 6vw, 4.2rem);
  color: #fff;
  line-height: 1.08;
  margin-bottom: 20px;
}

.title-line {
  display: block;
  font-weight: 700;
}

.title-highlight {
  display: block;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a, #ffa07a, #ff6b35);
  background-size: 300% 300%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradientMove 4s ease-in-out infinite;
  position: relative;
  font-weight: 900;
}

@keyframes gradientMove {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.title-brand {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 900;
}

/* Description */
.hero-modern-desc {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  line-height: 1.9;
  margin-bottom: 32px;
  font-weight: 400;
  letter-spacing: 0.01em;
}

.hero-modern-desc strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

/* ===== ACTIONS ===== */
.hero-modern-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-cta-primary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  border: none;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.25);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.hero-cta-primary::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #ff8c5a, #ffa07a);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.hero-cta-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.35);
}

.hero-cta-primary:hover::before {
  opacity: 1;
}

.hero-cta-primary span,
.hero-cta-primary svg {
  position: relative;
  z-index: 1;
}

.hero-cta-primary svg {
  transition: transform 0.3s ease;
}

.hero-cta-primary:hover svg {
  transform: translateX(4px);
}

.hero-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  text-decoration: none;
}

.hero-cta-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.hero-cta-secondary svg {
  transition: transform 0.3s ease;
}

.hero-cta-secondary:hover svg {
  transform: translateX(4px);
}

/* ===== STATS ===== */
.hero-modern-stats {
  display: flex;
  gap: 32px;
  align-items: center;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  margin-bottom: 28px;
}

.hero-stat {
  display: flex;
  flex-direction: column;
}

.hero-stat-number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.hero-stat-label {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-stat-divider {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.04);
}

/* ===== TRUSTED ===== */
.hero-trusted {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.trusted-label {
  font-size: 0.6rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: orange;
  font-weight: 500;
}

.trusted-logos {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.trusted-logos span {
  font-size: 0.7rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.06);
  letter-spacing: 0.08em;
  transition: color 0.3s ease;
  font-family: "Inter", sans-serif;
}

.trusted-logos span:hover {
  color: rgba(255, 255, 255, 0.2);
}

/* ===== RIGHT VISUAL ===== */
.hero-modern-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-visual-container {
  position: relative;
  width: 100%;
  max-width: 480px;
  height: 480px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* ===== CENTER SVG ===== */
.hero-visual-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  z-index: 5;
  animation: centerFloat 6s ease-in-out infinite;
}

@keyframes centerFloat {
  0%,
  100% {
    transform: translate(-50%, -50%) translateY(0);
  }
  50% {
    transform: translate(-50%, -50%) translateY(-8px);
  }
}

.hero-visual-center svg {
  width: 100%;
  height: 100%;
}

/* ===== FLOATING CARDS ===== */
.hero-float-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 6px 8px;
  transition: all 0.4s ease;
  z-index: 4;
}

.hero-float-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.1);
  transform: scale(1.05) !important;
}

.hero-float-card svg {
  display: block;
  width: 120px;
  height: 45px;
}

.float-card-1 {
  top: 8%;
  right: 2%;
  animation: floatCard1 5s ease-in-out infinite;
}

.float-card-2 {
  bottom: 12%;
  left: 2%;
  animation: floatCard2 6s ease-in-out infinite 1s;
}

.float-card-3 {
  top: 42%;
  right: -6%;
  animation: floatCard3 4.5s ease-in-out infinite 2s;
}

.float-card-4 {
  top: 18%;
  left: -4%;
  animation: floatCard4 5.5s ease-in-out infinite 0.5s;
}

.float-card-5 {
  bottom: 30%;
  right: -8%;
  animation: floatCard5 5.2s ease-in-out infinite 3s;
}

@keyframes floatCard1 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-12px) rotate(2deg);
  }
}

@keyframes floatCard2 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(-2deg);
  }
}

@keyframes floatCard3 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-8px) rotate(1deg);
  }
}

@keyframes floatCard4 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-14px) rotate(-1deg);
  }
}

@keyframes floatCard5 {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(2deg);
  }
}

/* ===== DECORATIVE CIRCLES ===== */
.visual-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.04);
  pointer-events: none;
}

.circle-1 {
  width: 320px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: circleRotate 30s linear infinite;
}

.circle-2 {
  width: 400px;
  height: 400px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 107, 53, 0.02);
  animation: circleRotate 40s linear infinite reverse;
}

.circle-3 {
  width: 240px;
  height: 240px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(255, 107, 53, 0.06);
  animation: circleRotate 20s linear infinite;
}

@keyframes circleRotate {
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* ===== RATING BADGE ===== */
.rating-badge {
  position: absolute;
  bottom: -5%;
  right: -2%;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 12px;
  padding: 12px 18px;
  text-align: center;
  z-index: 6;
  animation: badgeFloat 3s ease-in-out infinite;
}

.rating-stars {
  display: flex;
  justify-content: center;
  margin-bottom: 2px;
}

.rating-stars svg {
  width: 80px;
  height: 16px;
}

.rating-score {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.rating-label {
  font-size: 0.55rem;
  color: rgba(255, 255, 255, 0.2);
  display: block;
  margin-top: 2px;
  letter-spacing: 0.05em;
}

@keyframes badgeFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll-modern {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
}

.scroll-line {
  width: 1px;
  height: 30px;
  background: rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
}

.scroll-line span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--orange-gradient);
  animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-modern-wrapper {
    gap: 40px;
  }

  .hero-visual-container {
    max-width: 400px;
    height: 400px;
  }

  .hero-visual-center {
    width: 160px;
    height: 160px;
  }

  .hero-float-card svg {
    width: 100px;
    height: 38px;
  }

  .float-card-1 {
    top: 5%;
    right: 0%;
  }
  .float-card-2 {
    bottom: 8%;
    left: 0%;
  }
  .float-card-3 {
    right: -2%;
  }
  .float-card-4 {
    left: -2%;
  }
  .float-card-5 {
    right: -3%;
    bottom: 25%;
  }

  .rating-badge {
    right: 0%;
    bottom: -2%;
    padding: 10px 14px;
  }
}

@media (max-width: 768px) {
  .hero-modern {
    padding: 100px 0 40px;
    min-height: auto;
  }

  .hero-modern-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 40px;
  }

  .hero-modern-content {
    text-align: center;
  }

  .hero-modern-desc {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }

  .hero-modern-actions {
    justify-content: center;
  }

  .hero-modern-stats {
    justify-content: center;
  }

  .hero-trusted {
    justify-content: center;
  }

  .trusted-logos {
    justify-content: center;
  }

  .hero-visual-container {
    max-width: 340px;
    height: 360px;
  }

  .hero-visual-center {
    width: 130px;
    height: 130px;
  }

  .hero-float-card svg {
    width: 85px;
    height: 34px;
  }

  .float-card-1 {
    top: 3%;
    right: 0%;
  }
  .float-card-2 {
    bottom: 5%;
    left: 0%;
  }
  .float-card-3 {
    right: 0%;
    top: 40%;
  }
  .float-card-4 {
    left: 0%;
    top: 15%;
  }
  .float-card-5 {
    right: 0%;
    bottom: 25%;
    display: none;
  }

  .rating-badge {
    padding: 8px 12px;
    bottom: 0%;
    right: 0%;
  }

  .rating-stars svg {
    width: 60px;
    height: 12px;
  }

  .rating-score {
    font-size: 1.1rem;
  }

  .rating-label {
    font-size: 0.5rem;
  }

  .circle-1,
  .circle-2,
  .circle-3 {
    display: none;
  }

  .hero-scroll-modern {
    display: none;
  }

  .hero-badge {
    margin: 0 auto 20px;
    font-size: 0.6rem;
    padding: 6px 16px;
  }
}

@media (max-width: 480px) {
  .hero-modern {
    padding: 80px 0 30px;
  }

  .hero-modern-title {
    font-size: clamp(2rem, 7vw, 2.6rem);
  }

  .hero-modern-desc {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .hero-modern-actions {
    flex-direction: column;
    align-items: center;
    width: 100%;
    gap: 10px;
  }

  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
    padding: 14px 24px;
    font-size: 0.85rem;
  }

  .hero-modern-stats {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 20px;
  }

  .hero-stat-number {
    font-size: 1.2rem;
  }

  .hero-stat-label {
    font-size: 0.6rem;
  }

  .hero-stat-divider {
    height: 20px;
  }

  .hero-visual-container {
    max-width: 280px;
    height: 300px;
  }

  .hero-visual-center {
    width: 110px;
    height: 110px;
  }

  .hero-float-card {
    padding: 4px 6px;
    border-radius: 8px;
  }

  .hero-float-card svg {
    width: 70px;
    height: 28px;
  }

  .float-card-1 {
    top: 2%;
    right: 0%;
  }
  .float-card-2 {
    bottom: 3%;
    left: 0%;
  }
  .float-card-3 {
    right: 0%;
    top: 38%;
    display: none;
  }
  .float-card-4 {
    left: 0%;
    top: 12%;
  }
  .float-card-5 {
    display: none;
  }

  .rating-badge {
    padding: 6px 10px;
    bottom: 2%;
    right: 2%;
  }

  .rating-stars svg {
    width: 50px;
    height: 10px;
  }

  .rating-score {
    font-size: 0.9rem;
  }

  .rating-label {
    font-size: 0.45rem;
  }

  .trusted-logos {
    gap: 12px;
  }

  .trusted-logos span {
    font-size: 0.6rem;
  }
}

@media (max-width: 375px) {
  .hero-visual-container {
    max-width: 230px;
    height: 250px;
  }

  .hero-visual-center {
    width: 90px;
    height: 90px;
  }

  .hero-float-card svg {
    width: 60px;
    height: 24px;
  }

  .float-card-1 {
    top: 2%;
    right: 0%;
  }
  .float-card-2 {
    bottom: 2%;
    left: 0%;
  }
  .float-card-4 {
    left: 0%;
    top: 10%;
  }
}

@media (max-height: 600px) and (orientation: landscape) {
  .hero-modern {
    min-height: auto;
    padding: 70px 0 20px;
  }

  .hero-modern-wrapper {
    gap: 20px;
  }

  .hero-modern-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
  }

  .hero-modern-desc {
    font-size: 0.8rem;
    margin-bottom: 16px;
  }

  .hero-modern-actions {
    margin-bottom: 16px;
  }

  .hero-modern-stats {
    padding-top: 16px;
    margin-bottom: 16px;
    gap: 16px;
  }

  .hero-visual-container {
    max-width: 200px;
    height: 220px;
  }

  .hero-visual-center {
    width: 80px;
    height: 80px;
  }

  .hero-float-card {
    display: none;
  }

  .rating-badge {
    display: none;
  }

  .hero-scroll-modern {
    display: none;
  }
}

/* ============================================
   HERO VISUAL - FIXED FOR MOBILE (BIGGER)
   ============================================ */

/* Desktop */
.hero-illustration-wrapper {
  position: relative;
  width: 100%;
  max-width: 520px;
  margin: 0 auto;
}

.hero-illustration-3d svg {
  width: 100%;
  height: auto;
  display: block;
}

/* ===== MOBILE - BIGGER VISUAL ===== */
@media (max-width: 768px) {
  .hero-illustration-wrapper {
    max-width: 420px; /* Bigger on tablet */
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .hero-illustration-wrapper {
    max-width: 340px; /* Bigger on mobile */
    margin: 0 auto;
  }
}

@media (max-width: 375px) {
  .hero-illustration-wrapper {
    max-width: 280px; /* Still big on small phones */
    margin: 0 auto;
  }
}

/* ===== PREVENT CUTOFF ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  overflow: visible;
}

.hero-illustration-3d {
  width: 100%;
  overflow: visible;
}

.hero-illustration-3d svg {
  overflow: visible;
}

/* ============================================
   PROGRAMS - PREMIUM CARDS (MOBILE FIXED)
   ============================================ */

/* ===== GRID ===== */
.programs-premium-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  position: relative;
  z-index: 2;
}

/* ===== CARD ===== */
.premium-card {
  perspective: 1200px;
  height: 500px;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.premium-card-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  background: #ffffff;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.04);
  border: 1px solid rgba(10, 14, 26, 0.04);
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}

.premium-card-inner:hover {
  transform: rotateY(4deg) rotateX(4deg) translateY(-12px);
  box-shadow: 0 30px 100px rgba(10, 14, 26, 0.08);
  border-color: rgba(255, 107, 53, 0.08);
}

/* ===== CARD CONTENT ===== */
.premium-card-content {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 28px 26px;
}

/* ===== CARD TOP ===== */
.card-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.card-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.55rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--orange);
  background: var(--orange-glow);
  padding: 4px 14px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.card-badge .badge-pulse {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--orange);
  animation: badgePulse 1.5s ease-in-out infinite;
}

@keyframes badgePulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.3;
    transform: scale(0.6);
  }
}

.card-badge.featured {
  background: var(--orange-gradient);
  color: #fff;
}

.card-badge.featured .badge-pulse {
  background: #fff;
}

.card-number {
  font-family: "Playfair Display", serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: rgba(10, 14, 26, 0.03);
  line-height: 1;
  transition: all 0.4s ease;
}

.premium-card-inner:hover .card-number {
  color: rgba(255, 107, 53, 0.06);
  transform: scale(1.1);
}

/* ===== ICON ===== */
.card-icon-wrapper {
  position: relative;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-icon-ring {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  border: 2px solid rgba(255, 107, 53, 0.06);
  animation: ringSpin 20s linear infinite;
}

.card-icon-ring::before {
  content: "";
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 1px solid rgba(255, 107, 53, 0.03);
  animation: ringSpin 15s linear infinite reverse;
}

@keyframes ringSpin {
  to {
    transform: rotate(360deg);
  }
}

.card-icon-wrapper .card-icon {
  font-size: 2.2rem;
  transition: all 0.4s ease;
  z-index: 1;
}

.premium-card-inner:hover .card-icon-wrapper .card-icon {
  transform: scale(1.15) rotate(-6deg);
}

/* ===== TITLE ===== */
.premium-card-content h3 {
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--navy);
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.premium-card-inner:hover .premium-card-content h3 {
  color: var(--orange);
}

.premium-card-content p {
  color: var(--text-light);
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 14px;
  flex: 0 0 auto;
}

/* ===== META ===== */
.card-meta {
  display: flex;
  gap: 6px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.meta-chip {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 0.7rem;
  color: var(--text-lighter);
  padding: 3px 12px;
  background: rgba(10, 14, 26, 0.02);
  border-radius: 50px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.meta-chip .meta-chip-icon {
  font-size: 0.6rem;
}

.premium-card-inner:hover .meta-chip {
  background: rgba(255, 107, 53, 0.04);
  color: var(--text);
}

/* ===== SKILLS ===== */
.card-skills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}

.skill-pill {
  font-size: 0.6rem;
  font-weight: 600;
  padding: 3px 14px;
  border-radius: 50px;
  background: rgba(10, 14, 26, 0.02);
  color: var(--text-light);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.3s ease;
  cursor: default;
}

.premium-card-inner:hover .skill-pill {
  background: var(--orange-glow);
  color: var(--orange);
  border-color: rgba(255, 107, 53, 0.1);
  transform: translateY(-2px);
}

/* ===== FOOTER ===== */
.card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid rgba(10, 14, 26, 0.04);
}

.card-level {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.6rem;
  font-weight: 600;
  color: var(--text-lighter);
}

.level-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  display: inline-block;
}

.level-dot.beginner {
  background: #10b981;
}
.level-dot.intermediate {
  background: #f59e0b;
}
.level-dot.advanced {
  background: #ef4444;
}
.level-dot.all-levels {
  background: #8b5cf6;
}

.card-learn-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: none;
  color: var(--orange);
  font-weight: 600;
  font-size: 0.8rem;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: "Inter", sans-serif;
  padding: 0;
}

.card-learn-btn svg {
  transition: transform 0.3s ease;
}

.card-learn-btn:hover {
  color: var(--orange-dark);
}

.card-learn-btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   MOBILE RESPONSIVE - BIG & VISIBLE
   ============================================ */

@media (max-width: 1024px) {
  .programs-premium-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  .premium-card {
    height: 480px;
  }
}

@media (max-width: 768px) {
  .programs-premium {
    padding: 60px 0;
  }

  .programs-premium-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 460px;
    margin: 0 auto;
  }

  .premium-card {
    height: auto;
    min-height: 420px;
    width: 100%;
  }

  .premium-card-inner {
    border-radius: 16px;
    height: 100%;
    min-height: 420px;
  }

  .premium-card-content {
    padding: 24px 22px;
  }

  .premium-card-content h3 {
    font-size: 1.2rem;
  }

  .premium-card-content p {
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .card-number {
    font-size: 2.4rem;
  }

  .card-icon-wrapper {
    width: 64px;
    height: 64px;
  }

  .card-icon-wrapper .card-icon {
    font-size: 2rem;
  }

  .card-meta {
    gap: 6px;
  }

  .meta-chip {
    font-size: 0.7rem;
    padding: 4px 12px;
  }

  .skill-pill {
    font-size: 0.6rem;
    padding: 4px 12px;
  }

  .card-footer {
    padding-top: 12px;
    flex-wrap: wrap;
    gap: 8px;
  }

  .programs-stats {
    padding: 10px 24px;
    gap: 16px;
    flex-wrap: wrap;
  }

  .stat-item .stat-number {
    font-size: 1.1rem;
  }

  .stat-item .stat-label {
    font-size: 0.7rem;
  }
}

@media (max-width: 480px) {
  .programs-premium {
    padding: 40px 0;
  }

  .programs-premium-grid {
    gap: 16px;
    max-width: 100%;
  }

  .premium-card {
    min-height: 380px;
    width: 100%;
  }

  .premium-card-inner {
    min-height: 380px;
    border-radius: 14px;
  }

  .premium-card-content {
    padding: 18px 16px;
  }

  .premium-card-content h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
  }

  .premium-card-content p {
    font-size: 0.85rem;
    line-height: 1.6;
    margin-bottom: 10px;
  }

  .card-top {
    margin-bottom: 8px;
  }

  .card-badge {
    font-size: 0.5rem;
    padding: 3px 10px;
  }

  .card-number {
    font-size: 2rem;
  }

  .card-icon-wrapper {
    width: 52px;
    height: 52px;
    margin-bottom: 10px;
  }

  .card-icon-wrapper .card-icon {
    font-size: 1.6rem;
  }

  .card-meta {
    gap: 4px;
    margin-bottom: 8px;
  }

  .meta-chip {
    font-size: 0.6rem;
    padding: 2px 10px;
  }

  .meta-chip .meta-chip-icon {
    font-size: 0.5rem;
  }

  .card-skills {
    gap: 4px;
    margin-bottom: 8px;
  }

  .skill-pill {
    font-size: 0.55rem;
    padding: 2px 10px;
  }

  .card-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding-top: 10px;
  }

  .card-level {
    font-size: 0.55rem;
  }

  .card-learn-btn {
    font-size: 0.75rem;
  }

  .programs-ultimate-filters {
    gap: 6px;
  }

  .program-ultimate-filter {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .premium-filter {
    padding: 6px 12px;
    font-size: 0.65rem;
  }

  .premium-filter .filter-count {
    display: none;
  }

  .premium-filter .filter-name {
    font-size: 0.65rem;
  }

  .programs-stats {
    padding: 8px 16px;
    gap: 10px;
    border-radius: 30px;
  }

  .stat-item .stat-number {
    font-size: 0.95rem;
  }

  .stat-item .stat-label {
    font-size: 0.6rem;
  }

  .stat-divider {
    height: 14px;
  }

  .overlay-actions {
    flex-direction: column;
    width: 100%;
  }

  .overlay-btn {
    width: 100%;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.75rem;
  }

  .premium-viewall {
    padding: 14px 24px;
    font-size: 0.85rem;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 375px) {
  .premium-card {
    min-height: 340px;
  }

  .premium-card-inner {
    min-height: 340px;
    border-radius: 12px;
  }

  .premium-card-content {
    padding: 14px 12px;
  }

  .premium-card-content h3 {
    font-size: 1rem;
  }

  .premium-card-content p {
    font-size: 0.8rem;
    line-height: 1.5;
  }

  .card-number {
    font-size: 1.6rem;
  }

  .card-icon-wrapper {
    width: 44px;
    height: 44px;
  }

  .card-icon-wrapper .card-icon {
    font-size: 1.3rem;
  }

  .card-badge {
    font-size: 0.45rem;
    padding: 2px 8px;
  }

  .meta-chip {
    font-size: 0.55rem;
    padding: 2px 8px;
  }

  .skill-pill {
    font-size: 0.5rem;
    padding: 2px 8px;
  }

  .programs-stats {
    padding: 6px 12px;
    gap: 6px;
  }

  .stat-item .stat-number {
    font-size: 0.85rem;
  }

  .stat-item .stat-label {
    font-size: 0.55rem;
  }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  .premium-card-inner:hover {
    transform: none !important;
  }
  .premium-card-overlay {
    transition: none !important;
  }
  .overlay-inner {
    transition: none !important;
  }
  .premium-card-inner:hover .premium-card-overlay {
    opacity: 1;
  }
  .premium-card-inner:hover .overlay-inner {
    transform: none;
  }
  .card-particle-canvas {
    display: none;
  }
  .card-icon-ring,
  .card-icon-ring::before,
  .badge-pulse {
    animation: none !important;
  }
}

/* ============================================
   HERO FLOATING CARDS - AUTO SIZE
   ============================================ */

/* ===== FLOATING CARDS ===== */
.float-card {
  animation: cardFloat 5s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
  display: inline-block;
  width: auto;
  max-width: 180px;
}

.float-card:hover {
  animation-play-state: paused;
}

.scene-card {
  fill: rgba(255, 255, 255, 0.02);
  stroke: rgba(255, 255, 255, 0.04);
  stroke-width: 1;
  rx: 14;
  transition: all 0.4s ease;
  width: 100%;
  height: 100%;
}

.scene-card:hover {
  fill: rgba(255, 107, 53, 0.06);
  stroke: rgba(255, 107, 53, 0.15);
  stroke-width: 1.5;
}

.scene-card-text {
  fill: rgba(255, 255, 255, 0.12);
  font-size: 10px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
}

.scene-card-sub {
  fill: rgba(255, 255, 255, 0.04);
  font-size: 8px;
  font-family: "Inter", sans-serif;
}

.scene-card-icon {
  fill: var(--orange);
  font-size: 16px;
}

/* ===== FLOATING CARD WRAPPER ===== */
.float-card-wrapper {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.04);
  border-radius: 14px;
  transition: all 0.3s ease;
  width: auto;
  min-width: 100px;
}

.float-card-wrapper:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 107, 53, 0.08);
  transform: scale(1.05);
}

.float-card-wrapper .card-icon {
  font-size: 18px;
  flex-shrink: 0;
}

.float-card-wrapper .card-info {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.float-card-wrapper .card-title {
  color: rgba(255, 255, 255, 0.7);
  font-size: 11px;
  font-weight: 600;
  font-family: "Inter", sans-serif;
  line-height: 1.2;
  white-space: nowrap;
}

.float-card-wrapper .card-sub {
  color: rgba(255, 255, 255, 0.2);
  font-size: 8px;
  font-family: "Inter", sans-serif;
  white-space: nowrap;
}

/* ============================================
   POSITIONING - AUTO WIDTH
   ============================================ */

/* Main SVG floating cards - use HTML divs instead of SVG text */
.float-card-1 .float-card-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 107, 53, 0.06);
}

.float-card-2 .float-card-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(245, 158, 11, 0.06);
}

.float-card-3 .float-card-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(16, 185, 129, 0.06);
}

.float-card-4 .float-card-wrapper {
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(139, 92, 246, 0.06);
}

/* ============================================
   RESPONSIVE - AUTO SIZE
   ============================================ */

@media (max-width: 768px) {
  .float-card-wrapper {
    padding: 8px 14px;
    border-radius: 12px;
    min-width: 80px;
  }

  .float-card-wrapper .card-icon {
    font-size: 15px;
  }

  .float-card-wrapper .card-title {
    font-size: 10px;
    white-space: nowrap;
  }

  .float-card-wrapper .card-sub {
    font-size: 7px;
    white-space: nowrap;
  }

  /* Adjust max-width on tablet */
  .float-card {
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .float-card-wrapper {
    padding: 6px 10px;
    border-radius: 10px;
    min-width: 60px;
    gap: 6px;
  }

  .float-card-wrapper .card-icon {
    font-size: 12px;
  }

  .float-card-wrapper .card-title {
    font-size: 8px;
    white-space: nowrap;
  }

  .float-card-wrapper .card-sub {
    font-size: 6px;
    white-space: nowrap;
    display: none; /* Hide subtext on very small screens */
  }

  .float-card {
    max-width: 120px;
  }
}

@media (max-width: 375px) {
  .float-card-wrapper {
    padding: 4px 8px;
    border-radius: 8px;
    min-width: 50px;
    gap: 4px;
  }

  .float-card-wrapper .card-icon {
    font-size: 10px;
  }

  .float-card-wrapper .card-title {
    font-size: 7px;
    white-space: nowrap;
  }

  .float-card-wrapper .card-sub {
    display: none;
  }

  .float-card {
    max-width: 90px;
  }
}

/* ============================================
   HERO - SIMPLE & CLEAN
   ============================================ */

.hero {
  min-height: 100vh;
  background: var(--navy);
  display: flex;
  align-items: center;
  padding: 100px 0 40px;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.hero-bg .glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(150px);
  animation: glowFloat 20s ease-in-out infinite;
}

.hero-bg .glow.g1 {
  width: 500px;
  height: 500px;
  background: rgba(255, 107, 53, 0.04);
  top: -20%;
  right: -10%;
  animation-delay: 0s;
}

.hero-bg .glow.g2 {
  width: 400px;
  height: 400px;
  background: rgba(255, 107, 53, 0.02);
  bottom: -20%;
  left: -10%;
  animation-delay: -8s;
}

.hero-bg .glow.g3 {
  width: 300px;
  height: 300px;
  background: rgba(255, 107, 53, 0.015);
  top: 50%;
  left: 30%;
  animation-delay: -16s;
}

@keyframes glowFloat {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(60px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-40px, 60px) scale(0.9);
  }
}

.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-content {
  position: relative;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.04);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 28px;
}

.hero-tag .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.2;
    transform: scale(0.6);
  }
}

.hero-heading {
  font-family: "Playfair Display", serif;
  font-weight: 800;
  font-size: clamp(2.8rem, 7vw, 5rem);
  color: #fff;
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin-bottom: 18px;
}

.hero-heading .highlight {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a, #ffa07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text {
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  color: rgba(255, 255, 255, 0.35);
  max-width: 480px;
  line-height: 1.8;
  margin-bottom: 32px;
}

.hero-text strong {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 600;
}

.hero-buttons {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.hero-buttons .btn-primary {
  background: linear-gradient(135deg, #ff6b35, #ff8c5a);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all 0.4s ease;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.2);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-buttons .btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 50px rgba(255, 107, 53, 0.35);
}

.hero-buttons .btn-secondary {
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  padding: 16px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.06);
  cursor: pointer;
  transition: all 0.4s ease;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.hero-buttons .btn-secondary:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-4px);
}

.hero-stats {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.03);
}

.hero-stats .stat {
  text-align: left;
}

.hero-stats .stat .number {
  font-family: "Playfair Display", serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 700;
  color: #fff;
  display: block;
  line-height: 1;
}

.hero-stats .stat .number .suffix {
  color: #ff6b35;
}

.hero-stats .stat .label {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.2);
  margin-top: 4px;
  display: block;
}

.hero-stats .stat .trend {
  display: inline-block;
  font-size: 0.6rem;
  color: #10b981;
  background: rgba(16, 185, 129, 0.06);
  padding: 2px 10px;
  border-radius: 50px;
  margin-top: 4px;
}

/* ===== HERO VISUAL ===== */
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-illustration {
  width: 100%;
  max-width: 420px;
  position: relative;
}

.hero-illustration svg {
  width: 100%;
  height: auto;
}

/* ===== SCROLL INDICATOR ===== */
.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.04);
  font-size: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  z-index: 2;
}

.hero-scroll .mouse {
  width: 22px;
  height: 34px;
  border: 2px solid rgba(255, 255, 255, 0.04);
  border-radius: 10px;
  position: relative;
}

.hero-scroll .mouse .wheel {
  width: 3px;
  height: 8px;
  background: #ff6b35;
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: wheelMove 2s ease-in-out infinite;
}

@keyframes wheelMove {
  0% {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-50%) translateY(18px);
    opacity: 0;
  }
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
  .hero-wrapper {
    gap: 40px;
  }
  .hero-illustration {
    max-width: 340px;
  }
}

@media (max-width: 768px) {
  .hero {
    padding: 80px 0 30px;
    min-height: auto;
  }
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }
  .hero-content {
    text-align: center;
  }
  .hero-text {
    margin-left: auto;
    margin-right: auto;
    max-width: 100%;
  }
  .hero-buttons {
    justify-content: center;
  }
  .hero-stats {
    justify-content: center;
  }
  .hero-stats .stat {
    text-align: center;
  }
  .hero-illustration {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-scroll {
    display: none;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 70px 0 20px;
  }
  .hero-heading {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
  .hero-text {
    font-size: 0.85rem;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }
  .hero-buttons .btn-primary,
  .hero-buttons .btn-secondary {
    width: 100%;
    justify-content: center;
  }
  .hero-stats {
    gap: 20px;
  }
  .hero-stats .stat .number {
    font-size: 1.2rem;
  }
  .hero-illustration {
    max-width: 200px;
  }
  .hero-tag {
    font-size: 0.55rem;
    padding: 4px 12px;
  }
}
/* ============================================
   FAQ - INTERACTIVE
   ============================================ */

.faq-interactive {
  padding: 100px 0;
  background: var(--cream);
  position: relative;
}

.faq-grid {
  display: grid;
  gap: 12px;
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  border-radius: var(--radius-sm);
  background: #fff;
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 14, 26, 0.04);
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}
.faq-item:hover {
  box-shadow: var(--shadow-hover);
  border-color: rgba(255, 107, 53, 0.06);
}
.faq-item.active {
  border-color: rgba(255, 107, 53, 0.12);
}
.faq-item-inner {
  display: flex;
  gap: 16px;
  padding: 20px 24px;
  cursor: pointer;
  align-items: flex-start;
}

.faq-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  margin-top: 2px;
}
.faq-icon svg {
  width: 100%;
  height: 100%;
}

.faq-content {
  flex: 1;
  min-width: 0;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  transition: color 0.3s ease;
}
.faq-item:hover .faq-question {
  color: var(--orange);
}
.faq-toggle {
  font-size: 1.4rem;
  color: var(--orange);
  transition: all 0.3s ease;
  flex-shrink: 0;
  line-height: 1;
}
.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  opacity: 0;
}
.faq-item.active .faq-answer {
  max-height: 400px;
  opacity: 1;
  padding-top: 12px;
}
.faq-answer p {
  color: var(--text-light);
  font-size: 0.92rem;
  line-height: 1.7;
  margin-bottom: 12px;
}
.faq-answer p strong {
  color: var(--text);
}
.faq-answer-meta {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.faq-answer-meta .meta-tag {
  font-size: 0.65rem;
  padding: 2px 12px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 600;
}

/* No Results */
.faq-no-results {
  display: none;
  text-align: center;
  padding: 60px 20px;
  background: #fff;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow);
  border: 1px solid rgba(10, 14, 26, 0.04);
  max-width: 800px;
  margin: 0 auto;
}
.faq-no-results.show {
  display: block;
}
.faq-no-results .no-results-icon {
  font-size: 3rem;
  display: block;
  margin-bottom: 12px;
}
.faq-no-results h4 {
  font-family: "Playfair Display", serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.faq-no-results p {
  color: var(--text-light);
  font-size: 0.9rem;
}

/* FAQ CTA */
.faq-cta {
  max-width: 800px;
  margin: 48px auto 0;
  background: var(--navy);
  border-radius: var(--radius-sm);
  padding: 40px 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
}
.faq-cta-content {
  color: #fff;
}
.faq-cta-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}
.faq-cta-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}
.faq-cta-content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  margin-bottom: 20px;
}
.faq-cta-content .btn {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.15);
}
.faq-cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.25);
}
.faq-cta-content .btn svg {
  transition: transform 0.3s ease;
}
.faq-cta-content .btn:hover svg {
  transform: translateX(4px);
}

/* FAQ Responsive */
@media (max-width: 768px) {
  .faq-interactive {
    padding: 60px 0;
  }
  .faq-item-inner {
    padding: 16px 18px;
    gap: 12px;
  }
  .faq-icon {
    width: 32px;
    height: 32px;
  }
  .faq-question {
    font-size: 0.9rem;
  }
  .faq-answer p {
    font-size: 0.85rem;
  }
  .faq-answer-meta .meta-tag {
    font-size: 0.6rem;
    padding: 2px 10px;
  }
  .faq-cta {
    padding: 30px 24px;
    margin-top: 32px;
  }
  .faq-cta-content h3 {
    font-size: 1.2rem;
  }
  .faq-cta-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .faq-item-inner {
    padding: 14px 14px;
    gap: 10px;
  }
  .faq-icon {
    width: 28px;
    height: 28px;
  }
  .faq-question {
    font-size: 0.82rem;
  }
  .faq-cta {
    padding: 24px 16px;
  }
}

/* ============================================
   FAQ - COMPLETE FIXED VERSION
   ============================================ */

.faq-section-fixed {
  padding: 100px 0;
  background: var(--cream);
}

.faq-grid-fixed {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item-fixed {
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(10, 14, 26, 0.04);
  border: 1px solid rgba(10, 14, 26, 0.04);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item-fixed:hover {
  box-shadow: 0 8px 40px rgba(10, 14, 26, 0.08);
}

.faq-item-fixed.active {
  border-color: rgba(255, 107, 53, 0.15);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.06);
}

.faq-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  cursor: pointer;
  gap: 16px;
  transition: all 0.3s ease;
  user-select: none;
}

.faq-item-header:hover {
  background: rgba(255, 107, 53, 0.02);
}

.faq-item-title {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  flex: 1;
}

.faq-icon-fixed {
  font-size: 1.3rem;
  flex-shrink: 0;
  width: 32px;
  text-align: center;
}

.faq-toggle-fixed {
  font-size: 1.4rem;
  color: var(--orange);
  font-weight: 300;
  transition: all 0.3s ease;
  flex-shrink: 0;
  width: 28px;
  text-align: center;
}

.faq-item-fixed.active .faq-toggle-fixed {
  transform: rotate(0deg);
}

.faq-item-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  padding: 0 24px;
}

.faq-item-fixed.active .faq-item-body {
  max-height: 500px;
  padding: 0 24px 24px 24px;
}

.faq-item-body p {
  color: var(--text-light);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.faq-item-body p strong {
  color: var(--text);
}

.faq-tags {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.faq-tags span {
  font-size: 0.65rem;
  padding: 4px 14px;
  border-radius: 50px;
  background: var(--orange-glow);
  color: var(--orange);
  font-weight: 600;
}

/* FAQ CTA */
.faq-cta-fixed {
  max-width: 800px;
  margin: 48px auto 0;
  background: var(--navy);
  border-radius: 16px;
  padding: 40px 48px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.04);
}

.faq-cta-content {
  color: #fff;
}

.faq-cta-icon {
  font-size: 2.4rem;
  display: block;
  margin-bottom: 12px;
}

.faq-cta-content h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.faq-cta-content p {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.95rem;
  margin-bottom: 20px;
}

.faq-cta-content .btn {
  background: var(--orange-gradient);
  color: #fff;
  box-shadow: 0 4px 30px rgba(255, 107, 53, 0.15);
}

.faq-cta-content .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(255, 107, 53, 0.25);
}

.faq-cta-content .btn svg {
  transition: transform 0.3s ease;
}

.faq-cta-content .btn:hover svg {
  transform: translateX(4px);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .faq-section-fixed {
    padding: 60px 0;
  }

  .faq-item-header {
    padding: 16px 18px;
  }

  .faq-item-title {
    font-size: 0.9rem;
    gap: 10px;
  }

  .faq-icon-fixed {
    font-size: 1.1rem;
    width: 26px;
  }

  .faq-item-body p {
    font-size: 0.88rem;
  }

  .faq-item-fixed.active .faq-item-body {
    padding: 0 18px 18px 18px;
  }

  .faq-cta-fixed {
    padding: 30px 24px;
    margin-top: 32px;
  }

  .faq-cta-content h3 {
    font-size: 1.2rem;
  }

  .faq-cta-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .faq-item-header {
    padding: 14px 14px;
  }

  .faq-item-title {
    font-size: 0.82rem;
    gap: 8px;
  }

  .faq-icon-fixed {
    font-size: 0.9rem;
    width: 22px;
  }

  .faq-toggle-fixed {
    font-size: 1.2rem;
    width: 22px;
  }

  .faq-item-fixed.active .faq-item-body {
    padding: 0 14px 14px 14px;
  }

  .faq-cta-fixed {
    padding: 24px 16px;
  }

  .faq-tags span {
    font-size: 0.55rem;
    padding: 3px 10px;
  }
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px; /* ← Horizontal padding only */
}

.hero {
  padding: 100px 0 40px; /* ← 100px top padding! */
}

.page-hero {
  padding: 80px 0 50px; /* ← 80px top padding! */
}

/* ===== REMOVE HERO TOP GAP ===== */
.hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Or if you want a small gap, use this */
.hero {
  padding-top: 20px !important; /* Small, controlled gap */
}

/* Also fix other page heroes */
.page-hero {
  padding-top: 0 !important;
  margin-top: 0 !important;
}
