/* CSS Reset & Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2a2a2a;
  background: #0a0a0a;
  overflow-x: hidden;
}

/* Industrial Modern Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #e8e8e8;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

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

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

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

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

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

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

a:hover {
  color: #f0c84a;
  text-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

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

li {
  margin-bottom: 8px;
}

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

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header - Industrial Modern */
header {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border-bottom: 2px solid #d4af37;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  flex-wrap: wrap;
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 2px 4px rgba(212, 175, 55, 0.3));
}

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

.main-nav a {
  color: #c0c0c0;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 8px 12px;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  position: relative;
}

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

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

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

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #d4af37;
  border: none;
  color: #0a0a0a;
  font-size: 28px;
  padding: 8px 16px;
  cursor: pointer;
  position: fixed;
  top: 16px;
  right: 20px;
  z-index: 2000;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #f0c84a;
  transform: scale(1.05);
}

/* Mobile Menu Overlay */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 32px 32px;
  z-index: 1999;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.5);
  border-left: 2px solid #d4af37;
}

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

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

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

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

.mobile-nav a {
  color: #c0c0c0;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 12px 16px;
  border: 1px solid #333;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.mobile-nav a:hover {
  color: #d4af37;
  border-color: #d4af37;
  background: rgba(212, 175, 55, 0.1);
  transform: translateX(8px);
}

/* Buttons - Industrial Style */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 2px solid #d4af37;
  background: transparent;
  color: #d4af37;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  font-size: 14px;
  border-radius: 0;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: #d4af37;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn:hover {
  color: #0a0a0a;
  border-color: #f0c84a;
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.btn-primary {
  background: #d4af37;
  color: #0a0a0a;
  border-color: #d4af37;
}

.btn-primary::before {
  background: #f0c84a;
}

.btn-primary:hover {
  background: #f0c84a;
  color: #0a0a0a;
  box-shadow: 0 0 30px rgba(212, 175, 55, 0.6);
}

.btn-secondary {
  background: #2a2a2a;
  color: #d4af37;
  border-color: #666;
}

.btn-secondary:hover {
  background: #333;
  border-color: #d4af37;
}

/* Hero Section - Industrial Modern */
.hero, .page-hero, .error-hero, .legal-hero, .thank-you-hero {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 3px solid #d4af37;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(212, 175, 55, 0.03) 10px,
    rgba(212, 175, 55, 0.03) 20px
  );
  pointer-events: none;
}

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

.hero h1 {
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
}

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

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.trust-badge {
  display: inline-block;
  background: rgba(212, 175, 55, 0.1);
  border: 1px solid #d4af37;
  padding: 12px 24px;
  border-radius: 4px;
  color: #d4af37;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Sections */
section {
  margin-bottom: 60px;
  padding: 60px 20px;
  position: relative;
}

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #999;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* Value Proposition */
.value-proposition {
  background: #0f0f0f;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

.value-proposition h2 {
  text-align: center;
  margin-bottom: 48px;
}

.three-col-grid, .value-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #1a1a1a;
  border: 1px solid #333;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

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

.value-card:hover {
  transform: translateY(-8px);
  border-color: #d4af37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

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

.value-card h3 {
  color: #d4af37;
  margin-bottom: 16px;
  font-size: 20px;
}

/* Services Grid */
.services-overview, .services-detail {
  background: #0a0a0a;
}

.services-overview h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.service-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  border: 2px solid #2a2a2a;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.service-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: width 0.3s ease;
}

.service-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

.service-card:hover::after {
  width: 100%;
}

.service-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card .price {
  color: #d4af37;
  font-weight: 700;
  font-size: 24px;
  margin: 16px 0;
  font-family: 'Montserrat', sans-serif;
}

.service-card .btn {
  margin-top: 16px;
  width: 100%;
}

/* Service Blocks */
.service-block {
  background: #1a1a1a;
  border-left: 4px solid #d4af37;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
}

.service-block h2 {
  margin-bottom: 16px;
}

.service-block h3 {
  color: #d4af37;
  margin-top: 24px;
  margin-bottom: 16px;
  font-size: 18px;
}

.service-block ul {
  list-style: none;
  padding-left: 0;
}

.service-block ul li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
}

.service-block ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #d4af37;
  font-weight: bold;
}

/* Testimonials - Readable Design */
.testimonials {
  background: #0f0f0f;
  border-top: 2px solid #333;
  border-bottom: 2px solid #333;
}

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

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

.testimonial-card {
  flex: 1 1 450px;
  max-width: 550px;
  background: #e8e8e8;
  border-left: 4px solid #d4af37;
  padding: 32px;
  position: relative;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3);
  margin-bottom: 20px;
}

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

.testimonial-card p.author {
  color: #1a1a1a;
  font-style: normal;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0;
  border-top: 2px solid #d4af37;
  padding-top: 16px;
}

/* Stats Section */
.stats {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  text-align: center;
}

.stats h2 {
  margin-bottom: 48px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  justify-content: center;
  align-items: center;
}

.stat-item {
  flex: 1 1 200px;
  max-width: 250px;
  text-align: center;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: #d4af37;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 2px 10px rgba(212, 175, 55, 0.3);
  margin-bottom: 8px;
}

.stat-label {
  font-size: 16px;
  color: #999;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* CTA Section */
.cta-section {
  background: linear-gradient(135deg, #d4af37 0%, #b8952d 100%);
  text-align: center;
  padding: 80px 20px;
  border-top: 3px solid #f0c84a;
  border-bottom: 3px solid #a08228;
}

.cta-section h2 {
  color: #0a0a0a;
  margin-bottom: 24px;
}

.cta-section p {
  color: #1a1a1a;
  font-size: 18px;
  margin-bottom: 32px;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.cta-section .btn {
  background: #0a0a0a;
  color: #d4af37;
  border-color: #0a0a0a;
}

.cta-section .btn:hover {
  background: #1a1a1a;
  transform: scale(1.05);
}

.trust-element {
  color: #1a1a1a;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team & Values */
.mission-vision, .values, .team {
  background: #0a0a0a;
}

.mission-vision h2, .mission-vision h3,
.values h2, .team h2 {
  text-align: center;
  margin-bottom: 32px;
}

.mission-vision p {
  max-width: 800px;
  margin: 0 auto 32px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

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

.reason-card {
  flex: 1 1 280px;
  max-width: 320px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 32px;
  transition: all 0.3s ease;
}

.reason-card:hover {
  border-color: #d4af37;
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.reason-card h3 {
  color: #d4af37;
  margin-bottom: 16px;
}

/* Team Grid */
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 32px;
}

.team-member {
  flex: 1 1 280px;
  max-width: 320px;
  background: #1a1a1a;
  border-top: 3px solid #d4af37;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.2);
}

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

.team-member .position {
  color: #d4af37;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

/* Pricing Cards */
.startup-packages, .retainer-models {
  background: #0f0f0f;
}

.startup-packages h2, .retainer-models h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.pricing-card {
  flex: 1 1 320px;
  max-width: 380px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
}

.pricing-card.featured {
  border-color: #d4af37;
  transform: scale(1.05);
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.3);
}

.pricing-card:hover {
  border-color: #d4af37;
  transform: translateY(-8px);
}

.pricing-card.featured:hover {
  transform: scale(1.08) translateY(-8px);
}

.pricing-card h3 {
  margin-bottom: 16px;
}

.package-price {
  font-size: 36px;
  font-weight: 900;
  color: #d4af37;
  font-family: 'Montserrat', sans-serif;
  margin: 16px 0;
}

.pricing-card > p {
  color: #999;
  margin-bottom: 24px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing-card ul {
  list-style: none;
  padding: 0;
  margin-bottom: 32px;
  text-align: left;
}

.pricing-card ul li {
  padding: 12px 0;
  border-bottom: 1px solid #2a2a2a;
  color: #c0c0c0;
}

.pricing-card ul li::before {
  content: '✓';
  color: #d4af37;
  font-weight: bold;
  margin-right: 12px;
}

/* Resources */
.featured-resources, .guides-library, .blog-section {
  background: #0a0a0a;
}

.featured-resources h2, .guides-library h2, .blog-section h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.resource-card {
  flex: 1 1 300px;
  max-width: 350px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 32px;
  position: relative;
  transition: all 0.3s ease;
}

.resource-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.resource-type {
  display: inline-block;
  background: #d4af37;
  color: #0a0a0a;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

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

.resource-card .format {
  color: #999;
  font-size: 14px;
  margin-bottom: 16px;
}

/* Guides List */
.guides-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.guide-item {
  background: #1a1a1a;
  border-left: 4px solid #d4af37;
  padding: 24px;
  transition: all 0.3s ease;
}

.guide-item:hover {
  background: #222;
  transform: translateX(8px);
}

.guide-item h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.guide-item p {
  margin-bottom: 8px;
  color: #999;
  font-size: 14px;
}

/* Blog Grid */
.blog-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.blog-post {
  flex: 1 1 320px;
  max-width: 380px;
  background: #1a1a1a;
  border-top: 3px solid #d4af37;
  padding: 32px;
  transition: all 0.3s ease;
}

.blog-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.blog-post .category {
  display: inline-block;
  background: rgba(212, 175, 55, 0.2);
  color: #d4af37;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
  border: 1px solid #d4af37;
}

.blog-post h3 {
  margin-bottom: 12px;
  font-size: 20px;
}

.blog-post .meta {
  color: #666;
  font-size: 14px;
}

/* Contact Pages */
.contact-info, .office-info, .team-contacts {
  background: #0f0f0f;
}

.contact-info h2, .office-info h2, .team-contacts h2 {
  text-align: center;
  margin-bottom: 48px;
}

.contact-methods, .office-details {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.contact-method, .office-detail {
  flex: 1 1 280px;
  max-width: 350px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-method:hover, .office-detail:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
}

.contact-method h3, .office-detail h3 {
  color: #d4af37;
  margin-bottom: 16px;
}

.contact-detail {
  color: #d4af37;
  font-weight: 700;
  font-size: 18px;
  margin: 16px 0;
}

/* Contact Form */
.contact-form-section {
  background: #0a0a0a;
}

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

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

.form-wrapper {
  max-width: 700px;
  margin: 0 auto;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 40px;
}

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

.form-field label {
  display: block;
  color: #c0c0c0;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 1px;
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 14px;
  background: #0a0a0a;
  border: 2px solid #333;
  color: #c0c0c0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  transition: all 0.3s ease;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #d4af37;
  box-shadow: 0 0 8px rgba(212, 175, 55, 0.3);
}

.form-field input[type="checkbox"] {
  width: auto;
  margin-right: 8px;
}

.form-wrapper .btn {
  width: 100%;
  margin-top: 16px;
}

/* Error 404 Page */
.error-hero .error-content {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #d4af37;
  font-family: 'Montserrat', sans-serif;
  text-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
  margin-bottom: 24px;
}

.popular-pages, .contact-help {
  background: #0a0a0a;
}

.popular-pages h2, .contact-help h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.page-card {
  flex: 1 1 260px;
  max-width: 300px;
  background: #1a1a1a;
  border: 2px solid #2a2a2a;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.page-card:hover {
  border-color: #d4af37;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

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

.page-card .btn {
  margin-top: 16px;
  width: 100%;
}

.contact-help {
  text-align: center;
  padding: 80px 20px;
}

.contact-help h2 {
  margin-bottom: 24px;
}

.contact-help p {
  max-width: 600px;
  margin: 0 auto 32px;
  font-size: 18px;
}

/* Thank You Page */
.success-icon {
  width: 80px;
  height: 80px;
  background: #d4af37;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  color: #0a0a0a;
  margin: 0 auto 32px;
  box-shadow: 0 4px 20px rgba(212, 175, 55, 0.4);
}

.thank-you-hero .container {
  text-align: center;
  max-width: 700px;
}

.next-steps, .while-you-wait, .social-proof, .back-navigation {
  background: #0a0a0a;
}

.next-steps h2, .while-you-wait h2, .social-proof h2 {
  text-align: center;
  margin-bottom: 48px;
}

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

.step-card, .action-card {
  flex: 1 1 260px;
  max-width: 280px;
  background: #1a1a1a;
  border-top: 3px solid #d4af37;
  padding: 32px;
  text-align: center;
  transition: all 0.3s ease;
}

.step-card:hover, .action-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(212, 175, 55, 0.2);
}

.step-card h3, .action-card h3 {
  margin-bottom: 12px;
  font-size: 18px;
}

.action-card .btn {
  margin-top: 16px;
  width: 100%;
}

.back-navigation {
  text-align: center;
  padding: 60px 20px;
}

.nav-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Legal Content */
.legal-content {
  background: #0a0a0a;
  padding: 60px 20px;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: #d4af37;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #c0c0c0;
  font-size: 20px;
}

.legal-content p {
  margin-bottom: 20px;
  line-height: 1.8;
}

.legal-content ul {
  margin-bottom: 24px;
}

.legal-content strong {
  color: #d4af37;
}

/* Footer - Industrial Modern */
footer {
  background: linear-gradient(135deg, #0d0d0d 0%, #000 100%);
  border-top: 3px solid #d4af37;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 250px;
  max-width: 350px;
}

.footer-col h4 {
  color: #d4af37;
  margin-bottom: 20px;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.footer-col p {
  color: #999;
  font-size: 14px;
  line-height: 1.8;
  margin-bottom: 12px;
}

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

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

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

.footer-bottom {
  border-top: 1px solid #333;
  padding-top: 20px;
  text-align: center;
}

.footer-bottom p {
  color: #666;
  font-size: 14px;
}

/* Cookie Consent Banner */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border-top: 2px solid #d4af37;
  padding: 20px;
  z-index: 9999;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

.cookie-banner .container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cookie-banner p {
  color: #c0c0c0;
  margin: 0;
  flex: 1 1 300px;
}

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

.cookie-buttons .btn {
  padding: 10px 20px;
  font-size: 13px;
}

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

.cookie-modal.active {
  display: flex;
}

.cookie-modal-content {
  background: linear-gradient(135deg, #1a1a1a 0%, #0d0d0d 100%);
  border: 2px solid #d4af37;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  position: relative;
  max-height: 90vh;
  overflow-y: auto;
}

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

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

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

.cookie-category {
  background: #111;
  border-left: 3px solid #d4af37;
  padding: 20px;
  margin-bottom: 20px;
}

.cookie-category h3 {
  color: #d4af37;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-category label {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #c0c0c0;
  cursor: pointer;
}

.cookie-category input[type="checkbox"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
}

.cookie-category input[type="checkbox"]:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

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

.cookie-modal-buttons .btn {
  flex: 1 1 150px;
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  .main-nav {
    display: none;
  }

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

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

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

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

  .hero-cta .btn {
    width: 100%;
  }

  section {
    padding: 40px 20px;
  }

  .three-col-grid, .value-grid,
  .services-grid, .stats-grid,
  .pricing-grid, .resources-grid,
  .team-grid, .contact-methods,
  .office-details, .page-grid,
  .steps-grid, .action-grid {
    flex-direction: column;
    align-items: center;
  }

  .value-card, .service-card,
  .pricing-card, .resource-card,
  .team-member, .contact-method,
  .office-detail, .page-card,
  .step-card, .action-card,
  .reason-card {
    max-width: 100%;
  }

  .pricing-card.featured {
    transform: scale(1);
  }

  .testimonial-grid, .blog-grid {
    flex-direction: column;
    align-items: center;
  }

  .testimonial-card, .blog-post {
    max-width: 100%;
  }

  .footer-content {
    flex-direction: column;
  }

  .footer-col {
    max-width: 100%;
  }

  .cookie-banner .container {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }

  .cookie-buttons .btn {
    flex: 1 1 100px;
  }

  .error-code {
    font-size: 80px;
  }

  .stat-number {
    font-size: 42px;
  }

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

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

  .nav-buttons {
    flex-direction: column;
  }

  .nav-buttons .btn {
    width: 100%;
  }

  .form-wrapper {
    padding: 24px;
  }
}

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

  .services-grid, .pricing-grid,
  .resources-grid, .team-grid {
    justify-content: center;
  }

  .service-card, .pricing-card,
  .resource-card, .team-member {
    flex: 1 1 calc(50% - 16px);
  }
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.mb-0 { margin-bottom: 0; }
.mb-8 { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }

.mt-0 { margin-top: 0; }
.mt-8 { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

/* Scrollbar Styling */
::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #0a0a0a;
}

::-webkit-scrollbar-thumb {
  background: #d4af37;
  border: 2px solid #0a0a0a;
}

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

/* Selection */
::selection {
  background: #d4af37;
  color: #0a0a0a;
}

::-moz-selection {
  background: #d4af37;
  color: #0a0a0a;
}

/* Print Styles */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal {
    display: none !important;
  }

  body {
    background: white;
    color: black;
  }

  a {
    color: black;
    text-decoration: underline;
  }
}