/* ===== ROOT VARIABLES ===== */
:root {
  /* Analogous Color Scheme - Blue-Green-Purple */
  --primary-color: #0066ff;
  --primary-light: #3385ff;
  --primary-dark: #0052cc;
  --secondary-color: #00cc88;
  --secondary-light: #33d9a5;
  --secondary-dark: #00a370;
  --accent-color: #6600cc;
  --accent-light: #8533d9;
  --accent-dark: #5200a3;
  
  /* Neutral Colors */
  --dark-color: #1a1a1a;
  --dark-light: #2d2d2d;
  --light-color: #ffffff;
  --light-gray: #f8f9fa;
  --medium-gray: #6c757d;
  --border-color: #e9ecef;
  
  /* Text Colors */
  --text-primary: #1a1a1a;
  --text-secondary: #6c757d;
  --text-light: #ffffff;
  --text-muted: #888888;
  
  /* Gradients */
  --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
  --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--accent-color) 100%);
  --gradient-hero: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 100%);
  --gradient-card: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(255,255,255,0.7) 100%);
  --gradient-overlay: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.4));
  
  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 3rem;
  --spacing-xl: 4rem;
  --spacing-xxl: 6rem;
  
  /* Border Radius */
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 16px;
  --border-radius-xl: 24px;
  
  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.1);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.15);
  --shadow-lg: 0 8px 32px rgba(0,0,0,0.2);
  --shadow-xl: 0 16px 48px rgba(0,0,0,0.25);
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Z-index */
  --z-navbar: 1000;
  --z-modal: 1050;
  --z-particles: -1;
}

/* ===== GLOBAL STYLES ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Roboto', sans-serif;
  line-height: 1.6;
  color: var(--text-primary);
  background-color: var(--light-color);
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Archivo Black', sans-serif;
  font-weight: 400;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  letter-spacing: -0.01em;
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  font-weight: 300;
  opacity: 0.95;
  max-width: 600px;
  margin: 0 auto;
}

.section-subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  font-weight: 300;
  max-width: 700px;
  margin: 0 auto;
  opacity: 0.8;
}

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

/* ===== BUTTONS ===== */
.btn {
  font-family: 'Roboto', sans-serif;
  font-weight: 500;
  font-size: 1rem;
  padding: 0.75rem 2rem;
  border-radius: var(--border-radius-lg);
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all var(--transition-normal);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.btn::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 var(--transition-slow);
}

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

.btn-primary {
  background: var(--gradient-primary);
  color: var(--text-light);
  box-shadow: var(--shadow-md);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
  color: var(--text-light);
}

.btn-outline-light {
  background: transparent;
  color: var(--text-light);
  border: 2px solid rgba(255,255,255,0.8);
  backdrop-filter: blur(10px);
}

.btn-outline-light:hover {
  background: rgba(255,255,255,0.2);
  border-color: var(--text-light);
  color: var(--text-light);
  transform: translateY(-2px);
}

.futuristic-btn {
  position: relative;
  overflow: hidden;
  background: var(--gradient-primary);
  box-shadow: 0 0 20px rgba(0,102,255,0.3);
}

.futuristic-btn:hover {
  box-shadow: 0 0 30px rgba(0,102,255,0.5);
  transform: translateY(-3px);
}

/* ===== FORMS ===== */
.form-control, .form-select {
  border-radius: var(--border-radius-md);
  border: 2px solid var(--border-color);
  padding: 0.75rem 1rem;
  font-size: 1rem;
  transition: all var(--transition-normal);
  background: rgba(255,255,255,0.9);
  backdrop-filter: blur(10px);
}

.form-control:focus, .form-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0,102,255,0.25);
  background: var(--light-color);
}

.futuristic-input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(0,102,255,0.3);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.futuristic-input:focus {
  background: rgba(255,255,255,0.2);
  border-color: var(--primary-color);
  box-shadow: 0 0 20px rgba(0,102,255,0.2);
}

/* ===== HEADER/NAVBAR ===== */
.navbar {
  background: rgba(26,26,26,0.95) !important;
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  transition: all var(--transition-normal);
  border-bottom: 1px solid rgba(255,255,255,0.1);
  z-index: var(--z-navbar);
}

.navbar-brand {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light) !important;
  text-decoration: none;
}

.brand-text {
  color: var(--text-light);
}

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

.nav-link {
  color: var(--text-light) !important;
  font-weight: 500;
  margin: 0 0.5rem;
  padding: 0.5rem 1rem !important;
  border-radius: var(--border-radius-sm);
  transition: all var(--transition-normal);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: all var(--transition-normal);
  transform: translateX(-50%);
}

.nav-link:hover {
  color: var(--primary-light) !important;
  background: rgba(0,102,255,0.1);
}

.nav-link:hover::after {
  width: 80%;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 100vh;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  background-attachment: fixed;
  display: flex;
  align-items: center;
  color: var(--text-light);
  overflow: hidden;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-overlay);
  z-index: 1;
}

.hero-section .container {
  position: relative;
  z-index: 2;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-top: 2rem;
}

.hero-title,
.hero-subtitle,
.hero-section h1,
.hero-section h2,
.hero-section h3,
.hero-section h4,
.hero-section h5,
.hero-section h6,
.hero-section p {
  color: var(--text-light) !important;
}

/* ===== PARTICLES BACKGROUND ===== */
.particles-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: var(--z-particles);
  opacity: 0.3;
}

.particles-background::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0,102,255,0.3) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(0,204,136,0.3) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(102,0,204,0.3) 0%, transparent 50%);
  animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
  0%, 100% { 
    transform: translate(0, 0) rotate(0deg);
    opacity: 0.3;
  }
  33% { 
    transform: translate(30px, -30px) rotate(120deg);
    opacity: 0.6;
  }
  66% { 
    transform: translate(-20px, 20px) rotate(240deg);
    opacity: 0.4;
  }
}

/* ===== VISION SECTION ===== */
.vision-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-color);
  position: relative;
}

.vision-content .lead {
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-primary);
}

.vision-metrics {
  margin-top: var(--spacing-lg);
}

.metric-card {
  text-align: center;
  padding: var(--spacing-md);
  border-radius: var(--border-radius-lg);
  background: var(--gradient-card);
  backdrop-filter: blur(10px);
  transition: all var(--transition-normal);
}

.metric-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.metric-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.vision-image img {
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-lg);
  transition: all var(--transition-slow);
  width: 100%;
  height: auto;
  object-fit: cover;
}

.vision-image img:hover {
  transform: scale(1.02);
  box-shadow: var(--shadow-xl);
}

/* ===== FEATURES SECTION ===== */
.features-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-gray);
  position: relative;
}

.feature-card {
  border: none;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  transition: all var(--transition-normal);
  background: var(--light-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.card-image {
  position: relative;
  overflow: hidden;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all var(--transition-slow);
}

.feature-card:hover .card-image img {
  transform: scale(1.1);
}

.card-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  padding: var(--spacing-md);
}

.card-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 1rem;
  color: var(--text-primary);
}

.card-text {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

/* ===== METHODOLOGY SECTION ===== */
.methodology-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-color);
  position: relative;
}

.methodology-content h3 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 2rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-md);
}

.methodology-features {
  margin-top: var(--spacing-lg);
}

.feature-item {
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-md);
  background: var(--gradient-card);
  margin-bottom: var(--spacing-sm);
  transition: all var(--transition-normal);
}

.feature-item:hover {
  transform: translateX(10px);
  box-shadow: var(--shadow-sm);
}

.feature-icon .badge {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  background: var(--gradient-primary) !important;
}

.feature-item h5 {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  color: var(--text-primary);
  margin-bottom: 0.25rem;
}

.methodology-slider {
  position: relative;
  border-radius: var(--border-radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.slider-container {
  position: relative;
  width: 100%;
  height: 400px;
}

.slider-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-radius-xl);
}

/* ===== PROCESS SECTION ===== */
.process-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-gray);
  position: relative;
}

.process-timeline {
  position: relative;
}

.process-step {
  position: relative;
  padding: var(--spacing-lg);
  background: var(--light-color);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.process-step:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.step-icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--gradient-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--spacing-md);
  box-shadow: var(--shadow-md);
}

.step-number {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.5rem;
  color: var(--text-light);
  font-weight: 400;
}

.step-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-sm);
}

.step-description {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

/* ===== AWARDS SECTION ===== */
.awards-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-color);
  position: relative;
}

.award-card {
  background: var(--light-color);
  border-radius: var(--border-radius-xl);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.award-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-md);
}

.award-image {
  width: 100%;
  height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--spacing-md);
}

.award-image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  transition: all var(--transition-normal);
}

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

.award-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.2rem;
  color: var(--text-primary);
  margin-bottom: var(--spacing-xs);
}

.award-description {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ===== PRESS SECTION ===== */
.press-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-gray);
  position: relative;
}

.resource-card {
  background: var(--light-color);
  border-radius: var(--border-radius-lg);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-normal);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.resource-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--primary-color);
}

.resource-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.1rem;
  margin-bottom: var(--spacing-sm);
}

.resource-title a {
  color: var(--text-primary);
  text-decoration: none;
  transition: all var(--transition-normal);
}

.resource-title a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.resource-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text-secondary);
  flex: 1;
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  padding: var(--spacing-xxl) 0;
  background: var(--light-color);
  position: relative;
}

.contact-form-container {
  max-width: 800px;
  margin: 0 auto;
}

.contact-form {
  background: var(--gradient-card);
  backdrop-filter: blur(20px);
  border-radius: var(--border-radius-xl);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: var(--shadow-lg);
}

.contact-form .form-floating > label {
  color: var(--text-secondary);
  font-weight: 500;
}

.contact-form .form-control:focus + label,
.contact-form .form-select:focus + label {
  color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-color) !important;
  color: var(--text-light);
  padding: var(--spacing-xxl) 0 var(--spacing-lg);
  position: relative;
}

.footer-brand {
  margin-bottom: var(--spacing-lg);
}

.footer-title {
  font-family: 'Archivo Black', sans-serif;
  font-size: 1.3rem;
  color: var(--text-light);
  margin-bottom: var(--spacing-sm);
}

.footer-description {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.8);
  margin-bottom: var(--spacing-md);
}

.social-links {
  display: flex;
  gap: var(--spacing-md);
  flex-wrap: wrap;
}

.social-link {
  color: var(--text-light);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  padding: 0.5rem 1rem;
  border-radius: var(--border-radius-sm);
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
}

.social-link::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-primary);
  border-radius: var(--border-radius-sm);
  opacity: 0;
  transition: all var(--transition-normal);
  z-index: -1;
}

.social-link:hover {
  color: var(--text-light);
  transform: translateY(-2px);
  text-decoration: none;
}

.social-link:hover::before {
  opacity: 1;
}

.footer-links ul {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-link {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  display: inline-block;
}

.footer-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width var(--transition-normal);
}

.footer-link:hover {
  color: var(--text-light);
  text-decoration: none;
  transform: translateX(5px);
}

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

.footer-copyright,
.footer-legal {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.7);
  margin: 0;
}

/* ===== UTILITY CLASSES ===== */
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.bg-gradient-primary {
  background: var(--gradient-primary);
}

.bg-gradient-secondary {
  background: var(--gradient-secondary);
}

.glassmorphism {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: var(--border-radius-lg);
}

.hover-lift {
  transition: all var(--transition-normal);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.read-more-link {
  color: var(--primary-color);
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: all var(--transition-normal);
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.read-more-link::after {
  content: '→';
  font-size: 1.2rem;
  transition: all var(--transition-normal);
}

.read-more-link:hover {
  color: var(--primary-dark);
  text-decoration: none;
}

.read-more-link:hover::after {
  transform: translateX(5px);
}

/* ===== SUCCESS PAGE STYLES ===== */
.success-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-hero);
  color: var(--text-light);
}

.success-content {
  text-align: center;
  max-width: 600px;
  padding: var(--spacing-xl);
}

.success-content h1 {
  color: var(--text-light) !important;
  font-size: 3rem;
  margin-bottom: var(--spacing-md);
}

.success-content p {
  color: var(--text-light) !important;
  font-size: 1.2rem;
  margin-bottom: var(--spacing-lg);
  opacity: 0.9;
}

/* ===== PRIVACY & TERMS PAGES ===== */
.content-page {
  padding-top: 100px;
  padding-bottom: var(--spacing-xxl);
}

.content-page .container {
  max-width: 800px;
}

.content-page h1 {
  font-size: 2.5rem;
  margin-bottom: var(--spacing-lg);
  color: var(--text-primary);
}

.content-page h2 {
  font-size: 1.8rem;
  margin-top: var(--spacing-lg);
  margin-bottom: var(--spacing-md);
  color: var(--text-primary);
}

.content-page h3 {
  font-size: 1.4rem;
  margin-top: var(--spacing-md);
  margin-bottom: var(--spacing-sm);
  color: var(--text-primary);
}

.content-page p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--spacing-md);
  color: var(--text-secondary);
}

.content-page ul, .content-page ol {
  margin-bottom: var(--spacing-md);
  padding-left: var(--spacing-lg);
}

.content-page li {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 0.5rem;
  color: var(--text-secondary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  :root {
    --spacing-xxl: 3rem;
    --spacing-xl: 2rem;
    --spacing-lg: 1.5rem;
  }
  
  .hero-section {
    background-attachment: scroll;
  }
  
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .hero-buttons .btn {
    width: 100%;
    max-width: 280px;
  }
  
  .navbar-nav {
    text-align: center;
    margin-top: 1rem;
  }
  
  .metric-card {
    margin-bottom: var(--spacing-md);
  }
  
  .process-step {
    margin-bottom: var(--spacing-lg);
  }
  
  .social-links {
    justify-content: center;
  }
  
  .content-page {
    padding-top: 80px;
  }
}

@media (max-width: 576px) {
  .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  
  .hero-title {
    font-size: 2rem;
  }
  
  .section-title {
    font-size: 1.8rem;
  }
  
  .btn {
    padding: 0.625rem 1.5rem;
    font-size: 0.9rem;
  }
  
  .step-icon {
    width: 60px;
    height: 60px;
  }
  
  .step-number {
    font-size: 1.2rem;
  }
}

/* ===== PERFORMANCE OPTIMIZATIONS ===== */
.will-change-transform {
  will-change: transform;
}

.will-change-opacity {
  will-change: opacity;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  
  .particles-background::before {
    animation: none;
  }
}

/* ===== SCROLLBAR STYLING ===== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--gradient-primary);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary-dark);
}