/* PERFECT CLEAN CYBERPUNK LANDING - SUBTLE INTEGRATION */

/* === CYBERPUNK INTEGRATION === */
:root {
  /* Goedly brand colors - inherit from variables.css */
  /* --business-primary, --business-secondary, --business-accent defined in variables.css */
  
  /* Enhanced cyber glow effects - using Goedly colors */
  --cyber-glow: rgba(8, 110, 146, 0.2);        /* Goedly blue glow */
  --cyber-glow-bright: rgba(88, 183, 72, 0.25); /* Goedly green glow */
  --cyber-glow-accent: rgba(228, 226, 100, 0.2); /* Goedly yellow glow */
  
  /* Cyberpunk shadows */
  --cyber-shadow: 0 0 25px var(--cyber-glow);
  --cyber-shadow-bright: 0 0 35px var(--cyber-glow-bright);
  --cyber-shadow-accent: 0 0 30px var(--cyber-glow-accent);
}

/* === ULTRA CLEAN HERO === */

.hero-perfect {
  min-height: calc(100vh - 50px);
  display: flex;
  align-items: center;
  padding-top: var(--space-sm);
  background: 
    linear-gradient(135deg, 
      rgba(255, 255, 255, 1) 0%,
      rgba(248, 250, 252, 0.98) 50%,
      rgba(241, 245, 249, 0.95) 100%
    ),
    radial-gradient(circle at 20% 80%, var(--cyber-glow) 0%, transparent 70%),
    radial-gradient(circle at 80% 20%, var(--cyber-glow-bright) 0%, transparent 70%);
  position: relative;
  overflow: hidden;
}

.hero-perfect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 0%, var(--cyber-glow) 50%, transparent 100%),
    linear-gradient(0deg, transparent 0%, var(--cyber-glow-bright) 50%, transparent 100%);
  opacity: 0.3;
  pointer-events: none;
  animation: cyberPulse 8s ease-in-out infinite;
}

@keyframes cyberPulse {
  0%, 100% { opacity: 0.2; }
  50% { opacity: 0.4; }
}

.hero-content-perfect {
  position: relative;
  z-index: 2;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-4xl);
  align-items: center;
}

.hero-text-side {
  padding-right: var(--space-2xl);
}

.hero-title-perfect {
  font-size: clamp(3rem, 8vw, 5.5rem);
  font-weight: 800;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: var(--space-xl);
  letter-spacing: -0.02em;
  font-family: var(--font-family);
}

.hero-title-perfect .highlight {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary), var(--business-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px var(--cyber-glow-bright));
  animation: textGlow 4s ease-in-out infinite;
}

@keyframes textGlow {
  0%, 100% { filter: drop-shadow(0 0 12px var(--cyber-glow-bright)); }
  50% { filter: drop-shadow(0 0 20px var(--cyber-glow-bright)); }
}

.hero-subtitle-perfect {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-2xl);
  line-height: 1.4;
  font-weight: 400;
  max-width: 600px;
}

.hero-subtitle-perfect .emphasis {
  color: var(--text);
  font-weight: 600;
}

/* ULTIMATE CLEAN FORM */
.hero-form-perfect {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(15px);
  border: 2px solid var(--business-primary);
  border-radius: var(--radius-2xl);
  padding: var(--space-2xl);
  box-shadow: 
    var(--cyber-shadow),
    0 8px 32px rgba(0, 0, 0, 0.06);
  margin-top: var(--space-xl);
  max-width: 500px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.hero-form-perfect:hover {
  transform: translateY(-2px);
  box-shadow: 
    var(--cyber-shadow-bright),
    0 12px 40px rgba(0, 0, 0, 0.1);
  border-color: var(--business-secondary);
}

.hero-form-perfect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(102, 126, 234, 0.15), transparent);
  transition: left 0.8s;
}

.hero-form-perfect:hover::before {
  left: 100%;
}

.form-input-perfect {
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid rgba(76, 99, 210, 0.2);
  border-radius: 16px;
  color: var(--text);
  font-size: 1rem;
  padding: 18px 22px;
  margin-bottom: var(--space-lg);
  transition: all 0.3s ease;
  font-family: var(--font-family);
  position: relative;
  z-index: 2;
}

.form-input-perfect:focus {
  outline: none;
  border-color: var(--business-secondary);
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 
    0 0 0 4px var(--cyber-glow-bright),
    var(--cyber-shadow),
    0 4px 12px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.form-input-perfect::placeholder {
  color: var(--text-muted);
  font-weight: 400;
}

.btn-perfect {
  width: 100%;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary), var(--business-accent)) !important;
  color: white !important;
  border: none !important;
  border-radius: 18px !important;
  padding: 22px 34px !important;
  font-size: 1.1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94) !important;
  box-shadow: 
    var(--cyber-shadow),
    0 8px 30px rgba(0, 0, 0, 0.15) !important;
  font-family: var(--font-family) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: var(--space-sm) !important;
  position: relative !important;
  overflow: hidden !important;
  z-index: 1 !important;
  text-decoration: none !important;
}

.btn-perfect:hover {
  transform: translateY(-4px) scale(1.02) !important;
  box-shadow: 
    var(--cyber-shadow-bright),
    0 12px 50px rgba(0, 0, 0, 0.2) !important;
  color: white !important;
}

.btn-perfect::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
  transition: left 0.6s;
  z-index: -1;
}

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

.btn-perfect:active {
  transform: translateY(0);
}

/* TRUST INDICATORS - ULTRA CLEAN */
.trust-perfect {
  display: flex;
  justify-content: space-between;
  margin: var(--space-xl) 0 var(--space-2xl) 0;
  gap: var(--space-lg);
}

.trust-item-perfect {
  text-align: center;
  flex: 1;
}

.trust-number-perfect {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--business-primary);
  display: block;
  line-height: 1;
  margin-bottom: var(--space-xs);
  font-family: var(--font-family-mono);
  text-shadow: 0 0 15px var(--cyber-glow);
  animation: numberGlow 5s ease-in-out infinite;
}

@keyframes numberGlow {
  0%, 100% { text-shadow: 0 0 15px var(--cyber-glow); }
  50% { text-shadow: 0 0 25px var(--cyber-glow-bright), 0 0 35px var(--cyber-glow); }
}

.trust-label-perfect {
  font-size: 0.9rem;
  color: var(--text-secondary);
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* HERO IMAGE SIDE */
.hero-image-side {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-image-perfect {
  width: 100%;
  max-width: 480px;
  height: auto;
  border-radius: 24px;
  /* No shadow for transparent background images */
  transition: all 0.6s ease;
}

.hero-image-perfect:hover {
  transform: translateY(-8px) scale(1.02);
}

/* FLOATING ELEMENTS */
.floating-element {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyber-glow), var(--cyber-glow-bright));
  backdrop-filter: blur(15px);
  box-shadow: var(--cyber-shadow);
  animation: cyberFloat 8s ease-in-out infinite;
}

@keyframes cyberFloat {
  0%, 100% {
    transform: translateY(0px) rotate(0deg) scale(1);
    box-shadow: var(--cyber-shadow);
  }
  33% {
    transform: translateY(-25px) rotate(120deg) scale(1.1);
    box-shadow: var(--cyber-shadow-bright);
  }
  66% {
    transform: translateY(-15px) rotate(240deg) scale(0.9);
    box-shadow: var(--cyber-shadow-accent);
  }
}

.floating-1 {
  width: 80px;
  height: 80px;
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.floating-2 {
  width: 60px;
  height: 60px;
  bottom: 20%;
  left: 5%;
  animation-delay: 2s;
}

.floating-3 {
  width: 40px;
  height: 40px;
  top: 60%;
  right: 5%;
  animation-delay: 4s;
}

/* Removed - replaced with cyberFloat */

/* === PROCESS EXPLANATION SECTION === */

.process-section {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(10px);
  position: relative;
  padding: var(--space-xl) 0;
  margin-top: -var(--space-lg);
}

.process-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 40%, var(--cyber-glow) 0%, transparent 50%),
    radial-gradient(circle at 70% 60%, var(--cyber-glow-bright) 0%, transparent 50%);
  opacity: 0.1;
  pointer-events: none;
}

.process-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.process-connector {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: var(--space-xl);
  position: relative;
}

.connector-line {
  width: 2px;
  height: 40px;
  background: linear-gradient(180deg, var(--business-primary), var(--business-secondary));
  box-shadow: 0 0 10px var(--cyber-glow);
  margin-bottom: var(--space-md);
}

.connector-text {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(255, 255, 255, 0.9);
  border: 2px solid var(--business-primary);
  border-radius: var(--radius-lg);
  color: var(--business-primary);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--cyber-shadow);
  backdrop-filter: blur(10px);
}

.connector-text i {
  color: var(--business-secondary);
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.process-step-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  padding: var(--space-lg);
  background: rgba(255, 255, 255, 0.8);
  border: 2px solid transparent;
  border-radius: var(--radius-xl);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(10px);
  box-shadow: 
    0 4px 20px rgba(0, 0, 0, 0.05),
    inset 0 0 0 1px var(--cyber-glow);
  position: relative;
}

.process-step-item:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: var(--business-primary);
  box-shadow: 
    var(--cyber-shadow),
    0 8px 30px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.95);
}

.process-step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--business-accent), var(--business-secondary));
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--cyber-shadow-accent);
  z-index: 3;
}

.process-step-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  box-shadow: var(--cyber-shadow);
  flex-shrink: 0;
}

.process-step-text {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.step-title {
  font-weight: 600;
  color: var(--text);
  font-size: 1rem;
}

.step-desc {
  font-size: 0.875rem;
  color: var(--text-secondary);
  line-height: 1.4;
}

.process-time {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-xl);
  background: rgba(76, 99, 210, 0.1);
  border: 2px solid var(--business-primary);
  border-radius: var(--radius-lg);
  color: var(--business-primary);
  font-weight: 600;
  font-size: 0.95rem;
  max-width: 400px;
  margin: 0 auto;
  box-shadow: 0 0 15px var(--cyber-glow);
}

.process-time i {
  color: var(--business-secondary);
}

/* Mobile responsiveness for process section */
@media (max-width: 768px) {
  .process-steps-grid {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .process-step-item {
    padding: var(--space-md);
    text-align: left;
  }
  
  .process-step-icon {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
  
  .process-step-number {
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
    top: -8px;
    left: -8px;
  }
  
  .process-time {
    font-size: 0.875rem;
    padding: var(--space-sm) var(--space-lg);
  }
  
  .process-section {
    padding: var(--space-xl) 0;
    margin-top: -var(--space-md);
  }
  
  .connector-text {
    font-size: 0.875rem;
    padding: var(--space-xs) var(--space-md);
  }
  
  .connector-line {
    height: 30px;
  }
}

/* === GALLERY PERFECTION === */

.gallery-perfect {
  background: var(--bg-soft);
  position: relative;
  overflow: hidden;
}

.gallery-perfect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--business-secondary), transparent);
  box-shadow: 0 0 10px var(--cyber-glow-bright);
}

.gallery-slideshow-perfect {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  border-radius: var(--radius-2xl);
  overflow: hidden;
  background: white;
  border: 2px solid transparent;
  background-clip: padding-box;
  box-shadow: 
    var(--cyber-shadow),
    0 25px 60px rgba(0, 0, 0, 0.12),
    inset 0 0 0 2px var(--cyber-glow-bright);
}

.gallery-slide-perfect {
  display: none;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.gallery-slide-perfect.active {
  display: block;
  opacity: 1;
}

.slide-container-perfect {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 400px;
}

.slide-before-perfect,
.slide-after-perfect {
  position: relative;
  padding: var(--space-2xl);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.slide-before-perfect {
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
}

.slide-after-perfect {
  background: linear-gradient(135deg, var(--business-primary), var(--business-secondary));
  color: white;
  position: relative;
}

.slide-after-perfect::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.08) 50%, transparent 70%);
  animation: cyberSweep 4s ease-in-out infinite;
}

@keyframes cyberSweep {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(100%); }
}

.slide-mockup {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: var(--space-xl);
  margin-bottom: var(--space-lg);
  min-height: 200px;
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.slide-after-perfect .slide-mockup {
  background: rgba(255, 255, 255, 0.95);
  color: var(--text);
}

.slide-info-perfect h4 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

.slide-info-perfect p {
  font-size: 1rem;
  line-height: 1.5;
  opacity: 0.9;
}

.gallery-controls-perfect {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.95);
  border: 2px solid var(--business-secondary);
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: var(--cyber-shadow);
  color: var(--business-primary);
}

.gallery-controls-perfect:hover {
  background: white;
  transform: translateY(-50%) scale(1.15);
  box-shadow: var(--cyber-shadow-bright);
  border-color: var(--business-accent);
  color: var(--business-accent);
}

.gallery-prev-perfect {
  left: -25px;
}

.gallery-next-perfect {
  right: -25px;
}

.gallery-indicators-perfect {
  display: flex;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.gallery-indicator-perfect {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: rgba(76, 99, 210, 0.25);
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 0 8px var(--cyber-glow);
}

.gallery-indicator-perfect.active {
  background: var(--business-secondary);
  transform: scale(1.3);
  box-shadow: var(--cyber-shadow-bright);
}

.gallery-indicator-perfect:hover {
  background: var(--business-accent);
  transform: scale(1.1);
  box-shadow: var(--cyber-shadow-accent);
}

/* SECTION HEADERS PERFECTION */
.section-header-perfect {
  text-align: center;
  margin-bottom: var(--space-4xl);
}

.section-title-perfect {
  font-size: clamp(2.5rem, 6vw, 4rem);
  font-weight: 800;
  color: var(--text);
  margin-bottom: var(--space-lg);
  letter-spacing: -0.01em;
}

.section-subtitle-perfect {
  font-size: clamp(1.125rem, 3vw, 1.5rem);
  color: var(--text-secondary);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.4;
}

/* RESPONSIVE PERFECTION */
@media (max-width: 1024px) {
  .hero-content-perfect {
    grid-template-columns: 1fr;
    gap: var(--space-3xl);
    text-align: center;
    padding: 0 var(--space-xl);
  }
  
  .hero-text-side {
    padding-right: 0;
  }
  
  .hero-image-side {
    order: -1;
  }
  
  .hero-form-perfect {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
  
  .slide-container-perfect {
    grid-template-columns: 1fr;
  }
  
  .trust-perfect {
    justify-content: center;
    flex-wrap: wrap;
    gap: var(--space-md);
  }
  
  .floating-element {
    opacity: 0.7;
  }
}

@media (max-width: 768px) {
  .hero-content-perfect {
    padding: 0 var(--space-lg);
  }
  
  .hero-form-perfect {
    margin-top: var(--space-lg);
    padding: var(--space-xl);
  }
  
  .form-input-perfect {
    padding: 18px 22px;
    font-size: 1rem;
  }
  
  .btn-perfect {
    padding: 18px 28px;
    font-size: 1rem;
  }
  
  .trust-perfect {
    flex-direction: column;
    gap: var(--space-md);
  }
  
  .trust-number-perfect {
    font-size: 2rem;
  }
  
  .floating-element {
    display: none;
  }
  
  /* Ensure no overlapping on mobile */
  .perfect-section {
    padding: clamp(3rem, 8vw, 6rem) 0;
  }
  
  .gallery-controls-perfect {
    width: 48px;
    height: 48px;
  }
}

/* === SUBTLE CYBERPUNK BUTTONS === */

/* Main cyber button - integrates with company styles */
.btn-cyber {
  background: var(--business-primary) !important;
  color: white !important;
  border: 2px solid transparent !important;
  border-radius: var(--radius-lg) !important;
  font-weight: var(--font-weight-semibold) !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-cyber::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
  z-index: 0;
}

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

.btn-cyber:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--cyber-shadow) !important;
  background: var(--business-accent) !important;
  color: white !important;
}

/* Cyber accent button - for featured items */
.btn-cyber-accent {
  background: var(--business-accent) !important;
  color: white !important;
  border: 2px solid transparent !important;
  border-radius: var(--radius-lg) !important;
  font-weight: var(--font-weight-semibold) !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow-md) !important;
}

.btn-cyber-accent::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  transition: left 0.5s;
  z-index: 0;
}

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

.btn-cyber-accent:hover {
  transform: translateY(-2px) !important;
  box-shadow: var(--cyber-shadow-accent) !important;
  background: #d97706 !important;
  color: white !important;
}

/* Cyber ghost button - subtle outline style */
.btn-cyber-ghost {
  background: rgba(255, 255, 255, 0.95) !important; 
  color: var(--business-primary) !important;
  border: 2px solid var(--business-primary) !important;
  border-radius: var(--radius-lg) !important;
  font-weight: var(--font-weight-semibold) !important;
  text-decoration: none !important;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease !important;
  box-shadow: var(--shadow) !important;
  backdrop-filter: blur(8px);
}

.btn-cyber-ghost::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--subtle-glow-bright), transparent);
  transition: left 0.5s;
  z-index: 0;
}

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

.btn-cyber-ghost:hover {
  background: var(--business-primary) !important;
  color: white !important;
  transform: translateY(-2px) !important;
  box-shadow: var(--cyber-shadow) !important;
  border-color: var(--business-secondary) !important;
}

/* Button content positioning */
.btn-cyber > *,
.btn-cyber-accent > *,
.btn-cyber-ghost > * {
  position: relative;
  z-index: 1;
}

/* === MAGIC EXPLANATION LINK === */

.magic-explanation {
  text-align: center;
  margin-top: var(--space-lg);
}

.magic-link {
  display: inline-flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-lg);
  background: rgba(76, 99, 210, 0.05);
  border: 2px solid transparent;
  border-radius: var(--radius-lg);
  color: var(--business-primary);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  backdrop-filter: blur(8px);
  position: relative;
  overflow: hidden;
}

.magic-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, var(--cyber-glow-bright), transparent);
  transition: left 0.6s;
  z-index: 0;
}

.magic-link:hover::before {
  left: 100%;
}

.magic-link:hover {
  background: rgba(102, 126, 234, 0.1);
  border-color: var(--business-secondary);
  transform: translateY(-2px);
  box-shadow: var(--cyber-shadow);
  color: var(--business-secondary);
}

.magic-link i:first-child {
  color: var(--business-accent);
  animation: sparkle 2s ease-in-out infinite;
}

.magic-link i:last-child {
  color: var(--business-secondary);
  animation: bounce 2s ease-in-out infinite;
}

.magic-link span {
  position: relative;
  z-index: 1;
}

@keyframes sparkle {
  0%, 100% { transform: rotate(0deg) scale(1); }
  25% { transform: rotate(-10deg) scale(1.1); }
  50% { transform: rotate(10deg) scale(1.05); }
  75% { transform: rotate(-5deg) scale(1.1); }
}

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-3px); }
}

/* Mobile responsive magic link */
@media (max-width: 768px) {
  .magic-explanation {
    margin-top: var(--space-md);
  }
  
  .magic-link {
    font-size: 0.85rem;
    padding: var(--space-xs) var(--space-md);
    gap: var(--space-xs);
  }
}

/* MICRO INTERACTIONS */
.hero-form-perfect .form-input-perfect:focus + .btn-perfect {
  box-shadow: 
    var(--cyber-shadow-bright),
    0 8px 30px rgba(0, 0, 0, 0.15);
}

/* ULTRA SMOOTH ANIMATIONS */
* {
  scroll-behavior: smooth;
}

.hero-title-perfect,
.hero-subtitle-perfect,
.hero-form-perfect {
  animation: fadeInUp 0.8s ease-out;
}

.hero-image-perfect {
  animation: fadeInRight 1s ease-out 0.3s both;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* PERFECT SPACING SYSTEM */
.perfect-section {
  padding: clamp(4rem, 10vw, 8rem) 0;
  position: relative;
}

.perfect-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 var(--space-2xl);
}

/* CYBERPUNK MAGICAL TOUCHES */

/* Subtle cursor effects */
.hero-form-perfect,
.gallery-slideshow-perfect,
.price-card {
  cursor: default;
}

.btn-perfect,
.btn-cyber,
.btn-cyber-accent,
.btn-cyber-ghost {
  cursor: pointer;
}

/* Magic glow on focus/interaction */
.form-input-perfect:focus,
.btn-perfect:hover,
.btn-cyber:hover,
.btn-cyber-accent:hover,
.btn-cyber-ghost:hover {
  z-index: 10;
}

/* Prevent text selection on interactive elements */
.btn-perfect,
.btn-cyber,
.btn-cyber-accent,
.btn-cyber-ghost,
.gallery-controls-perfect,
.gallery-indicator-perfect {
  user-select: none;
  -webkit-user-select: none;
  -webkit-touch-callout: none;
}

/* Enhanced accessibility and no overlapping */
.skip-to-content:focus {
  z-index: 9999;
}

/* Body spacing for fixed header */
body {
  padding-top: 50px;
}

/* Hide skip to content link */
.skip-to-content {
  position: absolute;
  top: -100px;
  left: -100px;
  opacity: 0;
  pointer-events: none;
}

/* Ensure header doesn't overlap content */
.header {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(76, 99, 210, 0.1);
  box-shadow: 0 2px 20px rgba(76, 99, 210, 0.08);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.99);
  box-shadow: var(--cyber-shadow);
}

/* Improved touch targets for mobile */
@media (max-width: 768px) {
  .perfect-container {
    padding: 0 var(--space-lg);
  }
  
  .btn-cyber,
  .btn-cyber-accent, 
  .btn-cyber-ghost {
    min-height: 48px;
    touch-action: manipulation;
  }
  
  .gallery-controls-perfect {
    min-width: 48px;
    min-height: 48px;
    touch-action: manipulation;
  }
  
  .gallery-indicator-perfect {
    min-width: 24px;
    min-height: 24px;
    touch-action: manipulation;
  }
}

/* === RESPONSIVE FAQ GRID === */
.faq-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

/* Tablet - 2 columns */
@media (max-width: 1024px) {
  .faq-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
  }
}

/* Mobile - 1 column */
@media (max-width: 640px) {
  .faq-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }
}