:root {
  /* 2024-2025 Bold Neon Color System */
  --bg-primary: #ffffff;
  --bg-secondary: #ffffff;
  --bg-tertiary: #fafafa;
  --bg-card: rgba(255, 255, 255, 0.9);
  --bg-glass: rgba(255, 255, 255, 0.25);
  --bg-dark: #0a0a0f;
  --bg-deep: #05050a;
  
  /* Text Colors */
  --text-primary: #0a0a0f;
  --text-secondary: rgba(10, 10, 15, 0.7);
  --text-tertiary: rgba(10, 10, 15, 0.5);
  --text-muted: rgba(10, 10, 15, 0.4);
  --text-light: #ffffff;
  
  /* Bold Neon Accent Colors */
  --accent-primary: #8b5cf6;
  --accent-secondary: #c084fc;
  --accent-hot: #f472b6;
  --accent-pop: #22d3ee;
  --accent-electric: #818cf8;
  --accent-sunset: #fb923c;
  
  /* Multi-layer Gradients */
  --accent-gradient: linear-gradient(135deg, #8b5cf6 0%, #c084fc 40%, #f472b6 100%);
  --accent-gradient-vivid: linear-gradient(135deg, #a855f7 0%, #ec4899 50%, #f97316 100%);
  --accent-gradient-cool: linear-gradient(135deg, #8b5cf6 0%, #6366f1 50%, #22d3ee 100%);
  --accent-gradient-mesh: radial-gradient(ellipse at 20% 0%, rgba(139, 92, 246, 0.3) 0%, transparent 50%),
                          radial-gradient(ellipse at 80% 100%, rgba(244, 114, 182, 0.25) 0%, transparent 50%),
                          radial-gradient(ellipse at 50% 50%, rgba(34, 211, 238, 0.15) 0%, transparent 60%);
  --hero-mesh: radial-gradient(ellipse 100% 100% at 70% 0%, rgba(139, 92, 246, 0.35) 0%, transparent 50%),
               radial-gradient(ellipse 80% 80% at 0% 80%, rgba(244, 114, 182, 0.25) 0%, transparent 50%),
               radial-gradient(ellipse 60% 60% at 100% 100%, rgba(34, 211, 238, 0.2) 0%, transparent 50%);
  
  /* Glows */
  --accent-glow: rgba(139, 92, 246, 0.5);
  --accent-glow-hot: rgba(244, 114, 182, 0.4);
  --accent-glow-pop: rgba(34, 211, 238, 0.4);
  
  /* Legacy / Compatibility */
  --navy: #0a0a0f;
  --cyan-primary: #22d3ee;
  --cyan-dark: #0891b2;
  
  /* Glass Morphism */
  --glass-bg: rgba(255, 255, 255, 0.6);
  --glass-border: rgba(255, 255, 255, 0.3);
  --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  
  /* Borders */
  --border-color: rgba(10, 10, 15, 0.06);
  --border-accent: rgba(139, 92, 246, 0.35);
  --border-glow: rgba(139, 92, 246, 0.5);
  
  /* Shadows with Color */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.06);
  --shadow-lg: 0 16px 48px rgba(0, 0, 0, 0.1);
  --shadow-glow: 0 0 60px var(--accent-glow);
  --shadow-glow-intense: 0 0 80px var(--accent-glow), 0 0 120px rgba(139, 92, 246, 0.3);
  --shadow-colored: 0 20px 50px rgba(139, 92, 246, 0.25);
  
  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-2xl: 40px;
  
  /* Transitions */
  --transition-fast: 0.15s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  
  /* Typography */
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.01em;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-lg);
  border: none;
  cursor: pointer;
  transition: all var(--transition-base);
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: var(--accent-gradient);
  color: #ffffff;
  border: none;
  box-shadow: 0 8px 30px rgba(139, 92, 246, 0.4), 0 0 0 1px rgba(139, 92, 246, 0.3);
}

.btn-primary::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;
}

.btn-primary:hover::before {
  left: 100%;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.5), 0 0 60px rgba(139, 92, 246, 0.3);
}

.btn-secondary {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  color: var(--navy);
  border: 1px solid var(--border-accent);
  box-shadow: var(--glass-shadow);
}

.btn-secondary:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--accent-primary);
  border: 2px solid var(--accent-primary);
}

.btn-outline:hover {
  background: var(--accent-gradient);
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 44px;
  font-size: 0.85rem;
  border-radius: var(--radius-xl);
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.03);
}

.scroll-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: var(--accent-gradient);
  width: 0%;
  transition: width 0.1s linear;
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 24px;
  max-width: 1400px;
  position: relative;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  transition: transform var(--transition-base);
}

.logo:hover {
  transform: translateY(-2px);
}

.logo-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.3rem;
  color: #ffffff;
  transition: all var(--transition-base);
}

.logo:hover .logo-icon {
  background: linear-gradient(135deg, #4FC3F7 0%, #00d4ff 100%);
  transform: scale(1.05);
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

.logo-image {
  height: 90px;
  width: auto;
  display: block;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 40px;
  list-style: none;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.nav-links a {
  color: var(--text-primary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: all var(--transition-base);
  position: relative;
  padding: 8px 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--cyan-primary);
  transition: width var(--transition-base);
}

.nav-links a:hover {
  color: var(--cyan-primary);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a.active {
  color: var(--accent-primary);
  font-weight: 600;
}

.nav-links a.active::after {
  width: 100%;
  background: var(--accent-gradient);
}

.nav-cta {
  padding: 10px 20px;
  font-size: 0.75rem;
}

.mobile-menu-btn {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.mobile-menu-btn span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  transition: all var(--transition-base);
}

@media (max-width: 900px) {
  .nav-container {
    padding: 16px 24px;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    padding: 24px;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    gap: 0;
    transform: none;
    z-index: 999;
  }

  .nav-links li {
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-links li:last-child {
    border-bottom: none;
  }
  
  .nav-links a {
    display: block;
    padding: 16px 0;
    font-size: 1rem;
  }

  .nav-links a::after {
    display: none;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .nav-cta {
    display: none;
    width: auto;
    margin-top: 16px;
    margin-left: 24px;
    margin-right: 24px;
    justify-content: center;
  }
  
  .nav-cta.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: flex;
    z-index: 1000;
  }
  
  .mobile-menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }
  
  .mobile-menu-btn.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  .logo-image {
    height: 70px;
  }
}

@media (max-width: 640px) {
  .nav-container {
    padding: 12px 16px;
  }

  .logo-image {
    height: 60px;
  }

  .nav-links {
    padding: 16px;
  }

  .nav-links a {
    padding: 14px 0;
    font-size: 0.95rem;
  }

  .nav-cta {
    margin-left: 16px;
    margin-right: 16px;
    padding: 14px 24px;
    font-size: 0.75rem;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  max-height: 100vh;
  display: flex;
  align-items: center;
  padding: 100px 0 60px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    var(--hero-mesh),
    linear-gradient(135deg, #ffffff 0%, rgba(139, 92, 246, 0.08) 50%, rgba(244, 114, 182, 0.06) 100%);
  pointer-events: none;
}

.hero-bg::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 100%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 60%);
  animation: pulse-glow 8s ease-in-out infinite;
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(244, 114, 182, 0.25) 0%, transparent 60%);
  animation: pulse-glow 10s ease-in-out infinite reverse;
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; transform: scale(1); }
  50% { opacity: 1; transform: scale(1.1); }
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  height: 100%;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-block;
  padding: 10px 20px;
  background: rgba(0, 212, 255, 0.1);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--cyan-dark);
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.01em;
  margin-bottom: 24px;
  color: var(--navy);
}

.gradient-text {
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-tagline {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--accent-primary);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  margin-bottom: 24px;
  padding: 8px 16px;
  background: rgba(108, 92, 231, 0.08);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(108, 92, 231, 0.2);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-primary);
  opacity: 0.7;
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 440px;
  font-weight: 400;
}

.hero-cta-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.hero-cta-wrapper .btn-primary {
  box-shadow: 0 8px 30px rgba(108, 92, 231, 0.45);
}

.hero-cta-note {
  font-size: 0.85rem;
  color: var(--text-primary);
  opacity: 0.5;
  font-weight: 400;
  padding-left: 4px;
}

.hero-visual {
  position: relative;
  z-index: 1;
}

/* New Hero Showcase Design */
.hero-showcase {
  position: relative;
  padding: 40px;
}

.showcase-decorative {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 0;
}

.deco-circle {
  position: absolute;
  border-radius: 50%;
  background: var(--accent-gradient);
  opacity: 0.1;
}

.deco-1 {
  width: 300px;
  height: 300px;
  top: -50px;
  right: -50px;
  animation: float-slow 8s ease-in-out infinite;
}

.deco-2 {
  width: 150px;
  height: 150px;
  bottom: 20px;
  left: -30px;
  background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
  animation: float-slow 6s ease-in-out infinite reverse;
}

.deco-line {
  position: absolute;
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.3), transparent);
  height: 1px;
}

.deco-3 {
  width: 200px;
  top: 50%;
  left: -100px;
  transform: rotate(-45deg);
}

@keyframes float-slow {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-20px) scale(1.05); }
}

.showcase-device {
  position: relative;
  z-index: 1;
  max-width: 480px;
  margin: 0 auto;
}

.device-frame {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
  border-radius: 24px;
  padding: 12px;
  box-shadow: 
    0 50px 100px rgba(0, 0, 0, 0.3),
    0 20px 60px rgba(139, 92, 246, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

.device-frame::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, transparent 100%);
  pointer-events: none;
}

.device-notch {
  width: 80px;
  height: 6px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 3px;
  margin: 0 auto 12px;
}

.device-screen {
  border-radius: 12px;
  overflow: hidden;
  background: #ffffff;
  aspect-ratio: 16 / 10;
}

.showcase-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

.device-shadow {
  position: absolute;
  bottom: -40px;
  left: 10%;
  right: 10%;
  height: 60px;
  background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.3) 0%, transparent 70%);
  filter: blur(20px);
  z-index: -1;
}

.showcase-stats {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: absolute;
  right: 20px;
  bottom: 40px;
  z-index: 2;
}

.stat-card {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 14px 20px;
  border-radius: 16px;
  box-shadow: 
    0 10px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.8) inset;
  animation: slide-in-right 0.6s ease-out backwards;
}

.stat-1 { animation-delay: 0.2s; }
.stat-2 { animation-delay: 0.4s; }
.stat-3 { animation-delay: 0.6s; }

@keyframes slide-in-right {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.stat-icon {
  width: 40px;
  height: 40px;
  background: var(--accent-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.stat-icon svg {
  color: #ffffff;
}

.stat-content {
  display: flex;
  flex-direction: column;
}

.stat-value {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.2;
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

/* Legacy transformation styles - kept for backward compatibility */
.hero-transformation {
  position: relative;
  perspective: 1000px;
  transform-style: preserve-3d;
}

.transformation-toggle {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-bottom: 24px;
  padding: 6px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(139, 92, 246, 0.2);
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.toggle-btn {
  padding: 10px 24px;
  background: transparent;
  border: none;
  border-radius: var(--radius-md);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  cursor: pointer;
  transition: all var(--transition-base);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.toggle-btn.active {
  background: var(--accent-gradient);
  color: #ffffff;
  box-shadow: 0 4px 12px rgba(139, 92, 246, 0.3);
}

.mockup-container {
  position: relative;
  width: 100%;
  height: 420px;
}

.mockup-browser {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 92, 246, 0.2);
  overflow: hidden;
  box-shadow: 0 25px 80px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: rotateY(-5deg) rotateX(2deg);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  opacity: 0;
  pointer-events: none;
}

.mockup-browser.active {
  opacity: 1;
  pointer-events: auto;
}

.mockup-browser:hover {
  transform: rotateY(0deg) rotateX(0deg) scale(1.02);
}

.transformation-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 72px;
  height: 72px;
  background: var(--accent-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
  z-index: 10;
  animation: pulse-arrow 2s ease-in-out infinite;
  pointer-events: none;
}

.transformation-arrow svg {
  color: #ffffff;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

@keyframes pulse-arrow {
  0%, 100% { 
    transform: translate(-50%, -50%) scale(1);
    box-shadow: 0 8px 24px rgba(139, 92, 246, 0.5);
  }
  50% { 
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 12px 32px rgba(139, 92, 246, 0.7);
  }
}

.mockup-label {
  position: absolute;
  bottom: -40px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  border-radius: var(--radius-lg);
  white-space: nowrap;
}

.label-before {
  background: rgba(255, 107, 107, 0.15);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
}

.label-after {
  background: rgba(107, 203, 119, 0.15);
  color: #27ae60;
  border: 1px solid rgba(39, 174, 96, 0.3);
}

.old-site-preview {
  padding: 0;
  background: linear-gradient(180deg, #e8e8e8 0%, #d4d4d4 100%);
  height: 100%;
  font-family: Arial, sans-serif;
}

.old-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 16px;
  background: linear-gradient(180deg, #4a4a4a 0%, #2d2d2d 100%);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  margin-bottom: 0;
}

.old-logo {
  font-size: 0.75rem;
  font-weight: bold;
  color: #ff6b00;
  text-shadow: 2px 2px 0px #000;
  letter-spacing: 0.05em;
}

.old-nav {
  display: flex;
  gap: 12px;
  font-size: 0.6rem;
  color: #fff;
  text-transform: uppercase;
  font-weight: bold;
}

.old-hero {
  background: linear-gradient(180deg, #fff 0%, #f0f0f0 100%);
  padding: 16px;
  border-bottom: 3px solid #ff6b00;
  margin-bottom: 0;
  text-align: center;
}

.old-text-block {
  height: 10px;
  background: linear-gradient(90deg, #333 0%, #666 100%);
  margin: 0 auto 8px;
  border-radius: 0;
  box-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
}

.old-text-block.short {
  width: 50%;
}

.old-button {
  display: inline-block;
  padding: 6px 20px;
  background: linear-gradient(180deg, #ff8800 0%, #ff6b00 100%);
  color: #fff;
  font-size: 0.6rem;
  margin-top: 8px;
  border-radius: 0;
  border: 2px solid #000;
  box-shadow: 3px 3px 0px rgba(0, 0, 0, 0.3);
  font-weight: bold;
  text-transform: uppercase;
}

.old-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: #e8e8e8;
}

.old-box {
  height: 50px;
  background: linear-gradient(180deg, #fff 0%, #e0e0e0 100%);
  border: 2px solid #999;
  border-right: none;
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.old-box:last-child {
  border-right: 2px solid #999;
}

.real-site-preview {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.browser-header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 20px;
  background: var(--bg-tertiary);
  border-bottom: 1px solid var(--border-color);
}

.browser-dots {
  display: flex;
  gap: 8px;
}

.browser-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border-color);
}

.browser-dots span:nth-child(1) { background: #ff6b6b; }
.browser-dots span:nth-child(2) { background: #ffd93d; }
.browser-dots span:nth-child(3) { background: #6bcb77; }

.browser-address {
  flex: 1;
  padding: 8px 16px;
  background: var(--bg-secondary);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-color);
  font-size: 0.75rem;
  color: var(--text-tertiary);
  letter-spacing: 0.05em;
}

.browser-content {
  height: 240px;
  background: linear-gradient(180deg, #f8fbff 0%, #ffffff 100%);
}

.mockup-preview {
  width: 100%;
  height: 100%;
  background: 
    linear-gradient(135deg, rgba(0, 212, 255, 0.06) 0%, rgba(255, 255, 255, 0.8) 100%);
  position: relative;
}

.mockup-preview::before {
  content: '';
  position: absolute;
  top: 20px;
  left: 20px;
  right: 20px;
  height: 12px;
  background: rgba(0, 212, 255, 0.12);
  border-radius: 6px;
}

.mockup-preview::after {
  content: '';
  position: absolute;
  top: 44px;
  left: 20px;
  width: 60%;
  height: 8px;
  background: rgba(0, 212, 255, 0.08);
  border-radius: 4px;
}

.floating-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 24px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.3) inset;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  animation: float 6s ease-in-out infinite;
  color: var(--navy);
  transition: all var(--transition-base);
}

.floating-card:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(139, 92, 246, 0.25), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.floating-card svg {
  color: var(--accent-primary);
  filter: drop-shadow(0 0 8px rgba(139, 92, 246, 0.5));
}

.card-1 {
  top: 15%;
  right: -30px;
  animation-delay: 0s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(139, 92, 246, 0.1) 100%);
}

.card-2 {
  bottom: 15%;
  left: -30px;
  animation-delay: 3s;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(244, 114, 182, 0.1) 100%);
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  25% { transform: translateY(-6px) rotate(0.5deg); }
  50% { transform: translateY(-12px) rotate(0deg); }
  75% { transform: translateY(-6px) rotate(-0.5deg); }
}

.scroll-indicator {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--text-tertiary);
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.mouse {
  width: 22px;
  height: 34px;
  border: 1px solid var(--border-accent);
  border-radius: 11px;
  position: relative;
}

.wheel {
  width: 3px;
  height: 8px;
  background: var(--cyan-primary);
  border-radius: 2px;
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  animation: scroll 2.5s infinite;
}

@keyframes scroll {
  0% { opacity: 1; transform: translateX(-50%) translateY(0); }
  100% { opacity: 0; transform: translateX(-50%) translateY(10px); }
}

@media (max-width: 1024px) {
  .hero {
    max-height: none;
    padding: 100px 0 80px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-tagline {
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-cta-wrapper {
    align-items: center;
  }
  
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  
  .mockup-container {
    height: 320px;
  }
  
  .transformation-arrow {
    width: 56px;
    height: 56px;
  }
  
  .transformation-arrow svg {
    width: 32px;
    height: 32px;
  }
  
  .floating-card {
    display: none;
  }
  
  .scroll-indicator {
    display: none;
  }
}

.social-proof {
  padding: 80px 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
  background: var(--bg-secondary);
}

.social-proof-label {
  text-align: center;
  font-size: 0.7rem;
  color: var(--text-tertiary);
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 0.25em;
}

.logo-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 60px;
}

.client-logo {
  opacity: 0.4;
  transition: all var(--transition-base);
}

.client-logo:hover {
  opacity: 1;
}

.client-logo-text {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--text-primary);
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  .logo-strip {
    gap: 40px;
  }
  
  .client-logo-text {
    font-size: 1.3rem;
  }
}

.section-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.25em;
  margin-bottom: 20px;
}

.section-label.accent {
  color: var(--cyan-primary);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.5rem);
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 0.01em;
  margin-bottom: 24px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 650px;
  line-height: 1.85;
  font-weight: 300;
}

.section-header {
  text-align: center;
  margin-bottom: 90px;
}

.section-header .section-label {
  display: block;
  margin-bottom: 16px;
}

.section-header .section-subtitle {
  margin-left: auto;
  margin-right: auto;
  margin-top: 20px;
}

.section-text {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 300;
}

.section-cta {
  text-align: center;
  margin-top: 60px;
}

.problem-solution {
  padding: 140px 0;
  background: 
    radial-gradient(ellipse 80% 60% at 20% 30%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    radial-gradient(ellipse 70% 50% at 80% 70%, rgba(244, 114, 182, 0.08) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, rgba(250, 250, 255, 0.5) 100%);
}

.section-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.problem-content,
.solution-content {
  padding: 48px;
  border-radius: var(--radius-lg);
}

.problem-content {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(139, 92, 246, 0.1);
  box-shadow: 0 8px 32px rgba(139, 92, 246, 0.08);
}

.problem-content .section-title {
  color: #2d3748;
}

.solution-content {
  background: var(--navy);
  border: none;
  box-shadow: 0 8px 32px rgba(26, 35, 50, 0.15);
}

.solution-content .section-title {
  color: #ffffff;
}

.solution-content .section-text {
  color: rgba(255, 255, 255, 0.8);
}

.solution-content .btn-primary {
  background: #ffffff;
  color: var(--navy);
  box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
}

.solution-content .btn-primary:hover {
  background: var(--accent-hot);
  color: #ffffff;
}

@media (max-width: 900px) {
  .section-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.portfolio {
  padding: 140px 0;
  background: 
    radial-gradient(ellipse 90% 70% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, rgba(250, 250, 255, 0.4) 0%, #ffffff 50%, rgba(250, 250, 255, 0.4) 100%);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.portfolio-card {
  position: relative;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: var(--radius-xl);
  border: 1px solid rgba(139, 92, 246, 0.1);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.portfolio-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 25px 60px rgba(139, 92, 246, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: translateY(-12px) scale(1.01);
}

.portfolio-image {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.portfolio-placeholder {
  width: 100%;
  height: 100%;
  transition: transform var(--transition-slow);
}

.portfolio-card:hover .portfolio-placeholder {
  transform: scale(1.03);
}

.portfolio-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
  display: block;
}

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

.gradient-1 { background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 50%, #1a1a1a 100%); }
.gradient-2 { background: linear-gradient(135deg, #1f1f1f 0%, #333333 50%, #1f1f1f 100%); }
.gradient-3 { background: linear-gradient(135deg, #181818 0%, #2a2a2a 50%, #181818 100%); }
.gradient-4 { background: linear-gradient(135deg, #1c1c1c 0%, #303030 50%, #1c1c1c 100%); }

.portfolio-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(10, 10, 10, 0.85);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}

.portfolio-info {
  padding: 28px;
}

.portfolio-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 18px;
}

.portfolio-client {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.4rem;
}

.portfolio-industry {
  font-size: 0.8rem;
  color: var(--cyan-dark);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.portfolio-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.75;
  margin-bottom: 20px;
}

.portfolio-result {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-tertiary);
  font-weight: 400;
  font-size: 0.9rem;
}

@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr;
  }
  
  .portfolio-image {
    height: 240px;
  }
}

.services {
  padding: 140px 0;
  background: 
    radial-gradient(ellipse 100% 80% at 100% 0%, rgba(139, 92, 246, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 90% 70% at 0% 50%, rgba(244, 114, 182, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 1) 50%, rgba(250, 250, 255, 0.3) 100%);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 44px 36px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(139, 92, 246, 0.1);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--accent-gradient);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition-base);
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.05) 0%, transparent 50%);
  opacity: 0;
  transition: opacity var(--transition-base);
  pointer-events: none;
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card:hover::after {
  opacity: 1;
}

.service-card:hover {
  background: rgba(255, 255, 255, 0.9);
  border-color: rgba(139, 92, 246, 0.3);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
  transform: translateY(-8px) rotateX(2deg);
}

.service-card.featured {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(255, 255, 255, 0.95) 100%);
  border-color: var(--border-accent);
}

.featured-badge {
  position: absolute;
  top: -1px;
  left: 30px;
  padding: 8px 16px;
  background: var(--accent-gradient);
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 500;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  background: var(--accent-gradient);
  border: none;
  border-radius: var(--radius-md);
  margin-bottom: 28px;
  color: #ffffff;
  transition: all var(--transition-base);
}

.service-card:hover .service-icon {
  background: linear-gradient(135deg, #fd79a8 0%, #6c5ce7 100%);
  transform: scale(1.05);
}

.service-icon svg {
  width: 40px;
  height: 40px;
}

.service-title {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 16px;
  line-height: 1.3;
}

.service-description {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 24px;
  font-weight: 300;
}

.service-features {
  list-style: none;
}

.service-features li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 10px;
  font-size: 0.875rem;
  color: var(--text-tertiary);
}

.service-features li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 7px;
  width: 5px;
  height: 5px;
  background: var(--cyan-primary);
  border-radius: 50%;
}

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

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

.testimonials {
  padding: 140px 0;
  background: 
    radial-gradient(ellipse 100% 80% at 30% 0%, rgba(244, 114, 182, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 80% 70% at 70% 100%, rgba(139, 92, 246, 0.12) 0%, transparent 50%),
    linear-gradient(180deg, rgba(250, 250, 255, 0.3) 0%, #ffffff 50%, rgba(244, 114, 182, 0.08) 100%);
}

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

.testimonial-card {
  padding: 40px;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: var(--radius-xl);
  transition: all var(--transition-base);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.04);
}

.testimonial-card:hover {
  border-color: rgba(139, 92, 246, 0.3);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(139, 92, 246, 0.12), 0 0 0 1px rgba(255, 255, 255, 0.5) inset;
}

.testimonial-rating {
  display: flex;
  gap: 4px;
  margin-bottom: 24px;
  color: #ffd93d;
}

.testimonial-quote {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.9;
  margin-bottom: 28px;
  font-weight: 300;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-color);
}

.author-avatar {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--accent-gradient);
  border: none;
  border-radius: 50%;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1rem;
  color: #ffffff;
}

.author-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.author-name {
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 1.1rem;
}

.author-role {
  font-size: 0.75rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 600px;
    margin: 0 auto;
  }
}

.process {
  padding: 140px 0;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-width: 750px;
  margin: 0 auto;
}

.process-step {
  display: flex;
  gap: 40px;
  padding: 40px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  transition: all var(--transition-base);
}

.process-step:hover {
  border-color: var(--border-accent);
}

.step-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  min-width: 60px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: 10px;
}

.step-description {
  color: var(--text-secondary);
  line-height: 1.8;
  font-weight: 300;
}

.process-connector {
  width: 1px;
  height: 50px;
  background: var(--border-accent);
  margin-left: 70px;
}

@media (max-width: 640px) {
  .process-step {
    flex-direction: column;
    gap: 20px;
  }
  
  .process-connector {
    margin-left: 40px;
  }
}

.final-cta {
  padding: 160px 0;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 30%, rgba(139, 92, 246, 0.25), transparent 60%),
    radial-gradient(ellipse 80% 60% at 70% 80%, rgba(244, 114, 182, 0.18), transparent),
    radial-gradient(ellipse 60% 50% at 30% 70%, rgba(34, 211, 238, 0.12), transparent),
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 1) 100%);
}

.cta-content {
  text-align: center;
  max-width: 750px;
  margin: 0 auto;
}

.cta-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  margin-bottom: 50px;
  font-weight: 300;
  line-height: 1.8;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-bottom: 50px;
}

.cta-trust {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.trust-item svg {
  color: var(--cyan-primary);
}

@media (max-width: 640px) {
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .cta-trust {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.footer {
  position: relative;
  padding: 120px 0 50px;
  background: 
    radial-gradient(ellipse 100% 80% at 50% 0%, rgba(139, 92, 246, 0.15) 0%, transparent 70%),
    radial-gradient(ellipse 80% 60% at 0% 100%, rgba(244, 114, 182, 0.12) 0%, transparent 60%),
    radial-gradient(ellipse 70% 50% at 100% 50%, rgba(34, 211, 238, 0.1) 0%, transparent 50%),
    linear-gradient(180deg, #ffffff 0%, rgba(250, 245, 255, 1) 100%);
  border-top: 1px solid rgba(139, 92, 246, 0.2);
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--accent-gradient);
  opacity: 0.6;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 100px;
  margin-bottom: 80px;
}

.footer-brand {
  position: relative;
}

.footer-brand .logo {
  margin-bottom: 24px;
  display: inline-block;
}

.footer-brand .logo-image {
  height: 80px;
  filter: drop-shadow(0 4px 12px rgba(139, 92, 246, 0.2));
  transition: all var(--transition-base);
}

.footer-brand .logo:hover .logo-image {
  filter: drop-shadow(0 6px 16px rgba(139, 92, 246, 0.4));
  transform: translateY(-2px);
}

.footer-tagline {
  margin-top: 20px;
  color: var(--text-primary);
  opacity: 0.7;
  max-width: 320px;
  font-size: 1rem;
  line-height: 1.9;
  font-weight: 400;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-column h4 {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  background: var(--accent-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 28px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.footer-column ul {
  list-style: none;
}

.footer-column li {
  margin-bottom: 16px;
}

.footer-column a {
  color: var(--text-primary);
  opacity: 0.7;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition-base);
  display: inline-block;
  position: relative;
}

.footer-column a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-gradient);
  transition: width var(--transition-base);
}

.footer-column a:hover {
  opacity: 1;
  transform: translateX(4px);
}

.footer-column a:hover::before {
  width: 100%;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 50px;
  border-top: 1px solid rgba(139, 92, 246, 0.15);
  font-size: 0.85rem;
  color: var(--text-primary);
  opacity: 0.6;
  letter-spacing: 0.05em;
}

.footer-legal {
  display: flex;
  gap: 32px;
}

.footer-legal a {
  color: var(--text-primary);
  opacity: 0.6;
  text-decoration: none;
  font-weight: 500;
  transition: all var(--transition-base);
  position: relative;
}

.footer-legal a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent-gradient);
  transition: width var(--transition-base);
}

.footer-legal a:hover {
  opacity: 1;
}

.footer-legal a:hover::after {
  width: 100%;
}

@media (max-width: 900px) {
  .footer {
    padding: 80px 0 40px;
  }
  
  .footer-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }
  
  .footer-brand {
    text-align: center;
  }
  
  .footer-brand .logo {
    justify-content: center;
  }
  
  .footer-tagline {
    margin-left: auto;
    margin-right: auto;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
}

@media (max-width: 640px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 16px;
  }
}

.fade-in {
  opacity: 0;
  transform: translateY(15px);
  animation: fadeIn 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.hero-content .fade-in:nth-child(1) { animation-delay: 0s; }
.hero-content .fade-in:nth-child(2) { animation-delay: 0.1s; }
.hero-content .fade-in:nth-child(3) { animation-delay: 0.2s; }
.hero-content .fade-in:nth-child(4) { animation-delay: 0.3s; }

.hero-visual.fade-in { animation-delay: 0.2s; }

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

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

.process-step {
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
}

/* Modern 2024-2025 Animation Utilities */

/* Scroll Reveal Animations */
.anim-fade-up {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.anim-scale-in {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.anim-scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

.anim-slide-left {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-slide-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.anim-slide-right {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.anim-slide-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Stagger delays for children */
.stagger-children > *:nth-child(1) { transition-delay: 0s; }
.stagger-children > *:nth-child(2) { transition-delay: 0.1s; }
.stagger-children > *:nth-child(3) { transition-delay: 0.2s; }
.stagger-children > *:nth-child(4) { transition-delay: 0.3s; }
.stagger-children > *:nth-child(5) { transition-delay: 0.4s; }
.stagger-children > *:nth-child(6) { transition-delay: 0.5s; }

/* Continuous Animations */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

.shimmer {
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.4) 50%, transparent 100%);
  background-size: 200% 100%;
  animation: shimmer 3s infinite;
}

@keyframes glow-pulse {
  0%, 100% { box-shadow: 0 0 20px rgba(139, 92, 246, 0.3); }
  50% { box-shadow: 0 0 40px rgba(139, 92, 246, 0.6), 0 0 60px rgba(244, 114, 182, 0.3); }
}

.glow-pulse {
  animation: glow-pulse 3s ease-in-out infinite;
}

@keyframes gradient-shift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.gradient-animated {
  background-size: 200% 200%;
  animation: gradient-shift 4s ease infinite;
}

/* 3D Tilt Card Effect */
.tilt-card {
  transform-style: preserve-3d;
  transition: transform 0.3s ease;
}

.tilt-card:hover {
  transform: perspective(1000px) rotateX(var(--rotateX, 0deg)) rotateY(var(--rotateY, 0deg));
}

/* Hover Glow Effect */
.hover-glow {
  position: relative;
}

.hover-glow::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: var(--accent-gradient);
  border-radius: inherit;
  opacity: 0;
  z-index: -1;
  filter: blur(20px);
  transition: opacity var(--transition-base);
}

.hover-glow:hover::before {
  opacity: 0.6;
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .anim-fade-up,
  .anim-scale-in,
  .anim-slide-left,
  .anim-slide-right {
    opacity: 1;
    transform: none;
  }
}

/* ==========================================
   COMPREHENSIVE MOBILE RESPONSIVE STYLES
   ========================================== */

/* Tablet Breakpoint (768px) */
@media (max-width: 768px) {
  .hero {
    min-height: auto;
    max-height: none;
    padding: 100px 0 60px;
  }
  
  .hero-container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .hero-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
    margin-bottom: 20px;
  }
  
  .hero-subtitle {
    font-size: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 30px;
  }
  
  .hero-cta-wrapper {
    align-items: center;
  }
  
  .hero-visual {
    max-width: 100%;
    margin: 0 auto;
  }
  
  /* New Hero Showcase Mobile Styles */
  .hero-showcase {
    padding: 20px 10px;
  }
  
  .showcase-device {
    max-width: 100%;
  }
  
  .device-frame {
    border-radius: 16px;
    padding: 8px;
  }
  
  .device-notch {
    width: 60px;
    height: 4px;
    margin-bottom: 8px;
  }
  
  .device-screen {
    border-radius: 8px;
  }
  
  .showcase-stats {
    position: relative;
    right: auto;
    top: auto;
    transform: none;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 24px;
    gap: 12px;
  }
  
  .stat-card {
    padding: 10px 14px;
    border-radius: 12px;
  }
  
  .stat-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
  }
  
  .stat-icon svg {
    width: 16px;
    height: 16px;
  }
  
  .stat-value {
    font-size: 0.95rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
  }
  
  .deco-1 {
    width: 150px;
    height: 150px;
    top: -30px;
    right: -30px;
  }
  
  .deco-2 {
    width: 80px;
    height: 80px;
    bottom: 10px;
    left: -20px;
  }
  
  .transformation-toggle {
    margin-bottom: 16px;
  }
  
  .toggle-btn {
    padding: 8px 16px;
    font-size: 0.7rem;
  }
  
  .mockup-container {
    height: 280px;
  }
  
  .mockup-browser {
    transform: none;
  }
  
  .mockup-browser:hover {
    transform: scale(1.01);
  }
  
  .transformation-arrow {
    width: 48px;
    height: 48px;
  }
  
  .transformation-arrow svg {
    width: 24px;
    height: 24px;
  }
  
  .floating-card {
    display: none;
  }
  
  .scroll-indicator {
    display: none;
  }
  
  .problem-solution {
    padding: 80px 0;
  }
  
  .problem-content,
  .solution-content {
    padding: 32px 24px;
  }
  
  .section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  
  .section-header {
    margin-bottom: 50px;
  }
  
  .section-subtitle {
    font-size: 1rem;
  }
  
  .portfolio {
    padding: 80px 0;
  }
  
  .services {
    padding: 80px 0;
  }
  
  .testimonials {
    padding: 80px 0;
  }
  
  .process {
    padding: 80px 0;
  }
  
  .final-cta {
    padding: 80px 0;
  }
  
  .cta-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
  }
  
  .cta-subtitle {
    font-size: 1rem;
    margin-bottom: 30px;
  }
  
  .btn {
    padding: 14px 24px;
    font-size: 0.75rem;
  }
  
  .btn-large {
    padding: 16px 32px;
    font-size: 0.8rem;
  }
}

/* Mobile Breakpoint (480px) */
@media (max-width: 480px) {
  html {
    font-size: 15px;
  }
  
  .container {
    padding: 0 16px;
  }
  
  .navbar {
    padding: 0;
  }
  
  .nav-container {
    padding: 10px 16px;
  }
  
  .logo-image {
    height: 50px;
  }
  
  .hero {
    padding: 90px 0 40px;
    min-height: auto;
  }
  
  .hero-container {
    gap: 30px;
  }
  
  .hero-tagline {
    font-size: 0.65rem;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  
  .hero-title {
    font-size: 1.6rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }
  
  .hero-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
  }
  
  .hero-cta-wrapper {
    width: 100%;
  }
  
  .hero-cta-wrapper .btn {
    width: 100%;
    justify-content: center;
  }
  
  .hero-cta-note {
    font-size: 0.8rem;
    text-align: center;
  }
  
  .hero-visual {
    padding: 0;
  }
  
  .transformation-toggle {
    padding: 4px;
    border-radius: var(--radius-md);
  }
  
  .toggle-btn {
    padding: 8px 14px;
    font-size: 0.65rem;
  }
  
  .mockup-container {
    height: 220px;
  }
  
  .browser-header {
    padding: 10px 12px;
    gap: 10px;
  }
  
  .browser-dots span {
    width: 8px;
    height: 8px;
  }
  
  .browser-address {
    padding: 6px 10px;
    font-size: 0.65rem;
  }
  
  .browser-content {
    height: 160px;
  }
  
  .mockup-label {
    bottom: -30px;
    padding: 6px 14px;
    font-size: 0.65rem;
  }
  
  .old-header {
    padding: 6px 10px;
  }
  
  .old-logo {
    font-size: 0.6rem;
  }
  
  .old-nav {
    gap: 8px;
    font-size: 0.5rem;
  }
  
  .old-hero {
    padding: 10px;
  }
  
  .old-text-block {
    height: 8px;
    margin-bottom: 6px;
  }
  
  .old-button {
    padding: 4px 12px;
    font-size: 0.5rem;
  }
  
  .old-box {
    height: 35px;
  }
  
  .transformation-arrow {
    width: 40px;
    height: 40px;
  }
  
  .transformation-arrow svg {
    width: 20px;
    height: 20px;
  }
  
  .problem-solution {
    padding: 60px 0;
  }
  
  .section-grid {
    gap: 24px;
  }
  
  .problem-content,
  .solution-content {
    padding: 24px 20px;
    border-radius: var(--radius-md);
  }
  
  .section-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .section-text {
    font-size: 0.95rem;
    margin-bottom: 20px;
  }
  
  .section-header {
    margin-bottom: 40px;
  }
  
  .section-label {
    font-size: 0.65rem;
    margin-bottom: 12px;
  }
  
  .section-subtitle {
    font-size: 0.95rem;
    line-height: 1.7;
  }
  
  .portfolio {
    padding: 60px 0;
  }
  
  .portfolio-grid {
    gap: 24px;
  }
  
  .portfolio-card {
    border-radius: var(--radius-lg);
  }
  
  .portfolio-image {
    height: 200px;
  }
  
  .portfolio-info {
    padding: 20px;
  }
  
  .portfolio-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 12px;
  }
  
  .portfolio-client {
    font-size: 1.2rem;
  }
  
  .portfolio-industry {
    font-size: 0.7rem;
  }
  
  .portfolio-description {
    font-size: 0.9rem;
    margin-bottom: 16px;
  }
  
  .portfolio-result {
    font-size: 0.8rem;
  }
  
  .section-cta {
    margin-top: 40px;
  }
  
  .section-cta .btn {
    width: 100%;
    max-width: 300px;
  }
  
  .services {
    padding: 60px 0;
  }
  
  .service-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
  }
  
  .service-icon {
    width: 52px;
    height: 52px;
    margin-bottom: 20px;
  }
  
  .service-icon svg {
    width: 28px;
    height: 28px;
  }
  
  .service-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .service-description {
    font-size: 0.9rem;
    margin-bottom: 0;
  }
  
  .testimonials {
    padding: 60px 0;
  }
  
  .testimonials-grid {
    gap: 24px;
  }
  
  .testimonial-card {
    padding: 28px 24px;
    border-radius: var(--radius-lg);
  }
  
  .testimonial-rating {
    margin-bottom: 16px;
  }
  
  .testimonial-rating svg {
    width: 16px;
    height: 16px;
  }
  
  .testimonial-quote {
    font-size: 0.9rem;
    margin-bottom: 20px;
  }
  
  .testimonial-author {
    padding-top: 16px;
    gap: 12px;
  }
  
  .author-avatar {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }
  
  .author-name {
    font-size: 1rem;
  }
  
  .author-role {
    font-size: 0.65rem;
  }
  
  .process {
    padding: 60px 0;
  }
  
  .process-steps {
    gap: 0;
  }
  
  .process-step {
    padding: 24px 20px;
    gap: 16px;
    border-radius: var(--radius-md);
  }
  
  .step-number {
    font-size: 2rem;
    min-width: 45px;
  }
  
  .step-title {
    font-size: 1.1rem;
    margin-bottom: 8px;
  }
  
  .step-description {
    font-size: 0.9rem;
  }
  
  .process-connector {
    height: 30px;
    margin-left: 32px;
  }
  
  .final-cta {
    padding: 60px 0;
  }
  
  .cta-content {
    padding: 0 8px;
  }
  
  .cta-title {
    font-size: 1.4rem;
    margin-bottom: 16px;
  }
  
  .cta-subtitle {
    font-size: 0.95rem;
    margin-bottom: 24px;
  }
  
  .cta-buttons {
    gap: 12px;
    margin-bottom: 32px;
  }
  
  .cta-buttons .btn {
    width: 100%;
  }
  
  .cta-trust {
    gap: 16px;
  }
  
  .trust-item {
    font-size: 0.7rem;
    gap: 8px;
  }
  
  .trust-item svg {
    width: 16px;
    height: 16px;
  }
  
  .footer {
    padding: 60px 0 30px;
  }
  
  .footer-content {
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-brand .logo-image {
    height: 60px;
  }
  
  .footer-tagline {
    font-size: 0.9rem;
  }
  
  .footer-links {
    gap: 30px;
  }
  
  .footer-column h4 {
    font-size: 0.7rem;
    margin-bottom: 20px;
  }
  
  .footer-column li {
    margin-bottom: 12px;
  }
  
  .footer-column a {
    font-size: 0.9rem;
  }
  
  .footer-bottom {
    padding-top: 30px;
    font-size: 0.8rem;
  }
  
  .btn {
    padding: 12px 20px;
    font-size: 0.7rem;
    border-radius: var(--radius-md);
  }
  
  .btn-large {
    padding: 14px 28px;
    font-size: 0.75rem;
  }
  
  .btn svg {
    width: 16px;
    height: 16px;
  }
}

/* Extra Small Mobile (360px and below) */
@media (max-width: 360px) {
  html {
    font-size: 14px;
  }
  
  .container {
    padding: 0 12px;
  }
  
  .hero-title {
    font-size: 1.4rem;
  }
  
  .hero-subtitle {
    font-size: 0.9rem;
  }
  
  .mockup-container {
    height: 180px;
  }
  
  .browser-content {
    height: 130px;
  }
  
  .section-title {
    font-size: 1.25rem;
  }
  
  .cta-title {
    font-size: 1.25rem;
  }
  
  .portfolio-image {
    height: 160px;
  }
  
  .process-step {
    flex-direction: column;
    text-align: center;
  }
  
  .step-number {
    min-width: auto;
  }
  
  .process-connector {
    margin-left: 0;
    margin: 0 auto;
  }
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 24px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: var(--radius-xl);
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  z-index: 9999;
  transition: all var(--transition-base);
  animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-sticky:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.45), 0 6px 16px rgba(0, 0, 0, 0.2);
}

.whatsapp-sticky svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.whatsapp-sticky span {
  white-space: nowrap;
}

@keyframes whatsappPulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.35), 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5), 0 4px 16px rgba(0, 0, 0, 0.2);
  }
}

@media (max-width: 768px) {
  .whatsapp-sticky {
    bottom: 16px;
    right: 16px;
    padding: 12px 18px;
    font-size: 0.8rem;
    gap: 8px;
  }
  
  .whatsapp-sticky svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  .whatsapp-sticky {
    padding: 12px 16px;
    font-size: 0.75rem;
  }
}

/* NEW UNIQUE FOOTER */
.footer-new {
  position: relative;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 50%, #16213e 100%);
  color: #ffffff;
  overflow: hidden;
}

.footer-glow {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 400px;
  background: radial-gradient(ellipse at center, rgba(139, 92, 246, 0.3) 0%, rgba(244, 114, 182, 0.15) 40%, transparent 70%);
  pointer-events: none;
}

.footer-cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 80px 60px;
  margin: 0 -20px;
  background: linear-gradient(135deg, rgba(139, 92, 246, 0.2) 0%, rgba(244, 114, 182, 0.1) 100%);
  border: 1px solid rgba(139, 92, 246, 0.3);
  border-radius: 24px;
  margin-top: 60px;
  margin-bottom: 80px;
}

.footer-cta-badge {
  display: inline-block;
  padding: 8px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 16px;
}

.footer-cta-title {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 12px;
  color: #ffffff;
}

.footer-cta-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  max-width: 400px;
}

.footer-cta-btn {
  flex-shrink: 0;
  white-space: nowrap;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.2fr 2fr;
  gap: 80px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-new .logo-image {
  height: 70px;
  filter: brightness(0) invert(1) drop-shadow(0 4px 12px rgba(139, 92, 246, 0.3));
  margin-bottom: 20px;
}

.footer-tagline-new {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  max-width: 280px;
  margin-bottom: 28px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--accent-gradient);
  border-color: transparent;
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(139, 92, 246, 0.4);
}

.footer-links-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.footer-column-new h4 {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: #ffffff;
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 12px;
}

.footer-column-new h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-gradient);
  border-radius: 2px;
}

.footer-column-new ul {
  list-style: none;
}

.footer-column-new li {
  margin-bottom: 14px;
}

.footer-column-new a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column-new a:hover {
  color: #ffffff;
  transform: translateX(6px);
}

.footer-location {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.9rem;
}

.footer-bottom-new {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.footer-legal-new {
  display: flex;
  align-items: center;
  gap: 20px;
}

.footer-legal-new a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-legal-new a:hover {
  color: #ffffff;
}

.footer-divider {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

@media (max-width: 900px) {
  .footer-cta-section {
    flex-direction: column;
    text-align: center;
    padding: 50px 30px;
  }
  
  .footer-cta-text {
    margin: 0 auto;
  }
  
  .footer-main {
    grid-template-columns: 1fr;
    gap: 50px;
    text-align: center;
  }
  
  .footer-brand-new {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .footer-tagline-new {
    text-align: center;
  }
  
  .footer-social {
    justify-content: center;
  }
  
  .footer-links-new {
    grid-template-columns: repeat(3, 1fr);
    text-align: left;
  }
  
  .footer-column-new h4::after {
    left: 0;
  }
}

@media (max-width: 640px) {
  .footer-cta-section {
    padding: 40px 20px;
    margin: 40px 0 60px;
  }
  
  .footer-cta-title {
    font-size: 1.6rem;
  }
  
  .footer-links-new {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }
  
  .footer-column-new h4::after {
    left: 50%;
    transform: translateX(-50%);
  }
  
  .footer-bottom-new {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}
