/* ================================
   BühnenMut - Professional Corporate CSS
   Design Style: Professional Corporate
   ================================ */

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

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

body {
  font-family: 'Open Sans', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2C3E50;
  background-color: #F8F9FA;
  overflow-x: hidden;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Arial', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #2C5F7C;
  margin-bottom: 16px;
}

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

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

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

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

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

a {
  color: #2C5F7C;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #E8943F;
}

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

li {
  margin-bottom: 8px;
  color: #34495E;
}

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

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: 'Montserrat', sans-serif;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: 2px solid transparent;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-color: #2C5F7C;
}

.btn-primary:hover {
  background-color: #1F4459;
  border-color: #1F4459;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(44, 95, 124, 0.3);
}

.btn-secondary {
  background-color: transparent;
  color: #2C5F7C;
  border-color: #2C5F7C;
}

.btn-secondary:hover {
  background-color: #2C5F7C;
  color: #FFFFFF;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(44, 95, 124, 0.2);
}

/* ===== MOBILE MENU TOGGLE BUTTON ===== */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background-color: #2C5F7C;
  color: #FFFFFF;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease;
}

.mobile-menu-toggle:hover {
  background-color: #1F4459;
}

/* ===== MOBILE MENU OVERLAY ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background-color: #FFFFFF;
  box-shadow: -4px 0 16px rgba(0, 0, 0, 0.2);
  z-index: 1002;
  transition: right 0.4s ease;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background-color: transparent;
  border: none;
  font-size: 32px;
  color: #2C5F7C;
  cursor: pointer;
  padding: 8px;
  transition: color 0.3s ease;
}

.mobile-menu-close:hover {
  color: #E8943F;
}

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

.mobile-nav a {
  display: block;
  padding: 16px 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #2C5F7C;
  border-bottom: 1px solid #E8E8E8;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  color: #E8943F;
  padding-left: 8px;
}

/* ===== HEADER ===== */
header {
  background-color: #FFFFFF;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 999;
  padding: 16px 0;
}

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

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

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

.tagline {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  color: #7F8C8D;
  font-style: italic;
}

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

.main-nav a {
  font-family: 'Montserrat', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #2C5F7C;
  padding: 8px 0;
  position: relative;
  transition: color 0.3s ease;
}

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

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

.header-cta {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #2C5F7C 0%, #1F4459 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  margin-bottom: 60px;
  text-align: center;
}

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

.hero h1 {
  color: #FFFFFF;
  font-size: 48px;
  margin-bottom: 24px;
  line-height: 1.2;
}

.hero-subheadline {
  font-size: 18px;
  margin-bottom: 32px;
  color: #F4F1EA;
  line-height: 1.6;
}

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

.trust-badge {
  display: inline-block;
  background-color: rgba(255, 255, 255, 0.15);
  padding: 12px 24px;
  border-radius: 24px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== PAGE HERO ===== */
.page-hero {
  background-color: #F4F1EA;
  padding: 60px 20px 40px 20px;
  margin-bottom: 60px;
}

.breadcrumb {
  font-size: 14px;
  margin-bottom: 16px;
  color: #7F8C8D;
}

.breadcrumb a {
  color: #2C5F7C;
}

.breadcrumb span {
  color: #7F8C8D;
}

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

.section-subheadline {
  font-size: 18px;
  color: #7F8C8D;
  text-align: center;
  margin-bottom: 32px;
}

/* ===== PROBLEM-SOLUTION SECTION ===== */
.problem-solution {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.problem-solution .container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: flex-start;
}

.problem, .solution {
  flex: 1;
  min-width: 280px;
}

.problem-list {
  list-style: none;
  padding-left: 0;
}

.problem-list li {
  padding: 12px 0;
  padding-left: 32px;
  position: relative;
  color: #E74C3C;
  font-weight: 600;
}

.problem-list li::before {
  content: '✗';
  position: absolute;
  left: 0;
  color: #E74C3C;
  font-weight: 700;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.service-card {
  flex: 1;
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card:hover {
  border-color: #2C5F7C;
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(44, 95, 124, 0.15);
}

.service-card.featured {
  border-color: #E8943F;
  background: linear-gradient(135deg, #FFFFFF 0%, #FFF8F0 100%);
}

.service-card h3 {
  color: #2C5F7C;
  font-size: 20px;
  margin-bottom: 12px;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E8943F;
  margin: 8px 0;
}

.badge {
  position: absolute;
  top: -12px;
  right: 16px;
  background-color: #E8943F;
  color: #FFFFFF;
  padding: 6px 16px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
}

/* ===== TECHNIQUES GRID ===== */
.techniques-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.technique-card {
  flex: 1;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  border-left: 4px solid #E8943F;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease;
}

.technique-card:hover {
  transform: translateX(4px);
}

.effectiveness {
  display: inline-block;
  background-color: #27AE60;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  margin-top: 8px;
}

/* ===== STATS GRID ===== */
.stats-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.stat {
  text-align: center;
  min-width: 200px;
}

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

.stat .label {
  display: block;
  font-size: 14px;
  color: #7F8C8D;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== SOCIAL PROOF ===== */
.social-proof {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  background-color: #FFFFFF;
  padding: 60px 20px;
}

.testimonials-grid, .testimonials-cards {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.testimonial-card {
  flex: 1;
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #E8943F;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  font-size: 16px;
  font-style: italic;
  color: #2C3E50;
  line-height: 1.6;
  margin-bottom: 16px;
}

.client-name {
  font-weight: 600;
  color: #2C5F7C;
  font-size: 14px;
  margin-bottom: 8px;
}

.rating {
  color: #E8943F;
  font-size: 18px;
}

/* ===== PROCESS STEPS ===== */
.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.step {
  flex: 1;
  min-width: 200px;
  text-align: center;
  position: relative;
}

.step-number {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #2C5F7C;
  color: #FFFFFF;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin: 0 auto 16px auto;
  font-family: 'Montserrat', sans-serif;
}

/* ===== CTA BANNER ===== */
.cta-banner, .cta-section, .booking-cta, .cta-success {
  background: linear-gradient(135deg, #2C5F7C 0%, #1F4459 100%);
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.cta-banner h2, .cta-section h2, .booking-cta h2, .cta-success h2 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

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

.trust-element, .guarantee {
  font-size: 14px;
  color: #F4F1EA;
  margin-top: 16px;
}

/* ===== SERVICE DETAIL ===== */
.services-detailed {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.service-detail-card {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 6px solid #2C5F7C;
}

.service-detail-card.featured {
  border-left-color: #E8943F;
}

.service-description {
  font-size: 18px;
  color: #34495E;
  margin-bottom: 24px;
  line-height: 1.6;
}

.benefits {
  list-style: none;
  padding-left: 0;
  margin-bottom: 24px;
}

.benefits li {
  padding: 10px 0;
  padding-left: 32px;
  position: relative;
  color: #2C3E50;
}

.benefits li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #27AE60;
  font-weight: 700;
  font-size: 18px;
}

.ideal-for {
  background-color: #F4F1EA;
  padding: 16px;
  border-radius: 4px;
  margin: 16px 0;
}

/* ===== TECHNIQUE DETAIL ===== */
.technique-card-detailed {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  margin-bottom: 32px;
  border-top: 4px solid #E8943F;
}

.technique-info h3 {
  color: #2C5F7C;
  margin-top: 24px;
  margin-bottom: 12px;
}

.when-to-use {
  background-color: #F4F1EA;
  padding: 16px;
  border-radius: 4px;
  margin-top: 16px;
}

/* ===== COMBINATION STRATEGIES ===== */
.combination-strategies {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.strategies-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.strategy-card {
  flex: 1;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* ===== FEATURED TESTIMONIAL ===== */
.featured-testimonial {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.featured-story {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}

.transformation {
  background-color: #F8F9FA;
  padding: 24px;
  border-radius: 4px;
  margin-top: 24px;
}

.transformation p {
  margin-bottom: 12px;
}

/* ===== TRANSFORMATION GRID ===== */
.transformation-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.transformation-card {
  flex: 1;
  min-width: 300px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #27AE60;
}

.client-type {
  display: inline-block;
  background-color: #2C5F7C;
  color: #FFFFFF;
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 16px;
}

/* ===== METRICS ===== */
.results-metrics {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 24px;
}

.metric {
  text-align: center;
  min-width: 200px;
}

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

.metric p {
  font-size: 14px;
  color: #7F8C8D;
}

.source-note {
  text-align: center;
  font-size: 12px;
  color: #95A5A6;
  font-style: italic;
}

/* ===== RESOURCE CATEGORIES ===== */
.categories-grid, .downloads-grid, .resources-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.category-card, .download-card, .resource-card {
  flex: 1;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
  transition: transform 0.3s ease;
}

.category-card:hover, .download-card:hover, .resource-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.12);
}

/* ===== ARTICLES GRID ===== */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: 32px;
}

.article-card {
  flex: 1;
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-top: 3px solid #2C5F7C;
  transition: border-color 0.3s ease;
}

.article-card:hover {
  border-top-color: #E8943F;
}

.read-time, .file-info {
  display: inline-block;
  font-size: 12px;
  color: #95A5A6;
  background-color: #F4F1EA;
  padding: 6px 12px;
  border-radius: 12px;
  margin-top: 12px;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.faq-item {
  background-color: #FFFFFF;
  padding: 24px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  border-left: 4px solid #2C5F7C;
}

.faq-item h3 {
  color: #2C5F7C;
  margin-bottom: 12px;
}

/* ===== NEWSLETTER ===== */
.newsletter-signup {
  background-color: #2C5F7C;
  color: #FFFFFF;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-signup h2 {
  color: #FFFFFF;
}

.newsletter-benefits ul {
  list-style: none;
  padding-left: 0;
  margin: 24px 0;
}

.newsletter-benefits li {
  padding: 8px 0;
  color: #F4F1EA;
}

.privacy-note {
  font-size: 12px;
  color: #BDC3C7;
  margin-top: 16px;
}

.privacy-note a {
  color: #E8943F;
}

/* ===== CONTACT PAGE ===== */
.contact-options {
  margin-bottom: 60px;
}

.options-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.option-card {
  flex: 1;
  min-width: 250px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

.form-container {
  max-width: 800px;
  margin: 0 auto;
}

.form-note {
  background-color: #F4F1EA;
  padding: 16px;
  border-radius: 4px;
  margin-bottom: 24px;
  text-align: center;
}

.form-info {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.office-hours {
  background-color: #F4F1EA;
  padding: 20px;
  border-radius: 4px;
  margin-top: 24px;
}

.office-info {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.location-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.address-info {
  flex: 1;
  min-width: 280px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.trust-signals {
  margin-bottom: 60px;
}

.signals-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.signal {
  background-color: #FFFFFF;
  padding: 16px 24px;
  border-radius: 24px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.signal p {
  margin: 0;
  font-weight: 600;
  color: #27AE60;
}

/* ===== LEGAL PAGES ===== */
.legal-content {
  margin-bottom: 60px;
}

.text-section {
  max-width: 900px;
  margin: 0 auto;
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.last-updated {
  font-size: 14px;
  color: #95A5A6;
  font-style: italic;
}

/* ===== THANK YOU PAGE ===== */
.thank-you-hero {
  background: linear-gradient(135deg, #27AE60 0%, #229954 100%);
  color: #FFFFFF;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 60px;
}

.success-icon {
  width: 100px;
  height: 100px;
  background-color: #FFFFFF;
  color: #27AE60;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 64px;
  font-weight: 700;
  margin: 0 auto 24px auto;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.thank-you-hero h1 {
  color: #FFFFFF;
}

.next-steps {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.steps-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.immediate-resources {
  margin-bottom: 60px;
}

.testimonial-snippet {
  background-color: #F4F1EA;
  padding: 60px 20px;
  text-align: center;
}

.additional-help {
  text-align: center;
  padding: 40px 20px;
}

/* ===== METHODOLOGY ===== */
.methodology {
  background-color: #F4F1EA;
  padding: 60px 20px;
}

.methodology-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.pillar {
  flex: 1;
  min-width: 220px;
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  text-align: center;
}

/* ===== CONTENT WRAPPERS ===== */
.content-wrapper {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.mission, .vision, .values {
  background-color: #FFFFFF;
  padding: 32px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.expertise-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  list-style: none;
  padding-left: 0;
}

.expertise-list li {
  background-color: #2C5F7C;
  color: #FFFFFF;
  padding: 10px 20px;
  border-radius: 20px;
  font-size: 14px;
  font-weight: 600;
}

/* ===== FOOTER ===== */
footer {
  background-color: #2C3E50;
  color: #ECF0F1;
  padding: 60px 20px 20px 20px;
  margin-top: 60px;
}

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

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

.footer-column h4 {
  color: #FFFFFF;
  margin-bottom: 16px;
  font-size: 16px;
}

.footer-column img {
  height: 40px;
  margin-bottom: 12px;
}

.footer-column p {
  color: #BDC3C7;
  font-size: 14px;
  line-height: 1.6;
}

.footer-column .tagline {
  color: #95A5A6;
  font-size: 12px;
  margin-bottom: 8px;
}

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

.footer-column li {
  margin-bottom: 8px;
}

.footer-column a {
  color: #BDC3C7;
  font-size: 14px;
  transition: color 0.3s ease;
}

.footer-column a:hover {
  color: #E8943F;
}

.footer-bottom {
  border-top: 1px solid #34495E;
  padding-top: 24px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
}

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

.footer-legal a {
  color: #95A5A6;
  font-size: 12px;
}

.copyright {
  color: #95A5A6;
  font-size: 12px;
  margin: 0;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #2C3E50;
  color: #FFFFFF;
  padding: 20px;
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.2);
  z-index: 1000;
  display: none;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-consent.show {
  display: block;
  transform: translateY(0);
}

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

.cookie-consent-text {
  flex: 1;
  min-width: 250px;
}

.cookie-consent-text p {
  margin: 0;
  color: #ECF0F1;
  font-size: 14px;
}

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

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

/* Cookie Settings Modal */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1001;
  padding: 20px;
}

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

.cookie-modal-content {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
}

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

.cookie-modal-close {
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #7F8C8D;
}

.cookie-category {
  padding: 16px;
  background-color: #F8F9FA;
  border-radius: 4px;
  margin-bottom: 16px;
}

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

.cookie-toggle {
  position: relative;
  width: 50px;
  height: 26px;
}

.cookie-toggle input {
  opacity: 0;
  width: 0;
  height: 0;
}

.cookie-toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #BDC3C7;
  border-radius: 26px;
  transition: 0.3s;
}

.cookie-toggle-slider:before {
  position: absolute;
  content: '';
  height: 20px;
  width: 20px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  border-radius: 50%;
  transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
  background-color: #2C5F7C;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
  transform: translateX(24px);
}

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

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

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  /* Show mobile menu toggle */
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hide desktop navigation */
  .main-nav {
    display: none;
  }
  
  .header-cta {
    display: none;
  }
  
  /* Typography scaling */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 32px;
  }
  
  .hero-subheadline {
    font-size: 16px;
  }
  
  /* Adjust sections */
  section {
    padding: 32px 16px;
    margin-bottom: 40px;
  }
  
  .hero {
    padding: 60px 16px;
  }
  
  .page-hero {
    padding: 40px 16px 32px 16px;
  }
  
  /* Make grids stack */
  .services-grid,
  .techniques-grid,
  .stats-grid,
  .testimonials-grid,
  .testimonials-cards,
  .process-steps,
  .categories-grid,
  .downloads-grid,
  .resources-grid,
  .articles-grid,
  .strategies-grid,
  .transformation-grid,
  .metrics-grid,
  .options-grid,
  .signals-grid,
  .steps-grid,
  .methodology-grid {
    flex-direction: column;
  }
  
  .service-card,
  .technique-card,
  .stat,
  .testimonial-card,
  .step,
  .category-card,
  .download-card,
  .resource-card,
  .article-card,
  .strategy-card,
  .transformation-card,
  .metric,
  .option-card,
  .signal,
  .pillar {
    min-width: 100%;
  }
  
  /* Hero CTA buttons */
  .hero-cta,
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .hero-cta .btn,
  .cta-buttons .btn {
    width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-legal {
    flex-direction: column;
    gap: 8px;
  }
  
  /* Problem-solution */
  .problem-solution .container {
    flex-direction: column;
  }
  
  /* Cookie consent */
  .cookie-consent-content {
    flex-direction: column;
  }
  
  .cookie-consent-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-consent-buttons .btn {
    width: 100%;
  }
  
  /* Service detail cards */
  .service-detail-card,
  .technique-card-detailed,
  .featured-story,
  .text-section,
  .form-info,
  .address-info {
    padding: 24px;
  }
  
  /* Stats and metrics */
  .stat .number,
  .metric .number {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero h1 {
    font-size: 28px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
  }
  
  .stat .number,
  .metric .number {
    font-size: 32px;
  }
  
  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

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

.service-card,
.technique-card,
.testimonial-card,
.article-card {
  animation: fadeIn 0.6s ease forwards;
}

/* ===== ACCESSIBILITY ===== */
*:focus {
  outline: 2px solid #E8943F;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #E8943F;
  outline-offset: 2px;
}

/* ===== PRINT STYLES ===== */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal {
    display: none;
  }
  
  body {
    background-color: white;
    color: black;
  }
  
  a {
    text-decoration: underline;
  }
}