/* ============================================
   LIQUID TECHNOLOGIES - PREMIUM STYLESHEET
   ============================================ */

/* Add at the top of your CSS file */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, var(--midnight-graphite) 0%, var(--abyss-blue) 100%);
  background-attachment: fixed;
  background-size: cover;
  color: var(--platinum-mist);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

/* Prevent layout shift during load */
body.loading {
  overflow: hidden;
}

body.loaded .section-animate,
body.loaded .card-animate {
  animation-play-state: running;
}

/* CSS Variables - Brand Colors */
:root {
  --midnight-graphite: #0B0F19;
  --abyss-blue: #0F1A2E;
  --liquid-blue: #1E90FF;
  --cyber-aqua: #00C6FB;
  --platinum-mist: #E7EBF0;
  --steel-silver: #A3B4C4;
}

/* Custom Cursor */
* {
    cursor: none;
}

#cursor-dot {
    position: fixed;
    width: 10px;
    height: 10px;
    background: #00ffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 10px #00ffff;
}

#cursor-outline {
    position: fixed;
    width: 30px;
    height: 30px;
    border: 2px solid #00ffff;
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
}

#cursor-dot.active {
    width: 12px;
    height: 12px;
    box-shadow: 0 0 20px #00ffff;
}

#cursor-outline.active {
    width: 45px;
    height: 45px;
}

/* Add this CSS to the existing styles.css file - Premium Apple-Quality Load Animations */

/* ============================================
 ENHANCED PREMIUM PAGE LOAD ANIMATIONS
 ============================================ */

.hero-title {
  font-size: clamp(56px, 11vw, 140px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin-bottom: 40px;
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
}

.hero-title-line {
  display: block;
  overflow: hidden;
}

/* First line - BRIGHT WHITE to ELECTRIC CYAN - BAM! */
.hero-title-line.line-1 {
  color: #ffffff;
  font-weight: 900;
  margin-bottom: 8px;
  text-shadow: 
    0 0 40px rgba(0, 255, 255, 0.8),
    0 0 20px rgba(0, 198, 251, 0.6),
    0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-title-line.line-1 .word-fluid {
  color: #00ffff;
  font-style: italic;
}

.hero-title-line.line-1 .word-design {
  color: #00C6FB;
}

/* Second line - BOLD CYAN TO ELECTRIC BLUE */
.hero-title-line.line-2 {
  color: #00C6FB;
  font-weight: 700;
  font-size: 0.82em;
  letter-spacing: -0.02em;
  text-shadow: 
    0 0 30px rgba(0, 255, 255, 0.7),
    0 0 15px rgba(30, 144, 255, 0.5),
    0 1px 3px rgba(0, 0, 0, 0.3);
}

.hero-title-line.line-2 .word-evolve {
  color: #1E90FF;
  font-weight: 800;
  font-style: italic;
}

.hero-title-line span {
  display: inline-block;
  opacity: 0;
  transform: translateY(120px) rotateX(-30deg);
  animation: elegantWordRise 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  transform-origin: center bottom;
}

/* Word-specific styling - LIQUID BRAND COLORS ONLY */
.word-fluid {
  font-style: italic;
  font-weight: 900;
}

.word-design {
  position: relative;
}

.word-design::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, 
    transparent 0%, 
    rgba(0, 198, 251, 0.6) 20%,
    rgba(0, 198, 251, 1) 50%,
    rgba(0, 198, 251, 0.6) 80%,
    transparent 100%
  );
  opacity: 0;
  animation: underlineFade 2s ease 1.5s forwards;
  box-shadow: 0 0 8px rgba(0, 198, 251, 0.4);
}

.word-engineered {
  font-weight: 700;
  letter-spacing: -0.03em;
}

.word-evolve {
  font-weight: 800;
  font-style: italic;
}

.word-separator {
  font-weight: 300;
  font-size: 0.48em;
  opacity: 0.45;
  vertical-align: middle;
  margin: 0 0.4em;
  letter-spacing: 0.1em;
}

/* Staggered animations */
.hero-title-line.line-1 span:nth-child(1) { animation-delay: 0.1s; }
.hero-title-line.line-1 span:nth-child(2) { animation-delay: 0.25s; }
.hero-title-line.line-1 span:nth-child(3) { animation-delay: 0.4s; }

.hero-title-line.line-2 span:nth-child(1) { animation-delay: 0.6s; }
.hero-title-line.line-2 span:nth-child(2) { animation-delay: 0.75s; }
.hero-title-line.line-2 span:nth-child(3) { animation-delay: 0.9s; }

@keyframes elegantWordRise {
  to {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes underlineFade {
  0% { opacity: 0; transform: scaleX(0); }
  50% { opacity: 1; transform: scaleX(1); }
  100% { opacity: 0.5; transform: scaleX(1); }
}

/* Mobile responsive */
@media (max-width: 768px) {
  .hero-title {
    font-size: clamp(36px, 10vw, 72px);
    letter-spacing: -0.03em;
  }
  
  .hero-title-line.line-2 {
    font-size: 0.82em;
  }
  
  .word-separator {
    font-size: 0.42em;
    margin: 0 0.25em;
  }
}

.animate-wave {
  transform: scaleX(0);
  transform-origin: left;
  animation: waveExpand 1.2s cubic-bezier(0.23, 1, 0.32, 1) 1.5s forwards;
}

.animate-subtitle {
  transform: translateY(30px);
  opacity: 0;
}

.hero-content > p.animate-subtitle {
  animation: subtitleSlide 1s cubic-bezier(0.23, 1, 0.32, 1) 2s forwards;
}

.animate-scroll {
  transform: translateY(50px) scale(0.8);
  opacity: 0;
  animation: scrollIndicator 1.2s cubic-bezier(0.23, 1, 0.32, 1) 2.5s forwards;
}

/* Liquid Background Animation */
.animate-in {
  opacity: 0;
  animation: liquidFadeIn 2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Section Animations */
.section-animate {
  opacity: 0;
  transform: translateY(60px);
}

.section-animate.animate-visible {
  animation: sectionSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Card Animations with Stagger */
.card-animate {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.card-animate.animate-visible {
  animation: cardReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.card-1.animate-visible { animation-delay: 0.1s; }
.card-2.animate-visible { animation-delay: 0.2s; }
.card-3.animate-visible { animation-delay: 0.3s; }

.project-1.animate-visible { animation-delay: 0.1s; }
.project-2.animate-visible { animation-delay: 0.2s; }
.project-3.animate-visible { animation-delay: 0.3s; }

.stat-1.animate-visible { animation-delay: 0.1s; }
.stat-2.animate-visible { animation-delay: 0.2s; }
.stat-3.animate-visible { animation-delay: 0.3s; }
.stat-4.animate-visible { animation-delay: 0.4s; }

/* Text Animations */
.fade-in-up {
  opacity: 0;
  transform: translateY(20px);
}

.fade-in-up.animate-visible {
  animation: fadeInUp 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.text-reveal.animate-visible {
  animation: textRevealUp 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* List Item Animations */
.list-animate .feature-item {
  opacity: 0;
  transform: translateX(-20px);
}

.list-animate.animate-visible .feature-item {
  animation: listSlideIn 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.list-animate.animate-visible .feature-item:nth-child(1) { animation-delay: 0.1s; }
.list-animate.animate-visible .feature-item:nth-child(2) { animation-delay: 0.2s; }
.list-animate.animate-visible .feature-item:nth-child(3) { animation-delay: 0.3s; }
.list-animate.animate-visible .feature-item:nth-child(4) { animation-delay: 0.4s; }
.list-animate.animate-visible .feature-item:nth-child(5) { animation-delay: 0.5s; }

/* Button Animations */
.button-animate {
  opacity: 0;
  transform: scale(0.9) translateY(10px);
}

.button-animate.animate-visible {
  animation: buttonReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Icon Animations */
.icon-animate {
  opacity: 0;
  transform: scale(0.5) rotate(-10deg);
}

.icon-animate.animate-visible {
  animation: iconSpin 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Badge Animations */
.badge-animate {
  opacity: 0;
  transform: scale(0.8) translateY(-10px);
}

.badge-animate.animate-visible {
  animation: badgePop 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Price Animations */
.price-animate {
  opacity: 0;
  transform: scale(1.1);
}

.price-animate.animate-visible {
  animation: priceScale 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Counter Animations */
.counter-animate {
  opacity: 0;
  transform: scale(0.8);
}

.counter-animate.animate-visible {
  animation: counterPop 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

/* Link Animations */
.link-animate {
  opacity: 0;
  transform: translateX(-10px);
}

.link-animate.animate-visible {
  animation: linkSlide 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Grid Animations */
.grid-animate {
  opacity: 0;
  transform: translateY(30px);
}

.grid-animate.animate-visible {
  animation: gridReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Visual Element Animations */
.visual-animate {
  opacity: 0;
  transform: scale(0.9) rotate(3deg);
}

.visual-animate.animate-visible {
  animation: visualReveal 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.animate-float-1 {
  animation: float1 4s ease-in-out infinite;
}

.animate-float-2 {
  animation: float2 5s ease-in-out infinite;
  animation-delay: 1s;
}

.animate-float-3 {
  animation: float3 6s ease-in-out infinite;
  animation-delay: 2s;
}

/* Footer Animations */
.footer-animate {
  opacity: 0;
  transform: translateY(50px);
}

.footer-animate.animate-visible {
  animation: footerSlideUp 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.social-bar-animate {
  opacity: 0;
  transform: translateY(-20px);
}

.social-bar-animate.animate-visible {
  animation: socialBarSlide 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.2s forwards;
}

.footer-main-animate {
  opacity: 0;
  transform: translateY(30px);
}

.footer-main-animate.animate-visible {
  animation: footerMainReveal 1s cubic-bezier(0.23, 1, 0.32, 1) 0.4s forwards;
}

.brand-large-animate {
  opacity: 0;
  transform: scale(0.8);
}

.brand-large-animate.animate-visible {
  animation: brandLargeScale 1.2s cubic-bezier(0.23, 1, 0.32, 1) 0.6s forwards;
}

.footer-bottom-animate {
  opacity: 0;
  transform: translateY(20px);
}

.footer-bottom-animate.animate-visible {
  animation: footerBottomSlide 0.8s cubic-bezier(0.23, 1, 0.32, 1) 0.8s forwards;
}

/* Specific Footer Element Animations */
.logo-footer-animate {
  opacity: 0;
  transform: scale(0.8) rotate(-5deg);
}

.logo-footer-animate.animate-visible {
  animation: logoFooterReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.social-link-animate {
  opacity: 0;
  transform: translateY(-10px);
}

.social-link-animate.animate-visible {
  animation: socialLinkSlide 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.social-link-animate:nth-child(1) { animation-delay: 0.1s; }
.social-link-animate:nth-child(2) { animation-delay: 0.2s; }

.locations-animate {
  opacity: 0;
  transform: translateX(-30px);
}

.locations-animate.animate-visible {
  animation: locationsSlide 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.section-links-animate {
  opacity: 0;
  transform: translateY(20px);
}

.section-links-animate.animate-visible {
  animation: sectionLinksReveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.section-links-animate:nth-child(2) { animation-delay: 0.1s; }
.section-links-animate:nth-child(3) { animation-delay: 0.2s; }

.footer-link-animate {
  opacity: 0;
  transform: translateX(-10px);
}

.footer-link-animate.animate-visible {
  animation: footerLinkSlide 0.4s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.footer-link-animate:nth-child(1) { animation-delay: 0.05s; }
.footer-link-animate:nth-child(2) { animation-delay: 0.1s; }
.footer-link-animate:nth-child(3) { animation-delay: 0.15s; }
.footer-link-animate:nth-child(4) { animation-delay: 0.2s; }
.footer-link-animate:nth-child(5) { animation-delay: 0.25s; }

.contact-animate {
  opacity: 0;
  transform: translateX(30px);
}

.contact-animate.animate-visible {
  animation: contactSlide 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.contact-item-animate {
  opacity: 0;
  transform: translateY(15px);
}

.contact-item-animate.animate-visible {
  animation: contactItemReveal 0.6s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.contact-item-animate:nth-child(1) { animation-delay: 0.1s; }
.contact-item-animate:nth-child(2) { animation-delay: 0.2s; }
.contact-item-animate:nth-child(3) { animation-delay: 0.3s; }

/* CTA Animations */
.cta-animate {
  opacity: 0;
  transform: scale(0.95) translateY(20px);
}

.cta-animate.animate-visible {
  animation: ctaBoxReveal 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* Content Grouping Animations */
.text-content-animate {
  opacity: 0;
  transform: translateX(-40px);
}

.text-content-animate.animate-visible {
  animation: textContentSlide 1s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.stats-grid-animate {
  opacity: 0;
  transform: scale(0.9);
}

.stats-grid-animate.animate-visible {
  animation: statsGridScale 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

/* ============================================
 KEYFRAME DEFINITIONS
 ============================================ */

@keyframes slideDownLiquid {
  0% {
    transform: translateY(-100px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes logoReveal {
  0% {
    transform: scale(0.8) rotate(-10deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes navLinkSlide {
  0% {
    transform: translateY(-30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes ctaReveal {
  0% {
    transform: scale(0.8) translateY(-20px);
    opacity: 0;
  }
  100% {
    transform: scale(1) translateY(0);
    opacity: 1;
  }
}

@keyframes hamburgerSpin {
  0% {
    transform: scale(0) rotate(180deg);
    opacity: 0;
  }
  100% {
    transform: scale(1) rotate(0deg);
    opacity: 1;
  }
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textRevealLeft {
  0% {
    transform: translateX(-100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes textRevealRight {
  0% {
    transform: translateX(100px);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes elegantWordRise {
  0% {
    opacity: 0;
    transform: translateY(80px);
  }
  60% {
    opacity: 0.7;
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textRevealUp {
  0% {
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes waveExpand {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}

@keyframes subtitleSlide {
  0% {
    transform: translateY(30px);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes scrollIndicator {
  0% {
    transform: translateY(50px) scale(0.8);
    opacity: 0;
  }
  100% {
    transform: translateY(0) scale(1);
    opacity: 1;
  }
}

@keyframes liquidFadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes sectionSlideUp {
  0% {
    opacity: 0;
    transform: translateY(60px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cardReveal {
  0% {
    opacity: 0;
    transform: translateY(40px) scale(0.95);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes fadeInUp {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes listSlideIn {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes buttonReveal {
  0% {
    opacity: 0;
    transform: scale(0.9) translateY(10px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes iconSpin {
  0% {
    opacity: 0;
    transform: scale(0.5) rotate(-10deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes badgePop {
  0% {
    opacity: 0;
    transform: scale(0.8) translateY(-10px);
  }
  60% {
    transform: scale(1.05) translateY(0);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes priceScale {
  0% {
    opacity: 0;
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes counterPop {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes linkSlide {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes gridReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes visualReveal {
  0% {
    opacity: 0;
    transform: scale(0.9) rotate(3deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes float1 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-20px) rotate(5deg);
  }
}

@keyframes float2 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-15px) rotate(-3deg);
  }
}

@keyframes float3 {
  0%, 100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-25px) rotate(2deg);
  }
}

@keyframes footerSlideUp {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes socialBarSlide {
  0% {
    opacity: 0;
    transform: translateY(-20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerMainReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes brandLargeScale {
  0% {
    opacity: 0;
    transform: scale(0.8);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes footerBottomSlide {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logoFooterReveal {
  0% {
    opacity: 0;
    transform: scale(0.8) rotate(-5deg);
  }
  100% {
    opacity: 1;
    transform: scale(1) rotate(0deg);
  }
}

@keyframes socialLinkSlide {
  0% {
    opacity: 0;
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes locationsSlide {
  0% {
    opacity: 0;
    transform: translateX(-30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes sectionLinksReveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes footerLinkSlide {
  0% {
    opacity: 0;
    transform: translateX(-10px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contactSlide {
  0% {
    opacity: 0;
    transform: translateX(30px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes contactItemReveal {
  0% {
    opacity: 0;
    transform: translateY(15px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes ctaBoxReveal {
  0% {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }
  100% {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

@keyframes textContentSlide {
  0% {
    opacity: 0;
    transform: translateX(-40px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes statsGridScale {
  0% {
    opacity: 0;
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/* Reduced Motion for Accessibility */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* ============================================
 BASE STYLES
 ============================================ */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  height: -webkit-fill-available;  /* iOS support for full height */
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: linear-gradient(135deg, var(--midnight-graphite) 0%, var(--abyss-blue) 100%);
  background-attachment: fixed;  /* Keeps background fixed */
  background-size: cover;
  color: var(--platinum-mist);
  overflow-x: hidden;
  line-height: 1.6;
  min-height: 100vh;            /* Minimum full viewport height */
  min-height: -webkit-fill-available;  /* iOS support */
}


/* ============================================
 ANIMATED LIQUID BACKGROUND
 ============================================ */
.liquid-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.liquid-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.3;
  animation: float 20s infinite ease-in-out;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--liquid-blue), transparent);
  top: -10%;
  left: -10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--cyber-aqua), transparent);
  bottom: -10%;
  right: -10%;
  animation-delay: 7s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, var(--liquid-blue), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes float {
  0%, 100% {
      transform: translate(0, 0) scale(1);
  }
  33% {
      transform: translate(100px, -100px) scale(1.1);
  }
  66% {
      transform: translate(-100px, 100px) scale(0.9);
  }
}

/* ============================================
 GLASSMORPHISM
 ============================================ */
.glass {
  background: rgba(15, 26, 46, 0.4);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(163, 180, 196, 0.2);
  border-radius: 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* ============================================
 GLOW EFFECTS
 ============================================ */
.glow-text {
  text-shadow: 0 0 20px rgba(30, 144, 255, 0.5);
}

.glow-border {
  border: 1px solid rgba(30, 144, 255, 0.3);
  box-shadow: 0 0 20px rgba(30, 144, 255, 0.2);
}

/* ===================================
   PREMIUM CONSULTATION BUTTON
   =================================== */

.btn-liquid {
    position: relative;
    padding: 14px 32px;
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.3px;
    color: #0B0F19;
    background: linear-gradient(135deg, #00D9FF 0%, #00FFFF 100%);
    border: none;
    border-radius: 12px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 4px 16px rgba(0, 217, 255, 0.25),
        0 8px 32px rgba(0, 217, 255, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    white-space: nowrap;
    z-index: 100;
}

/* Glossy shine effect */
.btn-liquid::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.6s ease;
}

/* Glass border effect */
.btn-liquid::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    padding: 1px;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.4) 0%, 
        rgba(255, 255, 255, 0.1) 50%,
        transparent 100%
    );
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

/* Hover - Premium lift */
.btn-liquid:hover {
    transform: translateY(-2px);
    box-shadow: 
        0 6px 24px rgba(0, 217, 255, 0.35),
        0 12px 48px rgba(0, 217, 255, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
    background: linear-gradient(135deg, #00FFFF 0%, #00D9FF 100%);
}

.btn-liquid:hover::before {
    left: 100%;
}

/* Active/Click */
.btn-liquid:active {
    transform: translateY(0);
    box-shadow: 
        0 2px 8px rgba(0, 217, 255, 0.3),
        0 4px 16px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* Responsive sizing */
@media (max-width: 1200px) {
    .btn-liquid {
        padding: 12px 24px;
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .btn-liquid {
        display: none;
    }
}

/* ============================================
 NAVIGATION - COMPLETELY SEAMLESS
 ============================================ */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1003;
  background: transparent;
  border: none;
  padding: 30px 0;
  transition: all 0.4s ease;
}

/* Only add background when scrolled */
.navbar.scrolled {
  background: rgba(11, 15, 25, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(0, 255, 255, 0.1);
  padding: 15px 0;
}

.nav-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo-image {
  height: 125px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5));
  transition: all 0.4s ease;
  object-fit: contain;
}

.navbar.scrolled .logo-image {
  height: 100px;
  filter: drop-shadow(0 0 15px rgba(0, 255, 255, 0.4));
}

.logo:hover .logo-image {
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.7));
}

.nav-links {
  display: flex;
  gap: 50px;
  align-items: center;
}

.nav-links a {
  color: rgba(231, 235, 240, 0.9);
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
  padding: 8px 0;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
  display: inline-block;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00ffff, #00c6fb);
  transition: width 0.3s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: #00ffff;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

/* Text ripple effect */
.nav-links a .letter {
  display: inline-block;
  transition: transform 0.3s ease;
  animation-fill-mode: both;
}

.nav-links a:hover .letter {
  animation: textRipple 0.6s ease-in-out;
}

@keyframes textRipple {
  0%, 100% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-3px) scale(1.1);
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.8);
  }
}

/* Stagger the animation for each letter */
.nav-links a:hover .letter:nth-child(1) { animation-delay: 0ms; }
.nav-links a:hover .letter:nth-child(2) { animation-delay: 50ms; }
.nav-links a:hover .letter:nth-child(3) { animation-delay: 100ms; }
.nav-links a:hover .letter:nth-child(4) { animation-delay: 150ms; }
.nav-links a:hover .letter:nth-child(5) { animation-delay: 200ms; }
.nav-links a:hover .letter:nth-child(6) { animation-delay: 250ms; }
.nav-links a:hover .letter:nth-child(7) { animation-delay: 300ms; }
.nav-links a:hover .letter:nth-child(8) { animation-delay: 350ms; }
.nav-links a:hover .letter:nth-child(9) { animation-delay: 400ms; }
.nav-links a:hover .letter:nth-child(10) { animation-delay: 450ms; }
.nav-links a:hover .letter:nth-child(11) { animation-delay: 500ms; }
.nav-links a:hover .letter:nth-child(12) { animation-delay: 550ms; }
.nav-links a:hover .letter:nth-child(13) { animation-delay: 600ms; }
.nav-links a:hover .letter:nth-child(14) { animation-delay: 650ms; }
.nav-links a:hover .letter:nth-child(15) { animation-delay: 700ms; }
.btn-liquid.nav-cta {
  padding: 12px 30px;
  font-size: 15px;
  box-shadow: 0 8px 25px rgba(0, 255, 255, 0.3);
  transition: all 0.3s ease;
}

.btn-liquid.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 35px rgba(0, 255, 255, 0.5);
}

/* Hide mobile menu initially */
.mobile-menu {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.mobile-menu span {
  width: 25px;
  height: 3px;
  background: rgba(231, 235, 240, 0.9);
  border-radius: 3px;
  transition: all 0.3s ease;
}

/* Scheduling Modal Styles */
.scheduling-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(11, 15, 25, 0.95);
    backdrop-filter: blur(10px);
    align-items: center;
    justify-content: center;
    animation: modalFadeIn 0.3s ease-out;
}

.scheduling-modal-content {
    background: linear-gradient(135deg, 
        rgba(11, 15, 25, 0.95) 0%, 
        rgba(20, 25, 35, 0.95) 100%);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 20px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 255, 255, 0.15);
    animation: modalSlideUp 0.4s ease-out;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem;
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
}

.modal-header h3 {
    color: #00FFFF;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.8rem;
    margin: 0;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
}

.modal-close {
    background: none;
    border: none;
    color: #00FFFF;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: rgba(0, 255, 255, 0.1);
    transform: rotate(90deg);
}

.modal-body {
    padding: 0;
    height: 600px;
}

.cal-embed iframe {
    border-radius: 0 0 20px 20px;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { 
        opacity: 0;
        transform: translateY(50px) scale(0.95);
    }
    to { 
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Mobile responsive */
@media (max-width: 768px) {
    .scheduling-modal-content {
        width: 95%;
        max-height: 85vh;
    }
    
    .modal-header {
        padding: 1.5rem;
    }
    
    .modal-header h3 {
        font-size: 1.5rem;
    }
    
    .modal-body {
        height: 500px;
    }
}

/* ==================== HAMBURGER MENU & MOBILE ==================== */

/* Hamburger Menu Button */
/* Hamburger Menu Button */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    z-index: 1003;
    background: none;
    border: none;
    padding: 12px;
    width: 50px;
    height: 40px;
    justify-content: space-between;
    position: fixed;  /* Changed from relative to fixed */
    top: 30px;        /* Add fixed top position */
    right: 20px;      /* Add fixed right position */
}

.mobile-menu.active .hamburger {
    /* Ensure hamburger stays visible when menu is open */
    z-index: 1003;
}

.hamburger span {
    width: 100%;
    height: 3px;
    background: #00ffff;
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    transform-origin: center;
    display: block;
    opacity: 1;
}

.hamburger.active span {
    background: #00ffff;
    opacity: 1;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(14px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-14px);
}

/* Mobile Menu with Liquid Effect */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #0a1628 0%, #1a2942 50%, #0f1f3a 100%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    overflow: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

/* Animated liquid blobs in background */
.mobile-menu::before {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15) 0%, transparent 70%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    top: -100px;
    right: -100px;
    filter: blur(60px);
    opacity: 0;
    animation: blobFloat1 8s ease-in-out infinite;
    transition: opacity 0.8s ease;
}

.mobile-menu::after {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.12) 0%, transparent 70%);
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    bottom: -100px;
    left: -100px;
    filter: blur(60px);
    opacity: 0;
    animation: blobFloat2 8s ease-in-out infinite;
    animation-delay: 2s;
    transition: opacity 0.8s ease;
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.mobile-menu.active::before,
.mobile-menu.active::after {
    opacity: 1;
}

@keyframes blobFloat1 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    }
    25% {
        transform: translate(30px, -30px) rotate(90deg);
        border-radius: 70% 30% 46% 54% / 30% 30% 70% 70%;
    }
    50% {
        transform: translate(-30px, 30px) rotate(180deg);
        border-radius: 100% 60% 52% 37% / 57% 70% 30% 46%;
    }
    75% {
        transform: translate(30px, 30px) rotate(270deg);
        border-radius: 63% 37% 54% 46% / 63% 46% 54% 37%;
    }
}

@keyframes blobFloat2 {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    33% {
        transform: translate(-40px, 20px) rotate(120deg);
        border-radius: 30% 60% 70% 40% / 50% 50% 30% 70%;
    }
    66% {
        transform: translate(20px, -40px) rotate(240deg);
        border-radius: 70% 30% 46% 54% / 30% 30% 70% 70%;
    }
}

.mobile-menu-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    padding: 100px 40px 40px;
    gap: 16px;
}

.mobile-menu-link {
    font-family: 'Bebas Neue', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #fff;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    padding: 12px 0;
    margin-bottom: 0;
    opacity: 0;
    transform: translateY(30px);
    letter-spacing: 2px;
    text-transform: uppercase;
    display: block;
    line-height: 1.1;
}

.mobile-menu.active .mobile-menu-link:nth-child(1) {
    animation: fadeInUp 0.6s ease forwards 0.1s;
}

.mobile-menu.active .mobile-menu-link:nth-child(2) {
    animation: fadeInUp 0.6s ease forwards 0.2s;
}

.mobile-menu.active .mobile-menu-link:nth-child(3) {
    animation: fadeInUp 0.6s ease forwards 0.3s;
}

.mobile-menu.active .mobile-menu-link:nth-child(4) {
    animation: fadeInUp 0.6s ease forwards 0.4s;
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.mobile-menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, #00ffff, transparent);
    transform: translateX(-50%);
    transition: width 0.4s ease;
}

.mobile-menu-link:hover {
    color: #00ffff;
    text-shadow: 0 0 30px rgba(0, 255, 255, 0.6);
    transform: translateY(-3px);
}

.mobile-menu-link:hover::after {
    width: 100%;
}

.mobile-menu-cta {
    margin-top: 20px;
    font-size: 16px;
    padding: 14px 40px;
    width: auto;
    align-self: center;
    opacity: 0;
    transform: scale(0.9);
}

.mobile-menu.active .mobile-menu-cta {
    animation: fadeInScale 0.6s ease forwards 0.5s;
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.9);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Remove/Replace Mobile CTA with Premium Scroll Indicator */
.hero-mobile-cta {
    display: none;
}

/* Premium Scroll Indicator - Visible on all devices */
.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-top: 60px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards 1.2s;
}

.scroll-line-minimal {
    width: 1px;
    height: 40px;
    background: linear-gradient(180deg, transparent 0%, var(--cyber-aqua) 50%, transparent 100%);
    animation: scrollPulse 2s ease-in-out infinite;
}

.hero-scroll-indicator span {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--steel-silver);
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-scroll-indicator:hover span {
    opacity: 1;
    color: var(--cyber-aqua);
}

@keyframes scrollPulse {
    0%, 100% {
        transform: translateY(0);
        opacity: 0.4;
    }
    50% {
        transform: translateY(8px);
        opacity: 1;
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .hero-scroll-indicator {
        margin-top: 50px;
    }
    
    .scroll-line-minimal {
        height: 30px;
    }
    
    .hero-scroll-indicator span {
        font-size: 10px;
        letter-spacing: 2px;
    }
}

/* ============================================
 WORK + WINS - MAGAZINE STACK REVEAL
 ============================================ */
.portfolio-stack-section {
  position: relative;
  min-height: 400vh; /* Creates scroll space */
  background: linear-gradient(180deg, 
    var(--midnight-graphite) 0%,
    #060810 100%
  );
  padding-top: 120px;
}

.portfolio-stack-container {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 60px;
  overflow: hidden;
  width: 100%;
  max-width: 100%;
}

.portfolio-stack-header {
  text-align: center;
  margin-bottom: 80px;
  opacity: 0;
  animation: fadeInUp 1s ease forwards;
}

.portfolio-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyber-aqua);
  margin-bottom: 16px;
  padding: 8px 20px;
  background: rgba(0, 198, 251, 0.1);
  border: 1px solid rgba(0, 198, 251, 0.2);
  border-radius: 50px;
}

.portfolio-mega-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  letter-spacing: -2px;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyber-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.portfolio-tagline {
  font-size: 20px;
  color: var(--steel-silver);
  font-weight: 300;
}

/* Stack Wrapper */
.portfolio-stack-wrapper {
  position: relative;
  width: 100%;
  max-width: 1100px;
  height: 600px;
  perspective: 2000px;
}

/* Individual Stack Cards */
.stack-card {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  transition: all 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.stack-card-content {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  height: 100%;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  padding: 60px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.4);
  overflow: hidden;
}

.stack-card-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at top right, 
    rgba(0, 198, 251, 0.05) 0%, 
    transparent 60%
  );
  pointer-events: none;
}

/* Visual Side */
.stack-card-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 24px;
  overflow: hidden;
}

.stack-visual-gradient {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  transition: opacity 0.6s ease;
}

.gradient-1 { background: linear-gradient(135deg, #00C6FB 0%, #1E90FF 100%); }
.gradient-2 { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); }
.gradient-3 { background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%); }
.gradient-4 { background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%); }

.stack-visual-icon {
  position: relative;
  z-index: 2;
  width: 180px;
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stack-visual-icon svg {
  width: 120px;
  height: 120px;
  color: #ffffff;
  filter: drop-shadow(0 10px 30px rgba(0, 198, 251, 0.5));
}

/* Info Side */
.stack-card-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.stack-number {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--cyber-aqua);
  margin-bottom: 12px;
}

.stack-category {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--steel-silver);
  margin-bottom: 16px;
}

.stack-title {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: -1px;
  line-height: 1.1;
}

.stack-description {
  font-size: 17px;
  line-height: 1.6;
  color: var(--steel-silver);
  margin-bottom: 28px;
}

.stack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 32px;
}

.stack-tags span {
  padding: 8px 18px;
  background: rgba(0, 198, 251, 0.1);
  border: 1px solid rgba(0, 198, 251, 0.2);
  border-radius: 20px;
  font-size: 13px;
  color: var(--cyber-aqua);
  font-weight: 500;
}

.stack-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  font-weight: 600;
  color: var(--cyber-aqua);
  text-decoration: none;
  transition: gap 0.3s ease;
}

.stack-link:hover {
  gap: 14px;
}

/* Scroll Indicator */
.portfolio-scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  opacity: 0;
  animation: fadeIn 1s ease forwards 1s;
}

.portfolio-scroll-indicator span {
  font-size: 13px;
  letter-spacing: 1px;
  color: var(--steel-silver);
  text-transform: uppercase;
}

.scroll-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--cyber-aqua) 0%, transparent 100%);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: translateY(0); }
  50% { opacity: 1; transform: translateY(10px); }
}

/* Stacking Animation States */
.stack-card[data-card="1"] { z-index: 40; }
.stack-card[data-card="2"] { z-index: 30; transform: translateX(-50%) translateY(20px) scale(0.95); }
.stack-card[data-card="3"] { z-index: 20; transform: translateX(-50%) translateY(40px) scale(0.90); }
.stack-card[data-card="4"] { z-index: 10; transform: translateX(-50%) translateY(60px) scale(0.85); }

.stack-card[data-card="2"] .stack-card-content,
.stack-card[data-card="3"] .stack-card-content,
.stack-card[data-card="4"] .stack-card-content {
  opacity: 0.6;
}

/* Active states - controlled by JavaScript */
.stack-card.stack-revealed {
  z-index: 50 !important;
  transform: translateX(-50%) translateY(0) scale(1) !important;
}

.stack-card.stack-revealed .stack-card-content {
  opacity: 1 !important;
}

.stack-card.stack-dismissed {
  transform: translateX(-150%) translateY(-100px) scale(0.8) rotate(-12deg) !important;
  opacity: 0 !important;
  pointer-events: none;
}

/* Hover Effects */
.stack-card:hover .stack-visual-gradient {
  opacity: 0.7;
}

.stack-card:hover .stack-card-content {
  border-color: rgba(0, 198, 251, 0.3);
}

/* Mobile Responsive - Complete Redesign */
@media (max-width: 768px) {
  .portfolio-stack-section {
    min-height: auto;
    padding: 80px 0 60px;
    position: relative;
  }

  .portfolio-stack-container {
    position: relative;
    top: auto;
    height: auto;
    min-height: auto;
    display: block;
    padding: 0 20px;
    overflow: visible;
    width: 100%;
    max-width: 100%;
  }

  .portfolio-stack-header {
    text-align: center;
    margin-bottom: 50px;
    width: 100%;
    opacity: 1;
    animation: none;
  }

  .portfolio-eyebrow {
    font-size: 11px;
    padding: 6px 16px;
    letter-spacing: 2px;
  }

  .portfolio-mega-title {
    font-size: 40px;
    letter-spacing: -1px;
    line-height: 1.1;
    margin-bottom: 16px;
  }

  .portfolio-tagline {
    font-size: 15px;
    line-height: 1.5;
  }

  .portfolio-stack-wrapper {
    height: auto;
    min-height: auto;
    perspective: none;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 30px;
  }

  /* Stack Cards - Simple Vertical Layout */
  .stack-card {
    position: relative !important;
    top: auto !important;
    left: auto !important;
    transform: none !important;
    margin-bottom: 0;
    width: 100%;
    opacity: 0;
    animation: mobileCardFadeIn 0.6s ease forwards;
  }

  .stack-card[data-card="1"] {
    animation-delay: 0.1s;
  }

  .stack-card[data-card="2"] {
    animation-delay: 0.2s;
  }

  .stack-card[data-card="3"] {
    animation-delay: 0.3s;
  }

  .stack-card[data-card="4"] {
    animation-delay: 0.4s;
  }

  .stack-card-content {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
    width: 100%;
    max-width: 100%;
  }

  /* Visual Section - Mobile */
  .stack-card-visual {
    height: 200px;
    width: 100%;
    border-radius: 16px;
  }

  .stack-visual-icon {
    width: 90px;
    height: 90px;
  }

  .stack-visual-icon svg {
    width: 60px;
    height: 60px;
  }

  /* Info Section - Mobile */
  .stack-card-info {
    width: 100%;
  }

  .stack-number {
    font-size: 12px;
    margin-bottom: 8px;
  }

  .stack-category {
    font-size: 11px;
    margin-bottom: 12px;
  }

  .stack-title {
    font-size: 26px;
    margin-bottom: 14px;
    letter-spacing: -0.5px;
    line-height: 1.2;
  }

  .stack-description {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 18px;
  }

  .stack-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
  }

  .stack-tags span {
    padding: 6px 12px;
    font-size: 11px;
  }

  .stack-link {
    font-size: 14px;
    display: inline-flex;
  }

  /* Remove all stacking behavior on mobile */
  .stack-card[data-card="1"],
  .stack-card[data-card="2"],
  .stack-card[data-card="3"],
  .stack-card[data-card="4"] {
    position: relative !important;
    z-index: 1 !important;
    transform: none !important;
  }

  .stack-card[data-card="2"] .stack-card-content,
  .stack-card[data-card="3"] .stack-card-content,
  .stack-card[data-card="4"] .stack-card-content {
    opacity: 1 !important;
  }

  /* Override JavaScript classes for mobile */
  .stack-card.stack-revealed,
  .stack-card.stack-dismissed,
  .stack-card.mobile-visible {
    opacity: 1 !important;
    transform: none !important;
    position: relative !important;
  }

  /* Scroll Indicator - Hidden on mobile */
  .portfolio-scroll-indicator {
    display: none;
  }
}

/* Mobile fade-in animation */
@keyframes mobileCardFadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* iPhone specific fixes */
@media (max-width: 428px) {
  .portfolio-stack-section {
    padding: 60px 0 40px;
  }

  .portfolio-stack-container {
    padding: 0 16px;
  }

  .portfolio-mega-title {
    font-size: 36px;
  }

  .portfolio-tagline {
    font-size: 14px;
  }

  .stack-card-content {
    padding: 24px 18px;
  }

  .stack-title {
    font-size: 24px;
  }

  .stack-card-visual {
    height: 180px;
  }

  .stack-description {
    font-size: 13px;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* ============================================
   MOBILE RESPONSIVENESS FIXES FOR IPHONE
   ============================================ */

/* Fix hamburger menu position on mobile */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
    position: absolute;
    right: 20px;
    top: 22px;              /* was 30%; now a fixed offset */
    transform: none;        /* remove translateY(-50%) since we use a fixed top */
  }

  .nav-container {
    position: relative;
  }
}

@media (max-width: 480px) {
  html {
    overflow-x: hidden;
    scroll-behavior: smooth;
    height: 100%;
  }
  
  body {
    overflow-x: hidden !important;
    max-width: 100vw !important;
    width: 100%;
    position: relative;
    background: #0B0F19;
    overscroll-behavior-x: none !important;
    min-height: 100vh;
    min-height: -webkit-fill-available;
    padding-bottom: env(safe-area-inset-bottom);
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
  }
  
  /* Fix scroll blocking from animated elements */
  .animate-hero,
  .section-animate,
  .card-animate,
  .text-reveal,
  .fade-in-up {
    pointer-events: none;  /* Don't block scroll events */
  }
  
  /* But allow interaction with children */
  .animate-hero *,
  .section-animate *,
  .card-animate *,
  .text-reveal *,
  .fade-in-up * {
    pointer-events: auto;
  }
  
  /* Ensure sections don't block scrolling */
  section {
    transform: none !important;
    will-change: auto;
  }
  
  /* Remove any scroll-snap that might be interfering */
  * {
    scroll-snap-type: none !important;
    scroll-snap-align: none !important;
  }

  .navbar {
    position: fixed !important;
    padding: 4px 24px !important;  /* Thinner height (4px), wider sides (24px) */
    top: 16px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    width: auto !important;
    min-width: 320px !important;   /* Minimum width to make it longer */
    max-width: calc(100% - 32px) !important;
    background: rgba(15, 26, 46, 0.7) !important;
    backdrop-filter: blur(20px) !important;
    -webkit-backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(0, 255, 255, 0.2) !important;
    border-radius: 25px !important;  /* Less round for more rectangular look */
    z-index: 1005 !important;
    border-bottom: none !important;
    transition: none !important;     /* Disable transitions to prevent glitching */
  }

  .navbar.scrolled {
    background: rgba(15, 26, 46, 0.85) !important;
    border-color: rgba(0, 255, 255, 0.3) !important;
    padding: 4px 24px !important;  /* Keep same dimensions when scrolled */
    top: 16px !important;
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
    border-bottom: none !important;
    transition: none !important;     /* Disable transitions */
  }

  .nav-container {
    padding: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    max-width: none;
    margin: 0;
    height: 100%;
  }

  .logo-image {
    height: 24px;                /* Slightly larger for better proportion */
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
    align-items: center;
    cursor: pointer !important;
    position: relative !important;
    top: auto !important;
    right: auto !important;
    transform: none !important;
    z-index: 9999 !important;        /* Very high z-index to stay on top */
    width: 36px;
    height: 36px;
    padding: 0;
    margin: 0;
    align-self: center;
    pointer-events: auto !important;  /* Ensure it receives clicks */
  }

  .hamburger span {
    width: 22px;
    height: 2.5px;
    background: #00ffff;
    border-radius: 3px;
    transition: all 0.3s ease;
    pointer-events: none;             /* Let clicks pass through to parent */
  }
  /* Increase hero text size for mobile */
  .hero {
    padding: 140px 20px 40px;
    min-height: 85vh;
  }

  hero-title {
    font-size: 36px !important;
  }

  .hero-title-line {
    line-height: 1.1;
  }

  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.5;
  }

  /* Footer mobile fixes - Level off Company and Utility Page */
  .footer {
    padding: 60px 0 30px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 50px 25px;
    margin-bottom: 60px;
    align-items: start; /* Align to top */
  }

  /* Company section - Column 1, Row 1 */
  .footer-main > .footer-section:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
    align-self: start; /* Top align */
  }

  /* Utility Page section - Column 2, Row 1 */
  .footer-main > .footer-section:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
    align-self: start; /* Top align */
  }

  /* Contact section - Column 1, Row 2 */
  .footer-contact {
    grid-column: 1;
    grid-row: 2;
    gap: 25px;
  }

  /* Locations section - Column 2, Row 2 */
  .footer-locations {
    grid-column: 2;
    grid-row: 2;
    gap: 30px;
    padding-left: 10px;
    align-self: start; /* Top align */
  }

  /* Level off the heading heights */
  .footer-section h4 {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 25px;
    line-height: 1.2;
    min-height: 40px; /* Ensure consistent height */
    display: flex;
    align-items: flex-start;
  }

  .footer-section a {
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 8px 0;
  }

  .location-block {
    padding: 18px 16px;
  }

  .location-block h5 {
    font-size: 12px;
    margin-bottom: 12px;
  }

  .location-block p {
    font-size: 12px;
  }

  .contact-item {
    padding: 18px 16px;
    gap: 12px;
  }

  .contact-label {
    font-size: 11px;
  }

  .contact-value {
    font-size: 13px;
  }

  .footer-brand-large {
    font-size: 55px;
    margin: 50px 0 30px;
  }

  .footer-bottom p {
    font-size: 11px;
  }

  /* Social bar adjustments */
  .footer-social-bar {
    padding-bottom: 40px;
    margin-bottom: 40px;
  }

  .footer-logo-small {
    height: 80px;
  }

  .social-link {
    font-size: 12px;
    padding: 8px 14px;
    min-width: 130px;
  }

  .social-link svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra small phones (iPhone SE, etc.) */
@media (max-width: 390px) {
  .hero-title {
    font-size: clamp(32px, 10vw, 44px) !important;
  }

  .footer-main {
    gap: 40px 20px;
  }

  .footer-section h4 {
    font-size: 12px;
    margin-bottom: 20px;
  }

  .footer-section a {
    font-size: 12px;
  }
}

/* ============================================
 HERO SECTION
 ============================================ */
.hero {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 180px 40px 60px;
  text-align: center;
}

.hero-content {
  max-width: 1100px;
}

.hero-title {
  font-size: clamp(48px, 8vw, 96px);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 30px;
}

.wave-line {
  width: 400px;
  max-width: 80%;
  height: 2px;
  margin: 0 auto 40px;
  background: linear-gradient(90deg, transparent, var(--liquid-blue), var(--cyber-aqua), transparent);
  background-size: 200% 100%;
  animation: wave 3s infinite linear;
}

@keyframes wave {
  0% { background-position: 0 0; }
  100% { background-position: 200% 0; }
}

.hero-subtitle,
.hero-content > p {
  font-size: clamp(18px, 2.5vw, 24px);
  color: var(--steel-silver);
  margin-bottom: 50px;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 100;  /* Ensure it's above everything */
}

.mouse {
  width: 30px;
  height: 50px;
  border: 2px solid var(--steel-silver);
  border-radius: 20px;
  position: relative;
}

.wheel {
  width: 4px;
  height: 8px;
  background: var(--liquid-blue);
  border-radius: 2px;
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2s infinite;
}

@keyframes scroll {
  0% { opacity: 1; top: 8px; }
  100% { opacity: 0; top: 30px; }
}

/* ============================================
 CONTAINER & SECTIONS
 ============================================ */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

section {
  position: relative;
  z-index: 10;
  padding: 120px 0;
}

.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px;
}

.section-subtitle {
  text-align: center;
  font-size: 20px;
  color: var(--steel-silver);
  margin-bottom: 60px;
}

/* ============================================
 SOLUTIONS - APPLE QUALITY PARALLAX SECTION
 ============================================ */
.solutions-parallax-section {
  min-height: 100vh;
  padding: 140px 0 200px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, 
    rgba(11, 15, 25, 0.4) 0%, 
    rgba(15, 26, 46, 0.8) 50%,
    rgba(11, 15, 25, 0.4) 100%
  );
}

.solutions-sticky-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
}

.solutions-header {
  text-align: center;
  margin-bottom: 120px;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeInUp 1s ease forwards;
  animation-delay: 0.2s;
}

.solutions-mega-title {
  font-size: clamp(48px, 8vw, 120px);
  font-weight: 800;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyber-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  letter-spacing: -2px;
  margin-bottom: 20px;
  line-height: 1.1;
}

.solutions-subtitle {
  font-size: clamp(16px, 2vw, 24px);
  color: var(--steel-silver);
  font-weight: 300;
  letter-spacing: 1px;
}

/* ============================================
 THE COLLECTIVE (WHO WE ARE) SECTION
 ============================================ */
.about {
  padding: 120px 0;
}

.collective-intro {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 80px;
}

.collective-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  max-width: 1400px;
  margin: 0 auto;
}

.collective-card {
  position: relative;
  padding: 80px 50px 60px 50px;
  min-height: 320px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: visible;
}

.collective-card:hover {
  transform: translateY(-10px);
  border-color: rgba(0, 198, 251, 0.3);
  box-shadow: 0 30px 60px rgba(0, 198, 251, 0.15);
}

.card-icon-wrapper {
  position: absolute;
  top: -60px;
  left: -40px;
  width: 140px;
  height: 140px;
  z-index: 10;
}

.card-icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 30px rgba(0, 198, 251, 0.6)) 
          drop-shadow(0 0 60px rgba(30, 144, 255, 0.4));
  transition: all 0.5s ease;
}

.collective-card:hover .card-icon {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 0 40px rgba(0, 198, 251, 0.8)) 
          drop-shadow(0 0 80px rgba(30, 144, 255, 0.6));
}

.collective-card h3 {
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  line-height: 1.3;
  padding-right: 0;
}

.collective-card p {
  color: var(--steel-silver);
  font-size: 15px;
  line-height: 1.7;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .collective-cards {
    grid-template-columns: 1fr;
    gap: 80px;
  }
  
  .card-icon-wrapper {
    top: -50px;
    left: 20px;
    width: 130px;
    height: 130px;
  }
  
  .collective-card {
    padding: 70px 40px 40px 40px;
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .about {
    padding: 80px 0;
  }
  
  .collective-intro {
    margin-bottom: 60px;
  }
  
  .collective-cards {
    gap: 80px;
  }
  
  .collective-card {
    padding: 70px 32px 40px 32px;
    min-height: auto;
  }
  
  .card-icon-wrapper {
    top: -50px;
    left: 20px;
    width: 120px;
    height: 120px;
  }
  
  .collective-card h3 {
    font-size: 24px;
    margin-bottom: 20px;
  }
  
  .collective-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

@media (max-width: 480px) {
  .collective-cards {
    gap: 70px;
  }
  
  .collective-card {
    padding: 65px 28px 36px 28px;
  }
  
  .card-icon-wrapper {
    top: -45px;
    left: 15px;
    width: 100px;
    height: 100px;
  }
  
  .collective-card h3 {
    font-size: 22px;
    margin-bottom: 16px;
  }
  
  .collective-card p {
    font-size: 14px;
    line-height: 1.7;
  }
  .collective-card p {
    font-size: 15px;
    line-height: 1.8;
  }
}

.solutions-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  perspective: 1000px;
}

.solution-card {
  position: relative;
  opacity: 0;
  transform: translateY(60px) rotateX(10deg);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-card.in-view {
  opacity: 1;
  transform: translateY(0) rotateX(0);
}

.solution-card[data-index="1"] { transition-delay: 0.1s; }
.solution-card[data-index="2"] { transition-delay: 0.2s; }
.solution-card[data-index="3"] { transition-delay: 0.3s; }
.solution-card[data-index="4"] { transition-delay: 0.4s; }

.solution-card-inner {
  position: relative;
  height: 100%;
  min-height: 420px;
  padding: 50px 40px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}

.solution-card-inner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, 
    rgba(0, 198, 251, 0.05) 0%, 
    rgba(30, 144, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
}

.solution-card:hover .solution-card-inner {
  transform: translateY(-12px);
  border-color: rgba(0, 198, 251, 0.3);
  box-shadow: 
    0 30px 60px rgba(0, 198, 251, 0.15),
    0 0 0 1px rgba(0, 198, 251, 0.1) inset;
}

.solution-card:hover .solution-card-inner::before {
  opacity: 1;
}

.solution-number {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 120px;
  font-weight: 900;
  color: rgba(255, 255, 255, 0.02);
  line-height: 1;
  pointer-events: none;
  transition: all 0.5s ease;
}

.solution-card:hover .solution-number {
  color: rgba(0, 198, 251, 0.08);
  transform: scale(1.1);
}

.solution-icon {
  width: 64px;
  height: 64px;
  margin-bottom: 30px;
  color: var(--cyber-aqua);
  position: relative;
  z-index: 1;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.solution-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 20px rgba(0, 198, 251, 0.3));
}

.solution-card:hover .solution-icon {
  transform: translateY(-8px) scale(1.1);
  color: #ffffff;
}

.solution-title {
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.solution-card:hover .solution-title {
  color: var(--cyber-aqua);
}

.solution-description {
  font-size: 16px;
  line-height: 1.7;
  color: var(--steel-silver);
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
}

.solution-card:hover .solution-description {
  color: var(--platinum-mist);
}

/* Parallax scroll effect on cards */
.solution-card {
  will-change: transform;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .solutions-parallax-section {
    padding: 100px 0 150px;
  }
  
  .solutions-sticky-container {
    padding: 0 30px;
  }
  
  .solutions-header {
    margin-bottom: 80px;
  }
  
  .solution-card-inner {
    min-height: 380px;
    padding: 40px 30px;
  }
  
  .solution-number {
    font-size: 100px;
  }
}

@media (max-width: 768px) {
  .solutions-parallax-section {
    padding: 80px 0 100px;
  }
  
  .solutions-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  
  .solutions-header {
    margin-bottom: 60px;
  }
  
  .solutions-mega-title {
    font-size: 48px;
    letter-spacing: -1px;
  }
  
  .solutions-subtitle {
    font-size: 16px;
  }
  
  .solution-card-inner {
    min-height: 340px;
    padding: 36px 28px;
    border-radius: 20px;
  }
  
  .solution-number {
    font-size: 80px;
    top: 24px;
    right: 24px;
  }
  
  .solution-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
  }
  
  .solution-title {
    font-size: 26px;
    margin-bottom: 12px;
  }
  
  .solution-description {
    font-size: 15px;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .solutions-parallax-section {
    padding: 60px 0 80px;
  }
  
  .solutions-sticky-container {
    padding: 0 20px;
  }
  
  .solutions-header {
    margin-bottom: 50px;
  }
  
  .solutions-mega-title {
    font-size: 36px;
  }
  
  .solution-card-inner {
    min-height: 300px;
    padding: 32px 24px;
  }
  
  .solution-card:hover .solution-card-inner {
    transform: translateY(-6px);
  }
  
  .solution-number {
    font-size: 70px;
  }
  
  .solution-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 20px;
  }
  
  .solution-title {
    font-size: 24px;
  }
  
  .solution-description {
    font-size: 14px;
  }
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================
 FOUNDER SECTION - LIQUID PORTRAIT
 ============================================ */
.founder-section {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(180deg, 
    var(--midnight-graphite) 0%,
    #08090f 50%,
    var(--midnight-graphite) 100%
  );
  overflow: hidden;
}

.founder-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, 
    rgba(0, 198, 251, 0.1) 0%, 
    transparent 70%
  );
  filter: blur(80px);
  pointer-events: none;
}

.founder-container {
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.founder-content-wrapper {
  display: grid;
  grid-template-columns: 500px 1fr;
  gap: 100px;
  align-items: center;
}

/* Liquid Frame Portrait */
.founder-portrait {
  position: relative;
  perspective: 1000px;
}

.liquid-frame {
  position: relative;
  width: 550px;  /* Increased from 500px */
  height: 650px; /* Increased from 600px */
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}


.liquid-frame:hover {
  transform: translateY(-10px) rotateY(5deg);
}

.frame-glow {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, 
    rgba(0, 198, 251, 0.3) 0%, 
    rgba(30, 144, 255, 0.2) 50%,
    rgba(0, 198, 251, 0.3) 100%
  );
  border-radius: 40px;
  filter: blur(30px);
  opacity: 0;
  transition: opacity 0.6s ease;
}

.liquid-frame:hover .frame-glow {
  opacity: 1;
}

.frame-border {
  position: absolute;
  inset: 0;
  border-radius: 32px;
  padding: 3px;
  background: linear-gradient(135deg, 
    rgba(0, 198, 251, 0.5) 0%,
    rgba(30, 144, 255, 0.3) 50%,
    rgba(0, 198, 251, 0.5) 100%
  );
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.portrait-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 32px;
  overflow: hidden;
  background: linear-gradient(135deg, 
    rgba(0, 198, 251, 0.1) 0%,
    rgba(30, 144, 255, 0.05) 100%
  );
}

.founder-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0%) contrast(1.1);
  transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.liquid-frame:hover .founder-image {
  filter: grayscale(0%) contrast(1.05);
  transform: scale(1.05);
}

.portrait-overlay {
  position: absolute;
  inset: 0;
  /* Remove the blue gradient - make it transparent */
  background: transparent;
  pointer-events: none;
}

/* Liquid Accents */
.liquid-accent {
  position: absolute;
  border-radius: 50%;
  filter: blur(40px);
  opacity: 0.4;
  animation: float 8s ease-in-out infinite;
}

.accent-1 {
  width: 150px;
  height: 150px;
  background: rgba(0, 198, 251, 0.3);
  top: -30px;
  right: -30px;
  animation-delay: 0s;
}

.accent-2 {
  width: 120px;
  height: 120px;
  background: rgba(30, 144, 255, 0.3);
  bottom: -20px;
  left: -40px;
  animation-delay: 2s;
}

.accent-3 {
  width: 100px;
  height: 100px;
  background: rgba(0, 198, 251, 0.2);
  top: 50%;
  right: -50px;
  animation-delay: 4s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(20px, -20px) scale(1.1); }
  66% { transform: translate(-15px, 15px) scale(0.9); }
}

/* Founder Bio */
.founder-bio {
  max-width: 600px;
}

.founder-badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--cyber-aqua);
  padding: 6px 16px;
  background: rgba(0, 198, 251, 0.1);
  border: 1px solid rgba(0, 198, 251, 0.2);
  border-radius: 50px;
  margin-bottom: 24px;
}

.founder-name {
  font-size: clamp(42px, 5vw, 56px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.1;
  margin-bottom: 12px;
  background: linear-gradient(135deg, #ffffff 0%, var(--cyber-aqua) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.founder-title {
  font-size: 18px;
  color: var(--steel-silver);
  margin-bottom: 28px;
  font-weight: 500;
}

.founder-description {
  font-size: 17px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
}

/* Fun Facts Grid */
.fun-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.fact-item {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  cursor: default;
}

.fact-item:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 198, 251, 0.3);
  transform: translateY(-4px);
  box-shadow: 0 15px 35px rgba(0, 198, 251, 0.15);
}

.fact-icon {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 198, 251, 0.1);
  border-radius: 12px;
  color: var(--cyber-aqua);
}

.fact-icon svg {
  width: 22px;
  height: 22px;
}

.fact-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.fact-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--steel-silver);
}

.fact-value {
  font-size: 15px;
  font-weight: 600;
  color: #ffffff;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .founder-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .liquid-frame {
    width: 450px; /* Slightly increased for tablets */
    height: 550px;
  }

  .founder-bio {
    text-align: center;
    max-width: 100%;
  }

  .founder-badge {
    display: inline-block;
  }
}

@media (max-width: 768px) {
  .founder-section {
    padding: 100px 0;
  }

  .founder-container {
    padding: 0 20px;
  }

   .liquid-frame {
    width: 350px; /* Increased from original mobile size */
    height: 420px;
  }

  .founder-name {
    font-size: 38px;
  }

  .fun-facts {
    grid-template-columns: 1fr;
  }

  .fact-item {
    padding: 18px;
  }
}

/* ============================================
 PRODUCTS/FEATURES SECTION
 ============================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.feature-card {
  padding: 40px;
  transition: all 0.3s ease;
  cursor: pointer;
  position: relative;
}

.feature-card.highlight {
  border-color: var(--liquid-blue);
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.2);
}

.feature-card:hover {
  transform: translateY(-10px);
  border-color: var(--liquid-blue);
}

.badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: linear-gradient(135deg, var(--liquid-blue), var(--cyber-aqua));
  color: white;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.feature-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--liquid-blue), var(--cyber-aqua));
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 32px;
  height: 32px;
}

.feature-card h3 {
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 16px;
}

.feature-card p {
  color: var(--steel-silver);
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.learn-more {
  color: var(--liquid-blue);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

.learn-more:hover {
  color: var(--cyber-aqua);
}

/* ============================================
 ANIMATED SERVICES MARQUEE - LIQUID STYLE
 ============================================ */
.services-marquee-wrapper {
  position: relative;
  margin: 60px auto 40px;
  max-width: 1200px;
  padding: 40px 60px;
  background: rgba(15, 26, 46, 0.3);
  backdrop-filter: blur(30px);
  -webkit-backdrop-filter: blur(30px);
  border: 1px solid rgba(0, 255, 255, 0.15);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3),
              inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.services-marquee-wrapper::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.5), transparent);
}

.services-marquee-wrapper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 198, 251, 0.5), transparent);
}

/* Animated liquid blobs inside container */
.liquid-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.blob-1 {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, var(--liquid-blue), transparent);
  top: -100px;
  left: -50px;
  animation: blobFloat 12s ease-in-out infinite;
}

.blob-2 {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, var(--cyber-aqua), transparent);
  bottom: -80px;
  right: -40px;
  animation: blobFloat 15s ease-in-out infinite reverse;
  animation-delay: 2s;
}

.blob-3 {
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, var(--liquid-blue), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: blobPulse 10s ease-in-out infinite;
  animation-delay: 4s;
}

@keyframes blobFloat {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(50px, -30px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 40px) scale(0.9);
  }
}

@keyframes blobPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.15;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.3);
    opacity: 0.25;
  }
}

.services-marquee {
  overflow: hidden;
  position: relative;
  width: 100%;
  z-index: 1;
}

.marquee-line {
  display: flex;
  white-space: nowrap;
  overflow: hidden;
  margin-bottom: 25px;
}

.marquee-line:last-child {
  margin-bottom: 0;
}

.marquee-content {
  display: flex;
  align-items: center;
  gap: 40px;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

.marquee-left .marquee-content {
  animation: marqueeLeft 35s linear infinite;
}

.marquee-right .marquee-content {
  animation: marqueeRight 35s linear infinite;
}

.marquee-content span {
  font-size: 20px;
  font-weight: 600;
  color: rgba(231, 235, 240, 0.85);
  text-transform: uppercase;
  letter-spacing: 2px;
  text-shadow: 0 2px 10px rgba(0, 255, 255, 0.2);
  transition: all 0.3s ease;
}

@keyframes marqueeLeft {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

@keyframes marqueeRight {
  0% {
    transform: translateX(-50%);
  }
  100% {
    transform: translateX(0);
  }
}

/* Mobile adjustments */
@media (max-width: 768px) {
  .services-marquee-wrapper {
    padding: 30px 40px;
    margin: 60px 0px 40px;
    border-radius: 20px;
  }
  
  .marquee-line {
    margin-bottom: 20px;
  }
  
  .marquee-content {
    gap: 25px;
  }
  
  .marquee-content span {
    font-size: 16px;
    letter-spacing: 1.5px;
  }
  
  .blob-1, .blob-2, .blob-3 {
    filter: blur(40px);
  }
}

@media (max-width: 480px) {
  .services-marquee-wrapper {
    padding: 25px 20px;
    margin: 60px 0px 40px;  /* Increased top margin from 30px to 60px */
}
  
  .marquee-content span {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
/* ============================================
 WHY LIQUID SECTION
 ============================================ */
.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-text h2 {
  text-align: left;
  margin-bottom: 30px;
}

.about-text > p {
  color: var(--steel-silver);
  font-size: 18px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.feature-list {
  margin-bottom: 40px;
}

.feature-list-item {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
}

.check-icon {
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--liquid-blue), var(--cyber-aqua));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-weight: 700;
  font-size: 16px;
}

.feature-list-item h4 {
  font-size: 18px;
  margin-bottom: 6px;
}

.feature-list-item p {
  color: var(--steel-silver);
  font-size: 15px;
}

.about-visual {
  height: 500px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.floating-element {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, var(--liquid-blue), var(--cyber-aqua));
  border-radius: 30px;
  position: absolute;
  opacity: 0.6;
  animation: floatElement 6s infinite ease-in-out;
}

.floating-element.delay-1 {
  width: 120px;
  height: 120px;
  animation-delay: 2s;
  left: 20%;
}

.floating-element.delay-2 {
  width: 100px;
  height: 100px;
  animation-delay: 4s;
  right: 20%;
}

@keyframes floatElement {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(180deg); }
}

/* ============================================
 STATS SECTION
 ============================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 30px;
}

.stat-item {
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
}

.stat-item:hover {
  transform: translateY(-10px);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 10px;
}

.stat-item p {
  color: var(--steel-silver);
  font-size: 18px;
}

/* ============================================
 PRICING SECTION
 ============================================ */
.pricing-preview {
  background: rgba(15, 26, 46, 0.2);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.pricing-card {
  padding: 50px 40px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card.highlight {
  border-color: var(--liquid-blue);
  transform: scale(1.05);
  box-shadow: 0 8px 32px rgba(30, 144, 255, 0.3);
}

.pricing-card:hover {
  transform: translateY(-10px);
}

.pricing-card.highlight:hover {
  transform: translateY(-10px) scale(1.05);
}

.pricing-card h3 {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 30px;
  min-height: 80px;
}

.currency {
  font-size: 24px;
  font-weight: 600;
  color: var(--steel-silver);
}

.amount {
  font-size: 56px;
  font-weight: 700;
  margin: 0 8px;
  color: var(--platinum-mist);
}

.period {
  font-size: 18px;
  color: var(--steel-silver);
}

.custom {
  font-size: 40px;
  font-weight: 700;
  color: var(--platinum-mist);
}

.pricing-features {
  list-style: none;
  margin-bottom: 40px;
  text-align: left;
}

.pricing-features li {
  padding: 14px 0;
  color: var(--steel-silver);
  border-bottom: 1px solid rgba(163, 180, 196, 0.1);
  font-size: 15px;
}

.pricing-features li:last-child {
  border-bottom: none;
}

.pricing-card button {
  width: 100%;
}

 /* CTA SECTION - PREMIUM AGENCY STYLE
 ============================================ */
.cta-premium {
  position: relative;
  padding: 150px 0;
  background: linear-gradient(180deg, 
    var(--midnight-graphite) 0%,
    #0a0e1a 50%,
    var(--midnight-graphite) 100%
  );
  overflow: hidden;
}

.cta-premium::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1400px;
  height: 100%;
  background: radial-gradient(circle at center top, 
    rgba(0, 198, 251, 0.08) 0%, 
    transparent 60%
  );
  pointer-events: none;
}

.cta-premium-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 60px;
  position: relative;
  z-index: 2;
}

.cta-content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Left Side - Impact Statement */
.cta-left {
  max-width: 600px;
}

.cta-eyebrow {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--cyber-aqua);
  margin-bottom: 24px;
  padding: 8px 20px;
  background: rgba(0, 198, 251, 0.1);
  border: 1px solid rgba(0, 198, 251, 0.2);
  border-radius: 50px;
}

.cta-mega-title {
  font-size: clamp(48px, 6vw, 72px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -2px;
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-gradient-text {
  display: block;
  background: linear-gradient(135deg, var(--cyber-aqua) 0%, var(--liquid-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.cta-subtitle {
  font-size: 20px;
  line-height: 1.6;
  color: var(--steel-silver);
  margin-bottom: 48px;
  max-width: 500px;
}

/* Quick Stats */
.cta-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 48px;
}

.cta-stat {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-num {
  font-size: 32px;
  font-weight: 700;
  color: var(--cyber-aqua);
  line-height: 1;
}

.stat-label {
  font-size: 13px;
  color: var(--steel-silver);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right Side - Action Card */
.cta-right {
  position: relative;
}

.cta-action-card {
  position: relative;
  padding: 50px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(30px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-action-card:hover {
  transform: translateY(-8px);
  border-color: rgba(0, 198, 251, 0.3);
  box-shadow: 0 30px 80px rgba(0, 198, 251, 0.2);
}

.cta-card-glow {
  position: absolute;
  top: -100%;
  left: -100%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, 
    rgba(0, 198, 251, 0.15) 0%, 
    transparent 60%
  );
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cta-action-card:hover .cta-card-glow {
  opacity: 1;
}

.cta-card-content {
  position: relative;
  z-index: 2;
}

.cta-card-content h3 {
  font-size: 28px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

.cta-card-content > p {
  font-size: 16px;
  line-height: 1.6;
  color: var(--steel-silver);
  margin-bottom: 32px;
}

/* Primary CTA Button */
.cta-primary-btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  background: linear-gradient(135deg, var(--cyber-aqua) 0%, var(--liquid-blue) 100%);
  border: none;
  border-radius: 50px;
  font-size: 16px;
  font-weight: 600;
  color: var(--midnight-graphite);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 30px rgba(0, 198, 251, 0.3);
  width: 100%;
  justify-content: center;
  margin-bottom: 32px;
}

.cta-primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 40px rgba(0, 198, 251, 0.5);
}

.cta-primary-btn svg {
  transition: transform 0.3s ease;
}

.cta-primary-btn:hover svg {
  transform: translateX(4px);
}

/* Card Features */
.cta-card-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.cta-feature {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--steel-silver);
}

.cta-feature svg {
  flex-shrink: 0;
  color: var(--cyber-aqua);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .cta-content-wrapper {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .cta-left,
  .cta-right {
    max-width: 100%;
  }

  .cta-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

@media (max-width: 768px) {
  .cta-premium {
    padding: 100px 0;
  }

  .cta-premium-container {
    padding: 0 20px;
  }

  .cta-content-wrapper {
    gap: 50px;
  }

  .cta-mega-title {
    font-size: 42px;
  }

  .cta-subtitle {
    font-size: 17px;
  }

  .cta-stats {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .cta-action-card {
    padding: 36px 28px;
  }

  .cta-card-content h3 {
    font-size: 24px;
  }

  .cta-primary-btn {
    padding: 16px 32px;
    font-size: 15px;
  }
}

/* ============================================
 ELITE AGENCY FOOTER - ENHANCED
 ============================================ */
.footer {
  position: relative;
  border-top: 1px solid rgba(0, 255, 255, 0.15);
  padding: 120px 0 60px;
  background: linear-gradient(180deg, rgba(11, 15, 25, 0.98) 0%, rgba(15, 26, 46, 1) 100%);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.8), rgba(0, 198, 251, 0.6), transparent);
  animation: shimmer 4s ease-in-out infinite;
}

@keyframes shimmer {
  0%, 100% { opacity: 0.3; }
  50% { opacity: 1; }
}

/* Elite Social Links Bar - More Spaced */
.footer-social-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 100px;
  margin-bottom: 100px;
  border-bottom: 1px solid rgba(163, 180, 196, 0.08);
  position: relative;
}

.footer-social-bar::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, #00ffff, transparent);
  opacity: 0.6;
}

.footer-logo-small {
  height: 80px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.4));
  object-fit: contain;
  transition: all 0.4s ease;
}

.footer-logo-small:hover {
  filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.6));
  transform: scale(1.05);
}

.footer-social-links {
  display: flex;
  gap: 60px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--platinum-mist);
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: all 0.4s ease;
  padding: 15px 25px;
  border-radius: 10px;
  border: 1px solid rgba(0, 255, 255, 0.1);
  background: rgba(15, 26, 46, 0.3);
  backdrop-filter: blur(10px);
  position: relative;
  overflow: hidden;
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.1), transparent);
  transition: left 0.6s ease;
}

.social-link:hover::before {
  left: 100%;
}

.social-link svg {
  color: #00ffff;
  transition: all 0.4s ease;
  width: 22px;
  height: 22px;
}

.social-link:hover {
  color: #00ffff;
  border-color: rgba(0, 255, 255, 0.4);
  background: rgba(0, 255, 255, 0.05);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(0, 255, 255, 0.2);
}

.social-link:hover svg {
  transform: scale(1.2) rotate(5deg);
}

/* Elite Main Footer Grid - More Spaced */
.footer-main {
  display: grid;
  grid-template-columns: 1.4fr 1.2fr 1.2fr 1.6fr;
  gap: 120px;
  margin-bottom: 120px;
  position: relative;
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
}

/* Locations - First Column with Elite Style */
.footer-locations {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.location-block {
  padding: 35px;
  border-radius: 15px;
  background: rgba(15, 26, 46, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.location-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #00c6fb);
  transform: scaleX(0);
  transition: transform 0.4s ease;
}

.location-block:hover::before {
  transform: scaleX(1);
}

.location-block:hover {
  border-color: rgba(0, 255, 255, 0.3);
  background: rgba(15, 26, 46, 0.4);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.location-block h5 {
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 2.5px;
  margin-bottom: 20px;
  color: #00ffff;
  text-transform: uppercase;
  position: relative;
  padding-bottom: 12px;
  overflow: hidden;
}

.location-block h5::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, transparent);
  opacity: 0.8;
}

/* Elegant Text Ripple Animation */
.location-block h5 span,
.footer-section h4 span,
.footer-section a span {
  display: inline-block;
  transition: transform 0.3s ease;
}

.location-block:hover h5 span,
.footer-section:hover h4 span,
.footer-section a:hover span {
  animation: textRipple 0.6s ease;
}

@keyframes textRipple {
  0%, 100% { transform: translateY(0); }
  25% { transform: translateY(-3px); }
  75% { transform: translateY(2px); }
}

.location-block p {
  font-size: 16px;
  color: var(--steel-silver);
  line-height: 1.9;
  margin: 0;
  font-weight: 500;
}

/* Elite Company & Utility Sections */
.footer-section h4 {
  font-size: 18px;
  font-weight: 800;
  margin-bottom: 40px;
  padding-bottom: 18px;
  color: var(--platinum-mist);
  letter-spacing: 2.5px;
  text-transform: uppercase;
  position: relative;
  overflow: hidden;
}

.footer-section h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00ffff, #00c6fb);
  border-radius: 2px;
  opacity: 0.8;
}

.footer-section a {
  display: block;
  color: var(--steel-silver);
  text-decoration: none;
  margin-bottom: 22px;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  text-transform: uppercase;
  padding: 10px 0;
  border-radius: 6px;
  position: relative;
  overflow: hidden;
}

.footer-section a::before {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #00ffff, #00c6fb);
  transition: width 0.4s ease;
}

.footer-section a:hover::before {
  width: 100%;
}

.footer-section a:hover {
  color: #00ffff;
  padding-left: 18px;
  text-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

/* Elite Contact Info */
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 45px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 25px;
  position: relative;
  padding: 30px;
  border-radius: 15px;
  background: rgba(15, 26, 46, 0.2);
  border: 1px solid rgba(0, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  transition: all 0.4s ease;
}

.contact-item:hover {
  border-color: rgba(0, 255, 255, 0.3);
  background: rgba(15, 26, 46, 0.4);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.contact-item svg:first-child {
  color: #00ffff;
  flex-shrink: 0;
  margin-top: 8px;
  filter: drop-shadow(0 0 10px rgba(0, 255, 255, 0.4));
  width: 32px;
  height: 32px;
}

.contact-item .arrow-down {
  display: none;
}

.contact-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  color: #00ffff;
  margin-bottom: 8px;
  text-transform: uppercase;
  opacity: 0.9;
}

.contact-value {
  font-size: 18px;
  font-weight: 600;
  color: var(--platinum-mist);
  letter-spacing: 0.5px;
}

/* Elite Large Brand Name - POXMIC Style */
.footer-brand-large {
  font-size: clamp(80px, 11vw, 180px);
  font-weight: 900;
  letter-spacing: 0.15em;
  background: linear-gradient(135deg, rgba(163, 180, 196, 0.12), rgba(0, 255, 255, 0.08));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-align: center;
  margin: 100px 0 60px;
  user-select: none;
  line-height: 0.85;
  position: relative;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  text-transform: uppercase;
}

.footer-brand-large::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(0, 255, 255, 0.04), transparent 70%);
  border-radius: 50%;
  z-index: -1;
}

/* Elite Copyright */
.footer-bottom {
  text-align: center;
  padding-top: 60px;
  border-top: 1px solid rgba(163, 180, 196, 0.08);
  position: relative;
}

.footer-bottom::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #00ffff, transparent);
  opacity: 0.6;
}

.footer-bottom p {
  color: var(--steel-silver);
  font-size: 15px;
  letter-spacing: 1.2px;
  font-weight: 500;
}

.brand-highlight {
  color: #00ffff;
  font-weight: 700;
  text-shadow: 0 0 12px rgba(0, 255, 255, 0.4);
}

/* Add spans to text for ripple effect */
.footer-section h4,
.footer-section a,
.location-block h5 {
  word-spacing: 2px;
}

/* Elite Mobile Responsive */
@media (max-width: 1024px) {
  .footer-main {
    grid-template-columns: 1fr 1fr 1.2fr;
    gap: 80px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 80px 0 40px;
  }

  .footer-social-bar {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 50px;
    margin-bottom: 50px;
  }

  .footer-logo-small {
    height: 90px;
  }

  .footer-social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-end;
  }

  .social-link {
    font-size: 14px;
    gap: 10px;
    padding: 10px 16px;
    min-width: 140px;
    justify-content: flex-start;
  }

  .social-link svg {
    width: 18px;
    height: 18px;
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 50px 40px;
    margin-bottom: 70px;
  }

  .footer-main > .footer-section:nth-child(2) {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-main > .footer-section:nth-child(3) {
    grid-column: 2;
    grid-row: 1;
  }

  .footer-contact {
    grid-column: 1;
    grid-row: 2;
    gap: 30px;
  }

  .footer-locations {
    grid-column: 2;
    grid-row: 2;
    gap: 40px;
    padding-left: 20px;
  }

  .location-block {
    padding: 20px;
  }

  .contact-item {
    padding: 20px;
    gap: 15px;
  }

  .contact-item svg:first-child {
    width: 24px;
    height: 24px;
  }

  .footer-brand-large {
    font-size: 70px;
    margin: 60px 0 40px;
  }
}

@media (max-width: 480px) {
  .footer {
    padding: 60px 0 30px;
  }

  .footer-logo-small {
    height: 85px;
  }

  .footer-social-links {
    gap: 16px;
  }

  .social-link {
    font-size: 12px;
    padding: 8px 12px;
    min-width: 120px;
  }

  .footer-main {
    gap: 40px 30px;
  }

  .footer-locations {
    padding-left: 15px;
    gap: 30px;
  }

  .location-block {
    padding: 16px;
  }

  .contact-item {
    padding: 16px;
  }

  .footer-brand-large {
    font-size: 50px;
    margin: 50px 0 30px;
  }
}

/* Elite Scroll Animation */
@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.footer-section,
.footer-contact,
.footer-locations {
  animation: slideInUp 0.8s ease-out;
}

/* ============================================
 SCROLLBAR
 ============================================ */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--midnight-graphite);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--liquid-blue), var(--cyber-aqua));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(var(--cyber-aqua), var(--liquid-blue));
}


/* ============================================
 RESPONSIVE DESIGN
 ============================================ */
@media (max-width: 1024px) {
  .about-content {
      grid-template-columns: 1fr;
      gap: 40px;
  }

  .about-visual {
      height: 400px;
  }

  .footer-content {
      grid-template-columns: repeat(2, 1fr);
      gap: 40px;
  }

  .pricing-grid {
      grid-template-columns: 1fr;
  }

  .pricing-card.highlight {
      transform: scale(1);
  }

  .pricing-card.highlight:hover {
      transform: translateY(-10px) scale(1);
  }
}

/* ============================================
 MOBILE OPTIMIZATION (TABLET & PHONE)
 ============================================ */
@media (max-width: 768px) {
  /* Hide desktop navigation elements */
  .nav-links {
    display: none;
  }
  
  .btn-liquid.nav-cta {
    display: none;
  }
  
  /* Mobile Menu */
  .mobile-menu {
    display: flex;
  }
  
  /* Navbar adjustments */
  .navbar {
    padding: 12px 0;
  }
  
  .nav-container {
    padding: 0 20px;
  }
  
  /* Logo - proper sizing for mobile */
  .logo-image {
    height: 120px;
    object-fit: contain;
  }
  
  /* Hero section */
  .hero {
    padding: 180px 20px 40px; /* Increased from 140px to 180px */
    min-height: 90vh;
  }
  
  .hero-content {
    padding: 0;
    margin-top: 20px; /* Add extra margin for breathing room */
  }
  
  .hero-title {
    font-size: 36px;
    line-height: 1.2;
    margin-bottom: 40px; /* Increased spacing between title and marquee */
  }
  
  .hero-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
    padding: 0 10px;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    max-width: 360px;
    margin: 0 auto;
  }
  
  .hero-buttons button {
    width: 100%;
    min-height: 52px;
    font-size: 16px;
    padding: 16px 24px;
  }
  
  /* Container */
  .container {
    padding: 0 20px;
  }
  
  /* Sections */
  section {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  
  .section-subtitle {
    font-size: 16px;
    margin-bottom: 36px;
    padding: 0 10px;
  }
  
  /* Features Grid */
  .features-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .feature-card {
    padding: 32px 24px;
  }
  
  .feature-card h3 {
    font-size: 22px;
  }
  
  .feature-card p {
    font-size: 15px;
  }
  
  .feature-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 20px;
  }
  
  /* About section */
  .about-content {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  
  .about-text h2 {
    text-align: center;
    font-size: 32px;
  }
  
  .about-text > p {
    font-size: 16px;
    text-align: center;
    margin-bottom: 32px;
  }
  
  .about-visual {
    height: 280px;
  }
  
  .feature-list-item {
    gap: 16px;
  }
  
  .feature-list-item h4 {
    font-size: 16px;
  }
  
  .feature-list-item p {
    font-size: 14px;
  }
  
  /* Stats */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  
  .stat-item {
    padding: 32px 20px;
  }
  
  .stat-number {
    font-size: 36px;
  }
  
  .stat-item p {
    font-size: 14px;
  }
  
  /* Pricing */
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .pricing-card {
    padding: 36px 24px;
  }
  
  .pricing-card h3 {
    font-size: 20px;
  }
  
  .amount {
    font-size: 44px;
  }
  
  /* CTA */
  .cta {
    padding: 60px 0;
  }
  
  .cta-box {
    padding: 48px 24px;
  }
  
  .cta-box h2 {
    font-size: 32px;
  }
  
  .cta-box > p {
    font-size: 16px;
    margin-bottom: 32px;
  }
  
  .btn-liquid.large {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    display: block;
  }
  
  /* Footer */
  .footer {
    padding: 60px 0 32px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  
  .footer-logo-image {
    height: 48px;
  }
  
  .footer-brand > p {
    font-size: 14px;
  }
  
  .footer-column h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  
  .footer-column a {
    font-size: 14px;
    margin-bottom: 10px;
  }
  
  /* Scroll indicator */
  .scroll-indicator {
    display: none;
  }

/* ===================================
   HIDE MOBILE FOOTER ELEMENTS ON DESKTOP
   =================================== */

.footer-mobile-nav,
.footer-mobile-social,
.footer-mobile-brand {
    display: none;
}


/* ===================================
   MOBILE FOOTER REDESIGN
   =================================== */

@media (max-width: 768px) {
    /* Hide desktop footer elements */
    .footer-social-bar,
    .footer-locations,
    .footer-section,
    .footer-brand-large {
        display: none !important;
    }
    
    /* Restructure main footer */
    .footer-main {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }
    
    /* Mobile contact cards - stacked clean design */
    .footer-contact {
        display: flex;
        flex-direction: column;
        gap: 16px;
        padding: 40px 24px 32px;
        width: 100%;
    }

    .footer-mobile-logo-img {
    width: auto;
    height: clamp(120px, 20vw, 200px); /* Much bigger size */
    opacity: 0.9;
    transition: all 0.4s ease;
    filter: drop-shadow(0 0 20px rgba(0, 255, 255, 0.5)); /* Same cyan glow as navbar */
    object-fit: contain;
}

.footer-mobile-brand:hover .footer-mobile-logo-img {
    opacity: 1;
    transform: scale(1.05);
    filter: drop-shadow(0 0 30px rgba(0, 255, 255, 0.7)); /* Enhanced glow on hover, same as navbar */
}
    
    .contact-item {
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 198, 251, 0.1);
        border-radius: 16px;
        padding: 20px;
        display: flex;
        align-items: center;
        gap: 16px;
        transition: all 0.3s ease;
    }
    
    .contact-item:active {
        background: rgba(0, 198, 251, 0.05);
        transform: scale(0.98);
    }
    
    .contact-item svg:first-child {
        width: 24px;
        height: 24px;
        color: var(--cyber-aqua);
        flex-shrink: 0;
    }
    
    .contact-item > div {
        flex: 1;
    }
    
    .contact-label {
        font-size: 11px;
        font-weight: 600;
        letter-spacing: 1px;
        color: var(--steel-silver);
        margin-bottom: 4px;
    }
    
    .contact-value {
        font-size: 15px;
        font-weight: 500;
        color: #ffffff;
        margin: 0;
    }
    
    .arrow-down {
        display: none !important;
    }
    
    /* Mobile navigation links */
    .footer-mobile-nav {
        display: flex;
        flex-direction: column;
        gap: 0;
        padding: 32px 24px;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-mobile-link {
        padding: 16px 0;
        font-size: 16px;
        font-weight: 500;
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        transition: color 0.3s ease;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    
    .footer-mobile-link:last-child {
        border-bottom: none;
    }
    
    .footer-mobile-link:active {
        color: var(--cyber-aqua);
    }
    
    .footer-mobile-link::after {
        content: '→';
        opacity: 0.3;
        transition: all 0.3s ease;
    }
    
    .footer-mobile-link:active::after {
        opacity: 1;
        transform: translateX(4px);
    }
    
    /* Mobile social links */
    .footer-mobile-social {
        display: flex;
        justify-content: center;
        gap: 24px;
        padding: 32px 24px;
    }
    
    .footer-mobile-social a {
        width: 48px;
        height: 48px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(0, 198, 251, 0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
    }
    
    .footer-mobile-social a:active {
        background: rgba(0, 198, 251, 0.1);
        border-color: var(--cyber-aqua);
        transform: scale(0.95);
    }
    
    .footer-mobile-social svg {
        width: 20px;
        height: 20px;
        fill: rgba(255, 255, 255, 0.6);
        transition: fill 0.3s ease;
    }
    
    .footer-mobile-social a:active svg {
        fill: var(--cyber-aqua);
    }
    
    /* Mobile branding */
    .footer-mobile-brand {
        text-align: center;
        padding: 32px 24px;
    }
    
    .footer-mobile-logo {
        font-size: 32px;
        font-weight: 700;
        background: linear-gradient(135deg, var(--cyber-aqua), var(--liquid-blue));
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        margin-bottom: 16px;
        letter-spacing: 2px;
    }
    
    .footer-mobile-tagline {
        font-size: 13px;
        color: var(--steel-silver);
        margin-bottom: 8px;
        font-weight: 400;
    }
    
    /* Mobile copyright */
    .footer-bottom {
        padding: 24px;
        text-align: center;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.6;
    }
    
    .brand-highlight {
        color: var(--cyber-aqua);
        font-weight: 600;
    }
  }
}

/* ============================================
 Random last minute fixes
 ============================================ */

 .collective-intro {
    margin-bottom: 80px; /* Add space between intro and cards */
}

@media (max-width: 768px) {
    .collective-intro {
        margin-bottom: 60px; /* Smaller spacing on mobile */
    }
}

/* Highlighted text effects - SIMPLIFIED */
.highlight-service {
    background: linear-gradient(90deg, #00FFFF 25%, #00C6FB 50%, #005BEA 75%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
    font-weight: 600;
}

/* Shimmer animation for services */
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}

/* Desktop - hide mobile CTA */
.mobile-premium-cta {
  display: none !important;
}

@media (max-width: 768px) {
  /* Premium Mobile CTA Button - SHOW ONLY ON MOBILE */
  .mobile-premium-cta {
    display: flex !important;
    justify-content: center;
    margin: 80px 20px 60px;
    padding: 0;
  }
  
  .mobile-cta-btn {
    position: relative;
    background: linear-gradient(135deg, rgba(11, 15, 25, 0.95) 0%, rgba(20, 25, 35, 0.95) 100%);
    border: 2px solid rgba(0, 255, 255, 0.4);
    border-radius: 16px;
    padding: 20px 32px;
    font-size: 14px;
    font-weight: 600;
    color: #00FFFF;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
      0 8px 32px rgba(0, 255, 255, 0.15),
      0 0 0 1px rgba(0, 255, 255, 0.1) inset;
    backdrop-filter: blur(20px);
    width: auto;
    min-width: 200px;
    max-width: 280px;
  }
  
  .mobile-cta-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 255, 255, 0.2), transparent);
    transition: all 0.6s ease;
    z-index: 1;
  }
  
  .mobile-cta-btn:hover::before {
    left: 100%;
  }
  
  .mobile-cta-btn:active {
    transform: translateY(1px) scale(0.98);
    box-shadow: 
      0 4px 16px rgba(0, 255, 255, 0.25),
      0 0 0 1px rgba(0, 255, 255, 0.3) inset;
    border-color: rgba(0, 255, 255, 0.6);
  }
  
  .mobile-cta-btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
  }
  
  .mobile-cta-btn svg {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
    stroke: #00FFFF;
  }
  
  .mobile-cta-btn:active svg {
    transform: translateX(2px);
  }
}

/* ============================================
 PREMIUM LIQUID INTRO SEQUENCE - APPLE QUALITY
 ============================================ */

.liquid-intro-sequence {
  text-align: center;
  position: relative;
  z-index: 10;
  margin-bottom: 100px;
  perspective: 2000px;
}

.intro-stage-1 {
  position: relative;
  margin-bottom: 80px;
  opacity: 0;
  transform: translateZ(-50px);
  animation: premiumReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
}

.intro-stage-2 {
  opacity: 0;
  transform: translateY(40px) translateZ(-30px);
  animation: premiumFadeIn 1.8s cubic-bezier(0.16, 1, 0.3, 1) 2.5s forwards;
}

/* Apple-Quality Welcome Text */
.premium-welcome {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  font-size: clamp(72px, 12vw, 140px);
  font-weight: 200;
  letter-spacing: -0.02em;
  margin: 0;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: clamp(24px, 4vw, 48px);
  line-height: 0.9;
  color: #ffffff;
}

.welcome-word,
.liquid-word {
  background: linear-gradient(135deg, 
    #ffffff 0%,
    #00FFFF 30%,
    #00C6FB 70%,
    #ffffff 100%);
  background-size: 300% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
  transform: translateY(100px) scale(0.8);
  opacity: 0;
  filter: blur(20px);
}

.welcome-word {
  animation: 
    premiumTextReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 1s forwards,
    premiumGradientShift 4s cubic-bezier(0.16, 1, 0.3, 1) 1.5s forwards;
}

.liquid-word {
  font-weight: 300;
  animation: 
    premiumTextReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 1.8s forwards,
    premiumGradientShift 4s cubic-bezier(0.16, 1, 0.3, 1) 2.3s forwards;
}

.to-word {
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.45em;
  font-weight: 100;
  margin: 0 -8px;
  opacity: 0;
  transform: translateY(20px);
  animation: subtleFadeIn 1.2s ease-out 2.8s forwards;
}

/* Liquid Cursor - More Elegant */
.liquid-cursor {
  position: absolute;
  top: 50%;
  right: -40px;
  width: 3px;
  height: 75%;
  background: linear-gradient(180deg, 
    transparent 0%, 
    #00FFFF 20%, 
    #00C6FB 80%, 
    transparent 100%);
  border-radius: 2px;
  transform: translateY(-50%);
  opacity: 0;
  animation: 
    cursorAppear 0.3s ease-out 3.2s forwards,
    elegantPulse 2s ease-in-out 3.5s infinite;
  box-shadow: 
    0 0 20px rgba(0, 255, 255, 0.4),
    0 0 40px rgba(0, 255, 255, 0.2);
}

/* Premium Tagline */
.premium-tagline {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Text", "Helvetica Neue", sans-serif;
  font-size: clamp(20px, 3.2vw, 32px);
  font-weight: 300;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.01em;
  margin: 0;
  max-width: 900px;
  margin: 0 auto;
}

.tagline-line {
  display: block;
  margin-bottom: 8px;
  opacity: 0;
  transform: translateY(30px);
  animation: lineReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 2.8s forwards;
}

.tagline-highlight {
  background: linear-gradient(135deg, 
    #00FFFF 0%, 
    #00C6FB 40%, 
    #1E90FF 100%);
  background-size: 200% 100%;
  background-position: 100% 0;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 400;
  letter-spacing: 0.01em;
  display: block;
  position: relative;
  opacity: 0;
  transform: translateY(30px);
  animation: 
    lineReveal 1.5s cubic-bezier(0.16, 1, 0.3, 1) 3.2s forwards,
    highlightShift 3s ease-in-out 4s infinite;
}

/* Liquid Brand Statement */
.liquid-brand-statement {
  margin: 120px 0 100px;
  opacity: 0;
  transform: translateY(60px) rotateX(15deg);
  animation: brandStatementReveal 2s cubic-bezier(0.16, 1, 0.3, 1) 4.5s forwards;
  perspective: 1000px;
}

.brand-title {
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "Helvetica Neue", sans-serif;
  font-size: clamp(52px, 8.5vw, 96px);
  font-weight: 600;
  text-align: center;
  line-height: 1;
  margin: 0;
  letter-spacing: -0.02em;
}

.brand-line-1,
.brand-line-2 {
  display: block;
  margin-bottom: 16px;
  position: relative;
  transform: translateZ(0);
}

/* Enhanced Premium Effects */
.word-fluid {
  background: linear-gradient(135deg, 
    #00FFFF 0%, 
    #00C6FB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  font-style: italic;
  font-weight: 700;
}

.word-fluid::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    rgba(0, 255, 255, 0.15) 0%, 
    transparent 70%);
  z-index: -1;
  border-radius: 8px;
  animation: subtleGlow 4s ease-in-out infinite;
}

.word-design {
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

.word-engineered {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 500;
  letter-spacing: -0.01em;
}

.word-evolve {
  background: linear-gradient(135deg, 
    #1E90FF 0%, 
    #00C6FB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-style: italic;
  font-weight: 700;
  position: relative;
}

.word-evolve::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, 
    rgba(30, 144, 255, 0.15) 0%, 
    transparent 70%);
  z-index: -1;
  border-radius: 8px;
  animation: subtleGlow 4s ease-in-out infinite 2s;
}

.word-separator {
  color: rgba(255, 255, 255, 0.25);
  margin: 0 clamp(16px, 3vw, 32px);
  font-size: 0.7em;
  font-weight: 200;
}

/* Premium Animations */
@keyframes premiumReveal {
  0% {
    opacity: 0;
    transform: translateZ(-50px) translateY(50px);
  }
  60% {
    opacity: 0.8;
  }
  100% {
    opacity: 1;
    transform: translateZ(0) translateY(0);
  }
}

@keyframes premiumFadeIn {
  0% {
    opacity: 0;
    transform: translateY(40px) translateZ(-30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) translateZ(0);
  }
}

@keyframes premiumTextReveal {
  0% {
    opacity: 0;
    transform: translateY(100px) scale(0.8);
    filter: blur(20px);
  }
  60% {
    opacity: 0.8;
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: blur(0);
  }
}

@keyframes premiumGradientShift {
  0% {
    background-position: 100% 0;
  }
  100% {
    background-position: 0% 0;
  }
}

@keyframes subtleFadeIn {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes cursorAppear {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes elegantPulse {
  0%, 100% {
    opacity: 1;
    transform: translateY(-50%) scaleY(1);
  }
  50% {
    opacity: 0.6;
    transform: translateY(-50%) scaleY(0.8);
  }
}

@keyframes lineReveal {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes highlightShift {
  0%, 100% {
    background-position: 100% 0;
  }
  50% {
    background-position: 0% 0;
  }
}

@keyframes brandStatementReveal {
  0% {
    opacity: 0;
    transform: translateY(60px) rotateX(15deg);
  }
  100% {
    opacity: 1;
    transform: translateY(0) rotateX(0);
  }
}

@keyframes subtleGlow {
  0%, 100% {
    opacity: 0.6;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
}

/* Mobile Responsive */
@media (max-width: 768px) {
  .liquid-intro-sequence {
    margin-bottom: 80px;
  }
  
  .liquid-brand-statement {
    margin: 80px 0 60px;
  }
  
  .premium-welcome {
    flex-direction: column;
    gap: 8px;
  }
  
  .premium-tagline {
    padding: 0 20px;
  }
  
  .word-separator {
    margin: 0 12px;
    font-size: 0.6em;
  }
  
  .liquid-cursor {
    display: none;
  }
}

@media (max-width: 480px) {
  .premium-welcome {
    gap: 4px;
  }
  
  .to-word {
    font-size: 0.4em;
    margin: 0 -4px;
  }
  
  .word-separator {
    margin: 0 8px;
  }
}


/* ===================================
   HERO SECTION - ENHANCED FLOATING LIQUID PARTICLES & EFFECTS
   =================================== */

.hero {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 280px 40px 120px;
    text-align: center;
    overflow: hidden;
}

/* More Floating Liquid Particles - HD Cyan Dots */
.hero::before,
.hero::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: radial-gradient(circle, #00FFFF 0%, #00D9FF 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 20px rgba(0, 255, 255, 0.8),
        0 0 40px rgba(0, 255, 255, 0.4),
        0 0 60px rgba(0, 255, 255, 0.2);
    animation: liquidFloat 8s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    top: 15%;
    left: 10%;
    animation-delay: 0s;
}

.hero::after {
    bottom: 20%;
    right: 15%;
    width: 8px;
    height: 8px;
    animation-delay: 2s;
}

/* Create more floating particles using hero-content pseudo elements */
.hero-content::before,
.hero-content::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: radial-gradient(circle, #00FFFF 0%, #00C6FB 50%, transparent 70%);
    border-radius: 50%;
    box-shadow: 
        0 0 15px rgba(0, 255, 255, 0.6),
        0 0 30px rgba(0, 255, 255, 0.3);
    animation: liquidFloat 10s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-content::before {
    top: 30%;
    right: 8%;
    animation-delay: 4s;
}

.hero-content::after {
    top: 70%;
    left: 5%;
    width: 12px;
    height: 12px;
    animation-delay: 6s;
}

/* Additional particles using hero-intro */
.hero-intro::before,
.hero-intro::after {
    content: '';
    position: absolute;
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #00FFFF 0%, #00D9FF 60%, transparent 80%);
    border-radius: 50%;
    box-shadow: 
        0 0 12px rgba(0, 255, 255, 0.7),
        0 0 24px rgba(0, 255, 255, 0.3);
    animation: liquidFloat 12s ease-in-out infinite;
    pointer-events: none;
    z-index: 1;
}

.hero-intro::before {
    top: -100px;
    left: 25%;
    animation-delay: 1s;
}

.hero-intro::after {
    top: -80px;
    right: 30%;
    width: 9px;
    height: 9px;
    animation-delay: 5s;
}

@keyframes liquidFloat {
    0%, 100% {
        transform: translate(0, 0) scale(1);
        opacity: 0.5;
    }
    25% {
        transform: translate(40px, -50px) scale(1.4);
        opacity: 0.9;
    }
    50% {
        transform: translate(-30px, -100px) scale(0.9);
        opacity: 0.7;
    }
    75% {
        transform: translate(50px, -150px) scale(1.2);
        opacity: 0.8;
    }
}

/* Enhanced Text Ripple Effect - More Subtle on Hover */
.hero-statement {
    font-size: clamp(2rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin: 0 0 60px;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}

.statement-line {
    display: block;
    opacity: 0;
    transform: translateY(30px);
    margin: 8px 0;
    transition: opacity 0.8s ease, transform 0.8s ease;
    position: relative;
}

/* Refined Ripple Effect - More Subtle */
.statement-line span {
    display: inline-block;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}

/* Subtle ripple wave effect */
.statement-line:hover span {
    animation: textRippleWaveSubtle 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Stagger the ripple across words */
.statement-line span:nth-child(1) { animation-delay: 0s; }
.statement-line span:nth-child(2) { animation-delay: 0.04s; }
.statement-line span:nth-child(3) { animation-delay: 0.08s; }
.statement-line span:nth-child(4) { animation-delay: 0.12s; }
.statement-line span:nth-child(5) { animation-delay: 0.16s; }

@keyframes textRippleWaveSubtle {
    0%, 100% {
        transform: translateY(0) scale(1);
        text-shadow: 0 0 0 rgba(0, 255, 255, 0);
    }
    50% {
        transform: translateY(-4px) scale(1.02);
        text-shadow: 
            0 0 15px rgba(0, 255, 255, 0.4),
            0 0 30px rgba(0, 255, 255, 0.2);
    }
}

/* Highlight word with liquid shimmer */
.highlight-word {
    position: relative;
    display: inline-block;
    color: #00D9FF;
    padding: 0 8px;
}

.highlight-word::before {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
    height: 20%;
    background: rgba(0, 217, 255, 0.2);
    transform: scaleX(0);
    transform-origin: left;
    animation: underlineGrow 0.6s ease forwards 1s;
}

@keyframes underlineGrow {
    to { transform: scaleX(1); }
}

/* Transform Text - Morphing Effect */
.morphing-text {
    position: relative;
    display: inline-block;
    font-style: italic;
    background: linear-gradient(
        45deg,
        #00D9FF 0%,
        #00FFFF 25%,
        #FFFFFF 50%,
        #00FFFF 75%,
        #00D9FF 100%
    );
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: morphGradient 3s ease-in-out infinite;
}

.morphing-text::after {
    content: attr(data-text);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        -45deg,
        transparent 0%,
        rgba(0, 255, 255, 0.3) 50%,
        transparent 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: morphShine 2s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes morphGradient {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

@keyframes morphShine {
    0%, 100% {
        background-position: 200% 0%;
        opacity: 0.3;
    }
    50% {
        background-position: -100% 0%;
        opacity: 0.7;
    }
}

/* Glitch text with premium shimmer */
.glitch-text {
    position: relative;
    background: linear-gradient(
        90deg,
        #00D9FF 0%,
        #00FFFF 25%,
        #FFFFFF 50%,
        #00FFFF 75%,
        #00D9FF 100%
    );
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gentleShimmer 4s ease-in-out infinite;
}

@keyframes gentleShimmer {
    0%, 100% { 
        background-position: 0% center;
        filter: brightness(1);
    }
    50% { 
        background-position: 100% center;
        filter: brightness(1.2);
    }
}

.glitch-text:hover {
    filter: drop-shadow(0 0 8px rgba(0, 217, 255, 0.6));
    animation: gentleShimmer 2s ease-in-out infinite;
}

/* Elegant line with enhanced effects */
.hero-intro {
    margin-bottom: 50px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards 0.3s;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    perspective: 1000px;
    z-index: 2;
}

.elegant-line {
    position: relative;
    width: 140px;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent 0%,
        rgba(0, 217, 255, 0.1) 10%,
        rgba(0, 217, 255, 0.8) 50%,
        rgba(0, 217, 255, 0.1) 90%,
        transparent 100%
    );
    transform-style: preserve-3d;
    animation: lineReveal3D 2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s;
    box-shadow: 
        0 2px 8px rgba(0, 217, 255, 0.3),
        0 4px 16px rgba(0, 217, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    border-radius: 2px;
}

.elegant-line::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 10%;
    right: 10%;
    height: 1px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(255, 255, 255, 0.6) 50%,
        transparent
    );
    filter: blur(0.5px);
    opacity: 0;
    animation: glassShine 2s ease-in-out forwards 1.5s;
}

.elegant-line::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 200%;
    height: 200%;
    transform: translate(-50%, -50%);
    background: radial-gradient(
        circle,
        rgba(0, 217, 255, 0.3) 0%,
        rgba(0, 217, 255, 0.1) 30%,
        transparent 70%
    );
    opacity: 0;
    animation: rippleExpand 2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.8s;
    pointer-events: none;
}

@keyframes lineReveal3D {
    0% {
        transform: scaleX(0) rotateX(-90deg) translateZ(-20px);
        filter: blur(20px);
        opacity: 0;
    }
    50% {
        transform: scaleX(0.5) rotateX(-45deg) translateZ(-10px);
        filter: blur(10px);
        opacity: 0.5;
    }
    100% {
        transform: scaleX(1) rotateX(0deg) translateZ(0);
        filter: blur(0);
        opacity: 1;
    }
}

@keyframes glassShine {
    0% {
        opacity: 0;
        transform: translateX(-100%);
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        transform: translateX(100%);
    }
}

@keyframes rippleExpand {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0.8;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

.elegant-line {
    animation: 
        lineReveal3D 2s cubic-bezier(0.16, 1, 0.3, 1) forwards 0.6s,
        ambientGlow 4s ease-in-out infinite 2.5s;
}

@keyframes ambientGlow {
    0%, 100% {
        box-shadow: 
            0 2px 8px rgba(0, 217, 255, 0.3),
            0 4px 16px rgba(0, 217, 255, 0.2),
            inset 0 1px 0 rgba(255, 255, 255, 0.3);
    }
    50% {
        box-shadow: 
            0 2px 12px rgba(0, 217, 255, 0.5),
            0 4px 24px rgba(0, 217, 255, 0.3),
            0 8px 40px rgba(0, 217, 255, 0.1),
            inset 0 1px 0 rgba(255, 255, 255, 0.4);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile Responsive - More particles visible */
@media (max-width: 768px) {
    .hero {
        padding: 220px 20px 80px;
    }
    
    .hero::before,
    .hero::after {
        width: 8px;
        height: 8px;
    }
    
    .hero-content::before,
    .hero-content::after {
        width: 6px;
        height: 6px;
    }
    
    .hero-intro {
        margin-bottom: 40px;
    }
    
    .elegant-line {
        width: 100px;
        height: 1.5px;
    }
    
    .hero-statement {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 50px;
    }
    
    .statement-line {
        margin: 6px 0;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 200px 20px 60px;
    }
    
    .hero::before {
        top: 12%;
        left: 8%;
    }
    
    .hero::after {
        bottom: 25%;
        right: 10%;
    }
    
    .hero-content::before {
        top: 35%;
        right: 5%;
    }
    
    .hero-content::after {
        top: 65%;
        left: 3%;
        width: 10px;
        height: 10px;
    }
    
    .hero-intro {
        margin-bottom: 35px;
    }
    
    .elegant-line {
        width: 80px;
    }
    
    .hero-statement {
        font-size: clamp(1.8rem, 9vw, 2.5rem);
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .hero::before,
    .hero::after,
    .hero-content::before,
    .hero-content::after,
    .hero-intro::before,
    .hero-intro::after {
        animation: none;
        opacity: 0;
    }
    
    .statement-line:hover span {
        animation: none;
    }
    
    .morphing-text,
    .morphing-text::after {
        animation: none;
    }
    
    .elegant-line {
        animation: none;
        transform: scaleX(1);
        opacity: 1;
    }
}

/* ===================================
   MOBILE AUTO-PLAY RIPPLE EFFECT
   =================================== */

@media (max-width: 768px) {
    /* Trigger ripple animation automatically on mobile */
    .statement-line.reveal-line span {
        animation: mobileAutoRipple 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    /* First line - starts after line reveals */
    .statement-line[data-delay="0.2"] span:nth-child(1) { animation-delay: 1.2s; }
    .statement-line[data-delay="0.2"] span:nth-child(2) { animation-delay: 1.24s; }
    .statement-line[data-delay="0.2"] span:nth-child(3) { animation-delay: 1.28s; }
    
    /* Second line - plays after first line finishes */
    .statement-line[data-delay="0.4"] span:nth-child(1) { animation-delay: 2.0s; }
    .statement-line[data-delay="0.4"] span:nth-child(2) { animation-delay: 2.04s; }
    .statement-line[data-delay="0.4"] span:nth-child(3) { animation-delay: 2.08s; }
    
    /* Third line - plays after second line finishes */
    .statement-line[data-delay="0.6"] span:nth-child(1) { animation-delay: 2.8s; }
    .statement-line[data-delay="0.6"] span:nth-child(2) { animation-delay: 2.84s; }
    .statement-line[data-delay="0.6"] span:nth-child(3) { animation-delay: 2.88s; }
    
    /* Mobile auto-ripple animation - same as hover but auto-triggered */
    @keyframes mobileAutoRipple {
        0%, 100% {
            transform: translateY(0) scale(1);
            text-shadow: 0 0 0 rgba(0, 255, 255, 0);
        }
        50% {
            transform: translateY(-4px) scale(1.02);
            text-shadow: 
                0 0 15px rgba(0, 255, 255, 0.4),
                0 0 30px rgba(0, 255, 255, 0.2);
        }
    }
    
    /* Keep hover effect disabled on mobile to prevent double animation */
    .statement-line:active span {
        animation: none;
    }
}

/* Desktop - keep hover effect only */
@media (min-width: 769px) {
    /* No auto-play on desktop, only on hover */
    .statement-line span {
        animation: none !important;
    }
}

/* ===================================
   FINAL POLISH - PERFORMANCE & MOBILE ENHANCEMENTS
   =================================== */

/* Smooth scroll behavior */
html {
    scroll-behavior: smooth;
}

/* Better tap targets for mobile */
@media (max-width: 768px) {
    a, button, .nav-link, .mobile-menu-link {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
}

/* Prevent text selection on interactive elements */
button, .btn-liquid, .mobile-cta-btn, .hamburger {
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
}

/* iOS Safari fixes */
@supports (-webkit-touch-callout: none) {
    .hero {
        min-height: -webkit-fill-available;
    }
    
    input, textarea, select {
        font-size: 16px; /* Prevents zoom on focus */
    }
}

/* Enhance mobile scrolling */
@media (max-width: 768px) {
    body {
        -webkit-overflow-scrolling: touch;
    }
    
    /* Prevent horizontal scroll */
    body, html {
        overflow-x: hidden;
        max-width: 100vw;
    }
    
    /* Better mobile typography */
    .hero-statement {
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
        text-rendering: optimizeLegibility;
    }
}

/* Desktop hover enhancements */
@media (min-width: 769px) {
    /* Smooth hover transitions for all links */
    a:not(.btn-liquid):not(.mobile-cta-btn) {
        position: relative;
        transition: color 0.3s ease;
    }
    
    a:not(.btn-liquid):not(.mobile-cta-btn):hover {
        color: #00D9FF;
    }
    
    /* Add subtle underline effect to nav links */
    .nav-links a::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, #00D9FF, #00FFFF);
        transition: width 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .nav-links a:hover::after {
        width: 100%;
    }
}

/* Loading state optimization */
body.loading * {
    animation-play-state: paused !important;
    transition: none !important;
}

/* Focus states for accessibility */
button:focus-visible,
a:focus-visible,
input:focus-visible {
    outline: 2px solid #00D9FF;
    outline-offset: 4px;
    border-radius: 4px;
}

/* Dark mode detection (future-proofing) */
@media (prefers-color-scheme: dark) {
    :root {
        color-scheme: dark;
    }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
    .btn-liquid {
        border: 2px solid #00FFFF;
    }
    
    .hero-statement {
        text-shadow: 0 0 2px rgba(0, 0, 0, 0.8);
    }
}

/* Print styles */
@media print {
    .navbar,
    .mobile-menu,
    .hero-scroll-indicator,
    .btn-liquid,
    .mobile-cta-btn,
    footer {
        display: none !important;
    }
    
    body {
        background: white;
        color: black;
    }
}

/* Performance: GPU acceleration for animations */
.liquid-orb,
.floating-particle,
.elegant-line,
.hero-statement,
.statement-line,
.glitch-text,
.morphing-text {
    will-change: transform, opacity;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* Remove will-change after animations complete */
@media (prefers-reduced-motion: no-preference) {
    .hero-statement.animation-complete,
    .statement-line.animation-complete {
        will-change: auto;
    }
}

/* Mobile Safari bottom bar fix */
@media (max-width: 768px) {
    .hero {
        min-height: 100vh;
        min-height: -webkit-fill-available;
    }
}

/* Prevent zoom on input focus (iOS) */
@media (max-width: 768px) {
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    textarea,
    select {
        font-size: 16px !important;
    }
}

/* Smooth image loading */
img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Better modal backdrop */
.scheduling-modal {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Mobile touch feedback */
@media (max-width: 768px) {
    .mobile-menu-link:active,
    .mobile-cta-btn:active,
    button:active {
        opacity: 0.8;
        transform: scale(0.98);
    }
}

/* Prevent flash of unstyled content */
.hero-content,
.navbar {
    opacity: 0;
    animation: fadeInContent 0.6s ease forwards;
}

@keyframes fadeInContent {
    to {
        opacity: 1;
    }
}

/* Optimize font rendering */
body {
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Safe area insets for notched devices */
@supports (padding: max(0px)) {
    .navbar,
    .mobile-menu,
    .footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }
}

/* Prevent overscroll bounce on iOS - FIXED */
@media (max-width: 768px) {
    body {
        overflow-x: hidden; /* Only prevent horizontal scroll */
        width: 100%;
        -webkit-overflow-scrolling: touch;
    }
}

/* Final performance optimization */
* {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/* Ensure buttons are always clickable */
.btn-liquid,
.mobile-cta-btn,
.mobile-menu-cta {
    pointer-events: auto !important;
    z-index: 100;
    position: relative;
}

/* ===================================
   WHY US SECTION - CLEAN APPLE QUALITY
   =================================== */

.why-us-section {
    position: relative;
    padding: 180px 0 160px;
    background: linear-gradient(180deg, 
        #0a0e17 0%, 
        #0B1120 30%,
        #0d1424 70%,
        #0a0e17 100%
    );
    overflow: hidden;
}

/* Subtle Background */
.why-us-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
}

.why-us-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.4;
    animation: orbFloat 20s ease-in-out infinite;
}

.why-us-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.15), transparent 70%);
    top: -200px;
    left: -200px;
    animation-delay: 0s;
}

.why-us-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(30, 144, 255, 0.12), transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 7s;
}

.why-us-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(138, 43, 226, 0.1), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 14s;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-30px, 30px) scale(0.95); }
}

.why-us-grid-lines {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(0, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    opacity: 0.5;
}

.why-us-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

/* Hero Statement - Clean & Professional */
.why-us-hero {
    text-align: center;
    margin-bottom: 100px;
}

.why-us-badge {
    display: inline-block;
    padding: 10px 24px;
    background: rgba(0, 255, 255, 0.06);
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #00FFFF;
    margin-bottom: 32px;
}

.why-us-headline {
    font-size: clamp(48px, 7vw, 80px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    margin: 0 0 28px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.headline-line {
    display: block;
    color: rgba(255, 255, 255, 0.9);
}

/* "Your competitors are" - Clean, No Effects */
.headline-line:first-of-type {
    margin-bottom: 12px;
}

/* "already ahead" - Professional Red Highlight */
.headline-highlight {
    display: block;
    margin-left: 80px;
    margin-top: 16px;
    background: linear-gradient(135deg, #FF4444 0%, #FF6666 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -2.5px;
}

.why-us-subheadline {
    font-size: clamp(18px, 2.5vw, 22px);
    color: rgba(255, 255, 255, 0.6);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

/* Stats Showcase */
.stats-showcase {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 24px;
    margin-bottom: 120px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}

.stat-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top right, rgba(0, 255, 255, 0.05), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.stat-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3);
}

.stat-card:hover::before {
    opacity: 1;
}

.stat-card-large {
    grid-row: span 2;
    padding: 48px 40px;
}

.stat-card-large .stat-visual {
    position: relative;
    width: 180px;
    height: 180px;
    margin: 0 auto 24px;
}

.stat-ring {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.05);
    stroke-width: 6;
}

.ring-progress {
    fill: none;
    stroke: url(#progressGradient);
    stroke-width: 6;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: calc(283 - (283 * var(--progress)) / 100);
    transition: stroke-dashoffset 2s cubic-bezier(0.16, 1, 0.3, 1);
}

.stat-card-large .stat-number {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 56px;
    font-weight: 800;
    color: #00FFFF;
    text-shadow: 0 0 40px rgba(0, 255, 255, 0.4);
}

.stat-card-large .stat-unit {
    font-size: 32px;
    opacity: 0.8;
}

.stat-info {
    text-align: center;
}

.stat-info h4 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
}

.stat-info p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 16px;
}

.stat-icon {
    width: 48px;
    height: 48px;
    background: rgba(0, 255, 255, 0.1);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: #00FFFF;
}

.stat-card:not(.stat-card-large) .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.stat-card:not(.stat-card-large) .stat-unit {
    font-size: 20px;
    color: #00FFFF;
    margin-left: 2px;
}

.stat-card:not(.stat-card-large) p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin: 0;
    flex-grow: 1;
}

.stat-source {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Difference Section */
.difference-section {
    margin-bottom: 120px;
}

.difference-header {
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

/* "The Liquid Difference" - Clean Flowing Gradient */
.difference-header h3 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
    position: relative;
    display: inline-block;
    background: linear-gradient(135deg, 
        #00FFFF 0%,
        #00D9FF 25%,
        #FFFFFF 50%,
        #00D9FF 75%,
        #00FFFF 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquidFlow 8s ease-in-out infinite;
}

@keyframes liquidFlow {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.difference-header p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto;
}

.comparison-column {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border-radius: 28px;
    padding: 40px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.5s ease;
}

.comparison-bad {
    border-color: rgba(255, 68, 68, 0.15);
}

.comparison-bad:hover {
    border-color: rgba(255, 68, 68, 0.3);
    background: rgba(255, 68, 68, 0.02);
}

.comparison-good {
    border-color: rgba(0, 255, 255, 0.15);
    background: rgba(0, 255, 255, 0.02);
}

.comparison-good:hover {
    border-color: rgba(0, 255, 255, 0.4);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.1);
    transform: translateY(-4px);
}

.comparison-label {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.comparison-bad .label-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 68, 68, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FF4444;
    font-size: 14px;
    font-weight: 700;
}

.comparison-good .label-icon {
    width: 32px;
    height: 32px;
    background: rgba(0, 255, 255, 0.15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00FFFF;
    font-size: 14px;
    font-weight: 700;
}

.comparison-label span:last-child {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
}

.comparison-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.comparison-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    line-height: 1.5;
}

.comparison-bad .list-icon {
    color: rgba(255, 68, 68, 0.6);
    font-size: 12px;
    margin-top: 4px;
}

.comparison-bad li span:last-child {
    color: rgba(255, 255, 255, 0.5);
}

.comparison-good .list-icon {
    color: #00FFFF;
    font-size: 10px;
    margin-top: 5px;
}

.comparison-good li span:last-child {
    color: rgba(255, 255, 255, 0.85);
}

/* Value Props */
.value-props {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 120px;
}

.value-card {
    background: rgba(255, 255, 255, 0.02);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 24px;
    padding: 44px 36px;
    text-align: center;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.value-card:hover {
    transform: translateY(-12px);
    border-color: rgba(0, 255, 255, 0.25);
    box-shadow: 0 30px 80px rgba(0, 255, 255, 0.08);
}

.value-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 28px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.1), rgba(30, 144, 255, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.2), rgba(30, 144, 255, 0.2));
}

.value-icon svg {
    width: 36px;
    height: 36px;
    stroke: #00FFFF;
}

.value-card h4 {
    font-size: 22px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 14px;
}

.value-card p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.why-us-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    background: linear-gradient(135deg, rgba(0, 255, 255, 0.05), rgba(30, 144, 255, 0.05));
    border: 1px solid rgba(0, 255, 255, 0.15);
    border-radius: 28px;
    padding: 50px 60px;
}

.cta-content h3 {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}

.cta-content p {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

.cta-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 20px 44px;
    background: linear-gradient(135deg, #00D9FF, #00FFFF);
    border: none;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 700;
    color: #0a0e17;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 40px rgba(0, 255, 255, 0.3);
    white-space: nowrap;
    flex-shrink: 0;
}

.cta-button-premium:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 255, 255, 0.5);
}

.cta-button-premium svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.cta-button-premium:hover svg {
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .why-us-container {
        padding: 0 40px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr 1fr;
        gap: 20px;
    }
    
    .stat-card-large {
        grid-column: span 2;
        grid-row: span 1;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .value-props {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-cta {
        flex-direction: column;
        text-align: center;
        padding: 40px;
    }
    
    .headline-highlight {
        margin-left: 40px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 120px 0 100px;
    }
    
    .why-us-container {
        padding: 0 20px;
    }
    
    .why-us-hero {
        margin-bottom: 60px;
    }
    
    .why-us-badge {
        font-size: 10px;
        padding: 8px 18px;
    }
    
    .why-us-headline {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .headline-highlight {
        margin-left: 0;
        margin-top: 12px;
    }
    
    .why-us-subheadline {
        font-size: 16px;
    }
    
    .stats-showcase {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-bottom: 80px;
    }
    
    .stat-card-large {
        grid-column: span 1;
    }
    
    .stat-card {
        padding: 28px 24px;
    }
    
    .stat-card-large {
        padding: 36px 28px;
    }
    
    .stat-card-large .stat-visual {
        width: 140px;
        height: 140px;
    }
    
    .stat-card-large .stat-number {
        font-size: 44px;
    }
    
    .difference-section {
        margin-bottom: 80px;
    }
    
    .difference-header h3 {
        font-size: 32px;
    }
    
    .comparison-column {
        padding: 32px 28px;
    }
    
    .value-props {
        margin-bottom: 80px;
    }
    
    .value-card {
        padding: 36px 28px;
    }
    
    .why-us-cta {
        padding: 36px 28px;
        gap: 24px;
    }
    
    .cta-content h3 {
        font-size: 26px;
    }
    
    .cta-button-premium {
        width: 100%;
        justify-content: center;
        padding: 18px 36px;
    }
}

/* ===================================
   CLOSING CTA - MINIMAL & ELEGANT
   =================================== */

.closing-cta {
    position: relative;
    padding: 200px 0;
    background: linear-gradient(180deg, 
        #0a0e17 0%, 
        #0B1120 50%,
        #0a0e17 100%
    );
    overflow: hidden;
}

.closing-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(0, 255, 255, 0.08), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
}

.closing-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
    position: relative;
    z-index: 2;
}

.closing-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
}

.closing-content h2 {
    font-size: clamp(48px, 6vw, 72px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -2px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, 
        #00FFFF 0%,
        #00D9FF 50%,
        #FFFFFF 100%
    );
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: liquidFlow 8s ease-in-out infinite;
}

.closing-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 16px;
    padding: 24px 52px;
    background: linear-gradient(135deg, #00D9FF, #00FFFF);
    border: none;
    border-radius: 60px;
    font-size: 18px;
    font-weight: 700;
    color: #0a0e17;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 
        0 12px 40px rgba(0, 255, 255, 0.3),
        0 0 0 0 rgba(0, 255, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.closing-cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #FFFFFF, #00FFFF);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.closing-cta-btn span {
    position: relative;
    z-index: 1;
}

.closing-cta-btn svg {
    width: 22px;
    height: 22px;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    z-index: 1;
}

.closing-cta-btn:hover {
    transform: translateY(-6px) scale(1.03);
    box-shadow: 
        0 20px 60px rgba(0, 255, 255, 0.5),
        0 0 0 12px rgba(0, 255, 255, 0.1);
}

.closing-cta-btn:hover::before {
    opacity: 0.2;
}

.closing-cta-btn:hover svg {
    transform: translateX(6px);
}

.closing-cta-btn:active {
    transform: translateY(-4px) scale(1.01);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .closing-cta {
        padding: 120px 0;
    }
    
    .closing-cta-container {
        padding: 0 20px;
    }
    
    .closing-content {
        gap: 36px;
    }
    
    .closing-content h2 {
        font-size: 36px;
        letter-spacing: -1px;
    }
    
    .closing-cta-btn {
        width: 100%;
        justify-content: center;
        padding: 20px 40px;
        font-size: 16px;
    }
    
    .closing-cta-btn svg {
        width: 20px;
        height: 20px;
    }
}

/* ===================================
   INFO MODALS - STYLE GUIDE, LICENSE, PRIVACY
   =================================== */

.info-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 14, 23, 0.95);
    backdrop-filter: blur(20px);
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
    animation: modalFadeIn 0.3s ease;
}

.info-modal-content {
    max-width: 800px;
    margin: 60px auto;
    background: linear-gradient(135deg, 
        rgba(11, 17, 32, 0.95), 
        rgba(13, 20, 36, 0.95)
    );
    border: 1px solid rgba(0, 255, 255, 0.2);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    animation: modalSlideUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.info-modal .modal-header {
    padding: 32px 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, 
        rgba(0, 255, 255, 0.03), 
        transparent
    );
}

.info-modal .modal-header h3 {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    margin: 0;
    background: linear-gradient(135deg, #00FFFF, #FFFFFF);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.info-modal .modal-close {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.7);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.info-modal .modal-close:hover {
    background: rgba(255, 68, 68, 0.1);
    border-color: rgba(255, 68, 68, 0.3);
    color: #FF4444;
    transform: rotate(90deg);
}

.info-modal .modal-body {
    padding: 40px;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.8;
}

.info-modal h4 {
    font-size: 20px;
    font-weight: 700;
    color: #00FFFF;
    margin: 32px 0 16px;
}

.info-modal h4:first-child {
    margin-top: 0;
}

.info-modal p {
    margin: 16px 0;
    font-size: 15px;
}

.info-modal ul {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.info-modal ul li {
    padding: 8px 0;
    padding-left: 28px;
    position: relative;
    font-size: 15px;
}

.info-modal ul li:before {
    content: '◆';
    position: absolute;
    left: 0;
    color: #00FFFF;
    font-size: 12px;
}

.info-modal code {
    background: rgba(0, 255, 255, 0.1);
    border: 1px solid rgba(0, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    font-family: 'Monaco', 'Courier New', monospace;
    font-size: 13px;
    color: #00FFFF;
}

.info-modal strong {
    color: #fff;
    font-weight: 600;
}

/* Style Guide Specific */
.color-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
    margin: 24px 0;
}

.color-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.color-item:hover {
    border-color: rgba(0, 255, 255, 0.3);
    transform: translateY(-4px);
}

.color-swatch {
    width: 100%;
    height: 80px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.color-item span {
    font-size: 14px;
    font-weight: 600;
    color: #fff;
}

/* Mobile - Responsive */
@media (max-width: 768px) {
    .info-modal {
        padding: 0;
    }
    
    .info-modal-content {
        margin: 0;
        min-height: 100vh;
        border-radius: 0;
    }
    
    .info-modal .modal-header {
        padding: 24px 20px;
    }
    
    .info-modal .modal-header h3 {
        font-size: 22px;
    }
    
    .info-modal .modal-body {
        padding: 24px 20px;
    }
    
    .color-grid {
        grid-template-columns: 1fr;
    }
}