/* ============================================
   CSS RESET & NORMALIZE
   ============================================ */

* {
  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, Oxygen, Ubuntu, Cantarell, sans-serif;
  line-height: 1.6;
  color: #1A1A1A;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

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

/* ============================================
   WARM & FRIENDLY DESIGN SYSTEM
   ============================================ */

:root {
  --primary-red: #C41E3A;
  --primary-red-hover: #A01730;
  --secondary-dark: #1A1A1A;
  --accent-light: #F8F9FA;
  --warm-orange: #FF6B35;
  --warm-coral: #FF8A65;
  --warm-peach: #FFE5D9;
  --warm-cream: #FFF8F3;
  --warm-beige: #F5E6D3;
  --text-dark: #2C2C2C;
  --text-medium: #5A5A5A;
  --text-light: #8A8A8A;
  --white: #FFFFFF;
  --shadow-soft: 0 4px 12px rgba(196, 30, 58, 0.08);
  --shadow-medium: 0 8px 24px rgba(196, 30, 58, 0.12);
  --shadow-large: 0 12px 32px rgba(196, 30, 58, 0.16);
}

/* ============================================
   TYPOGRAPHY - WARM & FRIENDLY
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
  color: var(--secondary-dark);
}

h1 {
  font-size: 48px;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 32px;
  letter-spacing: -0.3px;
}

h3 {
  font-size: 24px;
}

h4 {
  font-size: 18px;
}

p {
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text-medium);
}

strong {
  font-weight: 600;
  color: var(--secondary-dark);
}

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

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

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

/* ============================================
   HEADER - WARM & FRIENDLY
   ============================================ */

header {
  background-color: var(--white);
  box-shadow: var(--shadow-soft);
  position: sticky;
  top: 0;
  z-index: 900;
  padding: 16px 0;
}

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

header img {
  height: 48px;
  width: auto;
}

header nav {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

header nav a {
  font-weight: 500;
  font-size: 16px;
  color: var(--text-dark);
  padding: 8px 0;
  position: relative;
  border-radius: 8px;
  transition: all 0.3s ease;
}

header nav a:hover {
  color: var(--primary-red);
  transform: translateY(-2px);
}

header nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background-color: var(--primary-red);
  border-radius: 3px;
  transition: width 0.3s ease;
}

header nav a:hover::after {
  width: 100%;
}

/* ============================================
   MOBILE MENU - WARM & FRIENDLY
   ============================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background-color: var(--primary-red);
  color: var(--white);
  font-size: 28px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  box-shadow: var(--shadow-medium);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: var(--primary-red-hover);
  transform: scale(1.05);
  box-shadow: var(--shadow-large);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--white) 100%);
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  padding: 80px 32px 32px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--white);
  color: var(--primary-red);
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: var(--shadow-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  display: block;
  padding: 20px 24px;
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
  border-radius: 12px;
  background-color: transparent;
  transition: all 0.3s ease;
  margin-bottom: 8px;
}

.mobile-nav a:hover {
  background-color: var(--warm-peach);
  color: var(--primary-red);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   BUTTONS - WARM & FRIENDLY
   ============================================ */

.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
}

.cta-button,
.cta-primary {
  background-color: var(--primary-red);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}

.cta-button:hover,
.cta-primary:hover {
  background-color: var(--primary-red-hover);
  box-shadow: var(--shadow-medium);
  transform: translateY(-2px);
}

.cta-secondary {
  background-color: transparent;
  color: var(--primary-red);
  border-color: var(--primary-red);
}

.cta-secondary:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   HERO SECTIONS - WARM & FRIENDLY
   ============================================ */

.hero {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--warm-cream) 50%, var(--white) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 0 0 32px 32px;
  margin-bottom: 60px;
}

.hero h1 {
  font-size: 56px;
  color: var(--secondary-dark);
  margin-bottom: 24px;
  line-height: 1.1;
}

.hero p {
  font-size: 20px;
  color: var(--text-medium);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
}

.hero .cta-primary,
.hero .cta-secondary {
  margin: 8px;
}

.trust-bar {
  display: inline-block;
  margin-top: 32px;
  padding: 16px 32px;
  background-color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   STATS BAR - WARM & FRIENDLY
   ============================================ */

.stats-bar {
  background-color: var(--white);
  padding: 48px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.stats-bar .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 180px;
}

.stat h3 {
  font-size: 48px;
  color: var(--primary-red);
  margin-bottom: 8px;
  font-weight: 800;
}

.stat p {
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 500;
  margin: 0;
}

/* ============================================
   PROBLEM-SOLUTION SECTION
   ============================================ */

.problem-solution {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 24px;
  color: var(--secondary-dark);
}

.problem-solution h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  color: var(--primary-red);
}

.problem-solution p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 18px;
}

.problem-solution ul {
  max-width: 700px;
  margin: 0 auto 32px;
  padding-left: 0;
}

.problem-solution ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  color: var(--text-dark);
  list-style: none;
}

.problem-solution ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 20px;
}

.problem-solution .cta-button {
  display: block;
  max-width: 300px;
  margin: 32px auto 0;
}

/* ============================================
   SERVICE CARDS - WARM & FRIENDLY
   ============================================ */

.services-grid,
.services-detailed {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.services-grid h2,
.services-detailed h2 {
  text-align: center;
  margin-bottom: 16px;
}

.services-grid > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 48px;
  font-size: 18px;
}

.service-cards,
.services-detailed .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin-bottom: 40px;
}

.service-card,
.service-expanded {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 280px;
  max-width: 380px;
  position: relative;
}

.service-card:hover,
.service-expanded:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.service-card h3,
.service-expanded h2 {
  color: var(--secondary-dark);
  margin-bottom: 16px;
  font-size: 22px;
}

.service-card p,
.service-expanded p {
  flex-grow: 1;
  margin-bottom: 24px;
  color: var(--text-medium);
}

.service-expanded h3 {
  color: var(--primary-red);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

.service-expanded ul {
  margin-bottom: 24px;
  padding-left: 0;
}

.service-expanded ul li {
  padding: 8px 0 8px 28px;
  position: relative;
  list-style: none;
  color: var(--text-dark);
}

.service-expanded ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary-red);
  font-size: 20px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: var(--primary-red);
  margin: 20px 0;
}

.service-card a,
.service-expanded a {
  display: inline-block;
  padding: 12px 28px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  margin-top: auto;
}

.service-card a:hover,
.service-expanded a:hover {
  background-color: var(--primary-red-hover);
  transform: scale(1.05);
}

/* ============================================
   TESTIMONIALS - WARM & FRIENDLY (FIXED CONTRAST)
   ============================================ */

.testimonials {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
}

.testimonials h2 {
  text-align: center;
  margin-bottom: 40px;
  color: var(--secondary-dark);
}

.testimonial-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  margin-bottom: 24px;
  display: flex;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.testimonial-card p {
  flex: 1;
  font-size: 18px;
  font-style: italic;
  color: var(--text-dark);
  margin-bottom: 16px;
  line-height: 1.7;
}

.testimonial-card .author {
  font-weight: 600;
  color: var(--secondary-dark);
  font-style: normal;
  font-size: 16px;
  margin-bottom: 4px;
}

.testimonial-card .role {
  color: var(--text-medium);
  font-size: 14px;
  font-style: normal;
  margin: 0;
}

/* ============================================
   CASE STUDIES - WARM & FRIENDLY
   ============================================ */

.featured-case-study {
  background: linear-gradient(135deg, var(--warm-cream) 0%, var(--white) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.case-study-featured {
  max-width: 900px;
  margin: 0 auto;
}

.label {
  display: inline-block;
  background-color: var(--primary-red);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.case-study-featured h2 {
  font-size: 36px;
  margin-bottom: 12px;
}

.location {
  color: var(--text-medium);
  margin-bottom: 32px;
  font-weight: 500;
}

.challenge,
.solution,
.results {
  margin-bottom: 32px;
}

.challenge h3,
.solution h3,
.results h3 {
  color: var(--primary-red);
  margin-bottom: 12px;
}

.results h3 {
  font-size: 28px;
  color: var(--secondary-dark);
}

.results ul {
  padding-left: 0;
}

.results ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 18px;
  color: var(--text-dark);
  list-style: none;
  font-weight: 500;
}

.results ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 20px;
}

.case-study-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.case-study-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.case-study-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.case-study-card h3 {
  color: var(--secondary-dark);
  margin-bottom: 8px;
}

.case-study-card .type {
  color: var(--primary-red);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 16px;
}

.case-study-card .result {
  font-weight: 700;
  color: var(--primary-red);
  font-size: 18px;
  margin-top: 16px;
}

.results-summary {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.metrics {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 32px;
  margin-top: 40px;
}

.metric {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.metric h3 {
  font-size: 48px;
  color: var(--primary-red);
  margin-bottom: 8px;
  font-weight: 800;
}

.metric p {
  font-size: 16px;
  color: var(--text-medium);
  font-weight: 500;
  margin: 0;
}

/* ============================================
   RESOURCES SECTIONS
   ============================================ */

.featured-resources {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.resource-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  display: flex;
  flex-direction: column;
}

.resource-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.resource-card h3 {
  color: var(--secondary-dark);
  margin-bottom: 16px;
  font-size: 20px;
}

.resource-card p {
  flex-grow: 1;
  margin-bottom: 20px;
}

.blog-grid {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.article-card {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-medium);
}

.article-card h3 {
  color: var(--secondary-dark);
  margin-bottom: 12px;
  font-size: 20px;
}

.meta {
  display: inline-block;
  margin-top: 16px;
  padding: 6px 16px;
  background-color: var(--warm-peach);
  color: var(--text-dark);
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
}

.guides-section {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.guides-list {
  max-width: 800px;
  margin: 32px auto 0;
  padding-left: 0;
}

.guides-list li {
  list-style: none;
  margin-bottom: 16px;
}

.guides-list a {
  display: block;
  padding: 20px 24px;
  background-color: var(--warm-cream);
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 600;
  transition: all 0.3s ease;
}

.guides-list a:hover {
  background-color: var(--warm-peach);
  color: var(--primary-red);
  transform: translateX(8px);
  box-shadow: var(--shadow-soft);
}

/* ============================================
   CONTACT PAGE
   ============================================ */

.contact-methods {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.method {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1;
  min-width: 280px;
  max-width: 480px;
  text-align: center;
}

.method h3 {
  color: var(--primary-red);
  margin-bottom: 16px;
}

.contact-form-section {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

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

.contact-form-section > .container > p {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 40px;
  font-size: 18px;
}

.form-note {
  max-width: 700px;
  margin: 0 auto;
  padding: 32px;
  background-color: var(--warm-cream);
  border-radius: 16px;
  border: 2px solid var(--warm-peach);
}

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

.form-note a {
  display: inline-block;
  margin-top: 8px;
}

.office-info {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.info-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin: 40px 0;
}

.info-item {
  flex: 1;
  min-width: 220px;
  text-align: center;
}

.info-item h3 {
  color: var(--primary-red);
  margin-bottom: 12px;
}

.note {
  text-align: center;
  font-style: italic;
  color: var(--text-medium);
  margin-top: 32px;
}

.expectations {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.process-steps {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 0;
  counter-reset: step-counter;
}

.process-steps li {
  list-style: none;
  padding: 20px 24px 20px 70px;
  margin-bottom: 16px;
  background-color: var(--warm-cream);
  border-radius: 12px;
  position: relative;
  counter-increment: step-counter;
  font-weight: 500;
  color: var(--text-dark);
}

.process-steps li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-red);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.expectations p {
  text-align: center;
  margin-top: 32px;
  font-size: 18px;
}

/* ============================================
   ABOUT PAGE
   ============================================ */

.story {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

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

.story p {
  max-width: 800px;
  margin: 0 auto 24px;
  font-size: 18px;
  line-height: 1.8;
}

.milestones {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 48px;
}

.milestone {
  flex: 1;
  min-width: 200px;
  text-align: center;
  padding: 24px;
  background-color: var(--warm-cream);
  border-radius: 16px;
}

.milestone h3 {
  color: var(--primary-red);
  font-size: 32px;
  margin-bottom: 8px;
}

.mission-vision {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.mission-vision .container {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.mission,
.vision,
.values {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1;
  min-width: 280px;
  max-width: 360px;
}

.mission h2,
.vision h2,
.values h2 {
  color: var(--primary-red);
  margin-bottom: 16px;
}

.values ul {
  padding-left: 0;
}

.values ul li {
  padding: 12px 0 12px 32px;
  position: relative;
  list-style: none;
  color: var(--text-dark);
  font-weight: 500;
}

.values ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--primary-red);
  font-weight: bold;
  font-size: 18px;
}

.impact-stats {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
}

.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-around;
  margin-top: 40px;
}

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

.confirmation-hero {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 60px;
}

.success-icon {
  width: 80px;
  height: 80px;
  background-color: var(--primary-red);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-medium);
}

.next-steps {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

.steps-list {
  max-width: 700px;
  margin: 32px auto;
  padding-left: 0;
  counter-reset: step-counter;
}

.steps-list li {
  list-style: none;
  padding: 20px 24px 20px 70px;
  margin-bottom: 16px;
  background-color: var(--warm-cream);
  border-radius: 12px;
  position: relative;
  counter-increment: step-counter;
  font-weight: 500;
  color: var(--text-dark);
}

.steps-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--primary-red);
  color: var(--white);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.while-you-wait {
  padding: 60px 20px;
  margin-bottom: 60px;
}

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

.resource-item {
  background-color: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
  flex: 1;
  min-width: 280px;
  max-width: 360px;
  text-align: center;
}

.resource-item h3 {
  margin-bottom: 20px;
}

.social-proof {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

.stat-bar {
  display: inline-block;
  padding: 16px 32px;
  background-color: var(--warm-cream);
  border-radius: 50px;
  font-weight: 600;
  color: var(--text-dark);
  margin-top: 16px;
}

.urgent-contact {
  padding: 60px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.urgent-contact p {
  font-size: 18px;
  margin-bottom: 12px;
}

/* ============================================
   404 ERROR PAGE
   ============================================ */

.error-hero {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 60px;
}

.error-hero h1 {
  font-size: 120px;
  color: var(--primary-red);
  margin-bottom: 16px;
  line-height: 1;
}

.error-hero h2 {
  font-size: 36px;
  margin-bottom: 16px;
}

.navigation-help {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

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

.quick-links a {
  display: inline-block;
  padding: 16px 28px;
  background-color: var(--warm-cream);
  color: var(--text-dark);
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.quick-links a:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-soft);
}

.popular-pages {
  padding: 60px 20px;
  margin-bottom: 60px;
}

.popular-pages h2 {
  text-align: center;
  margin-bottom: 32px;
}

.popular-pages ul {
  max-width: 600px;
  margin: 0 auto;
  padding-left: 0;
}

.popular-pages ul li {
  list-style: none;
  margin-bottom: 12px;
}

.popular-pages ul li a {
  display: block;
  padding: 16px 24px;
  background-color: var(--white);
  border-radius: 12px;
  color: var(--text-dark);
  font-weight: 500;
  box-shadow: var(--shadow-soft);
  transition: all 0.3s ease;
}

.popular-pages ul li a:hover {
  background-color: var(--warm-peach);
  color: var(--primary-red);
  transform: translateX(8px);
}

.help-cta {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
  text-align: center;
}

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

.help-cta p {
  font-size: 18px;
  margin-bottom: 12px;
}

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

.legal-hero {
  background: linear-gradient(135deg, var(--warm-peach) 0%, var(--warm-cream) 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 60px;
}

.legal-hero h1 {
  font-size: 42px;
  margin-bottom: 12px;
}

.legal-hero p {
  font-size: 16px;
  color: var(--text-medium);
}

.legal-content {
  background-color: var(--white);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: var(--shadow-soft);
}

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

.legal-content h2 {
  color: var(--primary-red);
  margin-top: 40px;
  margin-bottom: 16px;
  font-size: 28px;
}

.legal-content h3 {
  color: var(--secondary-dark);
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

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

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

.legal-content ul li {
  padding: 8px 0 8px 32px;
  position: relative;
  list-style: none;
  color: var(--text-dark);
}

.legal-content ul li::before {
  content: '•';
  position: absolute;
  left: 8px;
  color: var(--primary-red);
  font-size: 20px;
}

/* ============================================
   CTA SECTIONS - WARM & FRIENDLY
   ============================================ */

.cta-section {
  background: linear-gradient(135deg, var(--primary-red) 0%, var(--warm-coral) 100%);
  padding: 60px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  text-align: center;
  box-shadow: var(--shadow-medium);
}

.cta-section h2 {
  color: var(--white);
  margin-bottom: 16px;
  font-size: 36px;
}

.cta-section p {
  color: var(--white);
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
}

.cta-section .cta-primary {
  background-color: var(--white);
  color: var(--primary-red);
  font-size: 18px;
  padding: 18px 40px;
}

.cta-section .cta-primary:hover {
  background-color: var(--warm-cream);
  transform: scale(1.05);
}

/* ============================================
   FOOTER - WARM & FRIENDLY
   ============================================ */

footer {
  background-color: var(--secondary-dark);
  color: var(--white);
  padding: 60px 20px 20px;
  margin-top: 60px;
}

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

.footer-column {
  flex: 1;
  min-width: 220px;
}

.footer-column img {
  height: 48px;
  width: auto;
  margin-bottom: 16px;
}

.footer-column h3 {
  color: var(--warm-coral);
  margin-bottom: 16px;
  font-size: 18px;
}

.footer-column p,
.footer-column ul li {
  color: #D0D0D0;
  font-size: 14px;
  line-height: 1.8;
}

.footer-column ul {
  padding-left: 0;
}

.footer-column ul li {
  list-style: none;
  margin-bottom: 8px;
}

.footer-column ul li a {
  color: #D0D0D0;
  transition: color 0.3s ease;
}

.footer-column ul li a:hover {
  color: var(--warm-coral);
}

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

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

.footer-bottom nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom nav a {
  color: #A0A0A0;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-bottom nav a:hover {
  color: var(--warm-coral);
}

/* ============================================
   COOKIE CONSENT BANNER - WARM & FRIENDLY
   ============================================ */

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--white);
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
  padding: 24px;
  z-index: 950;
  display: none;
  border-top: 3px solid var(--primary-red);
}

.cookie-banner.active {
  display: block;
  animation: slideUp 0.4s ease;
}

@keyframes slideUp {
  from {
    transform: translateY(100%);
  }
  to {
    transform: translateY(0);
  }
}

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

.cookie-content {
  flex: 1;
  min-width: 300px;
}

.cookie-content p {
  color: var(--text-dark);
  margin-bottom: 0;
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: var(--primary-red);
  color: var(--white);
}

.cookie-accept:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: var(--warm-cream);
  color: var(--text-dark);
}

.cookie-reject:hover {
  background-color: var(--warm-peach);
}

.cookie-settings {
  background-color: transparent;
  color: var(--primary-red);
  border: 2px solid var(--primary-red);
}

.cookie-settings:hover {
  background-color: var(--primary-red);
  color: var(--white);
}

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

.cookie-modal.active {
  display: flex;
  animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.cookie-modal-content {
  background-color: var(--white);
  border-radius: 20px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: var(--shadow-large);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: var(--warm-cream);
  color: var(--primary-red);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background-color: var(--primary-red);
  color: var(--white);
  transform: rotate(90deg);
}

.cookie-modal h2 {
  color: var(--secondary-dark);
  margin-bottom: 24px;
}

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background-color: var(--warm-cream);
  border-radius: 12px;
}

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

.cookie-category h3 {
  margin: 0;
  font-size: 18px;
  color: var(--secondary-dark);
}

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
  background-color: #ccc;
  border-radius: 50px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.cookie-toggle.active {
  background-color: var(--primary-red);
}

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

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background-color: var(--white);
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

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

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

.cookie-modal-buttons button {
  flex: 1;
  min-width: 140px;
  padding: 14px 24px;
  border-radius: 50px;
  font-weight: 600;
  transition: all 0.3s ease;
}

.cookie-save {
  background-color: var(--primary-red);
  color: var(--white);
}

.cookie-save:hover {
  background-color: var(--primary-red-hover);
  transform: translateY(-2px);
}

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

@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop navigation */
  header nav,
  header .cta-button {
    display: none;
  }

  /* Typography adjustments */
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 20px;
  }

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

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

  /* Container adjustments */
  .container {
    padding: 0 16px;
  }

  .section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }

  /* Header adjustments */
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }

  /* Stats and metrics */
  .stats-bar .container,
  .metrics,
  .stats-grid {
    flex-direction: column;
    gap: 24px;
  }

  .stat,
  .metric {
    min-width: 100%;
  }

  /* Service cards */
  .service-cards,
  .case-studies,
  .resource-cards,
  .articles {
    flex-direction: column;
  }

  .service-card,
  .service-expanded,
  .case-study-card,
  .resource-card,
  .article-card {
    max-width: 100%;
  }

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

  .footer-column {
    min-width: 100%;
  }

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

  .footer-bottom nav {
    justify-content: center;
  }

  /* Cookie banner */
  .cookie-banner .container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-buttons {
    width: 100%;
  }

  .cookie-buttons button {
    flex: 1;
  }

  /* Error page */
  .error-hero h1 {
    font-size: 72px;
  }

  .error-hero h2 {
    font-size: 24px;
  }

  /* Modal adjustments */
  .cookie-modal-content {
    padding: 24px;
  }

  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }

  /* Text-image sections */
  .text-image-section {
    flex-direction: column;
  }

  /* CTA sections */
  .cta-section h2 {
    font-size: 28px;
  }

  .cta-section p {
    font-size: 16px;
  }
}

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

  h1 {
    font-size: 42px;
  }

  h2 {
    font-size: 28px;
  }

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

  .service-cards,
  .case-studies,
  .resource-cards,
  .articles {
    gap: 20px;
  }

  .service-card,
  .case-study-card,
  .resource-card,
  .article-card {
    min-width: calc(50% - 10px);
    max-width: calc(50% - 10px);
  }
}

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

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

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

/* Smooth scrolling for all links */
html {
  scroll-behavior: smooth;
}

/* Focus styles for accessibility */
a:focus,
button:focus {
  outline: 3px solid var(--warm-coral);
  outline-offset: 2px;
}

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

  header {
    position: static;
  }

  body {
    background-color: white;
  }
}

/* High contrast mode support */
@media (prefers-contrast: high) {
  :root {
    --primary-red: #B01020;
    --text-dark: #000000;
    --text-medium: #333333;
  }
}

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}