/* ==========================================
   HERO SECTION STYLES
   ========================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 130px 0 90px;
  overflow: hidden;
  z-index: 2;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  border-radius: 99px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 24px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.badge-dot {
  width: 6px;
  height: 6px;
  background-color: var(--color-accent);
  border-radius: 50%;
  box-shadow: 0 0 8px var(--color-accent);
  animation: pulse 1.5s infinite;
}

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

.centered-heading {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  text-transform: uppercase;
  color: #ffffff;
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin: 0 auto 20px;
  max-width: 900px;
  text-align: center;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.gradient-text {
  background: linear-gradient(135deg, #c084fc 0%, #7c3aed 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  font-weight: 800;
}

.hero-subheadline.centered-subheadline {
  font-family: 'Satoshi', sans-serif;
  font-size: clamp(0.85rem, 1.8vw, 0.95rem);
  color: #a1a1aa;
  letter-spacing: 0.08em;
  max-width: 850px;
  margin: 0 auto 36px;
  line-height: 1.6;
  font-weight: 500;
  text-align: center;
  text-transform: uppercase;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

/* Glass Showcase Frame & Slider */
.glass-showcase-frame {
  position: relative;
  width: 100%;
  max-width: 900px;
  height: 480px;
  margin: 45px auto 0;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(15, 11, 28, 0.3);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.6),
    0 0 40px rgba(124, 58, 237, 0.08),
    inset 0 1px 1px rgba(255, 255, 255, 0.1);
  animation: showcaseFloat 8s infinite alternate ease-in-out;
  z-index: 5;
}

@keyframes showcaseFloat {
  0% {
    transform: translateY(0);
    box-shadow: 
      0 30px 60px rgba(0, 0, 0, 0.6),
      0 0 40px rgba(124, 58, 237, 0.08);
  }
  100% {
    transform: translateY(-10px);
    box-shadow: 
      0 40px 75px rgba(0, 0, 0, 0.7),
      0 0 55px rgba(124, 58, 237, 0.18);
  }
}

.glass-showcase-frame .cinematic-slider {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  position: relative;
}

.glass-showcase-frame .slider-slide {
  border-radius: inherit;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out, transform 1.2s ease;
  transform: scale(1.05);
}

.glass-showcase-frame .slider-slide.active {
  opacity: 1;
  transform: scale(1);
}

.glass-showcase-frame .slider-slide img {
  border-radius: inherit;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.8) contrast(1.1);
}

.glass-showcase-frame .slider-slide::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(to top, rgba(9, 9, 11, 0.9) 0%, rgba(9, 9, 11, 0.3) 50%, transparent 100%);
  border-radius: inherit;
}

.glass-showcase-frame .slider-caption {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  text-align: left;
  z-index: 10;
}

.glass-showcase-frame .slider-caption p {
  font-family: 'Satoshi', sans-serif;
  font-size: 0.85rem;
  color: #c084fc;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: 4px;
}

.glass-showcase-frame .slider-caption h3 {
  font-family: var(--font-heading);
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: white;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.glass-showcase-frame .slider-dots {
  position: absolute;
  bottom: 24px;
  right: 40px;
  display: flex;
  gap: 10px;
  z-index: 15;
}

.glass-showcase-frame .slider-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.glass-showcase-frame .slider-dot.active {
  background: #c084fc;
  transform: scale(1.3);
  box-shadow: 0 0 8px #c084fc;
}

/* Minimalist Badge */
.minimal-badge {
  font-family: 'Satoshi', sans-serif;
  background: rgba(13, 10, 25, 0.6) !important;
  border: 1px solid rgba(192, 132, 252, 0.25) !important;
  border-radius: 99px !important;
  color: #c084fc !important;
  padding: 6px 18px !important;
  letter-spacing: 0.12em !important;
  font-size: 0.78rem !important;
  font-weight: 600 !important;
  text-shadow: 0 0 4px rgba(192, 132, 252, 0.3);
  box-shadow: 0 0 20px rgba(124, 58, 237, 0.08);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  position: relative;
}

.minimal-badge .badge-dot {
  width: 6px;
  height: 6px;
  background-color: #c084fc;
  border-radius: 50%;
  box-shadow: 0 0 8px #c084fc;
  animation: pulse 1.5s infinite;
}

/* Ambient Moving Plasma Orbs & Mesh */
.hero-plasma-orb {
  position: absolute;
  width: min(650px, 80vw);
  height: min(650px, 80vw);
  border-radius: 50%;
  filter: blur(140px);
  pointer-events: none;
  z-index: 1;
  opacity: 0.55;
  mix-blend-mode: screen;
  will-change: transform, border-radius;
}

.hero-plasma-orb.orb-1 {
  top: 20%;
  left: 15%;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.28) 0%, rgba(99, 102, 241, 0.05) 50%, transparent 80%);
  animation: orbDrift1 28s infinite alternate ease-in-out;
}

.hero-plasma-orb.orb-2 {
  bottom: 15%;
  right: 15%;
  background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(192, 132, 252, 0.08) 50%, transparent 80%);
  animation: orbDrift2 34s infinite alternate ease-in-out;
}

.hero-plasma-orb.orb-3 {
  top: 35%;
  left: 35%;
  background: radial-gradient(circle, rgba(192, 132, 252, 0.22) 0%, rgba(124, 58, 237, 0.04) 50%, transparent 80%);
  animation: orbDrift3 30s infinite alternate ease-in-out;
}

@keyframes orbDrift1 {
  0% {
    transform: translate(0, 0) scale(1);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
  50% {
    transform: translate(80px, 60px) scale(1.1);
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
  }
  100% {
    transform: translate(-30px, 100px) scale(0.95);
    border-radius: 42% 58% 70% 30% / 45% 45% 55% 55%;
  }
}

@keyframes orbDrift2 {
  0% {
    transform: translate(0, 0) scale(1.05);
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
  }
  50% {
    transform: translate(-90px, -50px) scale(0.9);
    border-radius: 45% 55% 35% 65% / 45% 55% 45% 55%;
  }
  100% {
    transform: translate(60px, 40px) scale(1.15);
    border-radius: 70% 30% 52% 48% / 60% 40% 60% 40%;
  }
}

@keyframes orbDrift3 {
  0% {
    transform: translate(0, 0) scale(0.95);
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  }
  50% {
    transform: translate(60px, -70px) scale(1.08);
    border-radius: 50% 50% 70% 30% / 50% 30% 70% 50%;
  }
  100% {
    transform: translate(-50px, 30px) scale(0.95);
    border-radius: 40% 60% 50% 50% / 40% 40% 60% 60%;
  }
}

.hero-cosmic-mesh {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at 50% 50%, black 25%, transparent 70%);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, black 25%, transparent 70%);
  opacity: 0.45;
  pointer-events: none;
  z-index: 1;
  animation: cosmicRotate 120s infinite linear;
}

@keyframes cosmicRotate {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media (max-width: 991px) {
  .hero {
    padding: 110px 0 60px;
  }
  .glass-showcase-frame {
    height: 380px;
    margin-top: 36px;
  }
  .glass-showcase-frame .slider-caption {
    bottom: 30px;
    left: 30px;
    right: 30px;
  }
  .glass-showcase-frame .slider-dots {
    bottom: 30px;
    right: 30px;
  }
}

@media (max-width: 576px) {
  .hero {
    padding: 100px 0 50px;
  }
  .glass-showcase-frame {
    height: 280px;
    border-radius: 16px;
    margin-top: 28px;
  }
  .glass-showcase-frame .slider-caption {
    bottom: 30px;
    left: 20px;
    right: 20px;
  }
  .glass-showcase-frame .slider-caption h3 {
    font-size: 1.3rem;
  }
  .glass-showcase-frame .slider-dots {
    bottom: 12px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

/* ==========================================
   SOCIAL PROOF (COUNTERS) SECTION
   ========================================== */
.social-proof {
  background: rgba(12, 12, 16, 0.8);
  border-y: 1px solid var(--glass-border);
  padding: 60px 0;
  position: relative;
  z-index: 10;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 32px;
  text-align: center;
}

.counter-item h3 {
  font-size: 3rem;
  font-weight: 700;
  color: white;
  margin-bottom: 8px;
  background: linear-gradient(135deg, white, var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.counter-item p {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-text-muted);
}

@media (max-width: 991px) {
  .counters-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
}

@media (max-width: 576px) {
  .counters-grid {
    grid-template-columns: 1fr 1fr;
  }
  .counter-item:last-child {
    grid-column: span 2;
  }
}

/* ==========================================
   WHAT WE BUILD SECTION
   ========================================== */
.section-title-wrapper {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 60px;
}

.section-title-wrapper h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  margin-bottom: 16px;
  background: linear-gradient(135deg, white, #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title-wrapper p {
  font-size: 1.05rem;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: rgba(124, 58, 237, 0.1);
  border: 1px solid rgba(124, 58, 237, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.6rem;
  margin-bottom: 24px;
  transition: var(--transition-smooth);
}

.glass-card:hover .card-icon {
  background: var(--color-primary);
  border-color: var(--color-accent);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.4);
}

.glass-card h3 {
  font-size: 1.35rem;
  margin-bottom: 12px;
  color: white;
}

.card-list {
  list-style: none;
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.card-list i {
  color: var(--color-accent);
  font-size: 0.85rem;
}

@media (max-width: 991px) {
  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .cards-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   ONLINE & OFFLINE BRANDING
   ========================================== */
.branding-showcase-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.branding-visuals {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 480px;
}

.branding-card-layered {
  position: absolute;
  width: 80%;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  border: 1px solid var(--glass-border);
  transition: var(--transition-smooth);
}

.branding-card-layered.digital {
  top: 20px;
  left: 20px;
  z-index: 3;
  transform: rotate(-3deg);
}

.branding-card-layered.physical {
  bottom: 20px;
  right: 20px;
  z-index: 2;
  transform: rotate(3deg);
}

.branding-card-layered img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.branding-card-label {
  background: var(--color-bg-alt);
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.branding-card-label h4 {
  font-size: 1.05rem;
  color: white;
}

.branding-card-label span {
  font-size: 0.75rem;
  background: rgba(192, 132, 252, 0.1);
  color: var(--color-accent);
  padding: 4px 8px;
  border-radius: 4px;
}

.branding-visuals:hover .digital {
  transform: translate(-10px, -10px) rotate(-1deg);
  z-index: 4;
}

.branding-visuals:hover .physical {
  transform: translate(10px, 10px) rotate(1deg);
  z-index: 3;
}

.feature-check-list {
  list-style: none;
  margin: 32px 0 40px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.feature-check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.feature-check-list i {
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .branding-showcase-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .branding-visuals {
    height: 380px;
  }
  .branding-card-layered img {
    height: 180px;
  }
}

/* ==========================================
   AI AVATAR CONTENT SECTION
   ========================================== */
.ai-section {
  position: relative;
}

.ai-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.ai-mobile-container {
  display: flex;
  justify-content: center;
  position: relative;
}

.phone-mockup-wrapper {
  position: relative;
  width: 320px;
  height: 640px;
  border: 12px solid #1a1a24;
  border-radius: 40px;
  background: #09090b;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(124, 58, 237, 0.2);
}

.phone-screen {
  width: 100%;
  height: 100%;
  position: relative;
}

.phone-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.phone-notch {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 25px;
  background: #1a1a24;
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  z-index: 10;
}

.phone-overlay {
  position: absolute;
  bottom: 24px;
  left: 20px;
  right: 20px;
  background: rgba(12, 12, 16, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 16px;
  z-index: 5;
}

.prompt-tag {
  display: inline-block;
  background: rgba(192, 132, 252, 0.15);
  border: 1px solid rgba(192, 132, 252, 0.3);
  color: var(--color-accent);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 8px;
  border-radius: 4px;
  margin-bottom: 8px;
}

.prompt-text {
  font-size: 0.85rem;
  color: white;
  line-height: 1.4;
  font-style: italic;
}

.ai-avatar-glow-ring {
  position: absolute;
  width: 360px;
  height: 360px;
  border: 2px dashed rgba(192, 132, 252, 0.2);
  border-radius: 50%;
  animation: rotateClockwise 30s linear infinite;
  pointer-events: none;
  z-index: -1;
}

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

.ai-benefits {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
}

.benefit-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(168, 85, 247, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.benefit-text h4 {
  font-size: 1.1rem;
  color: white;
  margin-bottom: 4px;
}

.benefit-text p {
  font-size: 0.9rem;
}

@media (max-width: 991px) {
  .ai-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .ai-mobile-container {
    order: 2;
  }
}

/* ==========================================
   FEATURED WORK / CASES SECTION
   ========================================== */
.work-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-bottom: 50px;
}

.work-card {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  background: var(--color-bg-alt);
  aspect-ratio: 16 / 10;
  cursor: pointer;
}

.work-card-img {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.work-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.work-card:hover .work-card-img img {
  transform: scale(1.06) rotate(0.5deg);
}

.work-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.95) 0%, rgba(9,9,11,0.4) 50%, rgba(9,9,11,0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 30px;
  opacity: 0.9;
  transition: var(--transition-smooth);
}

.work-category {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.work-card h3 {
  font-size: 1.5rem;
  color: white;
  margin-bottom: 12px;
}

.work-metrics-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 600;
  color: white;
}

.work-metrics-badge i {
  color: #22c55e;
}

@media (max-width: 768px) {
  .work-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* Before / After Slider Component */
.before-after-container {
  width: 100%;
  max-width: 800px;
  margin: 60px auto 0;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  box-shadow: 0 20px 40px rgba(0,0,0,0.6);
  border: 1px solid var(--glass-border);
}

.slider-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}

.slider-img.before {
  width: 50%;
  z-index: 2;
}

.slider-img.after {
  width: 100%;
  z-index: 1;
}

/* Ensure 'before' image content doesn't shrink when slider resizes container */
.slider-img.before img {
  width: 800px;
  max-width: none;
}

@media (max-width: 840px) {
  .slider-img.before img {
    width: calc(100vw - 48px);
  }
}

.slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: white;
  z-index: 10;
  cursor: ew-resize;
  transform: translateX(-50%);
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.slider-button {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  background: white;
  color: var(--color-bg);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0,0,0,0.3);
  font-size: 0.9rem;
}

.slider-label {
  position: absolute;
  bottom: 20px;
  background: rgba(9, 9, 11, 0.8);
  backdrop-filter: blur(8px);
  padding: 6px 12px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  z-index: 5;
  border: 1px solid rgba(255,255,255,0.1);
}

.slider-label.before-label {
  left: 20px;
}

.slider-label.after-label {
  right: 20px;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 40px;
  width: 2px;
  background: linear-gradient(to bottom, var(--color-primary), var(--color-secondary), transparent);
}

.process-step {
  display: flex;
  margin-bottom: 50px;
  position: relative;
}

.process-step:last-child {
  margin-bottom: 0;
}

.process-number {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  background: var(--color-bg-alt);
  border: 2px solid var(--glass-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  z-index: 5;
  margin-right: 32px;
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(0,0,0,0.4);
  transition: var(--transition-smooth);
}

.process-step:hover .process-number {
  border-color: var(--color-accent);
  box-shadow: 0 0 20px var(--color-primary-glow);
  transform: scale(1.05);
}

.process-body {
  padding-top: 10px;
}

.process-body h3 {
  font-size: 1.4rem;
  color: white;
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  .process-timeline::before {
    left: 24px;
  }
  .process-number {
    width: 50px;
    height: 50px;
    font-size: 1.25rem;
    margin-right: 16px;
  }
}

/* ==========================================
   FOUNDER SECTION
   ========================================== */
.founder-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}

.founder-img-wrapper {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  aspect-ratio: 1;
}

.founder-img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-quote {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-style: italic;
  font-weight: 500;
  color: white;
  line-height: 1.3;
  margin-bottom: 24px;
  position: relative;
}

.founder-quote::before {
  content: '“';
  font-size: 5rem;
  position: absolute;
  top: -40px;
  left: -20px;
  color: var(--color-primary-glow);
  font-family: serif;
}

.founder-role {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--color-accent);
  font-weight: 700;
  margin-top: 16px;
}

@media (max-width: 991px) {
  .founder-grid {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }
  .founder-img-wrapper {
    max-width: 400px;
    margin: 0 auto;
  }
  .founder-quote::before {
    left: 50%;
    transform: translateX(-50%);
  }
}

/* ==========================================
   FINAL CTA SECTION
   ========================================== */
.final-cta {
  background: radial-gradient(circle at center, rgba(124,58,237,0.15) 0%, transparent 60%);
  text-align: center;
  padding: 120px 0;
  border-top: 1px solid var(--glass-border);
}

.final-cta h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  background: linear-gradient(135deg, white, #e9d5ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.final-cta p {
  font-size: 1.15rem;
  max-width: 600px;
  margin: 0 auto 40px;
}

/* ==========================================
   PAGE SPECIFIC: SERVICES DETAIL
   ========================================== */
.services-intro {
  padding: 140px 0 60px;
  text-align: center;
}

.services-list-grid {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.service-row:nth-child(even) .service-details {
  order: 2;
}

.service-row:nth-child(even) .service-visual {
  order: 1;
}

.service-visual {
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  box-shadow: 0 20px 40px rgba(0,0,0,0.5);
  aspect-ratio: 16 / 10;
}

.service-visual.spotlight-card {
  padding: 0;
  background: none;
}

.service-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-details h2 {
  font-size: 2.2rem;
  margin-bottom: 20px;
  color: white;
}

.service-outcomes {
  margin: 24px 0 32px;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-outcomes li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
}

.service-outcomes i {
  color: #22c55e;
}

@media (max-width: 991px) {
  .service-row {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .service-row:nth-child(even) .service-details {
    order: 1;
  }
  .service-row:nth-child(even) .service-visual {
    order: 2;
  }
}

/* ==========================================
   PAGE SPECIFIC: CASE STUDIES / WORK
   ========================================== */
.work-filters {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 40px 0 60px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border-radius: 99px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover, .filter-btn.active {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 15px var(--color-primary-glow);
}

/* Reels-style grid */
.reels-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin: 60px 0;
}

.reel-card {
  position: relative;
  aspect-ratio: 9 / 16;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  cursor: pointer;
}

.reel-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.reel-card:hover img {
  transform: scale(1.05);
}

.reel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(9,9,11,0.9) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px;
}

.reel-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  opacity: 0;
  transition: var(--transition-bounce);
}

.reel-card:hover .reel-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.reel-card h4 {
  font-size: 0.95rem;
  color: white;
  margin-bottom: 4px;
}

.reel-card span {
  font-size: 0.75rem;
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .reels-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 768px) {
  .reels-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .reels-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   PAGE SPECIFIC: ABOUT PAGE
   ========================================== */
.about-timeline {
  max-width: 800px;
  margin: 60px auto 0;
  position: relative;
}

.about-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--glass-border);
  transform: translateX(-50%);
}

.timeline-item {
  margin-bottom: 60px;
  width: 50%;
  position: relative;
}

.timeline-item:nth-child(odd) {
  left: 0;
  padding-right: 40px;
  text-align: right;
}

.timeline-item:nth-child(even) {
  left: 50%;
  padding-left: 40px;
  text-align: left;
}

.timeline-dot {
  width: 16px;
  height: 16px;
  background: var(--color-primary);
  border: 4px solid var(--color-bg);
  border-radius: 50%;
  position: absolute;
  top: 6px;
  z-index: 5;
  box-shadow: 0 0 10px var(--color-primary);
}

.timeline-item:nth-child(odd) .timeline-dot {
  right: -8px;
}

.timeline-item:nth-child(even) .timeline-dot {
  left: -8px;
}

.timeline-content {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.15),
    inset 0 -1px 1px rgba(0, 0, 0, 0.2),
    0 8px 24px rgba(0, 0, 0, 0.3);
  border-radius: 16px;
  padding: 24px;
}

.timeline-date {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-accent);
  font-weight: 700;
  margin-bottom: 8px;
}

.timeline-content h3 {
  color: white;
  margin-bottom: 10px;
  font-size: 1.25rem;
}

@media (max-width: 768px) {
  .about-timeline::before {
    left: 20px;
    transform: none;
  }
  .timeline-item {
    width: 100%;
    margin-left: 0;
    margin-bottom: 40px;
  }
  .timeline-item:nth-child(odd), .timeline-item:nth-child(even) {
    left: 0;
    padding-left: 40px;
    padding-right: 0;
    text-align: left;
  }
  .timeline-item:nth-child(odd) .timeline-dot, .timeline-item:nth-child(even) .timeline-dot {
    left: 12px;
    right: auto;
  }
}

/* ==========================================
   PAGE SPECIFIC: CONTACT PAGE & FORM
   ========================================== */
.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 60px;
  align-items: flex-start;
}

.contact-info-list {
  margin: 30px 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(124,58,237,0.1);
  border: 1px solid rgba(124,58,237,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  font-size: 1.2rem;
  flex-shrink: 0;
}

.contact-info-text h4 {
  font-size: 1.05rem;
  color: white;
  margin-bottom: 4px;
}

.contact-info-text p, .contact-info-text a {
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.contact-info-text a:hover {
  color: var(--color-accent);
}

/* Form Styles */
.contact-form-wrapper {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 24px;
  padding: 40px;
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.18),
    inset 0 -1px 1px rgba(0, 0, 0, 0.25),
    0 15px 35px rgba(0, 0, 0, 0.45);
}

.form-group {
  margin-bottom: 24px;
}

.form-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  color: white;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-control {
  width: 100%;
  background: rgba(255,255,255,0.03);
  border: 1px solid var(--glass-border);
  border-radius: 12px;
  padding: 14px 20px;
  color: white;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-control:focus {
  outline: none;
  border-color: var(--color-accent);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 15px rgba(192, 132, 252, 0.15);
}

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

.budget-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}

.budget-option {
  position: relative;
}

.budget-option input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}

.budget-label {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 6px;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid var(--glass-border);
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
}

.budget-option input:checked + .budget-label {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white;
  box-shadow: 0 4px 12px var(--color-primary-glow);
}

.budget-option:hover .budget-label {
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.05);
}

/* Service interested checkboxes */
.services-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.service-checkbox-item {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 0.9rem;
  color: var(--color-text-muted);
}

.service-checkbox-item input {
  width: 18px;
  height: 18px;
  accent-color: var(--color-primary);
  border-radius: 4px;
}

/* Form success overlay */
.form-success-overlay {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px;
}

.success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid #22c55e;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #22c55e;
  font-size: 2.2rem;
  margin-bottom: 24px;
  animation: scaleUp 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes scaleUp {
  from { transform: scale(0.5); opacity: 0; }
  to { transform: scale(1); opacity: 1; }
}

@media (max-width: 991px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 576px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .budget-options {
    grid-template-columns: 1fr 1fr;
  }
  .services-checkboxes {
    grid-template-columns: 1fr;
  }
  .contact-form-wrapper {
    padding: 24px;
  }
}

/* ==========================================
   PAGE SPECIFIC: SEO LANDING PAGE TEMPLATES
   ========================================== */
.seo-hero {
  padding: 160px 0 80px;
  background: radial-gradient(circle at top right, rgba(168, 85, 247, 0.12) 0%, transparent 60%);
}

.seo-hero h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 20px;
  color: white;
}

.seo-hero h1 span {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.seo-metrics-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin: 50px 0 0;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 24px;
  border-radius: 16px;
  backdrop-filter: var(--glass-blur);
}

.seo-metric-item h4 {
  font-size: 1.8rem;
  color: white;
  margin-bottom: 4px;
}

.seo-metric-item p {
  font-size: 0.85rem;
}

.seo-content-grid {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 60px;
  margin-top: 80px;
}

.seo-body-content h2 {
  font-size: 1.8rem;
  margin: 40px 0 20px;
  color: white;
}

.seo-body-content p {
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.seo-features-box {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  padding: 32px;
  border-radius: 20px;
  height: sticky;
  top: 100px;
}

.seo-features-box h3 {
  font-size: 1.25rem;
  margin-bottom: 20px;
  color: white;
}

.seo-features-box ul {
  list-style: none;
}

.seo-features-box li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 0.95rem;
  color: var(--color-text-muted);
}

.seo-features-box i {
  color: var(--color-accent);
}

@media (max-width: 991px) {
  .seo-metrics-bar {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
  .seo-content-grid {
    grid-template-columns: 1fr;
  }
}

/* ==========================================
   LAPTOP MOCKUP & HIGHLIGHTED SERVICE CARD STYLES
   ========================================== */

/* Laptop Mockup Styling */
.laptop-mockup-wrapper {
  position: relative;
  width: 480px;
  max-width: 100%;
  margin: 0 auto;
  z-index: 2;
}

.laptop-screen {
  position: relative;
  width: 100%;
  aspect-ratio: 16/10;
  background: #09090b;
  border: 10px solid #1a1a24;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
  box-shadow: 
    0 30px 60px rgba(0, 0, 0, 0.8), 
    0 0 30px rgba(124, 58, 237, 0.15);
}

.laptop-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.laptop-base {
  position: relative;
  width: 110%;
  left: -5%;
  height: 10px;
  background: #27273a;
  border-radius: 0 0 10px 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  z-index: 3;
}

.laptop-base::after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #111116;
  border-radius: 0 0 4px 4px;
}

/* Featured Spotlight Card styles */
.spotlight-card.highlighted-card {
  border-color: rgba(192, 132, 252, 0.45) !important;
  box-shadow: 
    inset 0 1px 1px rgba(255, 255, 255, 0.2),
    0 0 20px rgba(124, 58, 237, 0.25),
    0 12px 35px rgba(0, 0, 0, 0.4) !important;
}

.card-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--color-accent) 0%, #7c3aed 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(124, 58, 237, 0.3);
  z-index: 5;
}

/* Lazy-loaded video styling */
video.lazy-video {
  opacity: 0;
  transition: opacity 0.4s ease;
}

video:not(.lazy-video) {
  opacity: 1;
}

