/* ============================================
   SPARKSPADE DIGITAL - INDUSTRIAL MODERN DESIGN
   Comprehensive CSS Styles for All Pages
   ============================================ */

/* CSS RESET & BASE STYLES */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  line-height: 1.6;
  color: #E8E8E8;
  background-color: #1A1A1A;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Arial, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  margin-bottom: 16px;
  letter-spacing: -0.5px;
}

h1 {
  font-size: 48px;
  margin-bottom: 24px;
}

h2 {
  font-size: 32px;
  margin-bottom: 20px;
}

h3 {
  font-size: 24px;
  margin-bottom: 16px;
}

h4 {
  font-size: 18px;
  margin-bottom: 12px;
}

p {
  margin-bottom: 16px;
  color: #B8B8B8;
}

a {
  color: #E53E3E;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #C53030;
}

ul, ol {
  margin-bottom: 16px;
  padding-left: 24px;
}

li {
  margin-bottom: 8px;
  color: #B8B8B8;
}

strong {
  color: #FFFFFF;
  font-weight: 600;
}

/* CONTAINER & LAYOUT */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* HEADER STYLES */
header {
  background-color: #0D0D0D;
  border-bottom: 2px solid #2A2A2A;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.logo img {
  height: 50px;
  width: auto;
  display: block;
}

.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
}

.main-nav a {
  color: #E8E8E8;
  font-weight: 500;
  font-size: 16px;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: #E53E3E;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: #E53E3E;
  transition: width 0.3s ease;
}

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

/* BUTTON STYLES */
.btn-primary,
.btn-secondary,
.btn-header {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 4px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

.btn-primary {
  background-color: #E53E3E;
  color: #FFFFFF;
  border-color: #E53E3E;
  box-shadow: 0 4px 8px rgba(229, 62, 62, 0.3);
}

.btn-primary:hover {
  background-color: #C53030;
  border-color: #C53030;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(229, 62, 62, 0.4);
}

.btn-secondary {
  background-color: transparent;
  color: #E8E8E8;
  border-color: #4A4A4A;
}

.btn-secondary:hover {
  background-color: #2A2A2A;
  border-color: #E53E3E;
  color: #E53E3E;
  transform: translateY(-2px);
}

.btn-header {
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 10px 24px;
  font-size: 14px;
}

.btn-header:hover {
  background-color: #C53030;
  transform: translateY(-2px);
}

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  background-color: #2A2A2A;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  padding: 10px 16px;
  cursor: pointer;
  border-radius: 4px;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #E53E3E;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #0D0D0D;
  z-index: 2000;
  padding: 80px 24px 24px;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.8);
  transition: right 0.4s ease;
  overflow-y: auto;
}

.mobile-menu.active {
  right: 0;
}

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: #2A2A2A;
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: #E53E3E;
  transform: rotate(90deg);
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.mobile-nav a {
  color: #E8E8E8;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid #2A2A2A;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E53E3E;
  padding-left: 8px;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #0D0D0D 0%, #1A1A1A 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-bottom: 3px solid #2A2A2A;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(229, 62, 62, 0.03) 2px, rgba(229, 62, 62, 0.03) 4px),
    repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(229, 62, 62, 0.03) 2px, rgba(229, 62, 62, 0.03) 4px);
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  color: #FFFFFF;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-subheadline {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-indicator {
  color: #E53E3E;
  font-weight: 600;
  font-size: 14px;
  margin-top: 16px;
}

.breadcrumb {
  font-size: 14px;
  color: #B8B8B8;
  margin-bottom: 24px;
}

.breadcrumb a {
  color: #B8B8B8;
}

.breadcrumb a:hover {
  color: #E53E3E;
}

/* SECTION STYLES */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 32px;
  text-align: center;
}

.section-intro {
  font-size: 18px;
  color: #B8B8B8;
  text-align: center;
  margin-bottom: 40px;
}

/* PROBLEM SOLUTION SECTION */
.problem-solution {
  background-color: #0D0D0D;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 40px;
}

.problem-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.problem-item {
  flex: 1 1 300px;
  background-color: #1A1A1A;
  padding: 24px;
  border-left: 4px solid #E53E3E;
  border-radius: 4px;
}

.problem-item p {
  color: #E8E8E8;
  font-size: 18px;
  margin-bottom: 0;
}

.solution-intro {
  text-align: center;
  font-size: 20px;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.benefit-statement {
  text-align: center;
  font-size: 24px;
  color: #E53E3E;
  font-weight: 600;
}

/* SERVICES OVERVIEW */
.services-overview {
  background-color: #0D0D0D;
}

.services-overview h2 {
  text-align: center;
}

.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.service-card {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 280px;
  background-color: #1A1A1A;
  padding: 32px 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background-color: #E53E3E;
  transition: height 0.3s ease;
}

.service-card:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(229, 62, 62, 0.2);
}

.service-card:hover::before {
  height: 100%;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: #FFFFFF;
}

.service-card p {
  color: #E53E3E;
  font-weight: 600;
  font-size: 18px;
}

.services-overview .btn-primary {
  display: block;
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
}

/* PROCESS SECTION */
.process {
  background-color: #0D0D0D;
  border-radius: 8px;
}

.process h2 {
  text-align: center;
}

.process-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.process-step {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  background-color: #1A1A1A;
  padding: 32px 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.process-step:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.step-number {
  width: 60px;
  height: 60px;
  background-color: #E53E3E;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: 700;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 4px 12px rgba(229, 62, 62, 0.3);
}

.process-step h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.process-step p {
  color: #B8B8B8;
  font-size: 14px;
}

/* METRICS & RESULTS */
.results-metrics,
.results-overview {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.results-metrics h2,
.results-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.metric-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 220px;
  background-color: #1A1A1A;
  padding: 40px 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.metric-card:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.metric-value {
  font-size: 48px;
  font-weight: 700;
  color: #E53E3E;
  margin-bottom: 12px;
  font-family: 'Montserrat', sans-serif;
}

.metric-card p {
  color: #E8E8E8;
  font-size: 14px;
  margin-bottom: 0;
}

.trust-statement {
  text-align: center;
  color: #B8B8B8;
  font-style: italic;
}

/* TESTIMONIALS */
.testimonials,
.testimonials-extended {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.testimonials h2,
.testimonials-extended h2 {
  text-align: center;
  margin-bottom: 48px;
}

.testimonials-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #F7FAFC;
  padding: 32px;
  border-left: 4px solid #E53E3E;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

.testimonial-quote {
  font-size: 16px;
  line-height: 1.8;
  color: #2D3748;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  color: #1A365D;
  margin-bottom: 4px;
}

.testimonial-company {
  color: #4A5568;
  font-size: 14px;
  margin-bottom: 0;
}

.rating {
  color: #E53E3E;
  font-weight: 600;
  margin-top: 12px;
}

/* WHY US / USP SECTION */
.why-us,
.expertise {
  background-color: #1A1A1A;
  border-radius: 8px;
}

.why-us h2,
.expertise h2 {
  text-align: center;
  margin-bottom: 48px;
}

.usp-grid,
.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.usp-item,
.expertise-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #0D0D0D;
  padding: 32px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.usp-item:hover,
.expertise-item:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.usp-item h3,
.expertise-item h3 {
  color: #E53E3E;
  margin-bottom: 12px;
}

/* CTA CONVERSION SECTION */
.cta-conversion {
  background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%);
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
}

.cta-conversion h2 {
  color: #FFFFFF;
  margin-bottom: 20px;
}

.cta-conversion p {
  color: #FFFFFF;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.benefit-list {
  list-style: none;
  padding: 0;
  margin: 32px auto;
  max-width: 600px;
  text-align: left;
}

.benefit-list li {
  color: #FFFFFF;
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  font-size: 16px;
}

.benefit-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 20px;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.cta-buttons .btn-primary {
  background-color: #FFFFFF;
  color: #E53E3E;
  border-color: #FFFFFF;
}

.cta-buttons .btn-primary:hover {
  background-color: #0D0D0D;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-buttons .btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border-color: #FFFFFF;
}

.cta-buttons .btn-secondary:hover {
  background-color: #FFFFFF;
  color: #E53E3E;
}

.trust-element {
  color: #FFFFFF;
  font-size: 14px;
  margin-top: 24px;
  opacity: 0.9;
}

/* SERVICES DETAILED PAGE */
.services-detailed {
  background-color: #0D0D0D;
}

.service-detail {
  background-color: #1A1A1A;
  padding: 40px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  margin-bottom: 40px;
  border-left: 4px solid #E53E3E;
}

.service-detail h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.service-description {
  font-size: 16px;
  color: #B8B8B8;
  margin-bottom: 20px;
}

.service-price {
  font-size: 28px;
  color: #E53E3E;
  font-weight: 700;
  margin-bottom: 24px;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 24px;
}

.service-features li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #E8E8E8;
  border-bottom: 1px solid #2A2A2A;
}

.service-features li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E53E3E;
  font-weight: 700;
  font-size: 18px;
}

.service-ideal {
  background-color: #0D0D0D;
  padding: 16px;
  border-left: 3px solid #E53E3E;
  font-style: italic;
  color: #B8B8B8;
}

/* SERVICE PACKAGES */
.service-packages {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.service-packages h2 {
  text-align: center;
  margin-bottom: 48px;
}

.packages-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.package-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background-color: #0D0D0D;
  padding: 40px 32px;
  border: 3px solid #E53E3E;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.package-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(229, 62, 62, 0.3);
}

.package-card h3 {
  font-size: 24px;
  color: #E53E3E;
  margin-bottom: 16px;
}

.package-card p {
  margin-bottom: 16px;
}

.package-price {
  font-size: 32px;
  color: #FFFFFF;
  font-weight: 700;
  margin: 24px 0;
  font-family: 'Montserrat', sans-serif;
}

.package-savings {
  color: #E53E3E;
  font-weight: 600;
  font-size: 16px;
}

/* STORY & MISSION SECTION */
.story,
.mission-vision {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.story h2,
.mission-vision h2 {
  margin-bottom: 24px;
}

.story p {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.highlight-stat {
  background-color: #1A1A1A;
  padding: 24px;
  border-left: 4px solid #E53E3E;
  font-size: 18px;
  color: #E53E3E;
  font-weight: 600;
  margin-top: 32px;
}

.mission-vision-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.mission-item {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background-color: #1A1A1A;
  padding: 32px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  margin-bottom: 20px;
}

.values-list {
  list-style: none;
  padding: 0;
}

.values-list li {
  padding: 16px;
  margin-bottom: 12px;
  background-color: #1A1A1A;
  border-left: 4px solid #E53E3E;
  color: #E8E8E8;
}

/* TEAM SECTION */
.team {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.team h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team > .container > p {
  text-align: center;
  margin-bottom: 48px;
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
  margin-bottom: 32px;
}

.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background-color: #0D0D0D;
  padding: 32px 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.team-member:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.team-member h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.team-position {
  color: #E53E3E;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.team-member p {
  font-size: 14px;
  color: #B8B8B8;
}

.team-note {
  text-align: center;
  color: #B8B8B8;
  font-style: italic;
}

/* OFFICE & CONTACT INFO */
.office-location,
.office-info {
  background-color: #0D0D0D;
  padding: 60px 20px;
  text-align: center;
}

.office-location h2,
.office-info h2 {
  margin-bottom: 24px;
}

.office-details {
  max-width: 600px;
  margin: 0 auto;
}

.office-details p {
  font-size: 16px;
  margin-bottom: 16px;
}

/* CASE STUDIES */
.case-study-featured,
.case-studies {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.case-label,
.featured-label {
  display: inline-block;
  background-color: #E53E3E;
  color: #FFFFFF;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.case-study-featured h2 {
  font-size: 32px;
  margin-bottom: 16px;
}

.client-type {
  color: #E53E3E;
  font-weight: 600;
  margin-bottom: 32px;
}

.case-study-featured h3 {
  color: #FFFFFF;
  margin-top: 32px;
  margin-bottom: 16px;
}

.results-list {
  list-style: none;
  padding: 0;
  margin: 24px 0;
}

.results-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #E8E8E8;
  font-weight: 600;
}

.results-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E53E3E;
  font-weight: 700;
  font-size: 20px;
}

.testimonial-quote {
  background-color: #1A1A1A;
  padding: 32px;
  border-left: 4px solid #E53E3E;
  margin: 32px 0;
  font-size: 18px;
  line-height: 1.8;
  color: #E8E8E8;
  font-style: italic;
}

.testimonial-quote cite {
  display: block;
  margin-top: 16px;
  font-style: normal;
  color: #E53E3E;
  font-weight: 600;
  font-size: 16px;
}

.case-study-card {
  background-color: #1A1A1A;
  padding: 40px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  margin-bottom: 32px;
  border-left: 4px solid #E53E3E;
}

.case-study-card h3 {
  font-size: 24px;
  margin-bottom: 12px;
}

.case-study-card ul {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.case-study-card ul li {
  padding: 8px 0;
  padding-left: 24px;
  position: relative;
  color: #E8E8E8;
}

.case-study-card ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #E53E3E;
}

.case-study-card blockquote {
  background-color: #0D0D0D;
  padding: 20px;
  border-left: 3px solid #E53E3E;
  margin: 20px 0;
  font-style: italic;
  color: #B8B8B8;
}

.case-study-card cite {
  display: block;
  margin-top: 12px;
  font-style: normal;
  color: #E53E3E;
  font-weight: 600;
}

/* BLOG PAGE */
.blog-categories {
  background-color: #0D0D0D;
  padding: 40px 20px;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.category-item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 200px;
  background-color: #1A1A1A;
  padding: 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  margin-bottom: 20px;
}

.category-item:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.category-item h3 {
  font-size: 18px;
  margin-bottom: 8px;
}

.category-item p {
  color: #E53E3E;
  font-weight: 600;
  margin-bottom: 0;
}

.blog-featured {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.featured-article {
  background-color: #1A1A1A;
  padding: 40px;
  border: 2px solid #E53E3E;
  border-radius: 8px;
}

.featured-article h2 {
  font-size: 28px;
  margin-bottom: 20px;
}

.article-excerpt {
  font-size: 16px;
  color: #B8B8B8;
  line-height: 1.8;
  margin-bottom: 20px;
}

.article-meta {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 14px;
  color: #E53E3E;
}

.article-meta span {
  display: inline-block;
}

.blog-list {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.article-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background-color: #0D0D0D;
  padding: 32px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.article-card:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.article-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.article-card p {
  color: #B8B8B8;
  margin-bottom: 16px;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background: linear-gradient(135deg, #E53E3E 0%, #C53030 100%);
  padding: 60px 20px;
  border-radius: 8px;
  text-align: center;
}

.newsletter-signup h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.newsletter-signup p {
  color: #FFFFFF;
  font-size: 18px;
  margin-bottom: 24px;
}

.newsletter-signup .benefit-list {
  margin-bottom: 32px;
}

.subscriber-count {
  color: #FFFFFF;
  font-size: 14px;
  opacity: 0.9;
}

/* CONTACT PAGE */
.contact-options {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.contact-options h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-option {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  background-color: #1A1A1A;
  padding: 40px 32px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.contact-option:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.contact-option img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
}

.contact-option h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.contact-option p {
  color: #B8B8B8;
  margin-bottom: 8px;
}

.contact-option strong {
  color: #E53E3E;
}

.contact-form-section {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.contact-form-section h2 {
  text-align: center;
  margin-bottom: 16px;
}

.contact-form-section > .container > p {
  text-align: center;
  margin-bottom: 40px;
}

.form-note {
  background-color: #0D0D0D;
  padding: 32px;
  border-left: 4px solid #E53E3E;
  border-radius: 8px;
  max-width: 700px;
  margin: 0 auto;
}

.form-note p {
  margin-bottom: 12px;
}

.team-contact {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.team-contact h2 {
  text-align: center;
  margin-bottom: 16px;
}

.team-contact > .container > p {
  text-align: center;
  margin-bottom: 48px;
}

.team-contact-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.contact-person {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  background-color: #1A1A1A;
  padding: 32px 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.contact-person h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.contact-position {
  color: #E53E3E;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

.contact-person p {
  font-size: 14px;
  margin-bottom: 8px;
}

.trust-elements {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.trust-elements h2 {
  text-align: center;
  margin-bottom: 32px;
}

.trust-list {
  list-style: none;
  padding: 0;
  max-width: 700px;
  margin: 0 auto;
}

.trust-list li {
  padding: 16px 0;
  padding-left: 32px;
  position: relative;
  color: #E8E8E8;
  border-bottom: 1px solid #2A2A2A;
  font-size: 16px;
}

.trust-list li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #E53E3E;
  font-weight: 700;
  font-size: 20px;
}

/* ERROR 404 PAGE */
.error-section {
  background-color: #0D0D0D;
  padding: 100px 20px;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #E53E3E;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 8px rgba(229, 62, 62, 0.3);
}

.error-section h1 {
  font-size: 36px;
  margin-bottom: 16px;
}

.error-subheadline {
  font-size: 20px;
  color: #B8B8B8;
  margin-bottom: 24px;
}

.error-cta {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.helpful-links {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.helpful-links h2 {
  text-align: center;
  margin-bottom: 48px;
}

.links-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.link-card {
  flex: 1 1 calc(25% - 18px);
  min-width: 240px;
  background-color: #0D0D0D;
  padding: 32px 24px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.link-card:hover {
  border-color: #E53E3E;
  transform: translateY(-4px);
}

.link-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.link-card p {
  font-size: 14px;
  margin-bottom: 16px;
}

.link-card a {
  color: #E53E3E;
  font-weight: 600;
  font-size: 14px;
}

/* THANK YOU PAGE */
.thank-you-section {
  background-color: #0D0D0D;
  padding: 100px 20px;
  text-align: center;
}

.checkmark-icon {
  width: 100px;
  height: 100px;
  background-color: #E53E3E;
  color: #FFFFFF;
  font-size: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 32px;
  box-shadow: 0 8px 24px rgba(229, 62, 62, 0.4);
}

.thank-you-subheadline {
  font-size: 20px;
  color: #E53E3E;
  margin-bottom: 24px;
}

.next-steps {
  list-style: decimal;
  padding-left: 24px;
  max-width: 700px;
  margin: 32px auto;
  text-align: left;
}

.next-steps li {
  padding: 12px 0;
  color: #E8E8E8;
  font-size: 16px;
}

.confirmation-note {
  background-color: #1A1A1A;
  padding: 16px;
  border-left: 4px solid #E53E3E;
  max-width: 600px;
  margin: 32px auto;
  font-style: italic;
}

.next-steps-content {
  background-color: #1A1A1A;
  padding: 60px 20px;
}

.next-steps-content h2 {
  text-align: center;
  margin-bottom: 48px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.option-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 260px;
  background-color: #0D0D0D;
  padding: 32px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 20px;
}

.option-card h3 {
  margin-bottom: 12px;
}

.option-card p {
  margin-bottom: 24px;
}

.contact-alternative {
  background-color: #0D0D0D;
  padding: 60px 20px;
  text-align: center;
}

.contact-info {
  max-width: 600px;
  margin: 0 auto;
}

.contact-info p {
  margin-bottom: 12px;
  font-size: 16px;
}

.note {
  font-style: italic;
  color: #B8B8B8;
  font-size: 14px;
  margin-top: 20px;
}

/* LEGAL PAGES */
.legal-content {
  background-color: #0D0D0D;
  padding: 60px 20px;
}

.legal-text {
  max-width: 900px;
  margin: 0 auto;
  background-color: #1A1A1A;
  padding: 48px;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
}

.legal-text h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: #E53E3E;
}

.legal-text h3 {
  font-size: 18px;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-text p {
  margin-bottom: 16px;
  line-height: 1.8;
}

.legal-text ul {
  margin-bottom: 20px;
}

.last-updated {
  color: #E53E3E;
  font-size: 14px;
  margin-bottom: 32px;
}

.subheadline {
  font-size: 18px;
  color: #B8B8B8;
  margin-bottom: 32px;
}

/* FOOTER */
footer {
  background-color: #0D0D0D;
  border-top: 3px solid #2A2A2A;
  padding: 60px 0 20px;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: space-between;
  margin-bottom: 40px;
}

.footer-section {
  flex: 1 1 300px;
}

.footer-logo {
  height: 50px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #E53E3E;
  font-size: 18px;
  margin-bottom: 16px;
}

.footer-section p {
  color: #B8B8B8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 12px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-nav a {
  color: #B8B8B8;
  font-size: 14px;
  padding: 4px 0;
  transition: all 0.3s ease;
}

.footer-nav a:hover {
  color: #E53E3E;
  padding-left: 8px;
}

.footer-bottom {
  padding-top: 24px;
  border-top: 1px solid #2A2A2A;
  text-align: center;
}

.footer-bottom p {
  color: #B8B8B8;
  font-size: 14px;
  margin-bottom: 0;
}

/* COOKIE CONSENT BANNER */
#cookie-consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #0D0D0D;
  border-top: 3px solid #E53E3E;
  padding: 24px 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.8);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#cookie-consent-banner.show {
  transform: translateY(0);
}

.cookie-consent-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cookie-consent-text {
  flex: 1 1 400px;
  color: #E8E8E8;
  font-size: 14px;
  line-height: 1.6;
}

.cookie-consent-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent-buttons button {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

#cookie-accept-all {
  background-color: #E53E3E;
  color: #FFFFFF;
  border-color: #E53E3E;
}

#cookie-accept-all:hover {
  background-color: #C53030;
  transform: translateY(-2px);
}

#cookie-reject-all {
  background-color: transparent;
  color: #E8E8E8;
  border-color: #4A4A4A;
}

#cookie-reject-all:hover {
  background-color: #2A2A2A;
  border-color: #E53E3E;
}

#cookie-settings {
  background-color: transparent;
  color: #E8E8E8;
  border-color: #4A4A4A;
}

#cookie-settings:hover {
  background-color: #2A2A2A;
  border-color: #E53E3E;
}

/* COOKIE MODAL */
#cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#cookie-modal.show {
  display: flex;
}

.cookie-modal-content {
  background-color: #1A1A1A;
  border: 2px solid #2A2A2A;
  border-radius: 8px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background-color: #2A2A2A;
  color: #FFFFFF;
  border: none;
  font-size: 24px;
  width: 40px;
  height: 40px;
  cursor: pointer;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: #E53E3E;
  transform: rotate(90deg);
}

.cookie-modal-content h2 {
  margin-bottom: 24px;
}

.cookie-category {
  background-color: #0D0D0D;
  padding: 20px;
  margin-bottom: 16px;
  border-left: 4px solid #E53E3E;
  border-radius: 4px;
}

.cookie-category h3 {
  font-size: 18px;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cookie-category p {
  font-size: 14px;
  color: #B8B8B8;
  margin-bottom: 0;
}

.cookie-toggle {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #4A4A4A;
  transition: 0.3s;
  border-radius: 26px;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: #FFFFFF;
  transition: 0.3s;
  border-radius: 50%;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #E53E3E;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-modal-buttons {
  display: flex;
  gap: 12px;
  margin-top: 32px;
  flex-wrap: wrap;
}

.cookie-modal-buttons button {
  flex: 1;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  font-family: 'Montserrat', sans-serif;
}

#cookie-save-preferences {
  background-color: #E53E3E;
  color: #FFFFFF;
  border-color: #E53E3E;
}

#cookie-save-preferences:hover {
  background-color: #C53030;
  transform: translateY(-2px);
}

/* RESPONSIVE DESIGN - MOBILE */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 24px;
  }

  h3 {
    font-size: 20px;
  }

  /* Header */
  .main-nav {
    display: none;
  }

  .btn-header {
    display: none;
  }

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

  .header-content {
    justify-content: space-between;
  }

  /* Hero */
  .hero {
    padding: 60px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero-subheadline {
    font-size: 16px;
  }

  .hero-cta {
    flex-direction: column;
  }

  .hero-cta .btn-primary,
  .hero-cta .btn-secondary {
    width: 100%;
    text-align: center;
  }

  /* Sections */
  section {
    padding: 32px 20px;
    margin-bottom: 40px;
  }

  /* Grids */
  .problem-grid,
  .services-grid,
  .process-grid,
  .metrics-grid,
  .testimonials-grid,
  .usp-grid,
  .expertise-grid,
  .packages-grid,
  .mission-vision-grid,
  .team-grid,
  .categories-grid,
  .articles-grid,
  .contact-options-grid,
  .team-contact-grid,
  .links-grid,
  .options-grid {
    flex-direction: column;
  }

  .problem-item,
  .service-card,
  .process-step,
  .metric-card,
  .testimonial-card,
  .usp-item,
  .expertise-item,
  .package-card,
  .mission-item,
  .team-member,
  .category-item,
  .article-card,
  .contact-option,
  .contact-person,
  .link-card,
  .option-card {
    flex: 1 1 100%;
    min-width: 100%;
  }

  /* Service Detail */
  .service-detail {
    padding: 24px;
  }

  /* Case Studies */
  .case-study-featured,
  .case-study-card {
    padding: 24px;
  }

  /* Error Page */
  .error-code {
    font-size: 80px;
  }

  .error-section h1 {
    font-size: 28px;
  }

  .error-cta {
    flex-direction: column;
  }

  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }

  .footer-section {
    flex: 1 1 100%;
  }

  /* Cookie Consent */
  .cookie-consent-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent-buttons {
    width: 100%;
  }

  .cookie-consent-buttons button {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 24px;
  }

  .cookie-modal-buttons {
    flex-direction: column;
  }

  .cookie-modal-buttons button {
    width: 100%;
  }

  /* Legal Pages */
  .legal-text {
    padding: 24px;
  }

  /* CTA Buttons */
  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
  }
}

/* TABLET */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }

  h1 {
    font-size: 40px;
  }

  h2 {
    font-size: 28px;
  }

  .service-card,
  .process-step,
  .metric-card {
    flex: 1 1 calc(50% - 12px);
  }

  .package-card,
  .contact-option {
    flex: 1 1 calc(50% - 16px);
  }
}

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

@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

/* UTILITY CLASSES */
.text-center {
  text-align: center;
}

.mb-0 {
  margin-bottom: 0;
}

.mt-32 {
  margin-top: 32px;
}

.hidden {
  display: none;
}

/* ACCESSIBILITY */
*:focus {
  outline: 2px solid #E53E3E;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E53E3E;
  outline-offset: 2px;
}

/* PRINT STYLES */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .btn-primary,
  .btn-secondary,
  .hero-cta,
  .cta-conversion,
  #cookie-consent-banner,
  #cookie-modal {
    display: none;
  }

  body {
    background-color: white;
    color: black;
  }

  * {
    box-shadow: none !important;
  }
}