/* ===== RESET & BASE ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary: #ff6b35;
  --primary-dark: #e55a2b;
  --secondary: #0ea5e9;
  --dark: #0a0e1a;
  --dark-2: #131829;
  --dark-3: #1a2038;
  --light: #ffffff;
  --gray: #94a3b8;
  --gray-light: #cbd5e1;
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-hover: 0 20px 60px rgba(255, 107, 53, 0.3);
  --radius: 16px;
  --radius-sm: 8px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--dark);
  color: var(--light);
  line-height: 1.7;
  overflow-x: hidden;
  position: relative;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  cursor: pointer;
  border: none;
  font-family: inherit;
}

/* ===== FLOATING DECORATIVE ELEMENTS (FIXED) ===== */
.floating-shape {
  position: fixed;
  border-radius: 50%;
  pointer-events: none;
  z-index: -1; /* CHANGED: Behind all content */
  opacity: 0.3; /* CHANGED: Reduced opacity */
}

.shape-1 {
  width: 300px;
  height: 300px;
  background: linear-gradient(135deg, var(--primary), transparent);
  top: 10%;
  right: -150px; /* CHANGED: Moved further off-screen */
  animation: float 15s ease-in-out infinite;
}

.shape-2 {
  width: 200px;
  height: 200px;
  background: linear-gradient(135deg, var(--secondary), transparent);
  bottom: 20%;
  left: -100px; /* CHANGED: Moved further off-screen */
  animation: float 18s ease-in-out infinite reverse;
}

.shape-3 {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #a855f7, transparent);
  top: 50%;
  right: 5%;
  animation: float 12s ease-in-out infinite;
}

.gradient-blob {
  position: fixed;
  border-radius: 50%;
  filter: blur(100px); /* CHANGED: Increased blur */
  pointer-events: none;
  z-index: -1; /* CHANGED: Behind all content */
  opacity: 0.4; /* ADDED: Reduced opacity */
}

.blob-1 {
  width: 400px; /* CHANGED: Reduced size */
  height: 400px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.12), transparent);
  top: -150px;
  left: -250px;
}

.blob-2 {
  width: 500px; /* CHANGED: Reduced size */
  height: 500px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1), transparent);
  bottom: -250px;
  right: -250px;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(30px, -30px) rotate(120deg); }
  66% { transform: translate(-30px, 30px) rotate(240deg); }
}

/* ===== GLASS EFFECT ===== */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.glass-nav {
  background: rgba(10, 14, 26, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 16px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 12px 0;
  background: rgba(10, 14, 26, 0.9);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  z-index: 1001;
}

.logo-icon {
  font-size: 28px;
  filter: drop-shadow(0 0 10px var(--primary));
}

.logo-text {
  background: linear-gradient(135deg, var(--primary), #ffa07a);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.nav-links {
  display: flex;
  list-style: none;
  gap: 32px;
}

.nav-links a {
  font-size: 15px;
  font-weight: 500;
  color: var(--gray-light);
  position: relative;
}

.nav-links a:hover {
  color: var(--primary);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: var(--transition);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  padding: 10px 22px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 30px;
  font-weight: 600;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(255, 107, 53, 0.4);
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.6);
}

.mobile-toggle {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  background: transparent;
  z-index: 1001;
}

.mobile-toggle span {
  width: 100%;
  height: 2px;
  background: var(--light);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 15px;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--light);
  box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 107, 53, 0.6);
}

.btn-secondary {
  background: transparent;
  color: var(--light);
  border: 2px solid var(--glass-border);
}

.btn-secondary:hover {
  background: var(--glass-bg);
  border-color: var(--primary);
  transform: translateY(-3px);
}

.glow-btn {
  position: relative;
  overflow: hidden;
}

.glow-btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300%;
  height: 300%;
  background: radial-gradient(circle, rgba(255,255,255,0.3), transparent 60%);
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.6s;
  pointer-events: none;
}

.glow-btn:hover::before {
  transform: translate(-50%, -50%) scale(1);
}

.full-width {
  width: 100%;
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 120px 24px 60px;
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 30px;
  font-size: 14px;
  margin-bottom: 24px;
  color: var(--gray-light);
}

.badge-dot {
  width: 8px;
  height: 8px;
  background: var(--primary);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--primary);
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

.hero-title {
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  max-width: 700px;
  margin: 0 auto;
}

.stat-card {
  padding: 24px 16px;
  text-align: center;
  transition: var(--transition);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-number {
  display: block;
  font-size: 40px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

/* ===== SECTION HEADERS ===== */
section {
  padding: 100px 0;
  position: relative;
  z-index: 2; /* CHANGED: Higher z-index */
  isolation: isolate; /* ADDED: Creates stacking context */
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-tag {
  display: inline-block;
  padding: 6px 18px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  border-radius: 20px;
  font-size: 13px;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #ffffff, #cbd5e1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: 17px;
  color: var(--gray);
  max-width: 600px;
  margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.service-card {
  padding: 32px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s;
}

.service-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-hover);
  border-color: var(--primary);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-icon {
  font-size: 48px;
  margin-bottom: 20px;
  display: inline-block;
  filter: drop-shadow(0 0 20px var(--primary));
}

.service-card h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--light);
}

.service-card p {
  color: var(--gray);
  margin-bottom: 16px;
  font-size: 15px;
}

.service-features {
  list-style: none;
  margin-bottom: 20px;
}

.service-features li {
  padding: 4px 0;
  color: var(--gray-light);
  font-size: 14px;
}

.service-cta {
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
  display: inline-block;
}

.service-cta:hover {
  color: var(--primary-dark);
  transform: translateX(4px);
}

/* ===== PROCESS TIMELINE ===== */
.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--primary), var(--secondary), transparent);
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  position: relative;
}

.timeline-number {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 800;
  color: white;
  box-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
  position: relative;
  z-index: 2;
}

.timeline-content {
  flex: 1;
  padding: 24px;
}

.timeline-content h3 {
  font-size: 20px;
  margin-bottom: 8px;
  color: var(--light);
}

.timeline-content p {
  color: var(--gray);
  font-size: 15px;
}

/* ===== STATS SECTION ===== */
.stats-section {
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.05), rgba(14, 165, 233, 0.05));
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.stat-box {
  padding: 40px 24px;
  text-align: center;
  transition: var(--transition);
}

.stat-box:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
}

.stat-icon {
  font-size: 40px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 15px var(--primary));
}

.stat-value {
  font-size: 48px;
  font-weight: 800;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 8px;
}

.stat-desc {
  color: var(--gray);
  font-size: 15px;
  font-weight: 500;
}

/* ===== PORTFOLIO SECTION ===== */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.portfolio-card {
  overflow: hidden;
  position: relative;
  transition: var(--transition);
  min-height: 280px;
}

.portfolio-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
}

.portfolio-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.abstract-1 {
  background: 
    linear-gradient(135deg, rgba(255, 107, 53, 0.4), rgba(14, 165, 233, 0.3)),
    repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(255,255,255,0.05) 10px, rgba(255,255,255,0.05) 20px);
}

.abstract-2 {
  background: 
    linear-gradient(45deg, rgba(14, 165, 233, 0.5), rgba(168, 85, 247, 0.4)),
    radial-gradient(circle at 30% 50%, rgba(255,255,255,0.1) 0%, transparent 50%);
}

.abstract-3 {
  background: 
    linear-gradient(160deg, rgba(255, 107, 53, 0.5), rgba(34, 197, 94, 0.3)),
    repeating-radial-gradient(circle at 50% 50%, transparent 0, transparent 20px, rgba(255,255,255,0.05) 20px, rgba(255,255,255,0.05) 21px);
}

.portfolio-overlay {
  position: relative;
  z-index: 2;
  padding: 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: linear-gradient(180deg, transparent, rgba(10, 14, 26, 0.9));
}

.portfolio-overlay h3 {
  font-size: 22px;
  margin-bottom: 8px;
  color: white;
}

.portfolio-overlay p {
  color: var(--gray-light);
  font-size: 14px;
}

/* ===== ARTICLE SECTION (FIXED) ===== */
.article-section {
  background: linear-gradient(135deg, rgba(26, 32, 56, 0.95), rgba(10, 14, 26, 0.98)); /* CHANGED: Much stronger background */
  position: relative;
  z-index: 3; /* CHANGED: Higher z-index */
  isolation: isolate; /* ADDED: Creates new stacking context */
}

.article-wrapper {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 40px;
  background: rgba(15, 20, 35, 0.85); /* ADDED: Background for better contrast */
  position: relative;
  z-index: 4; /* ADDED: Higher z-index */
  border-radius: var(--radius); /* ADDED: Rounded corners */
}

.article-header {
  text-align: center;
  margin-bottom: 50px;
  padding-bottom: 30px;
  border-bottom: 1px solid var(--glass-border);
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-category {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 107, 53, 0.2); /* CHANGED: Stronger background */
  border: 1px solid rgba(255, 107, 53, 0.4);
  border-radius: 20px;
  font-size: 12px;
  color: var(--primary);
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.article-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  margin-bottom: 20px;
  background: linear-gradient(135deg, #ffffff, #e2e8f0); /* CHANGED: Brighter gradient */
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.3; /* CHANGED: Improved line height */
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-meta {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  color: var(--gray);
  font-size: 14px;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-content {
  font-size: 17px;
  color: #e2e8f0; /* CHANGED: Brighter text color */
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
  line-height: 1.9; /* CHANGED: Improved readability */
}

.article-content p {
  margin-bottom: 20px;
  line-height: 1.9; /* CHANGED: Better readability */
  color: #e2e8f0; /* CHANGED: Brighter text */
}

.article-heading {
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 700;
  margin: 48px 0 20px;
  color: #ffffff; /* CHANGED: Pure white for maximum visibility */
  position: relative;
  padding-left: 20px;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-heading::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  bottom: 6px;
  width: 4px;
  background: linear-gradient(180deg, var(--primary), var(--secondary));
  border-radius: 4px;
}

.article-content h3 {
  font-size: 20px;
  font-weight: 600;
  margin: 32px 0 16px;
  color: #ffffff; /* CHANGED: Pure white */
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-content a {
  color: var(--primary);
  border-bottom: 1px dashed var(--primary);
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-content a:hover {
  color: var(--primary-dark);
  border-bottom-style: solid;
}

.article-list {
  list-style: none;
  margin: 20px 0 24px;
  padding-left: 0;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-list li {
  padding: 12px 16px;
  margin-bottom: 8px;
  background: rgba(255, 255, 255, 0.08); /* CHANGED: Stronger background */
  border-left: 3px solid var(--primary);
  border-radius: 6px;
  color: #e2e8f0; /* CHANGED: Brighter text */
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.article-intro {
  padding: 30px;
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15), rgba(14, 165, 233, 0.1)); /* CHANGED: Stronger background */
  border-radius: var(--radius);
  margin-bottom: 40px;
  border: 1px solid rgba(255, 107, 53, 0.3); /* CHANGED: Stronger border */
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2); /* ADDED: Shadow for depth */
}

.article-intro p {
  margin: 0;
  font-size: 18px;
  color: #ffffff; /* CHANGED: Pure white for intro */
  line-height: 1.8;
}

/* Callout, Tip, Warning Boxes (FIXED) */
.callout-box, .tip-box, .warning-box {
  padding: 24px;
  margin: 30px 0;
  border-radius: var(--radius);
  display: flex;
  gap: 16px;
  align-items: flex-start;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.callout-box {
  background: linear-gradient(135deg, rgba(14, 165, 233, 0.15), rgba(14, 165, 233, 0.08)); /* CHANGED: Stronger */
  border-left: 4px solid var(--secondary);
}

.tip-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.15), rgba(34, 197, 94, 0.08)); /* CHANGED: Stronger */
  border-left: 4px solid #22c55e;
}

.warning-box {
  background: linear-gradient(135deg, rgba(239, 68, 68, 0.15), rgba(239, 68, 68, 0.08)); /* CHANGED: Stronger */
  border-left: 4px solid #ef4444;
}

.callout-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.callout-content h4, .tip-box h4, .warning-box h4 {
  margin-bottom: 8px;
  font-size: 18px;
  color: var(--light);
}

.quote-box {
  background: linear-gradient(135deg, rgba(168, 85, 247, 0.15), rgba(168, 85, 247, 0.08)); /* CHANGED: Stronger */
  border-left: 4px solid #a855f7;
  font-style: italic;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.quote-author {
  display: block;
  margin-top: 12px;
  font-size: 14px;
  color: var(--gray);
  font-style: normal;
}

/* Comparison Table (FIXED) */
.comparison-table {
  margin: 30px 0;
  overflow-x: auto;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.comparison-table table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(255, 255, 255, 0.06); /* CHANGED: Stronger background */
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--glass-border);
}

.comparison-table th {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  padding: 16px;
  text-align: left;
  font-weight: 600;
}

.comparison-table td {
  padding: 14px 16px;
  border-bottom: 1px solid var(--glass-border);
  color: var(--gray-light);
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

.comparison-table tr:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* Stats Box (FIXED) */
.stats-box {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  gap: 16px;
  margin: 30px 0;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.stat-item {
  background: rgba(255, 255, 255, 0.06); /* CHANGED: Stronger background */
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  padding: 20px;
  text-align: center;
}

.stat-big {
  display: block;
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 4px;
}

.stat-small {
  font-size: 13px;
  color: var(--gray);
}

/* Checklist (FIXED) */
.checklist-box {
  background: linear-gradient(135deg, rgba(34, 197, 94, 0.12), transparent); /* CHANGED: Stronger */
  border: 1px solid rgba(34, 197, 94, 0.3);
  border-radius: var(--radius);
  padding: 24px;
  margin: 30px 0;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.checklist-box ul {
  list-style: none;
  padding: 0;
}

.checklist-box li {
  padding: 10px 0;
  color: var(--gray-light);
  font-size: 16px;
}

/* Feature Cards (FIXED) */
.feature-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin: 30px 0;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.feature-card {
  background: rgba(255, 255, 255, 0.06); /* CHANGED: Stronger background */
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  transition: var(--transition);
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.feature-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.feature-card h4 {
  color: var(--primary);
  margin-bottom: 12px;
  font-size: 18px;
}

.feature-card p {
  color: var(--gray-light);
  font-size: 14px;
  margin: 0;
}

/* Pros and Cons (FIXED) */
.pros-cons {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 30px 0;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.pros, .cons {
  background: rgba(255, 255, 255, 0.06); /* CHANGED: Stronger background */
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  padding: 24px;
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.pros {
  border-left: 4px solid #22c55e;
}

.cons {
  border-left: 4px solid #ef4444;
}

.pros h4, .cons h4 {
  margin-bottom: 16px;
  font-size: 16px;
}

.pros ul, .cons ul {
  list-style: none;
  padding: 0;
}

.pros li, .cons li {
  padding: 8px 0;
  color: var(--gray-light);
  font-size: 14px;
}

/* Info Card (FIXED) */
.info-card {
  padding: 30px;
  margin: 30px 0;
  background: rgba(255, 255, 255, 0.06); /* ADDED: Background */
  border-radius: var(--radius); /* ADDED: Rounded corners */
  position: relative;
  z-index: 5; /* ADDED: Higher z-index */
}

.info-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
  font-size: 22px;
}

.info-card ul {
  list-style: none;
  padding: 0;
}

.info-card li {
  padding: 10px 0;
  color: var(--gray-light);
  font-size: 16px;
}

/* ===== FAQ SECTION ===== */
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 20px 24px;
  background: transparent;
  color: var(--light);
  font-size: 16px;
  font-weight: 600;
  text-align: left;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: var(--transition);
}

.faq-question:hover {
  color: var(--primary);
}

.faq-toggle {
  font-size: 24px;
  font-weight: 300;
  transition: var(--transition);
  color: var(--primary);
  flex-shrink: 0;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-item.active .faq-answer {
  padding: 0 24px 24px;
  max-height: 500px;
}

.faq-answer p {
  color: var(--gray-light);
  line-height: 1.7;
  font-size: 15px;
}

/* ===== TESTIMONIALS ===== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.testimonial-card {
  padding: 32px;
  transition: var(--transition);
  position: relative;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 20px;
  right: 24px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
}

.testimonial-rating {
  margin-bottom: 16px;
  font-size: 18px;
}

.testimonial-text {
  color: var(--gray-light);
  font-size: 15px;
  margin-bottom: 24px;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-initials {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: white;
  font-size: 18px;
}

.author-info strong {
  display: block;
  color: var(--light);
  margin-bottom: 2px;
}

.author-info span {
  font-size: 13px;
  color: var(--gray);
}

/* ===== CONTACT SECTION ===== */
.contact-section {
  background: linear-gradient(135deg, rgba(26, 32, 56, 0.4), rgba(10, 14, 26, 0.6));
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  max-width: 1100px;
  margin: 0 auto;
}

.contact-info, .contact-form-wrapper {
  padding: 40px;
}

.contact-info h3, .contact-form-wrapper h3 {
  font-size: 24px;
  margin-bottom: 24px;
  color: var(--light);
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
  padding: 16px;
  background: var(--glass-bg);
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  transition: var(--transition);
}

.contact-item:hover {
  border-color: var(--primary);
  transform: translateX(4px);
}

.contact-icon {
  font-size: 24px;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  color: var(--primary);
  margin-bottom: 4px;
  font-size: 14px;
}

.contact-item a, .contact-item span {
  color: var(--gray-light);
  font-size: 15px;
}

.contact-item a:hover {
  color: var(--primary);
}

.hours-list div {
  padding: 4px 0;
  color: var(--gray-light);
  font-size: 14px;
}

.hours-list span {
  color: var(--gray);
  margin-right: 8px;
}

.contact-cta-buttons {
  display: flex;
  gap: 12px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.contact-cta-buttons .btn {
  flex: 1;
  min-width: 140px;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: 14px;
  font-weight: 600;
  color: var(--gray-light);
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: var(--radius-sm);
  color: var(--light);
  font-size: 15px;
  font-family: inherit;
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.2);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.form-group select option {
  background: var(--dark-2);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-2);
  border-top: 1px solid var(--glass-border);
  padding: 60px 0 20px;
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-about {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 40px;
  height: 40px;
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 14px;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
}

.footer-col h4 {
  font-size: 16px;
  margin-bottom: 20px;
  color: var(--light);
  font-weight: 700;
}

.footer-links, .footer-contact {
  list-style: none;
  padding: 0;
}

.footer-links li, .footer-contact li {
  padding: 8px 0;
}

.footer-links a, .footer-contact a {
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
}

.footer-links a:hover, .footer-contact a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-contact li {
  color: var(--gray);
  font-size: 14px;
}

.footer-maps {
  color: var(--primary) !important;
  font-weight: 600;
}

.footer-bottom {
  text-align: center;
  padding-top: 30px;
  border-top: 1px solid var(--glass-border);
  color: var(--gray);
  font-size: 14px;
}

/* ===== REVEAL ANIMATION ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 968px) {
  .mobile-toggle {
    display: flex;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background: var(--dark-2);
    flex-direction: column;
    padding: 100px 32px 32px;
    gap: 24px;
    transition: right 0.4s ease;
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    right: 0;
  }

  .nav-cta {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .pros-cons {
    grid-template-columns: 1fr;
  }

  .article-wrapper {
    padding: 30px 20px;
  }

  .contact-info, .contact-form-wrapper {
    padding: 28px;
  }
}

@media (max-width: 640px) {
  section {
    padding: 60px 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .timeline::before {
    left: 20px;
  }

  .timeline-number {
    width: 48px;
    height: 48px;
    font-size: 18px;
  }

  .timeline-item {
    gap: 16px;
  }

  .hero {
    padding-top: 100px;
  }

  .article-meta {
    gap: 12px;
  }

  .callout-box, .tip-box, .warning-box {
    flex-direction: column;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }

  .article-wrapper {
    padding: 24px 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn {
    width: 100%;
  }
}

/* Scrollbar */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: var(--dark);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--primary), var(--primary-dark));
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primary);
}