/* =================================================================
   MEADOW BLAZE - WARM & FRIENDLY DESIGN SYSTEM
   Professional TED Talk Coaching with Warm, Approachable Aesthetic
   ================================================================= */

/* 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, Helvetica, Arial, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  background-color: #FFF9F0;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #2C2C2C;
}

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

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

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

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

p {
  margin-bottom: 16px;
  color: #555;
}

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

a:hover {
  color: #C33D13;
  text-decoration: none;
}

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

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

strong {
  font-weight: 600;
  color: #333;
}

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

/* HEADER STYLES */
header {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 20px 0;
  box-shadow: 0 2px 12px rgba(216, 67, 21, 0.1);
  position: sticky;
  top: 0;
  z-index: 900;
  border-bottom: 3px solid #D84315;
}

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

.logo {
  height: 50px;
  width: auto;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

/* MAIN NAVIGATION */
.main-nav {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.main-nav a {
  font-weight: 500;
  font-size: 16px;
  color: #2C2C2C;
  padding: 8px 12px;
  border-radius: 8px;
  transition: all 0.3s ease;
  position: relative;
}

.main-nav a:hover {
  background-color: rgba(216, 67, 21, 0.1);
  color: #D84315;
  transform: translateY(-2px);
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 3px;
  background-color: #D84315;
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 2px;
}

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

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1001;
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  color: white;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(216, 67, 21, 0.4);
}

/* MOBILE MENU OVERLAY */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: -100%;
  width: 80%;
  max-width: 320px;
  height: 100vh;
  background: linear-gradient(180deg, #FFF9F0 0%, #FFF3E0 100%);
  z-index: 1000;
  padding: 80px 30px 30px;
  box-shadow: -4px 0 24px rgba(0, 0, 0, 0.2);
  transition: right 0.4s ease;
  overflow-y: auto;
  border-left: 4px solid #D84315;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #D84315;
  color: white;
  border: none;
  padding: 10px 14px;
  font-size: 24px;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(216, 67, 21, 0.3);
}

.mobile-menu-close:hover {
  background: #C33D13;
  transform: rotate(90deg) scale(1.1);
}

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

.mobile-nav a {
  padding: 14px 20px;
  background-color: white;
  border-radius: 12px;
  color: #2C2C2C;
  font-weight: 500;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background-color: #FFF3E0;
  border-left-color: #D84315;
  transform: translateX(8px);
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.15);
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(216, 67, 21, 0.12);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(216, 67, 21, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

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

.hero h1 {
  color: #D84315;
  margin-bottom: 24px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.subheadline {
  font-size: 24px;
  font-weight: 600;
  color: #558B2F;
  margin-bottom: 20px;
}

.value-proposition {
  font-size: 18px;
  color: #555;
  margin-bottom: 32px;
  line-height: 1.8;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-size: 16px;
  font-weight: 600;
  border-radius: 30px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: 2px solid transparent;
  text-align: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.btn-primary {
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  color: white;
  border-color: #D84315;
}

.btn-primary:hover {
  background: linear-gradient(135deg, #C33D13 0%, #9A3010 100%);
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.3);
  color: white;
}

.btn-secondary {
  background: white;
  color: #D84315;
  border-color: #D84315;
}

.btn-secondary:hover {
  background: #D84315;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(216, 67, 21, 0.25);
}

/* CTA BUTTONS CONTAINER */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

/* TRUST INDICATORS */
.trust-indicators {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 40px;
}

.trust-indicators p {
  font-size: 16px;
  color: #558B2F;
  font-weight: 500;
  padding: 10px 20px;
  background-color: white;
  border-radius: 20px;
  box-shadow: 0 2px 8px rgba(85, 139, 47, 0.1);
}

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

.section-intro {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 40px;
}

/* PROBLEM-SOLUTION SECTION */
.problem-solution {
  background: linear-gradient(135deg, white 0%, #FFF9F0 100%);
  border-radius: 24px;
  padding: 60px 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.problem-solution h2 {
  text-align: center;
  margin-bottom: 40px;
}

.problem, .solution, .transformation {
  max-width: 800px;
  margin: 0 auto 24px;
  padding: 24px;
  border-radius: 16px;
  background-color: white;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #D84315;
}

.problem {
  border-left-color: #C33D13;
}

.solution {
  border-left-color: #558B2F;
}

.transformation {
  border-left-color: #D84315;
  font-weight: 500;
}

/* SERVICES GRID */
.services-overview, .services-detailed {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

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

.service-card, .service-detail {
  background: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  flex: 1 1 300px;
  max-width: 360px;
  border: 2px solid transparent;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover, .service-detail:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 28px rgba(216, 67, 21, 0.2);
  border-color: #D84315;
}

.service-card h3, .service-detail h2 {
  color: #D84315;
  margin-bottom: 16px;
}

.service-card p, .service-detail p {
  margin-bottom: 16px;
}

.price {
  font-size: 28px;
  font-weight: 700;
  color: #558B2F;
  margin: 20px 0;
  padding: 12px;
  background-color: #FFF3E0;
  border-radius: 12px;
  text-align: center;
}

.service-detail {
  max-width: 100%;
}

.service-detail h3 {
  font-size: 20px;
  color: #558B2F;
  margin-top: 24px;
  margin-bottom: 12px;
}

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

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

.service-detail ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #558B2F;
  font-weight: 700;
  font-size: 18px;
}

/* METHODOLOGY PREVIEW */
.methodology-preview {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.process-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  margin: 40px 0;
}

.step {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 220px;
  max-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.2);
}

.step-number {
  display: inline-block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  background: linear-gradient(135deg, #558B2F 0%, #689F38 100%);
  color: white;
  border-radius: 50%;
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(85, 139, 47, 0.3);
}

.step h3 {
  color: #D84315;
  font-size: 20px;
  margin-bottom: 12px;
}

.step p {
  font-size: 15px;
  color: #666;
}

/* TESTIMONIALS */
.testimonials {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

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

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

.testimonial-card {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 400px;
  max-width: 550px;
  border-left: 4px solid #558B2F;
  position: relative;
  margin-bottom: 20px;
  align-items: flex-start;
  flex-direction: column;
}

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

.client-name, .client {
  font-weight: 600;
  color: #D84315;
  font-style: normal;
  margin-top: 12px;
}

/* BENEFITS SECTION */
.benefits {
  background: linear-gradient(135deg, white 0%, #FFF9F0 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.benefits-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.benefit {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 260px;
  max-width: 280px;
  transition: all 0.3s ease;
  border-top: 4px solid #558B2F;
  position: relative;
  margin-bottom: 20px;
}

.benefit:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.2);
}

.benefit h3 {
  color: #D84315;
  margin-bottom: 16px;
}

/* CTA BANNER */
.cta-banner {
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  color: white;
  text-align: center;
  padding: 60px 20px;
  border-radius: 24px;
  box-shadow: 0 8px 32px rgba(216, 67, 21, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: white;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.cta-banner p {
  color: white;
  font-size: 18px;
  margin-bottom: 32px;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary {
  background: white;
  color: #D84315;
  border-color: white;
  position: relative;
  z-index: 1;
}

.cta-banner .btn-primary:hover {
  background: #FFF3E0;
  transform: translateY(-3px) scale(1.05);
}

.guarantee {
  margin-top: 24px;
  font-size: 16px;
  color: white;
  font-weight: 500;
  position: relative;
  z-index: 1;
}

/* STORY SECTION */
.story {
  background: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.story h3 {
  color: #558B2F;
  margin-top: 32px;
  margin-bottom: 16px;
}

.story ul {
  list-style: none;
  padding: 0;
}

.story ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
  font-size: 16px;
}

.story ul li::before {
  content: '🔥';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* TEAM SECTION */
.team {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

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

.team-member {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 300px;
  max-width: 360px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.team-member:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.2);
}

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

.role {
  font-weight: 600;
  color: #558B2F;
  font-size: 16px;
  margin-bottom: 16px;
}

/* CREDENTIALS/STATS */
.credentials, .statistics {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

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

.stat {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 200px;
  max-width: 260px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.stat:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.2);
}

.stat h3 {
  font-size: 48px;
  color: #558B2F;
  margin-bottom: 12px;
  font-weight: 700;
}

.stat p {
  font-size: 16px;
  color: #666;
  font-weight: 500;
}

/* FRAMEWORK/PHILOSOPHY */
.framework, .philosophy {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

.framework h2, .philosophy h2 {
  text-align: center;
  margin-bottom: 24px;
}

.framework p, .philosophy p {
  max-width: 800px;
  margin: 0 auto 24px;
  text-align: center;
  font-size: 18px;
  line-height: 1.8;
}

/* PROCESS DETAILED */
.process-detailed {
  background: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.phase {
  background-color: white;
  padding: 32px;
  border-radius: 16px;
  margin-bottom: 24px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #558B2F;
  transition: all 0.3s ease;
}

.phase:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 20px rgba(85, 139, 47, 0.15);
}

.phase h3 {
  color: #D84315;
  margin-bottom: 16px;
}

/* TED PRINCIPLES */
.ted-principles {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

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

.ted-principles ul {
  max-width: 700px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}

.ted-principles ul li {
  background-color: white;
  padding: 20px 24px;
  border-radius: 12px;
  margin-bottom: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #D84315;
  font-size: 16px;
  transition: all 0.3s ease;
}

.ted-principles ul li:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(216, 67, 21, 0.15);
}

/* CASE STUDIES */
.case-studies {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

.case-study {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 32px;
  border-radius: 20px;
  margin-bottom: 32px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  border-top: 4px solid #558B2F;
}

.case-study h3 {
  color: #D84315;
  margin-bottom: 12px;
}

.industry {
  font-size: 14px;
  color: #558B2F;
  font-weight: 600;
  margin-bottom: 20px;
  text-transform: uppercase;
}

/* RESOURCES PAGE */
.resource-categories {
  background: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.category-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.category {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
  max-width: 340px;
  transition: all 0.3s ease;
  border-top: 4px solid #D84315;
  position: relative;
  margin-bottom: 20px;
}

.category:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.2);
}

.category h3 {
  color: #D84315;
  margin-bottom: 16px;
}

/* BLOG ARTICLES */
.blog-articles {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

.article-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

article {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 350px;
  max-width: 450px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

article:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.2);
}

article h3 {
  color: #D84315;
  margin-bottom: 16px;
}

.meta {
  font-size: 14px;
  color: #558B2F;
  font-weight: 500;
}

/* DOWNLOADS */
.guides-downloads {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.download-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.download-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 320px;
  max-width: 400px;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
}

.download-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.2);
}

.download-card h3 {
  color: #D84315;
  margin-bottom: 16px;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
  text-align: center;
}

.newsletter-benefits {
  max-width: 500px;
  margin: 32px auto;
}

.newsletter-benefits ul {
  list-style: none;
  padding: 0;
  text-align: left;
}

.newsletter-benefits ul li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 16px;
}

.newsletter-benefits ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #558B2F;
  font-weight: 700;
  font-size: 20px;
}

/* CONTACT PAGE */
.contact-content {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

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

.contact-form-section, .contact-info-section {
  flex: 1 1 400px;
  max-width: 550px;
}

.form-note {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 24px;
  border-radius: 16px;
  margin-top: 24px;
  border-left: 4px solid #D84315;
}

.form-note ul {
  margin-top: 16px;
  list-style: none;
  padding: 0;
}

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

.form-note ul li::before {
  content: '•';
  position: absolute;
  left: 0;
  color: #D84315;
  font-size: 20px;
}

.info-block {
  background: linear-gradient(135deg, #FFF9F0 0%, #FFF3E0 100%);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #558B2F;
}

.info-block h3 {
  color: #D84315;
  font-size: 18px;
  margin-bottom: 12px;
}

/* CONSULTATION OPTIONS */
.consultation-options {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

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

.option-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 350px;
  max-width: 450px;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.option-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(85, 139, 47, 0.2);
}

.option-card h3 {
  color: #558B2F;
  margin-bottom: 16px;
}

/* LEGAL PAGES */
.legal-hero {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 60px 20px;
  text-align: center;
  border-radius: 24px;
  margin-bottom: 40px;
}

.legal-hero h1 {
  color: #D84315;
  margin-bottom: 16px;
}

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

.legal-content {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
}

.text-section {
  max-width: 800px;
  margin: 0 auto 40px;
}

.text-section h2 {
  color: #D84315;
  margin-bottom: 16px;
  margin-top: 32px;
}

.text-section h3 {
  color: #558B2F;
  margin-bottom: 12px;
  margin-top: 24px;
}

/* THANK YOU PAGE */
.next-steps {
  background: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

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

.step-card {
  background-color: white;
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  flex: 1 1 280px;
  max-width: 320px;
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
  margin-bottom: 20px;
}

.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 8px 24px rgba(216, 67, 21, 0.2);
}

.step-card .step-number {
  display: inline-block;
  width: 60px;
  height: 60px;
  line-height: 60px;
  background: linear-gradient(135deg, #D84315 0%, #C33D13 100%);
  color: white;
  border-radius: 50%;
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
  box-shadow: 0 4px 12px rgba(216, 67, 21, 0.3);
}

.step-card h3 {
  color: #558B2F;
  margin-bottom: 16px;
}

.additional-resources {
  background-color: white;
  border-radius: 24px;
  padding: 60px 20px;
  text-align: center;
}

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

.return-home {
  text-align: center;
  padding: 40px 20px;
}

/* FAQ */
.faq {
  background: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  border-radius: 24px;
  padding: 60px 20px;
}

.faq-item {
  background-color: white;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  border-left: 4px solid #558B2F;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 4px 16px rgba(85, 139, 47, 0.15);
}

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

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  color: white;
  padding: 60px 20px 30px;
  margin-top: 60px;
  border-top: 4px solid #D84315;
}

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

.footer-section {
  flex: 1 1 250px;
}

.footer-section h4 {
  color: #D84315;
  margin-bottom: 20px;
  font-size: 18px;
}

.footer-section p {
  color: #CCC;
  margin-bottom: 12px;
  font-size: 14px;
}

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

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

.footer-section nav a:hover {
  color: #D84315;
  transform: translateX(4px);
}

.footer-logo {
  height: 40px;
  width: auto;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
}

.copyright {
  text-align: center;
  color: #999;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C2C2C 0%, #1A1A1A 100%);
  color: white;
  padding: 24px 20px;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  z-index: 950;
  display: none;
  border-top: 3px solid #D84315;
}

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

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

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

.cookie-text {
  flex: 1 1 400px;
  font-size: 14px;
  color: #CCC;
}

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

.cookie-btn {
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background-color: #558B2F;
  color: white;
}

.cookie-accept:hover {
  background-color: #689F38;
  transform: translateY(-2px);
}

.cookie-reject {
  background-color: transparent;
  color: white;
  border: 1px solid white;
}

.cookie-reject:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.cookie-settings {
  background-color: transparent;
  color: #D84315;
  border: 1px solid #D84315;
}

.cookie-settings:hover {
  background-color: rgba(216, 67, 21, 0.1);
}

/* COOKIE PREFERENCES MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 960;
  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: linear-gradient(135deg, #FFF9F0 0%, white 100%);
  padding: 40px;
  border-radius: 24px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  animation: slideIn 0.3s ease;
}

@keyframes slideIn {
  from {
    transform: translateY(-50px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

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

.cookie-category {
  background-color: white;
  padding: 20px;
  border-radius: 12px;
  margin-bottom: 16px;
  border-left: 4px solid #558B2F;
}

.cookie-category h3 {
  color: #558B2F;
  font-size: 16px;
  margin-bottom: 8px;
}

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

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

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

.toggle-switch.active {
  background-color: #558B2F;
}

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

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

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

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

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

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography */
  h1 {
    font-size: 32px;
  }
  
  h2 {
    font-size: 24px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Header */
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .mobile-menu {
    display: block;
  }
  
  /* Hero */
  .hero {
    padding: 60px 20px;
  }
  
  /* Buttons */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    width: 100%;
  }
  
  /* Trust Indicators */
  .trust-indicators {
    flex-direction: column;
    gap: 16px;
  }
  
  /* Grids - Use Flexbox Column */
  .services-grid,
  .benefits-grid,
  .team-grid,
  .stats-grid,
  .process-steps,
  .testimonial-grid,
  .category-grid,
  .article-grid,
  .download-grid,
  .options-grid,
  .steps-grid {
    flex-direction: column;
  }
  
  .service-card,
  .benefit,
  .team-member,
  .stat,
  .step,
  .testimonial-card,
  .category,
  article,
  .download-card,
  .option-card,
  .step-card {
    max-width: 100%;
  }
  
  /* Contact Grid */
  .contact-grid {
    flex-direction: column;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-section {
    max-width: 100%;
  }
  
  /* Cookie Consent */
  .cookie-content {
    flex-direction: column;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-btn {
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
    max-height: 90vh;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }
  
  h2 {
    font-size: 22px;
  }
  
  .hero {
    padding: 40px 20px;
  }
  
  section {
    padding: 30px 15px;
  }
  
  .service-card,
  .benefit,
  .team-member,
  .phase,
  .case-study {
    padding: 24px;
  }
  
  .cookie-modal-content {
    padding: 20px;
  }
}

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

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

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

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

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

/* SMOOTH TRANSITIONS */
* {
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
}

a, button, .btn {
  transition: all 0.3s ease;
}

/* ACCESSIBILITY */
:focus {
  outline: 3px solid #D84315;
  outline-offset: 2px;
}

button:focus,
a:focus,
.btn:focus {
  outline: 3px solid #D84315;
  outline-offset: 2px;
}

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