/* ===================================
   ECHO VOID DIGITAL - GEOMETRIC STRUCTURED STYLE
   CSS Reset & Base Styles
   =================================== */

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

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

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* ===================================
   TYPOGRAPHY - GEOMETRIC STRUCTURED
   =================================== */

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

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

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

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

a:hover {
  color: #0A2463;
  text-decoration: underline;
}

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

li {
  margin-bottom: 8px;
}

strong {
  font-weight: 600;
  color: #0A2463;
}

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

/* ===================================
   CONTAINER & LAYOUT - FLEXBOX ONLY
   =================================== */

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

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

/* ===================================
   HEADER & NAVIGATION
   =================================== */

header {
  background: #ffffff;
  border-bottom: 2px solid #0A2463;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 8px rgba(10, 36, 99, 0.1);
}

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

.logo img {
  height: 48px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 32px;
  align-items: center;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-menu li {
  margin: 0;
}

.nav-menu a {
  color: #0A2463;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 0;
  position: relative;
  text-decoration: none;
  transition: color 0.3s ease;
}

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

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

.nav-menu a:hover {
  color: #FB3640;
  text-decoration: none;
}

/* ===================================
   MOBILE MENU
   =================================== */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 16px;
  right: 24px;
  z-index: 2000;
  background: #0A2463;
  color: #ffffff;
  border: none;
  width: 48px;
  height: 48px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  box-shadow: 0 4px 12px rgba(10, 36, 99, 0.3);
  transition: transform 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #0A2463;
  z-index: 1999;
  transition: right 0.4s ease;
  overflow-y: auto;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  color: #ffffff;
  border: 2px solid #ffffff;
  width: 40px;
  height: 40px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #FB3640;
  border-color: #FB3640;
}

.mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
  gap: 0;
}

.mobile-nav a {
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #FB3640;
  padding-left: 8px;
  text-decoration: none;
}

/* ===================================
   BUTTONS - GEOMETRIC STYLE
   =================================== */

.btn-primary,
.btn-secondary,
.btn-link {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-decoration: none;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.btn-primary {
  background: #FB3640;
  color: #ffffff;
  border-color: #FB3640;
}

.btn-primary:hover {
  background: #0A2463;
  border-color: #0A2463;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(251, 54, 64, 0.3);
}

.btn-secondary {
  background: transparent;
  color: #0A2463;
  border-color: #0A2463;
}

.btn-secondary:hover {
  background: #0A2463;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(10, 36, 99, 0.3);
}

.btn-link {
  background: transparent;
  color: #FB3640;
  border-color: #FB3640;
  padding: 12px 24px;
  font-size: 14px;
}

.btn-link:hover {
  background: #FB3640;
  color: #ffffff;
  text-decoration: none;
  transform: translateY(-2px);
}

.cta-buttons {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

/* ===================================
   HERO SECTION - GEOMETRIC STRUCTURED
   =================================== */

.hero {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #ffffff;
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(45deg, rgba(251, 54, 64, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(251, 54, 64, 0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(251, 54, 64, 0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(251, 54, 64, 0.1) 75%);
  background-size: 60px 60px;
  background-position: 0 0, 0 30px, 30px -30px, -30px 0px;
  opacity: 0.3;
}

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

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

.hero-subheadline {
  font-size: 20px;
  margin-bottom: 32px;
  opacity: 0.95;
  line-height: 1.6;
}

.trust-metrics {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-top: 48px;
  flex-wrap: wrap;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

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

.metric-label {
  font-size: 14px;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   PAGE HERO VARIATIONS
   =================================== */

.page-hero,
.error-hero,
.legal-hero {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #ffffff;
  padding: 60px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before,
.error-hero::before,
.legal-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(251, 54, 64, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(251, 54, 64, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.page-hero h1,
.error-hero h1,
.legal-hero h1 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.page-hero p,
.error-hero p,
.legal-hero p {
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

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

.error-code {
  font-size: 120px;
  font-weight: 700;
  color: #FB3640;
  line-height: 1;
  margin-bottom: 24px;
  font-family: 'Montserrat', sans-serif;
}

.error-subheadline {
  font-size: 18px;
  opacity: 0.9;
}

.last-updated {
  font-size: 14px;
  opacity: 0.8;
  margin-top: 8px;
}

/* ===================================
   TRUST BAR
   =================================== */

.trust-bar {
  background: #E8F1F5;
  padding: 32px 20px;
  text-align: center;
  border-top: 3px solid #0A2463;
  border-bottom: 3px solid #0A2463;
}

.trust-bar h2 {
  font-size: 24px;
  margin-bottom: 24px;
  color: #0A2463;
}

.trust-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.trust-stats span {
  font-weight: 600;
  color: #0A2463;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 8px 16px;
  border: 2px solid #0A2463;
  background: #ffffff;
}

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

.stats-bar span {
  font-size: 14px;
  font-weight: 600;
  color: #ffffff;
  opacity: 0.9;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ===================================
   CARD GRIDS - FLEXBOX LAYOUTS
   =================================== */

.services-grid,
.benefits-grid,
.case-studies-grid,
.testimonials-grid,
.team-grid,
.awards-grid,
.stats-grid,
.resources-grid,
.blog-grid,
.quick-links-grid,
.contact-grid,
.options-grid,
.categories-grid,
.metrics-grid,
.steps-grid,
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 32px;
  margin-bottom: 32px;
}

/* ===================================
   CARD STYLES - GEOMETRIC STRUCTURED
   =================================== */

.service-card,
.benefit-card,
.case-study-card,
.testimonial-card,
.team-member,
.award-card,
.stat,
.resource-card,
.blog-card,
.quick-link-card,
.contact-card,
.option-card,
.category-card,
.metric-card,
.step-card,
.value-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: #ffffff;
  border: 3px solid #0A2463;
  padding: 32px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.benefit-card:hover,
.resource-card:hover,
.blog-card:hover,
.quick-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 8px 8px 0 #FB3640;
  border-color: #FB3640;
}

.service-card img,
.benefit-card img,
.contact-card img {
  width: 64px;
  height: 64px;
  margin-bottom: 16px;
}

.service-card h3,
.benefit-card h3,
.resource-card h3,
.quick-link-card h3 {
  color: #0A2463;
  margin-bottom: 16px;
  font-size: 20px;
}

.service-card p,
.benefit-card p,
.resource-card p {
  margin-bottom: 16px;
  color: #333333;
}

.service-card .price {
  display: block;
  font-weight: 700;
  color: #FB3640;
  font-size: 18px;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

/* ===================================
   CASE STUDY CARDS - DARK TEXT
   =================================== */

.case-study-card {
  flex: 1 1 calc(50% - 24px);
  background: #E8F1F5;
  border: 3px solid #0A2463;
  padding: 32px;
  margin-bottom: 24px;
}

.case-study-card h2,
.case-study-card h3 {
  color: #0A2463;
}

.case-study-card p {
  color: #1a1a1a;
  margin-bottom: 12px;
}

.case-study-card .industry {
  font-size: 14px;
  font-weight: 600;
  color: #FB3640;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.case-study-card .challenge,
.case-study-card .services {
  margin-bottom: 16px;
  color: #1a1a1a;
}

.case-study-card .results {
  background: #ffffff;
  padding: 20px;
  margin: 20px 0;
  border-left: 4px solid #FB3640;
}

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

.case-study-card .results ul {
  margin: 0;
  padding-left: 20px;
}

.case-study-card .results li {
  color: #1a1a1a;
  font-weight: 600;
}

.case-study-card blockquote {
  background: #ffffff;
  padding: 20px;
  margin-top: 20px;
  border-left: 4px solid #0A2463;
  font-style: italic;
  color: #1a1a1a;
}

.case-study-card .metric {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #FB3640;
  margin-top: 16px;
  font-family: 'Montserrat', sans-serif;
}

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

.testimonial-card {
  flex: 1 1 calc(50% - 24px);
  background: #E8F1F5;
  border: 3px solid #0A2463;
  padding: 32px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}

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

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

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

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

/* ===================================
   SECTIONS WITH SPACING
   =================================== */

.services-overview,
.benefits,
.case-studies-preview,
.testimonials,
.cta-final,
.story,
.mission-values,
.team,
.achievements,
.cta,
.results-guarantee,
.navigation-help,
.contact-cta,
.featured-resources,
.resource-categories,
.blog-preview,
.newsletter,
.contact-methods,
.contact-form-section,
.consultation-options,
.faq-contact,
.services-detailed,
.results-summary,
.next-steps,
.immediate-resources,
.urgent-contact,
.legal-content {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #333333;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ===================================
   SERVICE DETAIL SECTIONS
   =================================== */

.service-detail {
  display: flex;
  align-items: flex-start;
  gap: 32px;
  padding: 40px;
  margin-bottom: 40px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
  flex-wrap: wrap;
}

.service-detail img {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.service-content {
  flex: 1 1 400px;
}

.service-content h2 {
  margin-bottom: 16px;
  color: #0A2463;
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 20px 0;
  padding: 0;
  list-style: none;
}

.service-features li {
  flex: 1 1 calc(50% - 16px);
  min-width: 180px;
  padding: 12px;
  background: #ffffff;
  border-left: 3px solid #FB3640;
  font-weight: 600;
  color: #0A2463;
  margin-bottom: 0;
}

.service-content .price {
  display: block;
  font-size: 24px;
  font-weight: 700;
  color: #FB3640;
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
}

/* ===================================
   TEXT-IMAGE SECTIONS WITH ALIGNMENT
   =================================== */

.story,
.mission-values,
.results-guarantee,
.newsletter {
  background: #E8F1F5;
  border-top: 3px solid #0A2463;
  border-bottom: 3px solid #0A2463;
}

.mission {
  text-align: center;
  max-width: 800px;
  margin: 0 auto 48px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #0A2463;
}

.mission h2 {
  color: #0A2463;
  margin-bottom: 16px;
}

/* ===================================
   STATS & METRICS
   =================================== */

.stat {
  flex: 1 1 calc(25% - 24px);
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background: #ffffff;
  border: 3px solid #0A2463;
}

.stat-number {
  display: block;
  font-size: 48px;
  font-weight: 700;
  color: #FB3640;
  margin-bottom: 8px;
  font-family: 'Montserrat', sans-serif;
}

.stat-label {
  display: block;
  font-size: 14px;
  color: #0A2463;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
}

.metric-card {
  flex: 1 1 calc(50% - 24px);
  text-align: center;
  padding: 32px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
}

.metric-card .metric-value {
  display: block;
  font-size: 56px;
  font-weight: 700;
  color: #FB3640;
  margin-bottom: 16px;
  font-family: 'Montserrat', sans-serif;
}

.metric-card .metric-label {
  font-size: 16px;
  color: #0A2463;
  font-weight: 600;
}

/* ===================================
   TEAM MEMBERS
   =================================== */

.team-member {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
}

.team-member h3 {
  color: #0A2463;
  margin-bottom: 8px;
  font-size: 18px;
}

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

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

/* ===================================
   STEPS CARDS
   =================================== */

.step-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  padding: 32px 24px;
  background: #ffffff;
  border: 3px solid #0A2463;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  position: relative;
}

.step-number {
  width: 48px;
  height: 48px;
  background: #FB3640;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  border: 3px solid #0A2463;
}

.step-card h3 {
  color: #0A2463;
  margin-bottom: 8px;
}

.step-card p {
  color: #333333;
  font-size: 14px;
}

.timeframe {
  display: block;
  font-size: 12px;
  color: #FB3640;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: auto;
}

/* ===================================
   VALUE CARDS
   =================================== */

.value-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
  border: 3px solid #0A2463;
}

.value-card h3 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 18px;
}

.value-card p {
  color: #333333;
  font-size: 14px;
}

/* ===================================
   AWARD CARDS
   =================================== */

.award-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  padding: 32px 24px;
  text-align: center;
  background: #E8F1F5;
  border: 3px solid #0A2463;
}

.award-card h3 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 18px;
}

.award-card span {
  color: #FB3640;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
}

/* ===================================
   RESOURCE CARDS
   =================================== */

.resource-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #0A2463;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.resource-type {
  display: inline-block;
  padding: 6px 12px;
  background: #FB3640;
  color: #ffffff;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

/* ===================================
   BLOG CARDS
   =================================== */

.blog-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
  padding: 32px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.blog-card h3 {
  color: #0A2463;
  font-size: 20px;
}

.blog-card p {
  color: #333333;
  flex-grow: 1;
}

.blog-card .meta {
  font-size: 14px;
  color: #666666;
  font-weight: 600;
}

/* ===================================
   CONTACT CARDS
   =================================== */

.contact-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 260px;
  text-align: center;
  padding: 32px 24px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
}

.contact-card h3 {
  color: #0A2463;
  margin: 16px 0;
}

.contact-card p {
  color: #333333;
  font-size: 14px;
}

.contact-card a {
  color: #FB3640;
  font-weight: 600;
}

/* ===================================
   CATEGORY CARDS
   =================================== */

.category-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  padding: 32px;
  background: #ffffff;
  border: 3px solid #0A2463;
}

.category-card h3 {
  color: #0A2463;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FB3640;
}

.category-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.category-card li {
  padding: 12px 0;
  border-bottom: 1px solid #E8F1F5;
  color: #333333;
  font-size: 14px;
}

.category-card li:hover {
  color: #FB3640;
  padding-left: 8px;
  transition: all 0.3s ease;
}

/* ===================================
   OPTION CARDS
   =================================== */

.option-card {
  flex: 1 1 calc(50% - 24px);
  min-width: 320px;
  padding: 40px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
  display: flex;
  flex-direction: column;
}

.option-card h3 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 24px;
}

.option-card > p {
  color: #333333;
  margin-bottom: 24px;
  font-size: 16px;
}

.option-card ul {
  margin-bottom: 24px;
  flex-grow: 1;
}

.option-card li {
  color: #333333;
  font-size: 14px;
}

.option-card strong {
  color: #FB3640;
}

/* ===================================
   QUICK LINK CARDS
   =================================== */

.quick-link-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 240px;
  padding: 32px 24px;
  text-align: center;
  background: #ffffff;
  border: 3px solid #0A2463;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.quick-link-card h3 {
  color: #0A2463;
  font-size: 20px;
}

.quick-link-card p {
  color: #333333;
  font-size: 14px;
  flex-grow: 1;
}

/* ===================================
   CTA SECTIONS
   =================================== */

.cta-final,
.cta,
.contact-cta,
.urgent-contact {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #ffffff;
  text-align: center;
  padding: 60px 20px;
  position: relative;
  overflow: hidden;
}

.cta-final::before,
.cta::before,
.contact-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(45deg, rgba(251, 54, 64, 0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(251, 54, 64, 0.1) 25%, transparent 25%);
  background-size: 60px 60px;
  opacity: 0.3;
}

.cta-final h2,
.cta h2,
.contact-cta h2,
.urgent-contact h2 {
  color: #ffffff;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

.cta-final p,
.cta p,
.contact-cta p,
.urgent-contact p {
  position: relative;
  z-index: 1;
  font-size: 18px;
  opacity: 0.95;
  margin-bottom: 32px;
}

.guarantees {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin-top: 32px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.guarantees span {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: 14px;
  opacity: 0.9;
}

.alternative-contact {
  margin-top: 24px;
  font-size: 16px;
}

.alternative-contact a {
  color: #FB3640;
  font-weight: 600;
}

/* ===================================
   NEWSLETTER SECTION
   =================================== */

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

.newsletter h2 {
  color: #0A2463;
  margin-bottom: 16px;
}

.newsletter > p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 32px;
}

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

.newsletter li {
  padding: 12px 0 12px 32px;
  position: relative;
  color: #333333;
  font-weight: 600;
}

.newsletter li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #FB3640;
  font-weight: 700;
}

/* ===================================
   RESULTS GUARANTEE
   =================================== */

.results-guarantee {
  text-align: center;
  padding: 60px 20px;
}

.results-guarantee h2 {
  color: #0A2463;
  margin-bottom: 24px;
}

.results-guarantee > p {
  font-size: 18px;
  color: #333333;
  margin-bottom: 32px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

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

.results-guarantee li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #FB3640;
  font-weight: 700;
  font-size: 18px;
}

/* ===================================
   THANK YOU PAGE
   =================================== */

.thank-you-hero {
  background: linear-gradient(135deg, #0A2463 0%, #1a3a7f 100%);
  color: #ffffff;
  padding: 80px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.thank-you-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(90deg, rgba(251, 54, 64, 0.1) 1px, transparent 1px),
    linear-gradient(rgba(251, 54, 64, 0.1) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.3;
}

.success-icon {
  width: 80px;
  height: 80px;
  background: #FB3640;
  color: #ffffff;
  font-size: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  border: 4px solid #ffffff;
  font-weight: 700;
  position: relative;
  z-index: 1;
}

.thank-you-hero h1 {
  color: #ffffff;
  position: relative;
  z-index: 1;
}

.subheadline,
.confirmation-message {
  position: relative;
  z-index: 1;
  opacity: 0.95;
}

/* ===================================
   FAQ SECTION
   =================================== */

.faq-contact {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

.faq-contact h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #0A2463;
}

.faq-item {
  margin-bottom: 32px;
  padding: 24px;
  background: #E8F1F5;
  border-left: 4px solid #FB3640;
}

.faq-item h3 {
  color: #0A2463;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #333333;
  margin-bottom: 0;
}

/* ===================================
   LEGAL CONTENT
   =================================== */

.legal-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 60px 20px;
}

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

.text-section h2 {
  color: #0A2463;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #FB3640;
}

.text-section h3 {
  color: #0A2463;
  margin: 24px 0 12px;
  font-size: 20px;
}

.text-section p,
.text-section li {
  color: #333333;
}

/* ===================================
   FORM NOTICE
   =================================== */

.form-notice {
  max-width: 700px;
  margin: 0 auto;
  padding: 40px;
  background: #E8F1F5;
  border: 3px solid #0A2463;
}

.form-notice p {
  color: #333333;
}

.contact-info-display {
  margin-top: 32px;
  padding: 24px;
  background: #ffffff;
  border-left: 4px solid #FB3640;
}

.contact-info-display h3 {
  color: #0A2463;
  margin-bottom: 16px;
}

.contact-info-display p {
  color: #333333;
  margin-bottom: 12px;
}

.contact-info-display ul {
  list-style: none;
  padding-left: 0;
}

.contact-info-display li {
  padding: 8px 0 8px 24px;
  position: relative;
  color: #333333;
}

.contact-info-display li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #FB3640;
  font-weight: 700;
}

/* ===================================
   FOOTER - GEOMETRIC STRUCTURED
   =================================== */

footer {
  background: #0A2463;
  color: #ffffff;
  padding: 60px 20px 20px;
  border-top: 4px solid #FB3640;
}

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

.footer-col {
  flex: 1 1 220px;
}

.footer-logo {
  height: 40px;
  margin-bottom: 16px;
}

.footer-col h4 {
  color: #ffffff;
  margin-bottom: 16px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #FB3640;
  padding-bottom: 8px;
}

.footer-col p {
  font-size: 14px;
  line-height: 1.8;
  opacity: 0.9;
}

.footer-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  color: #ffffff;
  opacity: 0.9;
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col a:hover {
  opacity: 1;
  color: #FB3640;
  text-decoration: none;
  padding-left: 4px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

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

.legal-links a {
  color: #ffffff;
  opacity: 0.9;
  font-size: 14px;
}

.legal-links a:hover {
  opacity: 1;
  color: #FB3640;
}

.footer-bottom p {
  font-size: 14px;
  opacity: 0.8;
  margin: 0;
}

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

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #0A2463;
  color: #ffffff;
  padding: 24px;
  z-index: 9999;
  border-top: 3px solid #FB3640;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
  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 400px;
}

.cookie-text p {
  margin: 0;
  font-size: 14px;
  opacity: 0.95;
}

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

.cookie-btn {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  cursor: pointer;
  border: 2px solid #ffffff;
  background: transparent;
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 0;
}

.cookie-btn:hover {
  background: #ffffff;
  color: #0A2463;
}

.cookie-btn.accept {
  background: #FB3640;
  border-color: #FB3640;
}

.cookie-btn.accept:hover {
  background: #ffffff;
  color: #FB3640;
  border-color: #ffffff;
}

/* ===================================
   COOKIE SETTINGS MODAL
   =================================== */

.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 36, 99, 0.95);
  z-index: 10000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 3px solid #0A2463;
  max-height: 90vh;
  overflow-y: auto;
}

.cookie-modal-content h2 {
  color: #0A2463;
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #E8F1F5;
  border-left: 4px solid #FB3640;
}

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

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

.cookie-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
}

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

.cookie-toggle label {
  font-weight: 600;
  color: #0A2463;
  cursor: pointer;
}

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

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

@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 36px;
  }
  
  .error-code {
    font-size: 80px;
  }
  
  /* Navigation */
  .nav-menu {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
  }
  
  /* Cards - Single Column */
  .service-card,
  .benefit-card,
  .case-study-card,
  .testimonial-card,
  .team-member,
  .award-card,
  .stat,
  .resource-card,
  .blog-card,
  .quick-link-card,
  .contact-card,
  .option-card,
  .category-card,
  .metric-card,
  .step-card,
  .value-card {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Service Detail */
  .service-detail {
    flex-direction: column;
    padding: 24px;
  }
  
  .service-detail img {
    width: 64px;
    height: 64px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }
  
  /* Trust Metrics */
  .trust-metrics {
    flex-direction: column;
    gap: 32px;
  }
  
  .metric-value {
    font-size: 36px;
  }
  
  /* Footer */
  .footer-grid {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .legal-links {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  /* 2 Column Layout for Tablets */
  .service-card,
  .benefit-card,
  .case-study-card,
  .testimonial-card,
  .resource-card,
  .blog-card,
  .option-card,
  .category-card,
  .metric-card {
    flex: 1 1 calc(50% - 24px);
  }
  
  .team-member,
  .award-card,
  .stat,
  .quick-link-card,
  .contact-card,
  .step-card,
  .value-card {
    flex: 1 1 calc(50% - 24px);
  }
}

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

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

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

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

.hidden {
  display: none;
}

/* ===================================
   ANIMATIONS
   =================================== */

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

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

/* ===================================
   PRINT STYLES
   =================================== */

@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none !important;
  }
  
  header {
    position: static;
  }
  
  a {
    text-decoration: underline;
  }
}