/* ============================================
   Homepage CSS — All Section Styles
   ============================================ */

/* === Hero Section === */
.hero-section {
  position: relative;
  min-height: 110vh;
  padding-top: 8rem;
  padding-bottom: 5rem;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to bottom, #F8F5F0, #F2EFE9);
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  border-radius: 9999px;
  background: rgba(255, 106, 0, 0.1);
  color: var(--vibrant-orange);
  font-weight: 600;
  font-size: 10px;
  margin-bottom: 2rem;
  border: 1px solid rgba(255,106,0,0.1);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
@media (min-width: 768px) { .hero-badge { font-size: 12px; } }
.hero-headline-wrap {
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}
@media (min-width: 640px) { .hero-headline-wrap { min-height: 140px; } }
.hero-headline {
  font-size: clamp(1.875rem, 5vw, 3.75rem);
  font-weight: 900;
  color: var(--matte-black);
  line-height: 1.1;
  letter-spacing: -0.025em;
  text-align: center;
  text-transform: uppercase;
  width: 100%;
  max-width: 56rem;
  padding: 0 1.5rem;
}
.hero-headline .highlight {
  color: var(--vibrant-orange);
  position: relative;
  display: inline-block;
}
.hero-sub {
  font-size: 1rem;
  color: rgba(15,15,16,0.6);
  font-weight: 500;
  margin-bottom: 3rem;
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.625;
  text-align: center;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .hero-sub { font-size: 1.125rem; } }
@media (min-width: 768px) { .hero-sub { font-size: 1.25rem; } }
.hero-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  padding: 0 1.5rem;
}
@media (min-width: 640px) { .hero-cta-wrap { flex-direction: row; } }

/* Hero Floating Elements */
.hero-float-1 {
  position: absolute;
  top: 25%;
  left: 5%;
  width: 6rem;
  height: 6rem;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.8);
  border-radius: 1.5rem;
  transform: rotate(-12deg);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.4;
  animation: float 5s ease-in-out infinite;
}
@media (min-width: 768px) {
  .hero-float-1 { width: 8rem; height: 8rem; left: 10%; opacity: 1; }
}
.hero-float-2 {
  position: absolute;
  top: 10%;
  right: 10%;
  width: 5rem;
  height: 5rem;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(4px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 20px 25px rgba(0,0,0,0.1);
  opacity: 0.4;
  animation: float 6s ease-in-out infinite;
  animation-delay: -1s;
}
@media (min-width: 768px) {
  .hero-float-2 { width: 6rem; height: 6rem; right: 15%; opacity: 1; }
}
.hero-float-3 {
  display: none;
  position: absolute;
  bottom: 25%;
  left: 15%;
  width: 10rem;
  height: 12rem;
  background: rgba(255,255,255,0.5);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 1rem;
  flex-direction: column;
  padding: 1rem;
  gap: 0.5rem;
  animation: float 7s ease-in-out infinite;
  animation-delay: -2s;
}
@media (min-width: 768px) { .hero-float-3 { display: flex; } }
.hero-float-4 {
  position: absolute;
  bottom: 15%;
  right: 5%;
  width: 4rem;
  height: 4rem;
  background: rgba(15,15,16,0.05);
  border-radius: 2rem;
  transform: rotate(45deg);
  opacity: 0.3;
  animation: float 5s ease-in-out infinite;
  animation-delay: -3s;
}
@media (min-width: 768px) { .hero-float-4 { right: 10%; width: 5rem; height: 5rem; opacity: 1; } }

/* Hero Ticker */
.hero-ticker {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem 0;
  background: rgba(255,255,255,0.4);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(15,15,16,0.05);
  z-index: 20;
  overflow: hidden;
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-right: 3rem;
}
.ticker-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(15,15,16,0.4);
}
.ticker-val {
  font-size: 12px;
  font-weight: 700;
  color: var(--matte-black);
}
.ticker-trend {
  font-size: 9px;
  font-weight: 700;
  color: var(--vibrant-orange);
}
.ticker-dot {
  width: 6px;
  height: 6px;
  background: var(--vibrant-orange);
  border-radius: 50%;
  animation: ping 1s cubic-bezier(0,0,0.2,1) infinite;
}

/* === Featured Services === */
.featured-services {
  padding: 8rem 0;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.service-card {
  position: relative;
  height: 24rem;
  width: 100%;
  border-radius: 1.5rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 0.1s ease;
  overflow: visible;
}
.service-card-inner {
  position: absolute;
  inset: 0;
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateZ(0);
}
.service-card-icon {
  width: 3rem;
  height: 3rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
  transition: all 0.5s ease;
  background: rgba(255,255,255,0.1);
}
@media (min-width: 768px) { .service-card-icon { width: 3.5rem; height: 3.5rem; } }
.service-card:hover .service-card-icon {
  background: var(--vibrant-orange);
}
.service-card:hover .service-card-icon svg { color: white !important; }
.service-card h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 1.5rem;
}
@media (min-width: 1024px) { .service-card h3 { font-size: 1.875rem; } }
.service-card p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625;
  transition: color 0.3s ease;
}
.service-card:hover p { color: rgba(255,255,255,0.9); }
.service-card-footer {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: rgba(255,255,255,0.2);
  transition: color 0.3s ease;
}
.service-card:hover .service-card-footer { color: var(--vibrant-orange); }
.service-card-footer span {
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.service-card-img-portal {
  position: absolute;
  bottom: 100%;
  left: 1rem;
  right: 1rem;
  margin-bottom: 1rem;
  overflow: hidden;
  pointer-events: none;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  z-index: 20;
}
.service-card:hover .service-card-img-portal {
  opacity: 1;
  transform: translateY(0);
}
.service-card-img-portal img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 1rem;
  border: 2px solid var(--vibrant-orange);
  box-shadow: 0 25px 50px rgba(0,0,0,0.5);
  filter: grayscale(100%);
  transition: filter 0.7s ease;
}
.service-card:hover .service-card-img-portal img { filter: grayscale(0); }
.service-card-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  border-radius: 1.5rem;
  opacity: 0;
  transition: opacity 0.7s ease;
}
.service-card:hover .service-card-bg { opacity: 0.1; }
.service-card-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.1);
  transition: transform 1s ease;
}
.service-card:hover .service-card-bg img { transform: scale(1); }
.service-card-bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(15,15,16,0.6);
}

/* === Immersive Experience (GSAP ScrollTrigger) === */
.immersive-section {
  position: relative;
  background: #0a0a0a;
  overflow: hidden;
}
.immersive-sticky {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
}
.immersive-phase-label {
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  color: var(--vibrant-orange);
  margin-bottom: 1rem;
}
.immersive-title {
  font-size: clamp(2rem, 5vw, 4rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  text-align: center;
  margin-bottom: 3rem;
}
.immersive-nodes-wrap {
  position: relative;
  width: min(500px, 90vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.immersive-orbit-ring {
  position: absolute;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
}
.immersive-node {
  position: absolute;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(15,15,16,0.8);
  color: rgba(255,255,255,0.5);
  transition: all 0.4s ease;
  transform: translate(-50%, -50%);
}
.immersive-node:hover,
.immersive-node.active {
  border-color: var(--vibrant-orange);
  background: var(--vibrant-orange);
  color: white;
  box-shadow: 0 0 30px rgba(255,106,0,0.4);
}
.immersive-node-label {
  position: absolute;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  white-space: nowrap;
  top: 110%;
  left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
}
.immersive-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 100px; height: 100px;
  background: var(--matte-black);
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(255,255,255,0.3);
  z-index: 5;
}
/* Modal */
.immersive-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.8);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  animation: fadeIn 0.3s ease;
}
.immersive-modal {
  background: #1a1a1a;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 2rem;
  padding: 2rem;
  max-width: 420px;
  width: 100%;
  animation: fadeInUp 0.4s cubic-bezier(0.22,1,0.36,1);
}
.immersive-modal h3 {
  font-size: 1.5rem;
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.immersive-modal p {
  color: rgba(255,255,255,0.6);
  font-size: 0.875rem;
  line-height: 1.625;
  margin-bottom: 1rem;
}
.immersive-modal ul {
  margin-bottom: 1.5rem;
}
.immersive-modal li {
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  padding: 0.25rem 0;
  padding-left: 1rem;
  position: relative;
}
.immersive-modal li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--vibrant-orange);
}
.immersive-phase-indicator {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.immersive-phase-dot {
  height: 2px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
}
.immersive-phase-dot.active {
  background: var(--vibrant-orange);
}

/* === Growth Scanner === */
.scanner-section {
  padding: 8rem 0;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.scanner-track {
  position: relative;
  width: 100%;
  height: 400px;
  cursor: col-resize;
  user-select: none;
  margin: 3rem 0;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  overflow: hidden;
}
.scanner-line {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2px;
  background: var(--vibrant-orange);
  box-shadow: 0 0 20px rgba(255,106,0,0.5);
  z-index: 10;
  cursor: col-resize;
}
.scanner-line::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: var(--vibrant-orange);
  border-radius: 50%;
  box-shadow: 0 0 20px rgba(255,106,0,0.6);
}
.scanner-stages {
  display: flex;
  height: 100%;
}
.scanner-stage {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  border-right: 1px solid rgba(255,255,255,0.03);
  transition: all 0.3s ease;
}
.scanner-stage.revealed {
  background: rgba(255,106,0,0.03);
}
.scanner-stage-before {
  color: rgba(255,255,255,0.2);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 0.5rem;
}
.scanner-stage-after {
  color: var(--vibrant-orange);
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.3s ease;
}
.scanner-stage.revealed .scanner-stage-after {
  opacity: 1;
  transform: translateY(0);
}
.scanner-heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: 900;
  color: white;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1rem;
  transition: all 0.4s ease;
}
.scanner-progress-bar {
  width: 100%;
  height: 2px;
  background: rgba(255,255,255,0.05);
  border-radius: 9999px;
  overflow: hidden;
}
.scanner-progress-fill {
  height: 100%;
  background: var(--vibrant-orange);
  border-radius: 9999px;
  transition: width 0.1s linear;
}

/* === GBP Scanner === */
.gbp-section {
  padding: 8rem 0;
  background: #F8F5F0;
}
.gbp-slider-wrap {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  aspect-ratio: 16/9;
  max-height: 500px;
  cursor: col-resize;
  user-select: none;
}
.gbp-before, .gbp-after-wrap {
  position: absolute;
  inset: 0;
}
.gbp-after-wrap {
  overflow: hidden;
}
.gbp-after-inner {
  position: absolute;
  inset: 0;
  width: 200%;
}
.gbp-divider {
  position: absolute;
  top: 0;
  height: 100%;
  width: 3px;
  background: var(--vibrant-orange);
  z-index: 10;
  cursor: col-resize;
}
.gbp-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--vibrant-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(255,106,0,0.5);
  color: white;
  font-size: 18px;
  font-weight: 900;
}
.gbp-label {
  position: absolute;
  bottom: 1rem;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 9px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}
.gbp-label.before {
  left: 1rem;
  background: rgba(239,68,68,0.2);
  color: #EF4444;
  border: 1px solid rgba(239,68,68,0.3);
}
.gbp-label.after {
  right: 1rem;
  background: rgba(16,185,129,0.2);
  color: #10B981;
  border: 1px solid rgba(16,185,129,0.3);
}

/* === Industry Expertise === */
.industry-section {
  padding: 10rem 0;
  background: #080808;
  position: relative;
  overflow: hidden;
}
.industry-bg-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1000px;
  height: 1000px;
  background: rgba(255,106,0,0.05);
  filter: blur(200px);
  border-radius: 50%;
  pointer-events: none;
}
.industry-dot-grid {
  position: absolute;
  inset: 0;
  opacity: 0.05;
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.industry-orbit-wrap {
  position: relative;
  width: min(500px, 90vw);
  aspect-ratio: 1;
  margin: 0 auto;
}
.industry-orbit-ring-1 {
  position: absolute;
  width: 95%;
  height: 95%;
  top: 2.5%; left: 2.5%;
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 50%;
}
.industry-orbit-ring-2 {
  position: absolute;
  width: 75%;
  height: 75%;
  top: 12.5%; left: 12.5%;
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50%;
}
.industry-node {
  position: absolute;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border: 2px solid rgba(255,255,255,0.1);
  background: rgba(15,15,16,0.5);
  color: rgba(255,255,255,0.4);
  transition: all 0.5s ease;
  transform: translate(-50%, -50%);
}
@media (min-width: 768px) { .industry-node { width: 80px; height: 80px; } }
.industry-node.active {
  background: var(--vibrant-orange);
  border-color: var(--vibrant-orange);
  color: white;
  box-shadow: 0 0 40px rgba(255,106,0,0.4);
  transform: translate(-50%, -50%) scale(1.2);
}
.industry-center {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 7rem; height: 7rem;
  border-radius: 50%;
  border: 4px solid rgba(255,255,255,0.05);
  background: var(--matte-black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 7px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: rgba(255,255,255,0.6);
  z-index: 5;
  text-align: center;
}
@media (min-width: 768px) {
  .industry-center { width: 10rem; height: 10rem; font-size: 10px; }
}
.industry-panel-wrap { position: relative; min-height: 300px; }
.industry-panel {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.5s cubic-bezier(0.16,1,0.3,1);
  pointer-events: none;
  position: absolute;
  top: 0; left: 0; right: 0;
}
.industry-panel.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: auto;
  position: relative;
}
.industry-stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin: 1.5rem 0;
}
.industry-stat-label {
  font-size: 8px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}
.industry-stat-value {
  font-size: 1.125rem;
  font-weight: 700;
  color: white;
  letter-spacing: -0.025em;
}
.industry-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 1rem 2rem;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 9999px;
  color: white;
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: all 0.5s ease;
  width: 100%;
}
@media (min-width: 640px) { .industry-cta { width: auto; } }
.industry-cta:hover {
  background: var(--vibrant-orange);
  border-color: var(--vibrant-orange);
}

/* === Business Audit === */
.audit-section {
  padding: 8rem 0;
  background: white;
  position: relative;
}
.audit-card {
  background: white;
  border-radius: 2rem;
  box-shadow: 0 25px 50px rgba(0,0,0,0.1);
  padding: 2.5rem;
  border: 1px solid var(--border-gray);
  max-width: 48rem;
  margin: 0 auto;
}
@media (min-width: 768px) { .audit-card { padding: 3rem; } }
.audit-step { display: none; }
.audit-step.active { display: block; animation: fadeInUp 0.4s ease; }
.audit-progress {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 2.5rem;
}
.audit-progress-step {
  flex: 1;
  height: 4px;
  border-radius: 9999px;
  background: var(--border-gray);
  transition: background 0.3s ease;
}
.audit-progress-step.done { background: var(--vibrant-orange); }
.audit-step-title {
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--matte-black);
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.audit-step-sub {
  color: rgba(15,15,16,0.4);
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 2rem;
}
.audit-btn-next {
  width: 100%;
  padding: 1rem;
  background: var(--vibrant-orange);
  color: white;
  border: none;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  margin-top: 1.5rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.audit-btn-next:hover { background: var(--matte-black); }
.audit-result {
  text-align: center;
  padding: 2rem;
}
.audit-score {
  font-size: 5rem;
  font-weight: 900;
  color: var(--vibrant-orange);
  line-height: 1;
  margin-bottom: 1rem;
}
.audit-pdf-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  background: var(--matte-black);
  color: white;
  border-radius: 0.75rem;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  border: none;
  margin-top: 1rem;
  transition: all 0.3s ease;
}
.audit-pdf-btn:hover { background: var(--vibrant-orange); }
.generating-animation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  padding: 3rem 0;
}
.generating-spinner {
  width: 60px;
  height: 60px;
  border: 3px solid var(--border-gray);
  border-top-color: var(--vibrant-orange);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* === Strategy Builder === */
.strategy-section {
  padding: 8rem 0;
  background: var(--cream);
}
.strategy-timeline {
  position: relative;
  padding-left: 2rem;
  max-width: 64rem;
  margin: 0 auto;
}
.strategy-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, var(--vibrant-orange), transparent);
}
@media (min-width: 768px) {
  .strategy-timeline { padding-left: 0; }
  .strategy-timeline::before { left: 50%; }
}
.strategy-item {
  position: relative;
  margin-bottom: 4rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 768px) {
  .strategy-item {
    flex-direction: row;
    align-items: center;
  }
  .strategy-item.right { flex-direction: row-reverse; }
}
.strategy-card {
  flex: 1;
  background: white;
  border-radius: 2rem;
  padding: 2rem;
  border: 1px solid var(--border-gray);
  box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}
.strategy-phase-num {
  position: absolute;
  top: 50%;
  left: -1.5rem;
  transform: translateY(-50%);
  width: 2rem;
  height: 2rem;
  background: var(--vibrant-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 900;
  color: white;
  z-index: 1;
}
@media (min-width: 768px) {
  .strategy-phase-num {
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.strategy-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.strategy-tag {
  padding: 0.25rem 0.75rem;
  background: var(--orange-10);
  color: var(--vibrant-orange);
  border-radius: 9999px;
  font-size: 9px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.strategy-cta {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  margin-top: 3rem;
}
@media (min-width: 640px) { .strategy-cta { flex-direction: row; justify-content: center; } }

/* === Services Pathways === */
.pathways-section {
  padding: 6rem 0;
  background: white;
}
.pathway-card {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--border-gray);
  background: white;
  transition: all 0.3s ease;
  text-decoration: none;
  display: block;
}
.pathway-card:hover {
  border-color: rgba(255,106,0,0.3);
  box-shadow: 0 10px 25px rgba(255,106,0,0.1);
  transform: translateY(-4px);
}
.pathway-icon-wrap {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.75rem;
  background: rgba(15,15,16,0.05);
  color: rgba(15,15,16,0.4);
  transition: all 0.3s ease;
}
.pathway-card:hover .pathway-icon-wrap {
  background: var(--vibrant-orange);
  color: white;
}
.pathway-card h4 {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--matte-black);
  text-transform: uppercase;
  letter-spacing: -0.01em;
}
.pathway-arrow {
  margin-top: 0.5rem;
  color: rgba(15,15,16,0.2);
  transition: color 0.3s ease;
}
.pathway-card:hover .pathway-arrow { color: var(--vibrant-orange); }

/* === Team Section === */
.team-section {
  padding: 5rem 0;
  background: #fcfaf7;
  overflow: hidden;
}
@media (min-width: 768px) { .team-section { padding: 8rem 0; } }
.leadership-card {
  position: relative;
  padding: 2rem;
  border-radius: 3rem;
  background: white;
  border: 1px solid rgba(15,15,16,0.05);
  text-align: left;
  transition: transform 0.5s ease;
}
.leadership-card:hover { transform: translateY(-15px); }
.leadership-card-img {
  aspect-ratio: 4/5;
  border-radius: 2rem;
  overflow: hidden;
  margin-bottom: 2rem;
  position: relative;
}
.leadership-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1s ease;
}
.leadership-card:hover .leadership-card-img img { transform: scale(1.1); }
.leadership-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15,15,16,0.6), transparent);
}
.leadership-name {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  margin-bottom: 0.5rem;
}
.leadership-role {
  color: var(--vibrant-orange);
  font-weight: 900;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
}
.leadership-bio {
  color: rgba(15,15,16,0.4);
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.625;
}
.core-card-img {
  aspect-ratio: 3/4;
  border-radius: 2.5rem;
  overflow: hidden;
  background: white;
  border: 1px solid rgba(15,15,16,0.05);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  margin-bottom: 2rem;
  transition: all 0.7s ease;
}
.core-card-img:hover {
  box-shadow: 0 25px 50px rgba(0,0,0,0.12);
  border-color: rgba(255,106,0,0.1);
}
.core-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.9);
  transition: all 1s ease;
}
.core-card-img:hover img {
  filter: brightness(1);
  transform: scale(1.05);
}
.core-member-name {
  font-size: 1.5rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: -0.025em;
  transition: color 0.5s ease;
  margin-bottom: 0.25rem;
}
.core-card:hover .core-member-name { color: var(--vibrant-orange); }
.core-member-role {
  color: rgba(15,15,16,0.3);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.4em;
}
.team-footer-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 1rem;
  background: white;
  border: 1px solid rgba(15,15,16,0.05);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: rgba(15,15,16,0.4);
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}

/* === Testimonials === */
.testimonials-section {
  padding: 6rem 0;
  background: #0F0F10;
  position: relative;
  overflow: hidden;
}
.testimonials-glow {
  position: absolute;
  top: 0;
  right: 0;
  width: 500px;
  height: 500px;
  background: rgba(255,106,0,0.05);
  filter: blur(120px);
  border-radius: 50%;
  pointer-events: none;
}
.testimonial-nav-btn {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  background: transparent;
  cursor: pointer;
  transition: all 0.3s ease;
}
.testimonial-nav-btn:hover {
  color: white;
  border-color: var(--vibrant-orange);
  background: rgba(255,106,0,0.1);
}
.testimonial-nav-btn:active { transform: scale(0.9); }
.testimonial-slider-wrap {
  position: relative;
  min-height: 400px;
  overflow: hidden;
  border-radius: 2.5rem;
}
@media (min-width: 640px) { .testimonial-slider-wrap { min-height: 350px; } }
@media (min-width: 768px) { .testimonial-slider-wrap { height: 350px; min-height: unset; } }
.testimonial-slide-inner {
  height: 100%;
  width: 100%;
  background: rgba(255,255,255,0.03);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.05);
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: center;
  justify-content: center;
}
@media (min-width: 640px) { .testimonial-slide-inner { padding: 2rem; } }
@media (min-width: 768px) {
  .testimonial-slide-inner { flex-direction: row; padding: 3rem; gap: 2rem; }
}
.testimonial-quote-icon {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: rgba(255,106,0,0.1);
  border: 1px solid rgba(255,106,0,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
}
@media (min-width: 640px) { .testimonial-quote-icon { width: 6rem; height: 6rem; } }
@media (min-width: 768px) { .testimonial-quote-icon { width: 8rem; height: 8rem; } }
.testimonial-rating-badge {
  position: absolute;
  bottom: -0.5rem;
  right: -0.5rem;
  background: var(--matte-black);
  padding: 0.5rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(255,255,255,0.05);
  display: flex;
  align-items: center;
  gap: 0.25rem;
  box-shadow: 0 10px 15px rgba(0,0,0,0.3);
  font-size: 10px;
  font-weight: 900;
  color: white;
}
.testimonial-text {
  color: rgba(255,255,255,0.8);
  font-size: 1.125rem;
  font-weight: 500;
  line-height: 1.625;
  margin-bottom: 1.5rem;
  text-align: center;
}
@media (min-width: 640px) { .testimonial-text { font-size: 1.25rem; } }
@media (min-width: 768px) { .testimonial-text { font-size: 1.5rem; text-align: left; } }
.testimonial-name {
  font-weight: 900;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
  color: white;
  text-align: center;
}
@media (min-width: 768px) { .testimonial-name { font-size: 1.5rem; text-align: left; } }
.testimonial-dot {
  height: 4px;
  border-radius: 9999px;
  transition: all 0.3s ease;
  background: rgba(255,255,255,0.1);
  cursor: pointer;
  border: none;
}
.testimonial-dot.active { width: 2rem; background: var(--vibrant-orange); }
.testimonial-dot:not(.active) { width: 0.5rem; }
.testimonial-dot:not(.active):hover { background: rgba(255,255,255,0.2); }
