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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background: #FFFFFF;
  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;
}

/* ===== GEOMETRIC STRUCTURED DESIGN SYSTEM ===== */
:root {
  --primary: #E85D3F;
  --secondary: #2C5F7C;
  --accent: #F9C74F;
  --dark: #1A1A1A;
  --gray: #4A4A4A;
  --light-gray: #F5F5F5;
  --white: #FFFFFF;
  --shadow: rgba(0, 0, 0, 0.1);
  --shadow-strong: rgba(0, 0, 0, 0.2);
}

/* ===== TYPOGRAPHY - GEOMETRIC & STRUCTURED ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

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 {
  font-size: 16px;
  margin-bottom: 16px;
  line-height: 1.8;
}

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

.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* ===== HEADER - GEOMETRIC STRUCTURE ===== */
header {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 12px var(--shadow);
  border-bottom: 4px solid var(--primary);
}

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

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

/* ===== NAVIGATION - DESKTOP ===== */
.main-nav {
  display: none;
}

.main-nav a {
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  padding: 10px 16px;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.main-nav a:hover {
  color: var(--accent);
  border-bottom: 2px solid var(--accent);
  transform: translateY(-2px);
}

.header-cta {
  display: none;
}

/* ===== MOBILE MENU TOGGLE ===== */
.mobile-menu-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--white);
  font-size: 24px;
  cursor: pointer;
  z-index: 1100;
  position: relative;
  transition: all 0.3s ease;
  box-shadow: 0 4px 8px var(--shadow);
}

.mobile-menu-toggle:hover {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(90deg);
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  position: fixed;
  top: 0;
  left: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, var(--secondary) 0%, var(--dark) 100%);
  z-index: 1000;
  transition: left 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  overflow-y: auto;
  box-shadow: 4px 0 20px var(--shadow-strong);
  border-right: 4px solid var(--primary);
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: var(--white);
  padding: 16px 20px;
  font-size: 16px;
  font-weight: 600;
  border: 2px solid transparent;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 8px;
}

.mobile-nav a:hover,
.mobile-nav a:active {
  background: rgba(249, 199, 79, 0.2);
  border-left: 4px solid var(--accent);
  color: var(--accent);
  transform: translateX(8px);
}

/* ===== BUTTONS - GEOMETRIC STYLE ===== */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  cursor: pointer;
  border: 3px solid;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 12px var(--shadow);
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--dark);
  border-color: var(--accent);
  color: var(--accent);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px var(--shadow-strong);
}

/* ===== HERO SECTION - GEOMETRIC IMPACT ===== */
.hero {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 50%, var(--accent) 100%);
  padding: 80px 20px;
  position: relative;
  overflow: hidden;
  border-bottom: 8px solid var(--dark);
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  transform: rotate(45deg);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(0, 0, 0, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.hero .container {
  position: relative;
  z-index: 10;
}

.hero h1 {
  color: var(--white);
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  font-size: 48px;
  line-height: 1.1;
}

.hero .subheadline {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 32px;
  font-weight: 400;
  text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.2);
}

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

/* ===== HERO SECONDARY ===== */
.hero-secondary {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  padding: 60px 20px 40px;
  border-bottom: 4px solid var(--primary);
}

.hero-secondary h1 {
  color: var(--white);
  font-size: 40px;
}

.hero-secondary .intro {
  color: var(--accent);
  font-size: 18px;
  font-weight: 600;
}

.breadcrumb {
  margin-bottom: 20px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.breadcrumb a {
  color: var(--accent);
  border-bottom: 1px solid transparent;
}

.breadcrumb a:hover {
  border-bottom: 1px solid var(--accent);
}

/* ===== STATS BAR - GEOMETRIC BLOCKS ===== */
.stats-bar {
  background: var(--dark);
  padding: 40px 20px;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

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

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1 1 200px;
  min-width: 150px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 3px solid var(--primary);
  transition: all 0.3s ease;
}

.stat-item:hover {
  background: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 16px var(--shadow-strong);
}

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

.stat-label {
  font-size: 14px;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
}

/* ===== SECTIONS - STRUCTURED SPACING ===== */
section {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.section-intro {
  text-align: center;
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 40px;
  font-weight: 600;
}

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

.text-section h3 {
  color: var(--primary);
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  margin-bottom: 16px;
}

.text-section p {
  color: var(--gray);
  line-height: 1.8;
}

/* ===== PROBLEM-SOLUTION ===== */
.problem-solution {
  background: var(--light-gray);
  border-left: 8px solid var(--primary);
  border-right: 8px solid var(--secondary);
}

/* ===== SERVICES GRID - GEOMETRIC CARDS ===== */
.services-overview,
.services-detailed {
  background: var(--white);
}

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

.service-card {
  flex: 1 1 100%;
  background: var(--white);
  padding: 32px;
  border: 3px solid var(--secondary);
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 100%;
  background: var(--primary);
  transition: width 0.3s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-strong);
  border-color: var(--primary);
}

.service-card:hover::before {
  width: 100%;
  opacity: 0.1;
}

.service-card h3 {
  color: var(--secondary);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 12px;
}

.service-card p {
  color: var(--gray);
  margin-bottom: 16px;
}

.service-card ul {
  margin: 20px 0;
  padding-left: 20px;
}

.service-card li {
  margin-bottom: 12px;
  color: var(--gray);
  position: relative;
  padding-left: 24px;
}

.service-card li::before {
  content: '▪';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 20px;
}

.price {
  display: block;
  font-size: 32px;
  font-weight: 700;
  color: var(--primary);
  font-family: 'Montserrat', sans-serif;
  margin: 20px 0;
  text-align: right;
}

/* ===== BENEFITS GRID ===== */
.benefits {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  color: var(--white);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.benefits h2 {
  color: var(--white);
  text-align: center;
}

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

.benefit-item {
  flex: 1 1 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 15px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid var(--accent);
  transition: all 0.3s ease;
}

.benefit-item:hover {
  background: rgba(249, 199, 79, 0.2);
  transform: translateX(8px);
  border-left: 8px solid var(--accent);
}

.benefit-item h3 {
  color: var(--accent);
  font-size: 20px;
}

.benefit-item p {
  color: var(--white);
}

/* ===== TESTIMONIALS - STRUCTURED CARDS ===== */
.testimonials,
.testimonials-featured {
  background: var(--light-gray);
  padding: 60px 20px;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 32px;
  background: var(--white);
  border-left: 6px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
  margin-bottom: 24px;
  position: relative;
  transition: all 0.3s ease;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 10px;
  font-size: 80px;
  color: rgba(232, 93, 63, 0.1);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--dark);
  font-style: italic;
  position: relative;
  z-index: 2;
}

.client-name {
  font-weight: 700;
  color: var(--secondary);
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 12px;
}

.client-location {
  font-size: 14px;
  color: var(--gray);
  margin-top: 4px;
}

.rating {
  color: var(--accent);
  font-size: 20px;
  margin-top: 8px;
}

/* ===== CASE STUDIES ===== */
.case-studies {
  background: var(--white);
}

.case-study-card {
  background: var(--light-gray);
  padding: 32px;
  border: 3px solid var(--secondary);
  border-top: 6px solid var(--primary);
  margin-bottom: 24px;
  box-shadow: 0 4px 12px var(--shadow);
}

.case-study-card h3 {
  color: var(--primary);
  margin-bottom: 20px;
}

.case-study-card p {
  margin-bottom: 12px;
  color: var(--gray);
}

.case-study-card strong {
  color: var(--secondary);
  text-transform: uppercase;
  font-size: 14px;
  letter-spacing: 0.5px;
}

/* ===== RESULTS SHOWCASE ===== */
.results-showcase {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  padding: 60px 20px;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.results-showcase h2 {
  color: var(--white);
  text-align: center;
}

.results-showcase .stats-grid {
  margin-top: 40px;
}

.results-showcase .stat-item {
  background: rgba(255, 255, 255, 0.15);
  border-color: var(--accent);
}

.results-showcase .stat-number {
  color: var(--white);
}

/* ===== CTA SECTIONS - GEOMETRIC IMPACT ===== */
.cta-banner,
.cta-section,
.cta-enrollment,
.cta-blog,
.cta-join-success,
.cta-consultation {
  padding: 60px 20px;
  text-align: center;
  border: 4px solid var(--accent);
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 300px;
  height: 300px;
  background: rgba(249, 199, 79, 0.1);
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.cta-banner h2,
.cta-section h2,
.cta-enrollment h2,
.cta-blog h2 {
  color: var(--dark);
  margin-bottom: 24px;
}

.cta-banner p,
.cta-section p {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 32px;
}

.urgency {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 12px 24px;
  font-weight: 700;
  margin-bottom: 24px;
  border: 3px solid var(--dark);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.guarantee {
  display: block;
  margin-top: 20px;
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== PROGRAM FEATURED ===== */
.program-featured {
  background: linear-gradient(135deg, #c39e96 0%, var(--primary) 100%);
  padding: 60px 20px;
  color: var(--white);
  border: 4px solid var(--accent);
  position: relative;
}

.featured-badge {
  display: inline-block;
  background: var(--accent);
  color: var(--dark);
  padding: 8px 20px;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  border: 2px solid var(--dark);
}

.program-featured h2 {
  color: var(--white);
}

.program-featured .highlight {
  color: var(--accent);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
}

/* ===== FORMAT OPTIONS & METHOD CARDS ===== */
.format-options,
.delivery-methods {
  background: var(--light-gray);
}

.format-cards,
.method-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.format-card,
.method-card {
  flex: 1 1 100%;
  padding: 32px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-top: 6px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
}

.format-card:hover,
.method-card:hover {
  transform: translateY(-4px);
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

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

/* ===== BLOG SECTIONS ===== */
.blog-featured {
  background: var(--light-gray);
  padding: 60px 20px;
}

.featured-post {
  background: var(--white);
  padding: 40px;
  border: 4px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

.featured-post h2 {
  color: var(--secondary);
  margin-bottom: 20px;
}

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

.post-meta {
  display: block;
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  font-weight: 600;
}

.blog-categories {
  background: var(--white);
  padding: 40px 20px;
}

.category-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.category-pill {
  display: inline-block;
  padding: 12px 20px;
  background: var(--light-gray);
  border: 2px solid var(--secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.category-pill:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.blog-grid {
  background: var(--light-gray);
}

.blog-posts-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.blog-post-card {
  flex: 1 1 100%;
  background: var(--white);
  padding: 24px;
  border: 3px solid var(--secondary);
  border-left: 6px solid var(--primary);
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
}

.blog-post-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-strong);
  border-left-width: 12px;
}

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

.read-more {
  color: var(--primary);
  font-weight: 700;
  margin-top: 12px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

.read-more:hover {
  border-bottom: 2px solid var(--primary);
  transform: translateX(4px);
}

/* ===== NEWSLETTER SIGNUP ===== */
.newsletter-signup {
  padding: 60px 20px;
  text-align: center;
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.newsletter-signup h2 {
  color: var(--dark);
  margin-bottom: 24px;
}

.benefits-list {
  margin: 32px 0;
}

.benefits-list p {
  color: var(--dark);
  font-size: 16px;
  margin-bottom: 12px;
  font-weight: 600;
}

.newsletter-note {
  color: var(--accent);
  font-size: 14px;
  font-weight: 600;
  margin-top: 20px;
}

/* ===== CONTACT SECTIONS ===== */
.contact-methods {
  background: var(--light-gray);
}

.contact-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-top: 32px;
}

.contact-card {
  flex: 1 1 100%;
  padding: 32px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-top: 6px solid var(--primary);
  text-align: center;
  box-shadow: 0 4px 12px var(--shadow);
  transition: all 0.3s ease;
}

.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

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

.contact-form-section {
  background: var(--white);
}

.map-location,
.office-hours {
  background: var(--light-gray);
}

.location-info {
  background: var(--white);
  padding: 32px;
  border: 3px solid var(--secondary);
  border-left: 6px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

.location-info ul {
  margin-top: 16px;
  padding-left: 20px;
}

.location-info li {
  margin-bottom: 8px;
  color: var(--gray);
}

.hours-table {
  background: var(--white);
  padding: 32px;
  border: 3px solid var(--secondary);
  box-shadow: 0 4px 12px var(--shadow);
  margin-top: 24px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
  border-bottom: 2px solid var(--light-gray);
}

.hours-row:last-child {
  border-bottom: none;
}

.day {
  font-weight: 700;
  color: var(--secondary);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.time {
  color: var(--gray);
  font-weight: 600;
}

.consultation-booking,
.response-time {
  background: var(--white);
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #c39e96 0%, var(--primary) 100%);
  padding: 100px 20px;
  text-align: center;
  color: var(--white);
  border-bottom: 4px solid var(--accent);
}

.success-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 32px;
  background: var(--accent);
  color: var(--dark);
  font-size: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 6px solid var(--white);
  font-weight: 700;
}

.thank-you-hero h1 {
  color: var(--white);
  margin-bottom: 20px;
}

.confirmation-message {
  font-size: 20px;
  color: var(--white);
  max-width: 600px;
  margin: 0 auto;
}

.what-next {
  background: var(--light-gray);
}

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

.step-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 24px;
  background: var(--white);
  border: 3px solid var(--secondary);
  border-left: 6px solid var(--primary);
  box-shadow: 0 4px 12px var(--shadow);
}

.step-number {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  font-size: 32px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--secondary);
  flex-shrink: 0;
}

.step-item p {
  color: var(--gray);
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

.while-you-wait {
  background: var(--white);
}

.resource-links {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 24px;
}

.resource-link {
  display: block;
  padding: 20px;
  background: var(--light-gray);
  border: 3px solid var(--secondary);
  border-left: 6px solid var(--primary);
  font-weight: 600;
  color: var(--secondary);
  transition: all 0.3s ease;
}

.resource-link:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateX(8px);
}

.alternative-actions {
  background: var(--light-gray);
  text-align: center;
}

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

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: var(--white);
  padding: 60px 20px;
}

.legal-content .text-section {
  background: var(--light-gray);
  padding: 32px;
  border-left: 6px solid var(--primary);
  margin-bottom: 32px;
}

.legal-content h2 {
  color: var(--secondary);
  border-bottom: 3px solid var(--accent);
  padding-bottom: 12px;
  margin-bottom: 20px;
}

.legal-content h3 {
  color: var(--primary);
  margin-top: 24px;
}

.last-updated {
  color: var(--gray);
  font-size: 14px;
  font-style: italic;
}

/* ===== MISSION & VISION ===== */
.mission-vision {
  background: var(--light-gray);
}

.values {
  background: var(--white);
}

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

.value-card {
  flex: 1 1 100%;
  padding: 32px;
  background: var(--light-gray);
  border: 3px solid var(--secondary);
  border-top: 6px solid var(--primary);
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px var(--shadow);
}

.value-card:hover {
  transform: translateY(-4px);
  background: var(--white);
  border-color: var(--primary);
  box-shadow: 0 8px 24px var(--shadow-strong);
}

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

.methodology {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--dark) 100%);
  padding: 60px 20px;
  color: var(--white);
  border-top: 4px solid var(--accent);
  border-bottom: 4px solid var(--accent);
}

.methodology h2 {
  color: var(--white);
}

.methodology p {
  color: var(--white);
}

/* ===== FOOTER - GEOMETRIC STRUCTURE ===== */
footer {
  background: linear-gradient(135deg, var(--dark) 0%, var(--secondary) 100%);
  color: var(--white);
  padding: 60px 20px 20px;
  border-top: 6px solid var(--primary);
}

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

.footer-column {
  flex: 1 1 100%;
  min-width: 200px;
}

.footer-column img {
  height: 60px;
  margin-bottom: 20px;
}

.footer-column h4 {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 18px;
  border-bottom: 2px solid var(--accent);
  padding-bottom: 8px;
}

.footer-column a {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  border-left: 3px solid transparent;
  padding-left: 8px;
}

.footer-column a:hover {
  color: var(--accent);
  border-left: 3px solid var(--accent);
  transform: translateX(4px);
}

.footer-column p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  line-height: 1.8;
}

.footer-bottom {
  border-top: 2px solid rgba(255, 255, 255, 0.2);
  padding-top: 24px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.legal-links a {
  color: var(--accent);
  font-size: 14px;
  border-bottom: 1px solid transparent;
  transition: all 0.3s ease;
  font-weight: 600;
}

.legal-links a:hover {
  border-bottom: 1px solid var(--accent);
}

.copyright {
  text-align: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--dark);
  color: var(--white);
  padding: 20px;
  z-index: 999;
  box-shadow: 0 -4px 12px var(--shadow-strong);
  border-top: 4px solid var(--primary);
  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 {
  flex: 1 1 100%;
  margin: 0 0 16px 0;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.9);
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 700;
  border: 2px solid;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  flex: 1 1 auto;
}

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

.cookie-accept:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

.cookie-reject {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.cookie-reject:hover {
  background: var(--white);
  color: var(--dark);
}

.cookie-settings {
  background: transparent;
  color: var(--accent);
  border-color: var(--accent);
}

.cookie-settings:hover {
  background: var(--accent);
  color: var(--dark);
}

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

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

.cookie-modal-content {
  background: var(--white);
  padding: 40px;
  max-width: 600px;
  width: 100%;
  border: 4px solid var(--primary);
  box-shadow: 0 8px 32px var(--shadow-strong);
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 32px;
  background: var(--primary);
  color: var(--white);
  border: 2px solid var(--white);
  font-size: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: var(--accent);
  color: var(--dark);
  transform: rotate(90deg);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: var(--light-gray);
  border-left: 4px solid var(--primary);
}

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

.cookie-category p {
  color: var(--gray);
  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: var(--secondary);
  cursor: pointer;
}

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

.cookie-save-preferences {
  flex: 1 1 100%;
  padding: 16px 32px;
  background: var(--primary);
  color: var(--white);
  border: 3px solid var(--primary);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cookie-save-preferences:hover {
  background: var(--accent);
  color: var(--dark);
  border-color: var(--accent);
}

/* ===== RESPONSIVE - TABLET (768px+) ===== */
@media (min-width: 768px) {
  h1 {
    font-size: 56px;
  }
  
  h2 {
    font-size: 40px;
  }
  
  .main-nav {
    display: flex;
    gap: 8px;
  }
  
  .header-cta {
    display: block;
  }
  
  .mobile-menu-toggle {
    display: none;
  }
  
  .hero h1 {
    font-size: 56px;
  }
  
  .stats-grid {
    gap: 32px;
  }
  
  .stat-item {
    flex: 1 1 200px;
  }
  
  .services-grid {
    gap: 32px;
  }
  
  .service-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .benefits-grid {
    gap: 32px;
  }
  
  .benefit-item {
    flex: 1 1 calc(50% - 16px);
  }
  
  .format-cards,
  .method-cards {
    gap: 32px;
  }
  
  .format-card,
  .method-card {
    flex: 1 1 calc(33.333% - 22px);
  }
  
  .blog-posts-grid {
    gap: 32px;
  }
  
  .blog-post-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .contact-cards {
    gap: 32px;
  }
  
  .contact-card {
    flex: 1 1 calc(33.333% - 22px);
  }
  
  .values-grid {
    gap: 32px;
  }
  
  .value-card {
    flex: 1 1 calc(50% - 16px);
  }
  
  .footer-content {
    gap: 40px;
  }
  
  .footer-column {
    flex: 1 1 calc(25% - 30px);
  }
  
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .cookie-banner p {
    flex: 1 1 auto;
    margin: 0;
  }
  
  .cookie-buttons {
    width: auto;
    flex: 0 0 auto;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    flex: 0 0 auto;
  }
}

/* ===== RESPONSIVE - DESKTOP (1024px+) ===== */
@media (min-width: 1024px) {
  h1 {
    font-size: 64px;
  }
  
  h2 {
    font-size: 48px;
  }
  
  .hero h1 {
    font-size: 64px;
  }
  
  .service-card {
    flex: 1 1 calc(33.333% - 22px);
  }
  
  .blog-post-card {
    flex: 1 1 calc(33.333% - 22px);
  }
}

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

.mt-2 {
  margin-top: 16px;
}

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

.mb-2 {
  margin-bottom: 16px;
}

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

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

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

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

/* ===== PRINT STYLES ===== */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .cookie-modal,
  header .header-cta,
  .cta-buttons,
  footer {
    display: none;
  }
  
  body {
    font-size: 12pt;
  }
  
  h1 {
    font-size: 24pt;
  }
  
  h2 {
    font-size: 18pt;
  }
}