/* =================================
   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', Roboto, sans-serif;
  line-height: 1.6;
  color: #CCCCCC;
  background-color: #0D1117;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

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

ul {
  list-style: none;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
}

/* =================================
   INDUSTRIAL MODERN DESIGN SYSTEM
   ================================= */

:root {
  --primary-dark: #1A2332;
  --primary-darker: #0D1117;
  --accent-red: #E63946;
  --accent-orange: #FF6B35;
  --light-gray: #F1F3F5;
  --medium-gray: #8B949E;
  --dark-gray: #2D333B;
  --border-gray: #3D444D;
  --metallic: #8A8D91;
  --steel-blue: #4A5568;
  --shadow-dark: rgba(0, 0, 0, 0.5);
  --shadow-light: rgba(0, 0, 0, 0.2);
}

/* =================================
   TYPOGRAPHY - INDUSTRIAL STYLE
   ================================= */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
}

h1 {
  font-size: 48px;
  text-transform: uppercase;
  letter-spacing: -0.03em;
}

h2 {
  font-size: 32px;
  text-transform: uppercase;
  letter-spacing: -0.01em;
}

h3 {
  font-size: 24px;
  font-weight: 600;
}

h4 {
  font-size: 18px;
  font-weight: 600;
}

p {
  margin-bottom: 16px;
  color: #CCCCCC;
  font-size: 16px;
}

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

/* =================================
   LAYOUT CONTAINERS
   ================================= */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  width: 100%;
}

.section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

/* =================================
   HEADER & NAVIGATION - INDUSTRIAL
   ================================= */

header {
  background-color: var(--primary-darker);
  border-bottom: 2px solid var(--accent-red);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px var(--shadow-dark);
}

.main-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  gap: 32px;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px var(--shadow-dark));
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex: 1;
  justify-content: center;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  color: #CCCCCC;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
}

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

.nav-menu a:hover {
  color: #FFFFFF;
}

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

/* =================================
   MOBILE MENU - INDUSTRIAL SLIDE
   ================================= */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: var(--accent-red);
  color: #FFFFFF;
  width: 50px;
  height: 50px;
  border-radius: 4px;
  font-size: 24px;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px var(--shadow-dark);
  border: 2px solid var(--metallic);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 2500;
  padding: 80px 30px 30px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -4px 0 20px var(--shadow-dark);
  border-left: 3px solid var(--accent-red);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--accent-red);
  color: #FFFFFF;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--metallic);
}

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

.mobile-nav a {
  color: #CCCCCC;
  font-weight: 600;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 12px 16px;
  border-left: 3px solid transparent;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FFFFFF;
  border-left-color: var(--accent-red);
  background: var(--dark-gray);
}

/* =================================
   BUTTONS - INDUSTRIAL STYLE
   ================================= */

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.cta-button.primary {
  background: var(--accent-red);
  color: #FFFFFF;
  border-color: var(--accent-red);
  box-shadow: 0 4px 12px rgba(230, 57, 70, 0.3);
}

.cta-button.primary:hover {
  background: #D32F3D;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.cta-button.secondary {
  background: transparent;
  color: #FFFFFF;
  border-color: var(--metallic);
}

.cta-button.secondary:hover {
  background: var(--dark-gray);
  border-color: var(--accent-red);
  transform: translateY(-2px);
}

.link-button {
  display: inline-flex;
  align-items: center;
  color: var(--accent-red);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.link-button:hover {
  border-bottom-color: var(--accent-red);
  padding-left: 8px;
}

/* =================================
   HERO SECTIONS - INDUSTRIAL
   ================================= */

.hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  padding: 100px 20px 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(90deg, var(--border-gray) 1px, transparent 1px),
    linear-gradient(var(--border-gray) 1px, transparent 1px);
  background-size: 50px 50px;
  opacity: 0.1;
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  color: #FFFFFF;
  text-shadow: 2px 2px 8px var(--shadow-dark);
}

.subheadline {
  font-size: 20px;
  color: var(--medium-gray);
  margin-bottom: 32px;
  line-height: 1.6;
}

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

.trust-indicators {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 32px;
}

.trust-indicators span {
  color: var(--medium-gray);
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.03);
}

/* =================================
   PAGE HERO - SIMPLIFIED
   ================================= */

.page-hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 3px solid var(--accent-red);
}

.page-hero h1 {
  font-size: 48px;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--medium-gray);
  max-width: 700px;
  margin: 0 auto;
}

/* =================================
   STATS GRID - INDUSTRIAL METRICS
   ================================= */

.stats {
  background: var(--dark-gray);
  padding: 60px 20px;
  border-top: 3px solid var(--accent-red);
  border-bottom: 3px solid var(--accent-red);
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat-card {
  flex: 1 1 220px;
  text-align: center;
  padding: 32px 24px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-radius: 2px;
  position: relative;
  min-width: 200px;
}

.stat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--accent-red);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-red);
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 8px;
  text-shadow: 2px 2px 4px var(--shadow-dark);
}

.stat-card p {
  color: var(--medium-gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0;
}

/* =================================
   SERVICE CARDS - INDUSTRIAL GRID
   ================================= */

.services-overview,
.benefits,
.services-detailed {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.section-intro {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  color: var(--medium-gray);
  font-size: 18px;
}

.service-grid,
.benefit-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.service-card,
.benefit-card {
  flex: 1 1 280px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-radius: 2px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--accent-red);
  transition: height 0.3s ease;
}

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

.service-card:hover,
.benefit-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-dark);
  border-color: var(--accent-red);
}

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

.service-card p,
.benefit-card p {
  color: var(--medium-gray);
  margin-bottom: 16px;
  line-height: 1.6;
}

.price {
  display: block;
  color: var(--accent-red);
  font-weight: 700;
  font-size: 18px;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* =================================
   SERVICE DETAIL - FULL WIDTH
   ================================= */

.service-detail {
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-left: 4px solid var(--accent-red);
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 2px;
}

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

.price-tag {
  display: inline-block;
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 18px;
  border-radius: 2px;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.feature-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.feature-list li {
  color: var(--medium-gray);
  padding-left: 28px;
  position: relative;
  line-height: 1.6;
}

.feature-list li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
  font-size: 18px;
}

/* =================================
   PACKAGE CARDS - FEATURED STYLE
   ================================= */

.service-packages {
  padding: 80px 20px;
  background: var(--dark-gray);
}

.package-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-top: 48px;
}

.package-card {
  flex: 1 1 300px;
  max-width: 380px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-radius: 2px;
  padding: 40px 32px;
  position: relative;
  transition: all 0.3s ease;
}

.package-card.featured {
  border-color: var(--accent-red);
  border-width: 3px;
  transform: scale(1.05);
}

.package-card.featured::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, transparent 100%);
  pointer-events: none;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.package-card h3 {
  font-size: 24px;
  margin-bottom: 16px;
  text-align: center;
}

.package-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent-red);
  text-align: center;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.savings {
  display: block;
  text-align: center;
  color: var(--accent-orange);
  font-weight: 600;
  margin-bottom: 24px;
  font-size: 14px;
}

.package-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.package-card li {
  color: var(--medium-gray);
  padding-left: 24px;
  position: relative;
  line-height: 1.5;
}

.package-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent-red);
  font-weight: 700;
}

/* =================================
   TESTIMONIALS - HIGH CONTRAST
   ================================= */

.testimonials {
  padding: 80px 20px;
  background: var(--primary-dark);
}

.testimonial-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.testimonial-card {
  flex: 1 1 400px;
  background: var(--light-gray);
  border-left: 4px solid var(--accent-red);
  padding: 32px;
  border-radius: 2px;
  box-shadow: 0 4px 12px var(--shadow-light);
}

.testimonial-card p {
  color: #2D333B;
  font-size: 16px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid var(--border-gray);
}

.testimonial-author strong {
  color: #1A2332;
  font-size: 16px;
  font-weight: 700;
}

.testimonial-author span {
  color: #4A5568;
  font-size: 14px;
}

/* =================================
   CASE STUDIES - RESULTS FOCUS
   ================================= */

.results-overview {
  padding: 60px 20px;
  background: var(--dark-gray);
}

.case-study-featured {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.case-study {
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-left: 4px solid var(--accent-red);
  padding: 48px;
  margin-bottom: 48px;
  border-radius: 2px;
}

.case-content {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.case-section h3 {
  color: var(--accent-red);
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.results-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 20px;
}

.result-item {
  flex: 1 1 150px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 20px;
  background: var(--dark-gray);
  border: 2px solid var(--border-gray);
  border-radius: 2px;
  text-align: center;
}

.result-item strong {
  font-size: 32px;
  color: var(--accent-red);
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.result-item span {
  color: var(--medium-gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.testimonial-quote {
  background: var(--light-gray);
  padding: 24px;
  border-left: 4px solid var(--accent-red);
  border-radius: 2px;
  margin-top: 24px;
}

.testimonial-quote p {
  color: #2D333B;
  font-style: italic;
  font-size: 16px;
  margin-bottom: 12px;
}

.testimonial-quote cite {
  color: #4A5568;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
}

/* =================================
   RESOURCES & CONTENT CARDS
   ================================= */

.resource-categories,
.featured-resources,
.blog-articles {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.category-grid,
.resource-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.category-card,
.resource-card {
  flex: 1 1 260px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-radius: 2px;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.category-card:hover,
.resource-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
  box-shadow: 0 8px 24px var(--shadow-dark);
}

.resource-type {
  display: inline-block;
  background: var(--accent-red);
  color: #FFFFFF;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  margin-bottom: 16px;
}

.count {
  display: block;
  color: var(--accent-red);
  font-weight: 700;
  font-size: 14px;
  margin-top: 12px;
}

.resource-cta {
  display: inline-block;
  margin-top: 20px;
  color: var(--accent-red);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 4px;
  transition: all 0.3s ease;
}

.resource-cta:hover {
  padding-left: 8px;
  color: var(--accent-orange);
  border-bottom-color: var(--accent-orange);
}

.article-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 48px;
}

.article-card {
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-left: 4px solid var(--accent-red);
  padding: 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px var(--shadow-dark);
}

.meta {
  color: var(--medium-gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =================================
   ABOUT PAGE - TEAM & MISSION
   ================================= */

.mission-vision {
  padding: 80px 20px;
  background: var(--dark-gray);
}

.mission-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.mission-card {
  flex: 1 1 400px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-top: 4px solid var(--accent-red);
  padding: 40px;
  border-radius: 2px;
}

.story {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.text-section {
  max-width: 800px;
  margin: 0 auto;
}

.text-section p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--medium-gray);
  margin-bottom: 20px;
}

.team {
  padding: 80px 20px;
  background: var(--primary-dark);
}

.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
  justify-content: center;
}

.team-member {
  flex: 1 1 300px;
  max-width: 400px;
  background: var(--dark-gray);
  border: 2px solid var(--border-gray);
  padding: 32px;
  text-align: center;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
  box-shadow: 0 8px 24px var(--shadow-dark);
}

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

.team-member span {
  display: block;
  color: var(--accent-red);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.expertise {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.expertise-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 48px;
}

.expertise-card {
  flex: 1 1 300px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-left: 4px solid var(--accent-red);
  padding: 32px;
  border-radius: 2px;
}

.stat-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-top: 48px;
  padding-top: 48px;
  border-top: 2px solid var(--border-gray);
}

.stat-item {
  flex: 1 1 200px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-item strong {
  font-size: 32px;
  color: var(--accent-red);
  font-family: 'Montserrat', sans-serif;
}

.stat-item span {
  color: var(--medium-gray);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =================================
   CONTACT PAGE - FORMS & INFO
   ================================= */

.contact-methods {
  padding: 60px 20px;
  background: var(--dark-gray);
}

.method-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 48px;
}

.method-card {
  flex: 1 1 280px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  border-top: 4px solid var(--accent-red);
  padding: 32px;
  text-align: center;
  border-radius: 2px;
}

.contact-detail {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 12px;
}

.contact-form-section {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.form-note {
  background: var(--dark-gray);
  border: 2px solid var(--accent-orange);
  border-radius: 2px;
  padding: 24px;
  margin: 32px auto;
  max-width: 700px;
  text-align: center;
}

.form-note p {
  color: var(--medium-gray);
  margin-bottom: 8px;
}

.form-fields-display {
  max-width: 700px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group label {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.field-placeholder {
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  padding: 14px 16px;
  color: var(--medium-gray);
  border-radius: 2px;
  min-height: 48px;
  display: flex;
  align-items: center;
}

.alternative-resources {
  padding: 80px 20px;
  background: var(--primary-dark);
}

.resource-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.link-card {
  flex: 1 1 300px;
  background: var(--dark-gray);
  border: 2px solid var(--border-gray);
  padding: 32px;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.link-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
  box-shadow: 0 8px 24px var(--shadow-dark);
}

.link-card a {
  display: inline-block;
  margin-top: 16px;
  color: var(--accent-red);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.05em;
}

/* =================================
   THANK YOU & 404 PAGES
   ================================= */

.error-hero,
.thankyou-hero {
  background: linear-gradient(135deg, var(--primary-darker) 0%, var(--primary-dark) 100%);
  padding: 120px 20px 80px;
  text-align: center;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-wrapper {
  max-width: 700px;
}

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: var(--accent-red);
  font-family: 'Montserrat', sans-serif;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 12px var(--shadow-dark);
}

.navigation-help,
.next-steps,
.helpful-resources {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.help-links,
.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 48px;
}

.help-card,
.step-card {
  flex: 1 1 240px;
  background: var(--primary-dark);
  border: 2px solid var(--border-gray);
  padding: 32px;
  border-radius: 2px;
  position: relative;
  transition: all 0.3s ease;
}

.help-card:hover,
.step-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent-red);
  box-shadow: 0 8px 24px var(--shadow-dark);
}

.step-number {
  width: 48px;
  height: 48px;
  background: var(--accent-red);
  color: #FFFFFF;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.timing {
  display: block;
  color: var(--accent-red);
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 16px;
}

.social-proof {
  padding: 80px 20px;
  background: var(--dark-gray);
}

.trust-stats {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-stats span {
  color: var(--medium-gray);
  font-size: 14px;
  padding: 8px 16px;
  border: 1px solid var(--border-gray);
  border-radius: 2px;
  background: var(--primary-dark);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.contact-reminder,
.contact-cta,
.cta-section,
.cta-final {
  padding: 80px 20px;
  background: var(--primary-dark);
  text-align: center;
  border-top: 3px solid var(--accent-red);
  border-bottom: 3px solid var(--accent-red);
}

.cta-section h2,
.cta-final h2 {
  margin-bottom: 20px;
}

.cta-section p,
.cta-final p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
  color: var(--medium-gray);
}

/* =================================
   LEGAL PAGES
   ================================= */

.legal-hero {
  background: var(--primary-dark);
  padding: 80px 20px 60px;
  text-align: center;
  border-bottom: 3px solid var(--accent-red);
}

.last-updated {
  color: var(--medium-gray);
  font-size: 14px;
  margin-top: 16px;
}

.legal-content {
  padding: 80px 20px;
  background: var(--primary-darker);
}

.legal-content .text-section {
  max-width: 900px;
}

.legal-content h2 {
  font-size: 24px;
  margin-top: 40px;
  margin-bottom: 16px;
  color: var(--accent-red);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* =================================
   FOOTER - INDUSTRIAL STYLE
   ================================= */

footer {
  background: var(--primary-darker);
  border-top: 3px solid var(--accent-red);
  padding: 60px 20px 32px;
  color: var(--medium-gray);
}

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

.footer-column {
  flex: 1 1 250px;
}

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

.footer-column h4 {
  color: #FFFFFF;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--accent-red);
  padding-bottom: 8px;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-column a {
  color: var(--medium-gray);
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-column a:hover {
  color: var(--accent-red);
  padding-left: 8px;
}

.footer-column p {
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 8px;
}

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid var(--border-gray);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer-legal a {
  color: var(--medium-gray);
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-legal a:hover {
  color: var(--accent-red);
}

/* =================================
   COOKIE CONSENT BANNER
   ================================= */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--primary-dark);
  border-top: 3px solid var(--accent-red);
  padding: 24px;
  z-index: 3000;
  box-shadow: 0 -4px 20px var(--shadow-dark);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.active {
  transform: translateY(0);
}

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

.cookie-text {
  flex: 1 1 300px;
  color: var(--medium-gray);
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 2px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn.accept {
  background: var(--accent-red);
  color: #FFFFFF;
  border: 2px solid var(--accent-red);
}

.cookie-btn.accept:hover {
  background: #D32F3D;
}

.cookie-btn.reject,
.cookie-btn.settings {
  background: transparent;
  color: var(--medium-gray);
  border: 2px solid var(--border-gray);
}

.cookie-btn.reject:hover,
.cookie-btn.settings:hover {
  border-color: var(--accent-red);
  color: #FFFFFF;
}

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 4000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.modal-content {
  background: var(--primary-dark);
  border: 3px solid var(--accent-red);
  border-radius: 2px;
  max-width: 600px;
  width: 90%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  position: relative;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--accent-red);
  color: #FFFFFF;
  width: 32px;
  height: 32px;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  cursor: pointer;
}

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border-gray);
}

.category-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.category-header h4 {
  color: #FFFFFF;
  font-size: 16px;
  margin: 0;
}

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: var(--border-gray);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: var(--accent-red);
}

.toggle-switch::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: #FFFFFF;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

.toggle-switch.active::after {
  transform: translateX(24px);
}

.toggle-switch.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cookie-category p {
  color: var(--medium-gray);
  font-size: 14px;
  margin: 0;
}

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

/* =================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ================================= */

@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .nav-menu {
    display: none;
  }
  
  .main-nav .cta-button {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  .cta-group {
    flex-direction: column;
  }
  
  .cta-button {
    width: 100%;
    text-align: center;
  }
  
  .stat-grid,
  .service-grid,
  .benefit-grid,
  .package-grid {
    flex-direction: column;
  }
  
  .package-card.featured {
    transform: scale(1);
  }
  
  .testimonial-grid {
    flex-direction: column;
  }
  
  .case-study {
    padding: 32px 24px;
  }
  
  .results-grid {
    flex-direction: column;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    justify-content: center;
  }
  
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
  }
  
  .cookie-btn {
    flex: 1;
    min-width: 100px;
  }
  
  .service-detail {
    padding: 24px;
  }
  
  .error-code {
    font-size: 80px;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    max-width: 960px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
}

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

.text-center {
  text-align: center;
}

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

.mb-32 {
  margin-bottom: 32px;
}

.hidden {
  display: none;
}

/* =================================
   ANIMATIONS & TRANSITIONS
   ================================= */

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

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

.animate-fade-in {
  animation: fadeIn 0.6s ease forwards;
}

/* =================================
   SCROLLBAR STYLING - INDUSTRIAL
   ================================= */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--primary-darker);
}

::-webkit-scrollbar-thumb {
  background: var(--accent-red);
  border-radius: 2px;
}

::-webkit-scrollbar-thumb:hover {
  background: #D32F3D;
}

/* =================================
   SELECTION STYLING
   ================================= */

::selection {
  background: var(--accent-red);
  color: #FFFFFF;
}

::-moz-selection {
  background: var(--accent-red);
  color: #FFFFFF;
}