/* ================================
   DUSK VALOR - CREATIVE ARTISTIC CSS
   Advanced Public Speaking Excellence
   ================================ */

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

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

body {
  font-family: 'Lato', 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.7;
  color: #2C1B47;
  background: linear-gradient(135deg, #fdfbf7 0%, #f8f4ed 100%);
  overflow-x: hidden;
}

/* CREATIVE TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 700;
  line-height: 1.3;
  color: #2C1B47;
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  letter-spacing: -1px;
  background: linear-gradient(135deg, #2C1B47 0%, #8B6F9E 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

h2 {
  font-size: 36px;
  position: relative;
  display: inline-block;
}

h2::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #E8B547 0%, #8B6F9E 100%);
  border-radius: 2px;
}

h3 {
  font-size: 24px;
  color: #8B6F9E;
}

h4 {
  font-size: 20px;
}

p {
  margin-bottom: 16px;
  font-size: 16px;
  color: #4a4a4a;
}

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

a:hover {
  color: #E8B547;
  transform: translateX(3px);
}

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

li {
  margin-bottom: 12px;
  color: #4a4a4a;
}

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

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

/* HEADER STYLES */
header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(44, 27, 71, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 3px solid #E8B547;
}

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

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

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

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

.main-nav a {
  font-weight: 600;
  font-size: 15px;
  color: #2C1B47;
  padding: 8px 0;
  position: relative;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #E8B547 0%, #8B6F9E 100%);
  transition: width 0.3s ease;
}

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

.main-nav a:hover {
  color: #8B6F9E;
  transform: translateY(-2px);
}

/* CTA BUTTON */
.cta-button,
.btn-primary {
  background: linear-gradient(135deg, #E8B547 0%, #d49f3a 100%);
  color: #2C1B47;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  box-shadow: 0 4px 15px rgba(232, 181, 71, 0.3);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.cta-button:hover,
.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(232, 181, 71, 0.5);
  color: #2C1B47;
}

.btn-secondary {
  background: transparent;
  color: #2C1B47;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 15px;
  display: inline-block;
  border: 2px solid #2C1B47;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-secondary:hover {
  background: #2C1B47;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(44, 27, 71, 0.3);
}

.btn-link {
  color: #8B6F9E;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.3s ease;
}

.btn-link::after {
  content: '→';
  transition: transform 0.3s ease;
}

.btn-link:hover {
  color: #E8B547;
}

.btn-link:hover::after {
  transform: translateX(5px);
}

/* MOBILE MENU BUTTON */
.mobile-menu-toggle {
  display: none;
  background: linear-gradient(135deg, #2C1B47 0%, #8B6F9E 100%);
  color: #fff;
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(44, 27, 71, 0.3);
  transition: all 0.3s ease;
  z-index: 1001;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 6px 20px rgba(44, 27, 71, 0.4);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #2C1B47 0%, #1a0f2e 100%);
  box-shadow: -5px 0 25px rgba(0, 0, 0, 0.3);
  z-index: 2000;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 24px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  background: transparent;
  color: #E8B547;
  border: 2px solid #E8B547;
  padding: 8px 16px;
  font-size: 24px;
  cursor: pointer;
  border-radius: 8px;
  margin-bottom: 32px;
  transition: all 0.3s ease;
  display: block;
  width: 100%;
}

.mobile-menu-close:hover {
  background: #E8B547;
  color: #2C1B47;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  border-radius: 8px;
  transition: all 0.3s ease;
  background: rgba(255, 255, 255, 0.05);
  border-left: 4px solid transparent;
}

.mobile-nav a:hover {
  background: rgba(232, 181, 71, 0.2);
  border-left-color: #E8B547;
  transform: translateX(8px);
  color: #E8B547;
}

/* HERO SECTION */
.hero {
  background: linear-gradient(135deg, rgba(44, 27, 71, 0.95) 0%, rgba(139, 111, 158, 0.9) 100%),
              url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><rect fill="%232C1B47" width="1200" height="600"/><circle cx="100" cy="100" r="50" fill="%238B6F9E" opacity="0.2"/><circle cx="900" cy="400" r="80" fill="%23E8B547" opacity="0.15"/></svg>');
  background-size: cover;
  background-position: center;
  padding: 100px 20px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 60px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(232, 181, 71, 0.1) 0%, transparent 70%);
  animation: heroGlow 10s ease-in-out infinite;
}

@keyframes heroGlow {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero h1 {
  color: #fff;
  background: linear-gradient(135deg, #fff 0%, #E8B547 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 24px;
  font-size: 56px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out;
}

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

.subheadline {
  font-size: 20px;
  color: rgba(255, 255, 255, 0.9);
  max-width: 800px;
  margin: 0 auto 32px;
  line-height: 1.6;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.2s both;
}

.trust-indicators {
  color: #E8B547;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 32px;
  text-transform: uppercase;
  letter-spacing: 2px;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.4s both;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  animation: fadeInUp 1s ease-out 0.6s both;
}

/* SECTIONS WITH CREATIVE STYLING */
.value-proposition,
.services-showcase,
.methodology,
.testimonials,
.ideal-client,
.mission,
.story,
.values,
.approach,
.programs-overview,
.program-features,
.coaching-overview,
.who-its-for,
.results-metrics,
.resource-categories,
.featured-articles {
  padding: 80px 20px;
  position: relative;
}

.value-proposition {
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.05) 0%, rgba(139, 111, 158, 0.05) 100%);
  border-radius: 20px;
  margin: 60px auto;
  box-shadow: 0 10px 40px rgba(44, 27, 71, 0.1);
}

.value-proposition h2 {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 20px;
}

.value-proposition > .container > p {
  text-align: center;
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 48px;
  color: #555;
}

/* BENEFITS GRID */
.benefits-grid {
  display: flex;
  gap: 32px;
  margin-bottom: 48px;
  flex-wrap: wrap;
  justify-content: center;
}

.benefit-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #E8B547;
  position: relative;
  overflow: hidden;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(232, 181, 71, 0.1), transparent);
  transition: left 0.6s ease;
}

.benefit-card:hover::before {
  left: 100%;
}

.benefit-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.benefit-card h3 {
  margin-bottom: 16px;
  font-size: 22px;
}

.benefit-card p {
  color: #666;
  line-height: 1.6;
}

/* METRICS BAR */
.metrics-bar {
  display: flex;
  justify-content: space-around;
  gap: 32px;
  padding: 40px 24px;
  background: linear-gradient(135deg, #2C1B47 0%, #8B6F9E 100%);
  border-radius: 16px;
  flex-wrap: wrap;
  box-shadow: 0 10px 40px rgba(44, 27, 71, 0.3);
}

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

.metric .number {
  font-size: 42px;
  font-weight: 700;
  color: #E8B547;
  font-family: 'Playfair Display', serif;
}

.metric .label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
}

/* SERVICES GRID */
.section-subheadline {
  text-align: center;
  font-size: 18px;
  color: #666;
  max-width: 700px;
  margin: 0 auto 48px;
}

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

.service-card {
  flex: 1 1 340px;
  background: #fff;
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(44, 27, 71, 0.1);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #E8B547 0%, #8B6F9E 100%);
}

.service-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 60px rgba(232, 181, 71, 0.3);
  border-color: #E8B547;
}

.service-card h3 {
  font-size: 26px;
  margin-bottom: 16px;
  color: #2C1B47;
}

.service-card p {
  flex-grow: 1;
  color: #555;
  line-height: 1.7;
}

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #E8B547;
  font-family: 'Playfair Display', serif;
  margin-top: 16px;
}

/* PILLARS GRID */
.pillars-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.pillar {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px 24px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 244, 237, 0.8) 100%);
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.08);
  transition: all 0.4s ease;
  border: 2px solid transparent;
}

.pillar:hover {
  transform: translateY(-8px) rotate(-1deg);
  border-color: #8B6F9E;
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
}

.pillar h3 {
  font-size: 28px;
  margin-bottom: 16px;
  color: #8B6F9E;
}

/* TESTIMONIALS */
.testimonials {
  background: linear-gradient(135deg, #f8f4ed 0%, #fff 100%);
  padding: 80px 20px;
}

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

.testimonial-card {
  background: #fff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(44, 27, 71, 0.1);
  border-left: 6px solid #E8B547;
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-card:hover {
  transform: translateX(8px);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.testimonial-card blockquote {
  font-size: 20px;
  line-height: 1.7;
  color: #2C1B47;
  font-style: italic;
  margin: 0;
  font-family: 'Playfair Display', serif;
}

.testimonial-card cite {
  font-style: normal;
  font-weight: 700;
  color: #8B6F9E;
  font-size: 16px;
}

/* IDEAL CLIENT / QUALIFICATIONS */
.qualifications {
  list-style: none;
  margin: 32px 0;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.qualifications li {
  padding: 16px 20px 16px 60px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 27, 71, 0.08);
  position: relative;
  transition: all 0.3s ease;
  color: #2C1B47;
}

.qualifications li::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: linear-gradient(135deg, #E8B547 0%, #d49f3a 100%);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.qualifications li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(232, 181, 71, 0.2);
}

.exclusivity-statement {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #8B6F9E;
  margin-top: 32px;
  font-style: italic;
}

/* CTA BANNER */
.cta-banner,
.cta-section {
  background: linear-gradient(135deg, #2C1B47 0%, #1a0f2e 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
  box-shadow: 0 15px 60px rgba(44, 27, 71, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-banner::before,
.cta-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(232, 181, 71, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2,
.cta-section h2 {
  color: #fff;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.cta-banner h2::after,
.cta-section h2::after {
  background: linear-gradient(90deg, #E8B547 0%, rgba(232, 181, 71, 0.3) 100%);
  left: 50%;
  transform: translateX(-50%);
}

.cta-banner p,
.cta-section p {
  color: rgba(255, 255, 255, 0.8);
  background-color: #555;
  font-size: 18px;
  max-width: 700px;
  margin: 0 auto 32px;
  position: relative;
  z-index: 1;
}

.urgency {
  color: #E8B547;
  font-weight: 700;
  margin-top: 20px;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* FOOTER */
footer {
  background: linear-gradient(135deg, #2C1B47 0%, #1a0f2e 100%);
  color: rgba(255, 255, 255, 0.8);
  padding: 60px 20px 20px;
  margin-top: 80px;
  border-top: 4px solid #E8B547;
}

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

.footer-col {
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

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

.tagline {
  font-size: 14px;
  font-style: italic;
  color: #E8B547;
}

.footer-col h4 {
  color: #E8B547;
  font-size: 18px;
  margin-bottom: 16px;
  font-family: 'Playfair Display', serif;
}

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

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

.footer-col nav a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: all 0.3s ease;
}

.footer-col nav a:hover {
  color: #E8B547;
  transform: translateX(5px);
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

/* PROGRAM DETAILS */
.program-details {
  padding: 60px 20px;
}

.program-card {
  background: #fff;
  padding: 48px 40px;
  margin-bottom: 40px;
  border-radius: 20px;
  box-shadow: 0 10px 40px rgba(44, 27, 71, 0.1);
  border-top: 6px solid #8B6F9E;
  transition: all 0.4s ease;
}

.program-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 60px rgba(139, 111, 158, 0.2);
}

.program-card h2 {
  margin-bottom: 16px;
}

.program-card .tagline {
  font-size: 18px;
  color: #8B6F9E;
  font-style: italic;
  margin-bottom: 24px;
  font-family: 'Playfair Display', serif;
}

.program-card h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2C1B47;
}

.program-card ul {
  margin-left: 24px;
  margin-bottom: 24px;
}

.program-card li {
  margin-bottom: 12px;
  color: #555;
  line-height: 1.7;
}

.program-card .price {
  font-size: 28px;
  font-weight: 700;
  color: #E8B547;
  margin: 24px 0;
  font-family: 'Playfair Display', serif;
}

/* FEATURES GRID */
.features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.feature {
  flex: 1 1 250px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 244, 237, 0.8) 100%);
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border: 2px solid transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.feature:hover {
  transform: translateY(-8px) scale(1.03);
  border-color: #8B6F9E;
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
}

.feature h3 {
  color: #8B6F9E;
  margin-bottom: 12px;
}

.feature p {
  color: #555;
}

/* PROFILES GRID */
.profiles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.profile-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #E8B547;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.profile-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.profile-card h3 {
  color: #2C1B47;
  margin-bottom: 12px;
}

/* PHASES */
.phases {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: 900px;
  margin: 0 auto;
}

.phase {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 6px solid #8B6F9E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.phase:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(139, 111, 158, 0.2);
}

.phase h3 {
  font-size: 24px;
  color: #8B6F9E;
  font-family: 'Playfair Display', serif;
}

/* INVESTMENT */
.investment {
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.05) 0%, rgba(139, 111, 158, 0.05) 100%);
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 0;
}

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

.price-display {
  font-size: 48px;
  font-weight: 700;
  color: #E8B547;
  text-align: center;
  font-family: 'Playfair Display', serif;
  margin-bottom: 40px;
}

.investment h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  text-align: center;
}

.investment ul {
  max-width: 700px;
  margin: 0 auto 32px;
  list-style: none;
}

.investment li {
  padding: 12px 20px 12px 50px;
  margin-bottom: 12px;
  background: #fff;
  border-radius: 8px;
  position: relative;
  color: #2C1B47;
}

.investment li::before {
  content: '✓';
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  color: #E8B547;
  font-weight: 700;
  font-size: 20px;
}

.roi-statement {
  text-align: center;
  font-size: 18px;
  font-weight: 600;
  color: #8B6F9E;
  max-width: 800px;
  margin: 32px auto;
  font-style: italic;
}

/* STEPS */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
  margin-bottom: 40px;
}

.step {
  flex: 1 1 250px;
  text-align: center;
  padding: 32px 24px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.step:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.step-number {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #E8B547 0%, #d49f3a 100%);
  color: #2C1B47;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 16px;
}

.step h3 {
  margin-bottom: 12px;
  color: #2C1B47;
}

.step-description {
  color: #555;
  line-height: 1.6;
}

.timeframe {
  color: #8B6F9E;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.stat-card {
  flex: 1 1 250px;
  background: linear-gradient(135deg, #fff 0%, #f8f4ed 100%);
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(44, 27, 71, 0.1);
  text-align: center;
  transition: all 0.4s ease;
  border-top: 4px solid #E8B547;
}

.stat-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 20px 60px rgba(232, 181, 71, 0.3);
}

.stat-number {
  font-size: 54px;
  font-weight: 700;
  color: #8B6F9E;
  font-family: 'Playfair Display', serif;
  display: block;
  margin-bottom: 16px;
}

.stat-card p {
  color: #555;
  line-height: 1.6;
}

/* STORIES GRID */
.stories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.story-card {
  flex: 1 1 280px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #8B6F9E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card:hover {
  transform: translateY(-8px) rotate(-1deg);
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
}

.story-card h3 {
  color: #2C1B47;
  margin-bottom: 4px;
}

.story-card .title {
  color: #8B6F9E;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
}

.story-card .program {
  color: #E8B547;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.story-card .transformation {
  color: #555;
  line-height: 1.7;
  flex-grow: 1;
}

.story-card .achievement {
  color: #2C1B47;
  font-weight: 600;
  padding-top: 16px;
  border-top: 2px solid #f0f0f0;
}

/* CATEGORIES GRID */
.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.category-card {
  flex: 1 1 260px;
  background: linear-gradient(135deg, #fff 0%, #f8f4ed 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #8B6F9E;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.category-card:hover {
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
}

.category-card h3 {
  color: #2C1B47;
}

.category-card .count {
  color: #E8B547;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ARTICLES GRID */
.articles-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.article-card {
  flex: 1 1 400px;
  background: #fff;
  padding: 40px 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #E8B547;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.article-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.article-card h3 {
  color: #2C1B47;
  margin-bottom: 16px;
}

.article-card .reading-time {
  color: #8B6F9E;
  font-size: 13px;
  font-weight: 600;
}

.article-card .category-tag {
  display: inline-block;
  background: linear-gradient(135deg, #E8B547 0%, #d49f3a 100%);
  color: #2C1B47;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* DOWNLOADS GRID */
.downloads-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.download-card {
  flex: 1 1 300px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #8B6F9E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.download-card:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
  cursor: pointer;
}

.download-card h3 {
  color: #2C1B47;
}

.download-card .type {
  color: #E8B547;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* TIPS LIST */
.tips-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.tip-card {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #E8B547;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.tip-card:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(232, 181, 71, 0.2);
}

.tip-card h3 {
  color: #2C1B47;
}

.tip-card .level {
  display: inline-block;
  background: #8B6F9E;
  color: #fff;
  padding: 4px 12px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* NEWSLETTER SIGNUP */
.newsletter-signup {
  background: linear-gradient(135deg, rgba(139, 111, 158, 0.1) 0%, rgba(232, 181, 71, 0.1) 100%);
  padding: 80px 20px;
  text-align: center;
  border-radius: 20px;
  margin: 60px 0;
}

.subscriber-count {
  color: #8B6F9E;
  font-weight: 700;
  font-size: 16px;
  margin: 24px 0;
}

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

/* CONTACT PAGE SPECIFIC */
.consultation-booking,
.contact-information,
.inquiry-types,
.faq-quick,
.response-commitment {
  padding: 60px 20px;
}

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

.detail-block {
  flex: 1 1 240px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #E8B547;
}

.detail-block:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.detail-block h3 {
  color: #8B6F9E;
  margin-bottom: 16px;
}

/* INQUIRIES GRID */
.inquiries-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.inquiry-card {
  flex: 1 1 320px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #8B6F9E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.inquiry-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
}

.inquiry-card .method {
  color: #8B6F9E;
  font-weight: 600;
  font-size: 14px;
}

.inquiry-card .response {
  color: #E8B547;
  font-weight: 700;
  font-size: 14px;
}

/* FAQ LIST */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #E8B547;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 12px 40px rgba(232, 181, 71, 0.2);
}

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

/* POLICY PAGES */
.policy-content {
  padding: 60px 20px;
}

.policy-section {
  background: #fff;
  padding: 40px;
  margin-bottom: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  border-left: 4px solid #8B6F9E;
}

.policy-section h2 {
  margin-bottom: 20px;
  color: #2C1B47;
}

.last-updated {
  color: #8B6F9E;
  font-style: italic;
  font-size: 14px;
  text-align: center;
}

/* THANK YOU PAGE */
.confirmation {
  color: #E8B547;
  font-weight: 700;
  font-size: 16px;
  margin-top: 16px;
}

.next-steps {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.05) 0%, rgba(139, 111, 158, 0.05) 100%);
}

.while-you-wait {
  padding: 80px 20px;
}

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

.resource-link {
  flex: 1 1 300px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #E8B547;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.resource-link:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.urgent-needs {
  padding: 80px 20px;
  background: linear-gradient(135deg, rgba(139, 111, 158, 0.1) 0%, rgba(232, 181, 71, 0.1) 100%);
  border-radius: 20px;
}

.contact-urgent {
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  max-width: 500px;
  margin: 32px auto 0;
  text-align: center;
}

.testimonial-highlight {
  padding: 80px 20px;
}

.testimonial-highlight blockquote {
  font-size: 24px;
  line-height: 1.7;
  color: #2C1B47;
  font-style: italic;
  max-width: 900px;
  margin: 0 auto 24px;
  font-family: 'Playfair Display', serif;
  text-align: center;
}

.testimonial-highlight cite {
  display: block;
  text-align: center;
  font-style: normal;
  font-weight: 700;
  color: #8B6F9E;
  font-size: 16px;
}

/* VALUES GRID */
.values-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.value-card {
  flex: 1 1 260px;
  background: #fff;
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-top: 4px solid #E8B547;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.value-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(232, 181, 71, 0.2);
}

.value-card h3 {
  color: #2C1B47;
}

/* CREDENTIALS */
.credentials-list {
  list-style: none;
  max-width: 800px;
  margin: 32px auto;
}

.credentials-list li {
  padding: 20px 24px 20px 60px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 27, 71, 0.08);
  position: relative;
  transition: all 0.3s ease;
  color: #2C1B47;
}

.credentials-list li::before {
  content: '★';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #E8B547;
  font-size: 24px;
}

.credentials-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(232, 181, 71, 0.2);
}

/* DIFFERENTIATORS GRID */
.differentiators-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.differentiator {
  flex: 1 1 260px;
  background: linear-gradient(135deg, #fff 0%, #f8f4ed 100%);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 8px 30px rgba(44, 27, 71, 0.1);
  transition: all 0.4s ease;
  border-left: 4px solid #8B6F9E;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.differentiator:hover {
  transform: translateY(-8px) scale(1.03);
  box-shadow: 0 15px 50px rgba(139, 111, 158, 0.2);
}

.differentiator h3 {
  color: #8B6F9E;
}

/* PULLQUOTE */
.pullquote {
  font-size: 28px;
  line-height: 1.6;
  color: #2C1B47;
  font-style: italic;
  font-family: 'Playfair Display', serif;
  max-width: 900px;
  margin: 48px auto;
  padding: 40px;
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.1) 0%, rgba(139, 111, 158, 0.1) 100%);
  border-left: 6px solid #E8B547;
  border-radius: 8px;
}

.large-text {
  font-size: 20px;
  line-height: 1.7;
  color: #2C1B47;
  max-width: 900px;
  margin: 0 auto 32px;
  text-align: center;
}

/* TRUST STATEMENT */
.trust-statement {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 16px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

/* CLIENT INFO */
.client-info {
  text-align: center;
  margin-bottom: 32px;
}

.story-content {
  max-width: 900px;
  margin: 0 auto;
}

.story-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #8B6F9E;
}

.social-proof {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  margin-top: 20px;
}

/* BENEFITS LIST */
.benefits-list {
  list-style: none;
  max-width: 700px;
  margin: 32px auto;
}

.benefits-list li {
  padding: 16px 20px 16px 60px;
  margin-bottom: 16px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(44, 27, 71, 0.08);
  position: relative;
  transition: all 0.3s ease;
  color: #2C1B47;
}

.benefits-list li::before {
  content: '→';
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  color: #E8B547;
  font-weight: 700;
  font-size: 24px;
}

.benefits-list li:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(232, 181, 71, 0.2);
}

/* FEATURED STORY */
.featured-story {
  background: linear-gradient(135deg, rgba(232, 181, 71, 0.05) 0%, rgba(139, 111, 158, 0.05) 100%);
  padding: 80px 20px;
  border-radius: 20px;
  margin: 60px 0;
}

/* COOKIE CONSENT BANNER */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #2C1B47 0%, #1a0f2e 100%);
  color: #fff;
  padding: 24px;
  box-shadow: 0 -5px 25px rgba(0, 0, 0, 0.3);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  border-top: 3px solid #E8B547;
}

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

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

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
}

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

.cookie-buttons button {
  padding: 10px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-accept-all {
  background: linear-gradient(135deg, #E8B547 0%, #d49f3a 100%);
  color: #2C1B47;
}

.btn-accept-all:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(232, 181, 71, 0.4);
}

.btn-reject-all {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-reject-all:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.btn-cookie-settings {
  background: transparent;
  color: #E8B547;
  border: 2px solid #E8B547;
}

.btn-cookie-settings:hover {
  background: #E8B547;
  color: #2C1B47;
}

/* COOKIE MODAL */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(44, 27, 71, 0.9);
  backdrop-filter: blur(5px);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cookie-modal.show {
  opacity: 1;
  pointer-events: all;
}

.cookie-modal-content {
  background: #fff;
  border-radius: 20px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  padding: 40px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
  transform: scale(0.9);
  transition: transform 0.3s ease;
}

.cookie-modal.show .cookie-modal-content {
  transform: scale(1);
}

.cookie-modal h3 {
  color: #2C1B47;
  margin-bottom: 24px;
}

.cookie-category {
  padding: 20px;
  background: #f8f4ed;
  border-radius: 12px;
  margin-bottom: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.cookie-category h4 {
  color: #2C1B47;
  margin-bottom: 8px;
}

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

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

.cookie-toggle.active {
  background: #E8B547;
}

.cookie-toggle::after {
  content: '';
  position: absolute;
  top: 3px;
  left: 3px;
  width: 24px;
  height: 24px;
  background: #fff;
  border-radius: 50%;
  transition: transform 0.3s ease;
}

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

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

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

.cookie-modal-buttons button {
  flex: 1;
  padding: 14px 24px;
  border: none;
  border-radius: 25px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-save-preferences {
  background: linear-gradient(135deg, #E8B547 0%, #d49f3a 100%);
  color: #2C1B47;
}

.btn-save-preferences:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(232, 181, 71, 0.4);
}

.btn-close-modal {
  background: #ddd;
  color: #333;
}

.btn-close-modal:hover {
  background: #ccc;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  /* Typography adjustments */
  h1 {
    font-size: 36px;
  }
  
  h2 {
    font-size: 28px;
  }
  
  h3 {
    font-size: 20px;
  }
  
  .hero h1 {
    font-size: 40px;
  }
  
  .subheadline {
    font-size: 18px;
  }
  
  /* Header mobile adjustments */
  header .container {
    flex-direction: row;
    justify-content: space-between;
  }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
  
  .cta-button {
    display: none;
  }
  
  /* Hero mobile */
  .hero {
    padding: 60px 20px;
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .cta-buttons .btn-primary,
  .cta-buttons .btn-secondary {
    width: 100%;
    text-align: center;
  }
  
  /* Grid adjustments */
  .benefits-grid,
  .services-grid,
  .pillars-grid,
  .features-grid,
  .profiles-grid,
  .stats-grid,
  .stories-grid,
  .categories-grid,
  .articles-grid,
  .downloads-grid,
  .values-grid,
  .differentiators-grid {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .pillar,
  .feature,
  .profile-card,
  .stat-card,
  .story-card,
  .category-card,
  .article-card,
  .download-card,
  .value-card,
  .differentiator {
    flex: 1 1 100%;
  }
  
  /* Metrics bar mobile */
  .metrics-bar {
    flex-direction: column;
    padding: 32px 20px;
  }
  
  .metric {
    width: 100%;
  }
  
  /* Footer mobile */
  .footer-content {
    flex-direction: column;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Steps mobile */
  .steps {
    flex-direction: column;
  }
  
  .step {
    flex: 1 1 100%;
  }
  
  /* Contact details mobile */
  .contact-details {
    flex-direction: column;
  }
  
  .detail-block {
    flex: 1 1 100%;
  }
  
  /* Cookie consent mobile */
  .cookie-consent .container {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }
  
  .cookie-buttons button {
    width: 100%;
  }
  
  /* Modal mobile */
  .cookie-modal-content {
    padding: 24px;
  }
  
  .cookie-category {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .cookie-modal-buttons {
    flex-direction: column;
  }
  
  .cookie-modal-buttons button {
    width: 100%;
  }
  
  /* Spacing adjustments */
  .section {
    padding: 32px 16px;
  }
  
  .value-proposition,
  .services-showcase,
  .methodology,
  .testimonials,
  .ideal-client,
  .mission,
  .story,
  .values,
  .approach,
  .programs-overview,
  .program-features,
  .coaching-overview,
  .who-its-for,
  .results-metrics,
  .resource-categories,
  .featured-articles {
    padding: 48px 16px;
  }
  
  .cta-banner,
  .cta-section {
    padding: 48px 20px;
  }
}

/* Tablet adjustments */
@media (min-width: 769px) and (max-width: 1024px) {
  .container {
    padding: 0 32px;
  }
  
  h1 {
    font-size: 42px;
  }
  
  h2 {
    font-size: 32px;
  }
  
  .hero h1 {
    font-size: 48px;
  }
  
  .benefit-card,
  .service-card,
  .pillar,
  .feature,
  .profile-card {
    flex: 1 1 45%;
  }
}

/* PRINT STYLES */
@media print {
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-consent,
  .cookie-modal,
  .cta-button,
  .btn-primary,
  .btn-secondary,
  .cta-banner,
  .cta-section {
    display: none;
  }
  
  body {
    background: #fff;
  }
  
  header {
    position: static;
    box-shadow: none;
  }
}