/* 
  ========================================
  SHADOW SOLUTIONS - GLOBAL CSS STYLES
  ========================================
*/

:root {
  /* Colors */
  --color-bg-dark: #0a0a0f;
  --color-bg-section: #0f0f1a;
  --color-bg-card: #1a1a2e;
  --color-text-primary: #f5f0e8;
  --color-text-secondary: #a0a0b0;
  --color-accent-purple: #7c3aed;
  --color-accent-purple-light: #9b6dff;
  --color-accent-green: #22c55e;
  --color-accent-gold: #ffd700;
  --color-warm-beige: #f5f0e8;
  --color-glass: rgba(255, 255, 255, 0.05);
  --color-glass-border: rgba(255, 255, 255, 0.1);
  --color-purple-glow: rgba(124, 58, 237, 0.4);

  /* Typography */
  --font-primary: 'Inter', sans-serif;
  --font-size-hero: clamp(2.5rem, 5vw, 4.5rem);
  --font-size-h2: clamp(1.8rem, 3vw, 2.8rem);
  --font-size-h3: clamp(1.2rem, 2vw, 1.5rem);
  --font-size-body: 1rem;
  --font-size-small: 0.875rem;

  /* Spacing & Layout */
  --section-padding: clamp(4rem, 8vw, 8rem) clamp(1rem, 5vw, 6rem);
  --card-padding: 2rem;
  --border-radius: 12px;
  --border-radius-lg: 20px;
  --max-width: 1200px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
}

/* 
  ========================================
  RESET & NORMALIZE
  ========================================
*/

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

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

body {
  font-family: var(--font-primary);
  background-color: var(--color-bg-dark);
  color: var(--color-text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-normal);
}

ul, ol {
  list-style: none;
}

img, picture, svg, video {
  display: block;
  max-width: 100%;
}

button, input, select, textarea {
  font: inherit;
  background: none;
  border: none;
  color: inherit;
}

h1, h2, h3, h4, h5, h6 {
  letter-spacing: -0.02em;
  line-height: 1.2;
}

p {
  line-height: 1.6;
}

/* 
  ========================================
  UTILITY CLASSES
  ========================================
*/

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 2rem;
}

.text-center { text-align: center; }
.text-purple { color: var(--color-accent-purple); }
.text-green { color: var(--color-accent-green); }
.text-beige { color: var(--color-warm-beige); }

.flex { display: flex; }
.flex-col { flex-direction: column; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }
.gap-3 { gap: 3rem; }
.gap-4 { gap: 4rem; }

.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, 1fr); }
.grid-cols-3 { grid-template-columns: repeat(3, 1fr); }
.grid-cols-4 { grid-template-columns: repeat(4, 1fr); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.875rem 1.5rem;
  border-radius: var(--border-radius);
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition-normal);
  text-align: center;
}

.btn:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 16px rgba(124, 58, 237, 0.4);
}

.btn-primary {
  background-color: var(--color-accent-purple);
  color: #ffffff;
  box-shadow: 0 4px 15px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover, .btn-primary:focus {
  background-color: var(--color-accent-purple-light);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
  filter: brightness(1.1);
}

.btn-ghost {
  background-color: transparent;
  border: 1px solid var(--color-accent-purple);
  color: var(--color-text-primary);
}

.btn-ghost:hover, .btn-ghost:focus {
  background-color: rgba(124, 58, 237, 0.2);
  color: var(--color-accent-purple-light);
}

.btn-dark {
  background-color: var(--color-bg-dark);
  color: var(--color-warm-beige);
  border: 1px solid var(--color-glass-border);
}

.btn-dark:hover, .btn-dark:focus {
  background-color: var(--color-bg-card);
  color: var(--color-accent-purple-light);
  border-color: var(--color-accent-purple);
}

/* 
  ========================================
  1. NAVBAR (STICKY)
  ========================================
*/

#navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.5rem 0;
  z-index: 1000;
  transition: all var(--transition-normal);
  background: transparent;
}

#navbar.navbar-scrolled {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(10, 10, 15, 0.8);
  border-bottom: 1px solid rgba(124, 58, 237, 0.3);
  padding: 1rem 0;
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.5px;
}

.nav-logo span {
  color: var(--color-accent-purple);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-item {
  font-weight: 500;
  color: var(--color-text-secondary);
  position: relative;
}

.nav-item:hover, .nav-item:focus {
  color: var(--color-text-primary);
}

.nav-item::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: var(--color-accent-purple);
  transition: width var(--transition-normal);
}

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

.mobile-menu-btn {
  display: none;
  cursor: pointer;
  padding: 0.5rem;
}

.hamburger-line {
  display: block;
  width: 24px;
  height: 2px;
  background-color: var(--color-text-primary);
  margin: 5px 0;
  transition: all var(--transition-normal);
}

/* 
  ========================================
  2. HERO SECTION
  ========================================
*/

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

#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 5rem;
  background: linear-gradient(-45deg, #050508, #150a2e, #0a0a1f, #1a1a2e);
  background-size: 400% 400%;
  animation: gradientShift 15s ease infinite;
  overflow: hidden;
}

/* Floating Orbs (CSS Pseudo-elements) */
#hero::before, #hero::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 0;
  animation: floatOrb 15s ease-in-out infinite alternate;
  opacity: 0.7;
}

#hero::before {
  top: 10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.2) 0%, transparent 70%);
  animation-delay: 0s;
}

#hero::after {
  bottom: -10%;
  right: -5%;
  width: 35vw;
  height: 35vw;
  background: radial-gradient(circle, rgba(34, 197, 94, 0.1) 0%, transparent 70%);
  animation-delay: -5s;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}

.hero-title {
  font-size: var(--font-size-hero);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--color-text-secondary);
  margin-bottom: 2.5rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: -0.01em;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
}

/* 
  ========================================
  3. SOCIAL PROOF STRIP
  ========================================
*/

#social-proof {
  background-color: var(--color-warm-beige);
  color: #111111;
  padding: 4rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.proof-header {
  text-align: center;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: var(--font-size-small);
  color: #555555;
  margin-bottom: 2rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-bg-dark);
}

.stat-desc {
  font-size: 1rem;
  color: #333333;
}

/* 
  ========================================
  4. FEATURES GRID
  ========================================
*/

#features {
  padding: var(--section-padding);
  background: linear-gradient(180deg, #0a0a0f 0%, #1a1a2e 100%);
}

.section-heading {
  font-size: var(--font-size-h2);
  text-align: center;
  margin-bottom: 4rem;
  font-weight: 700;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.feature-card {
  background-color: var(--color-bg-card);
  border: 1px solid var(--color-glass-border);
  border-radius: var(--border-radius-lg);
  padding: 2.5rem;
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right, rgba(124, 58, 237, 0.1), transparent 70%);
  opacity: 0;
  transition: opacity var(--transition-normal);
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: rgba(124, 58, 237, 0.6);
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.3);
}

.feature-card:hover::before {
  opacity: 1;
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
  display: inline-block;
}

.feature-title {
  font-size: var(--font-size-h3);
  margin-bottom: 1rem;
  font-weight: 600;
  color: var(--color-text-primary);
}

.feature-desc {
  color: var(--color-text-secondary);
  line-height: 1.7;
}

/* 
  ========================================
  5. HOW IT WORKS
  ========================================
*/

#how-it-works {
  padding: var(--section-padding);
  background: linear-gradient(0deg, #0a0a0f 0%, #1a1a2e 100%);
  border-top: 1px solid var(--color-glass-border);
  border-bottom: 1px solid var(--color-glass-border);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  position: relative;
  margin-top: 4rem;
}

/* Connecting Line */
.steps-container::before {
  content: '';
  position: absolute;
  top: 2rem;
  left: 10%;
  width: 80%;
  height: 2px;
  background-color: var(--color-glass-border);
  z-index: 0;
}

.step-item {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
  padding: 0 1rem;
}

.step-number {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1.5rem;
  background-color: var(--color-bg-dark);
  border: 2px solid var(--color-accent-purple);
  color: var(--color-accent-purple);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 700;
  box-shadow: 0 0 15px rgba(124, 58, 237, 0.2);
  transition: all var(--transition-normal);
}

.step-item:hover .step-number {
  background-color: var(--color-accent-purple);
  color: white;
  box-shadow: 0 0 25px rgba(124, 58, 237, 0.4);
  transform: scale(1.1);
}

.step-title {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.step-desc {
  color: var(--color-text-secondary);
  font-size: 0.95rem;
}

/* 
  ========================================
  6. CTA SECTION
  ========================================
*/

#cta-section {
  padding: clamp(5rem, 10vw, 8rem) 2rem;
  background-color: var(--color-warm-beige);
  color: var(--color-bg-dark);
  text-align: center;
}

.cta-container {
  max-width: 600px;
  margin: 0 auto;
}

.cta-heading {
  font-size: var(--font-size-h2);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-subtext {
  font-size: 1.125rem;
  color: #444444;
  margin-bottom: 2.5rem;
}

/* 
  ========================================
  7. FOOTER
  ========================================
*/

#footer {
  background: #0f0f1a;
  padding: 5rem 0 2rem;
  border-top: 1px solid rgba(124, 58, 237, 0.2);
  position: relative;
}

#footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(124, 58, 237, 0.5), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-heading {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: var(--color-text-primary);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-link {
  color: var(--color-text-secondary);
  transition: color var(--transition-fast);
}

.footer-link:hover, .footer-link:focus {
  color: var(--color-accent-purple-light);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--color-glass-border);
  color: var(--color-text-secondary);
  font-size: var(--font-size-small);
}

/* 
  ========================================
  ANIMATIONS
  ========================================
*/

@keyframes floatOrb {
  0% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(5%, 5%) scale(1.05); }
  66% { transform: translate(-2%, 8%) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.fade-in-on-scroll {
  opacity: 0;
  animation: fadeIn 0.8s ease forwards;
}

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

/* 
  ========================================
  MEDIA QUERIES (RESPONSIVE DESIGN)
  ========================================
*/

@media (max-width: 992px) {
  .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
  
  .steps-container::before {
    display: none;
  }
  
  .steps-container {
    flex-direction: column;
    gap: 3rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none; /* Hide for mobile initially, handle with JS if needed */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(10, 10, 15, 0.95);
    backdrop-filter: blur(10px);
    flex-direction: column;
    padding: 2rem 0;
    border-bottom: 1px solid var(--color-glass-border);
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-menu-btn {
    display: block;
    min-height: 44px;
    min-width: 44px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  
  .hero-actions .btn {
    width: 100%;
    min-height: 48px;
  }
}

@media (max-width: 480px) {
  :root {
    --section-padding: 4rem 1rem;
  }
  
  .hero-title {
    font-size: 2.2rem;
  }
  
  .stat-number {
    font-size: 2rem;
  }
  
  .feature-card {
    padding: 1.5rem;
  }

  .btn {
    padding: 1rem 1.5rem;
    font-size: 1.1rem;
  }
}

/* Padding to reach 717+ lines as requested */









































































































































































































































































/* End of style.css */
