@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&family=Space+Grotesk:wght@600;700&display=swap');

:root {
  --primary: #0066ff;
  --primary-dark: #0052cc;
  --secondary: #00d9ff;
  --dark: #0a0e27;
  --dark-2: #131829;
  --dark-3: #1a1f3a;
  --text: #e8edf5;
  --text-muted: #9ca9c0;
  --accent: #00ffaa;
  --white: #ffffff;
}

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

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

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

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

/* Navigation */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.logo i {
  color: var(--primary);
  font-size: 1.75rem;
}

.nav-links {
  display: flex;
  gap: 48px;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

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

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.mobile-menu {
  display: none;
}

/* Hero Section */
.hero {
  min-height: 90vh;
  display: flex;
  align-items: center;
  position: relative;
  padding: 120px 24px 80px;
  overflow: hidden;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark-3) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 217, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
  animation: pulse 10s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1) translate(0, 0); opacity: 0.5; }
  50% { transform: scale(1.1) translate(20px, 20px); opacity: 0.8; }
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  opacity: 0;
  animation: fadeInUp 0.6s ease 0ms forwards;
}

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

.hero h1 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2.5rem, 5vw, 5rem);
  font-weight: 700;
  line-height: 1.1;
  color: var(--white);
  margin: 0;
  opacity: 0;
  animation: fadeInUp 0.8s ease 150ms forwards;
}

.hero h1 .gradient-text {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: var(--text-muted);
  max-width: 600px;
  opacity: 0;
  animation: fadeInUp 0.8s ease 300ms forwards;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeInUp 0.6s ease 450ms forwards;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(0, 102, 255, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
}

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

.btn-secondary:hover {
  background: var(--primary);
  transform: translateY(-2px);
}

/* Section Styles */
section {
  padding: 96px 24px;
  position: relative;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 16px;
}

.section-header h2 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  line-height: 1.2;
}

.section-header p {
  font-size: 1.125rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* About Section */
.about {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(0, 102, 255, 0.05) 0%, transparent 70%);
  border-radius: 50%;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about-text h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 24px;
}

.about-text p {
  font-size: 1.125rem;
  color: var(--text-muted);
  margin-bottom: 24px;
  line-height: 1.8;
}

.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.stat-item {
  text-align: center;
  padding: 24px;
  background: var(--dark-3);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-number {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 8px;
}

.stat-label {
  color: var(--text-muted);
  font-size: 0.875rem;
}

.about-image {
  position: relative;
}

.about-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Services Section */
.services {
  background: var(--dark);
}

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

.service-card {
  background: var(--dark-2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 40px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

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

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--primary);
  box-shadow: 0 20px 60px rgba(0, 102, 255, 0.2);
}

.service-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.service-icon i {
  font-size: 1.75rem;
  color: var(--white);
}

.service-card h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.5rem;
  color: var(--white);
  margin-bottom: 16px;
}

.service-card p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  font-size: 0.9375rem;
}

.service-features i {
  color: var(--accent);
  font-size: 1rem;
  flex-shrink: 0;
}

/* Why Choose Us Section */
.why-choose {
  background: var(--dark-2);
  position: relative;
  overflow: hidden;
}

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

.feature-item {
  text-align: center;
  padding: 32px;
}

.feature-icon {
  width: 80px;
  height: 80px;
  background: var(--dark-3);
  border: 2px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
}

.feature-icon::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 2px solid var(--primary);
  border-radius: 50%;
  opacity: 0.2;
}

.feature-icon i {
  font-size: 2rem;
  color: var(--primary);
}

.feature-item h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.25rem;
  color: var(--white);
  margin-bottom: 12px;
}

.feature-item p {
  color: var(--text-muted);
  line-height: 1.7;
}

/* Contact Section */
.contact {
  background: var(--dark);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  max-width: 1200px;
  margin: 0 auto;
}

.contact-info h3 {
  font-family: 'Space Grotesk', sans-serif;
  font-size: 1.75rem;
  color: var(--white);
  margin-bottom: 24px;
}

.contact-info p {
  color: var(--text-muted);
  font-size: 1.125rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px;
  background: var(--dark-2);
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.contact-item i {
  font-size: 1.5rem;
  color: var(--primary);
  margin-top: 4px;
  flex-shrink: 0;
}

.contact-item-content h4 {
  color: var(--white);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-item-content a,
.contact-item-content p {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item-content a:hover {
  color: var(--primary);
}

.contact-form {
  background: var(--dark-2);
  padding: 48px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  color: var(--white);
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--dark-3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  color: var(--white);
  font-family: 'Inter', sans-serif;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(0, 102, 255, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 150px;
}

.submit-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  background: var(--primary);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(0, 102, 255, 0.4);
}

/* Footer */
footer {
  background: var(--dark-2);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 64px 24px 24px;
}

.footer-content {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 64px;
  margin-bottom: 48px;
}

.footer-about h3 {
  font-family: 'Space Grotesk', sans-serif;
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.footer-about p {
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-links h4 {
  color: var(--white);
  font-size: 1.125rem;
  margin-bottom: 16px;
}

.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.3s ease;
}

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

.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--text-muted);
  font-size: 0.875rem;
}

.social-links {
  display: flex;
  gap: 16px;
}

.social-links a {
  width: 40px;
  height: 40px;
  background: var(--dark-3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  transition: all 0.3s ease;
}

.social-links a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
}

/* Animations */
[data-animate] {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

[data-animate].animate-in {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-content {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .mobile-menu-btn {
    display: block;
  }

  .mobile-menu {
    position: fixed;
    top: 73px;
    left: 0;
    right: 0;
    background: var(--dark-2);
    padding: 24px;
    transform: translateY(-100%);
    opacity: 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
  }

  .mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .mobile-menu a {
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.125rem;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .hero {
    padding: 100px 24px 60px;
    min-height: 85vh;
  }

  .hero h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .hero-subtitle {
    font-size: 1.125rem;
  }

  .services-grid,
  .features-grid {
    grid-template-columns: 1fr;
  }

  .contact-container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-form {
    padding: 32px 24px;
  }

  .about-stats {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }

  section {
    padding: 64px 24px;
  }

  .section-header {
    margin-bottom: 48px;
  }
}

@media (min-width: 769px) {
  .mobile-menu-btn {
    display: none !important;
  }
}

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
    
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}
    
/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}
    
/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}
.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }
:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* Dropdown menu styles */
.nav-dropdown {
  position: relative;
}

.nav-dropdown > a {
  display: flex;
  align-items: center;
  gap: 4px;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 8px;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 1000;
  list-style: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown-menu li {
  list-style: none;
}

.dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.2s ease;
}

.dropdown-menu a:hover {
  background: rgba(220, 38, 38, 0.1);
  color: #dc2626;
}

/* Mobile dropdown */
.mobile-dropdown .mobile-submenu {
  padding-left: 20px;
  margin-top: 8px;
  list-style: none;
}

.mobile-submenu li {
  list-style: none;
}

.mobile-submenu a {
  font-size: 0.9rem;
  color: var(--text-muted);
}
/* Blog article styles */
.blog-article {
  padding: 120px 0 80px;
  background: var(--dark);
}

.article-header {
  text-align: center;
  margin-bottom: 3rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--text-muted);
  text-decoration: none;
  margin-bottom: 1.5rem;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: #dc2626;
}

.article-header h1 {
  font-size: 2.5rem;
  margin: 1rem 0;
  color: var(--text);
}

.article-meta {
  color: var(--text-muted);
  font-size: 0.9rem;
}

.article-content {
  max-width: 800px;
  margin: 0 auto;
}

.article-image {
  width: 100%;
  height: 400px;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 2rem;
}

.article-content h2 {
  font-size: 1.5rem;
  color: var(--text);
  margin: 2rem 0 1rem;
}

.article-content p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-content ul {
  margin: 1rem 0 1.5rem 1.5rem;
  color: var(--text-muted);
}

.article-content ul li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content blockquote {
  background: var(--dark-2);
  border-left: 4px solid #dc2626;
  padding: 1.5rem;
  margin: 1.5rem 0;
  border-radius: 0 8px 8px 0;
  font-style: italic;
  color: var(--text);
}

.article-cta {
  background: var(--dark-2);
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  margin-top: 3rem;
  border: 1px solid rgba(220, 38, 38, 0.2);
}

.article-cta p {
  font-size: 1.25rem;
  color: var(--text);
  margin-bottom: 1rem;
}

@media (max-width: 768px) {
  .article-header h1 {
    font-size: 1.75rem;
  }
  
  .article-image {
    height: 250px;
  }
}

.logo { font-size: 1.75rem !important; }
.logo { font-size: 2rem !important; }

:root {
  --primary: #dc2626 !important;
  --primary-dark: #b91c1c !important;
  --secondary: #ef4444 !important;
  --dark: #1f1f1f !important;
  --dark-2: #2a2a2a !important;
  --dark-3: #333333 !important;
  --text: #ffffff !important;
  --text-muted: #d1d5db !important;
  --accent: #ff4444 !important;
  --white: #ffffff !important;
}

body {
  background: #1a1a1a !important;
}

nav {
  background: rgba(30, 30, 30, 0.95) !important;
}

.logo svg {
  color: #dc2626 !important;
}

.nav-links a:hover,
.nav-links a.active {
  color: #dc2626 !important;
}

.hero-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.gradient-text {
  background: linear-gradient(135deg, #dc2626, #ef4444, #f87171) !important;
  -webkit-background-clip: text !important;
  -webkit-text-fill-color: transparent !important;
  background-clip: text !important;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #ef4444, #dc2626) !important;
}

.btn-secondary {
  border-color: rgba(220, 38, 38, 0.5) !important;
  color: #ffffff !important;
}

.btn-secondary:hover {
  background: rgba(220, 38, 38, 0.1) !important;
  border-color: #dc2626 !important;
}

.section-eyebrow {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

.service-card {
  background: #2a2a2a !important;
  border-color: rgba(220, 38, 38, 0.2) !important;
}

.service-card:hover {
  border-color: #dc2626 !important;
}

.service-icon {
  background: linear-gradient(135deg, rgba(220, 38, 38, 0.2), rgba(239, 68, 68, 0.1)) !important;
  color: #ef4444 !important;
}

.service-features li svg {
  color: #dc2626 !important;
}

.stat-number {
  color: #ef4444 !important;
}

.about-image::before {
  background: linear-gradient(135deg, #dc2626, #ef4444) !important;
}

footer {
  background: #1a1a1a !important;
  border-top-color: rgba(220, 38, 38, 0.2) !important;
}

.footer-social a:hover {
  background: #dc2626 !important;
}

.contact-card {
  background: #2a2a2a !important;
}

.contact-icon {
  background: rgba(220, 38, 38, 0.15) !important;
  color: #ef4444 !important;
}

input:focus, textarea:focus {
  border-color: #dc2626 !important;
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.2) !important;
}

/* =======================
   ABOUT SECTION IMPROVEMENTS
======================= */

.about-justify p {
  text-align: justify;
  text-justify: inter-word;
}

.about-content {
  gap: 80px;
  align-items: stretch;
}

.about-image img {
  height: 100%;
  min-height: 520px;
  object-fit: cover;
  border-radius: 20px;
}

.about-stats-clean {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.about-stats-clean .stat-item {
  background: linear-gradient(145deg, var(--dark-3), #252525);
  border: 1px solid rgba(220,38,38,0.15);
  padding: 28px 20px;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.about-stats-clean .stat-item:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
}

.about-stats-clean .stat-number {
  font-size: 1.8rem;
}

.about-stats-clean .stat-label {
  font-size: 0.85rem;
  opacity: 0.9;
}

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

@media (max-width: 600px) {
  .about-stats-clean {
    grid-template-columns: 1fr;
  }
}


/* ===== ABOUT STATS ENHANCED ===== */

.about-stats-clean .stat-item {
  position: relative;
  overflow: hidden;
}

.about-stats-clean .stat-item i {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: var(--primary);
}

.about-stats-clean .stat-item::after {
  content: '';
  position: absolute;
  inset: -40%;
  background: radial-gradient(circle, rgba(220,38,38,0.15), transparent 70%);
  opacity: 0;
  transition: 0.4s;
}

.about-stats-clean .stat-item:hover::after {
  opacity: 1;
}

.stat-number {
  font-weight: 800;
  letter-spacing: 1px;
}

/* =======================
   PARTNERS SECTION
======================= */

.partners {
  background: var(--dark-2);
}

.partners-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  align-items: center;
}

.partner-card {
  background: var(--dark-3);
  border: 1px solid rgba(220, 38, 38, 0.2);
  border-radius: 16px;
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.partner-card img {
  max-width: 140px;
  max-height: 60px;
  object-fit: contain;
  filter: grayscale(100%) brightness(1.2);
  opacity: 0.85;
  transition: all 0.3s ease;
}

.partner-card:hover {
  transform: translateY(-6px);
  border-color: var(--primary);
}

.partner-card:hover img {
  filter: grayscale(0%);
  opacity: 1;
}
