/* ===================================
   VELVETQUARK LEARNING - MONOCHROME SOPHISTICATED
   Design Style: Sophisticated monochrome
   ================================== */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.7;
  color: #1a1a1a;
  background-color: #ffffff;
  overflow-x: hidden;
}

/* TYPOGRAPHY - Monochrome Sophisticated */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #000000;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
}

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

h2 {
  font-size: 36px;
  margin-bottom: 24px;
}

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

h4 {
  font-size: 20px;
  margin-bottom: 16px;
}

p {
  margin-bottom: 16px;
  color: #2d2d2d;
  font-size: 16px;
}

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

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

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

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

/* HEADER - Monochrome with dramatic contrast */
header {
  background: #ffffff;
  border-bottom: 2px solid #000000;
  padding: 24px 0;
  position: sticky;
  top: 0;
  z-index: 900;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

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

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

header nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  padding: 8px 0;
  border-bottom: 2px solid transparent;
  transition: all 0.3s ease;
}

header nav a:hover {
  border-bottom-color: #000000;
  color: #666666;
}

/* MOBILE MENU TOGGLE */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 1100;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 28px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: #333333;
  transform: scale(1.05);
}

/* MOBILE MENU */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: #ffffff;
  border-left: 2px solid #000000;
  z-index: 1000;
  padding: 80px 32px 32px;
  transition: right 0.4s ease;
  box-shadow: -4px 0 20px rgba(0, 0, 0, 0.2);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 32px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

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

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

.mobile-nav a {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #000000;
  padding: 12px 0;
  border-bottom: 1px solid #e5e5e5;
  transition: all 0.3s ease;
}

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

/* HERO SECTION - Dramatic monochrome */
.hero {
  background: linear-gradient(135deg, #000000 0%, #2d2d2d 100%);
  color: #ffffff;
  padding: 100px 20px;
  text-align: center;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 100%;
  height: 200%;
  background: linear-gradient(45deg, transparent 40%, rgba(255, 255, 255, 0.05) 50%, transparent 60%);
  transform: rotate(45deg);
}

.hero h1 {
  color: #ffffff;
  font-size: 56px;
  margin-bottom: 24px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.3);
  position: relative;
  z-index: 1;
}

.hero .subheadline {
  font-size: 20px;
  margin-bottom: 40px;
  color: #e5e5e5;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  z-index: 1;
}

/* CTA BUTTONS - Monochrome with elegant hover */
.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
  position: relative;
  z-index: 1;
}

.btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 16px;
  padding: 16px 40px;
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #000000;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 0;
}

.btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.btn-primary {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

.btn-primary::before {
  background: #333333;
}

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

.btn-secondary::before {
  background: #ffffff;
}

.btn-secondary:hover {
  color: #000000;
}

/* TRUST BADGES */
.trust-badges {
  display: flex;
  gap: 32px;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.trust-badges span {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  padding: 12px 24px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
}

/* SECTIONS - Consistent spacing */
.section,
.social-proof,
.problem-solution,
.services,
.how-it-works,
.features,
.testimonials,
.cta-final,
.courses,
.course-includes,
.story,
.mission-vision,
.values,
.approach,
.achievements,
.cta,
.audience,
.persona-details,
.requirements,
.success-factors,
.success-metrics,
.career-transformation,
.resource-categories,
.featured-resources,
.learning-paths,
.newsletter,
.contact-options,
.office-location,
.faq,
.team,
.response-guarantee,
.legal-content,
.thank-you-hero,
.next-steps,
.while-you-wait,
.back-links,
.explore,
.return-home {
  margin-bottom: 60px;
  padding: 40px 20px;
}

.social-proof {
  background: #f5f5f5;
  text-align: center;
}

.social-proof h2 {
  margin-bottom: 48px;
}

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

.stat-card {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  background: #ffffff;
  padding: 32px 24px;
  text-align: center;
  border: 2px solid #000000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.stat-label {
  font-size: 14px;
  color: #666666;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
}

/* PROBLEM-SOLUTION */
.problem-solution {
  text-align: center;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.problem {
  font-size: 18px;
  color: #666666;
  margin-bottom: 32px;
  font-style: italic;
}

.solution {
  font-size: 20px;
  color: #000000;
  font-weight: 600;
  padding: 24px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
}

/* SERVICE GRID - Flexbox */
.service-grid,
.course-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.service-card,
.course-card {
  flex: 1 1 320px;
  min-width: 280px;
  max-width: 380px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  padding: 32px;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  margin-bottom: 20px;
}

.service-card:hover,
.course-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
}

.service-card.popular,
.course-card.popular {
  border-color: #000000;
  border-width: 3px;
  background: #000000;
  color: #ffffff;
}

.service-card.popular h3,
.course-card.popular h3 {
  color: #ffffff;
}

.service-card.popular p,
.course-card.popular p {
  color: #e5e5e5;
}

.badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: #000000;
  color: #ffffff;
  padding: 6px 16px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-card.popular .badge {
  background: #ffffff;
  color: #000000;
}

.price {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 32px;
  color: #000000;
  display: block;
  margin: 16px 0;
}

.service-card.popular .price,
.course-card.popular .price {
  color: #ffffff;
}

.course-details {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 16px 0;
  padding: 16px 0;
  border-top: 1px solid #e5e5e5;
}

.level,
.savings {
  font-size: 14px;
  font-weight: 600;
  padding: 6px 12px;
  background: #f5f5f5;
  border: 1px solid #e5e5e5;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* STEPS - Flexbox layout */
.steps {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.step {
  flex: 1 1 220px;
  min-width: 220px;
  max-width: 280px;
  text-align: center;
  padding: 32px 24px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.step:hover {
  background: #000000;
  color: #ffffff;
}

.step:hover h3,
.step:hover p {
  color: #ffffff;
}

.step-number {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 64px;
  color: #e5e5e5;
  display: block;
  line-height: 1;
}

.step:hover .step-number {
  color: rgba(255, 255, 255, 0.2);
}

/* FEATURE GRID - Flexbox */
.feature-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.feature-card {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 280px;
  padding: 32px 24px;
  background: #ffffff;
  border: 1px solid #e5e5e5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.feature-card:hover {
  border-color: #000000;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

/* TESTIMONIALS - Readable text on light background */
.testimonials {
  background: #f5f5f5;
  text-align: center;
}

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

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

.testimonial-card {
  flex: 1 1 400px;
  min-width: 300px;
  max-width: 500px;
  background: #ffffff;
  padding: 32px;
  border-left: 4px solid #000000;
  text-align: left;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 20px;
}

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

.testimonial-card p {
  font-size: 18px;
  font-style: italic;
  color: #2d2d2d;
  line-height: 1.6;
  margin-bottom: 20px;
}

.author {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  display: block;
  margin-bottom: 8px;
}

.role {
  font-size: 13px;
  color: #666666;
  display: block;
  margin-bottom: 8px;
}

.rating {
  color: #000000;
  font-size: 18px;
  display: block;
}

/* CTA FINAL */
.cta-final,
.cta {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.cta-final h2,
.cta h2 {
  color: #ffffff;
  margin-bottom: 24px;
}

.cta-final p,
.cta p {
  color: #e5e5e5;
  font-size: 18px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* CONTENT GRIDS - Flexbox */
.content-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.mission-card,
.vision-card {
  flex: 1 1 400px;
  min-width: 300px;
  padding: 40px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
}

/* VALUE GRID - Flexbox */
.value-grid,
.audience-grid,
.category-grid,
.resource-grid,
.path-grid,
.contact-grid,
.includes-grid,
.requirements-grid,
.transformation-grid,
.suggestions-grid,
.explore-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.value-card,
.audience-card,
.category-card,
.resource-card,
.path-card,
.contact-card,
.include-item,
.requirement-card,
.transformation-card,
.suggestion-card,
.explore-card,
.team-card {
  flex: 1 1 260px;
  min-width: 240px;
  max-width: 300px;
  padding: 32px 24px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 20px;
}

.value-card:hover,
.audience-card:hover,
.category-card:hover,
.resource-card:hover,
.path-card:hover,
.contact-card:hover,
.include-item:hover,
.requirement-card:hover,
.transformation-card:hover,
.suggestion-card:hover,
.explore-card:hover,
.team-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.count {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  font-size: 24px;
  color: #000000;
  display: block;
  margin-bottom: 8px;
}

.timeframe,
.time {
  font-size: 13px;
  color: #666666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  display: block;
  margin-top: auto;
}

/* BENEFITS & LISTS */
.benefits {
  background: #f5f5f5;
  padding: 32px;
  margin: 32px 0;
  border-left: 4px solid #000000;
}

.benefits h3 {
  margin-bottom: 16px;
  margin-top: 24px;
}

.benefits h3:first-child {
  margin-top: 0;
}

.benefits ul {
  margin-bottom: 24px;
}

.benefits li {
  padding-left: 8px;
  position: relative;
}

.benefits li::before {
  content: '—';
  position: absolute;
  left: -16px;
  color: #000000;
  font-weight: 700;
}

/* FAQ */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: #ffffff;
  padding: 32px;
  margin-bottom: 24px;
  border-left: 4px solid #000000;
  border-right: 1px solid #e5e5e5;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
}

.faq-item h3 {
  margin-bottom: 16px;
  font-size: 20px;
}

.faq-item p {
  margin-bottom: 0;
}

/* LOCATION DETAILS */
.location-details {
  max-width: 600px;
  margin: 0 auto;
  padding: 32px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
}

.location-details p {
  margin-bottom: 24px;
}

.location-details p:last-child {
  margin-bottom: 0;
}

/* LEGAL CONTENT */
.legal-content {
  max-width: 900px;
  margin: 0 auto;
}

.legal-content h1 {
  margin-bottom: 40px;
  font-size: 42px;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  font-size: 28px;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  font-size: 22px;
}

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

.legal-content a {
  text-decoration: underline;
  color: #000000;
  font-weight: 600;
}

.legal-content a:hover {
  color: #666666;
}

/* THANK YOU PAGES */
.thank-you-hero {
  background: #000000;
  color: #ffffff;
  text-align: center;
  padding: 80px 20px;
}

.thank-you-hero h1 {
  color: #ffffff;
  margin-bottom: 24px;
}

.confirmation {
  font-size: 20px;
  color: #e5e5e5;
  max-width: 700px;
  margin: 0 auto;
}

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

.link-card {
  flex: 1 1 200px;
  min-width: 180px;
  max-width: 260px;
  padding: 24px;
  background: #ffffff;
  border: 2px solid #e5e5e5;
  text-align: center;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  transition: all 0.3s ease;
}

.link-card:hover {
  border-color: #000000;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

/* FOOTER - Monochrome sophisticated */
footer {
  background: #000000;
  color: #ffffff;
  padding: 60px 20px 32px;
  margin-top: 60px;
}

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

.footer-section {
  flex: 1 1 220px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-section img {
  height: 40px;
  width: auto;
  margin-bottom: 16px;
}

.footer-section h4 {
  color: #ffffff;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
  border-bottom: 2px solid #ffffff;
  padding-bottom: 8px;
}

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

.footer-section a:hover {
  color: #ffffff;
  padding-left: 8px;
}

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

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

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 2px solid #000000;
  padding: 24px;
  z-index: 950;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.active {
  transform: translateY(0);
}

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

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

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

.cookie-btn {
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 14px;
  padding: 12px 24px;
  border: 2px solid #000000;
  background: #ffffff;
  color: #000000;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: all 0.3s ease;
}

.cookie-btn:hover {
  background: #000000;
  color: #ffffff;
}

.cookie-btn-accept {
  background: #000000;
  color: #ffffff;
}

.cookie-btn-accept:hover {
  background: #333333;
}

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

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

.cookie-modal-content {
  background: #ffffff;
  max-width: 600px;
  width: 100%;
  padding: 40px;
  border: 2px solid #000000;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #ffffff;
  border: none;
  font-size: 24px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  background: #333333;
}

.cookie-category {
  padding: 24px;
  margin-bottom: 16px;
  background: #f5f5f5;
  border-left: 4px solid #000000;
}

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

.cookie-toggle {
  width: 50px;
  height: 26px;
  background: #e5e5e5;
  border: 2px solid #000000;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-toggle::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 2px;
  width: 18px;
  height: 18px;
  background: #000000;
  transition: all 0.3s ease;
}

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

.cookie-toggle.active::before {
  left: 26px;
  background: #ffffff;
}

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

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

  /* Hide desktop navigation */
  header nav {
    display: none;
  }

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

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .hero .subheadline {
    font-size: 18px;
  }

  /* Adjust padding */
  .section,
  .hero {
    padding: 40px 16px;
  }

  /* Stack flexbox items */
  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
  }

  .trust-badges {
    flex-direction: column;
    gap: 16px;
  }

  .stats-grid,
  .service-grid,
  .course-grid,
  .steps,
  .feature-grid,
  .testimonial-grid,
  .content-grid,
  .value-grid,
  .audience-grid,
  .category-grid,
  .resource-grid,
  .path-grid,
  .contact-grid,
  .includes-grid,
  .requirements-grid,
  .transformation-grid,
  .suggestions-grid,
  .explore-grid,
  .team-grid,
  .link-grid {
    flex-direction: column;
  }

  .stat-card,
  .service-card,
  .course-card,
  .step,
  .feature-card,
  .testimonial-card,
  .mission-card,
  .vision-card,
  .value-card,
  .audience-card,
  .category-card,
  .resource-card,
  .path-card,
  .contact-card,
  .include-item,
  .requirement-card,
  .transformation-card,
  .suggestion-card,
  .explore-card,
  .team-card,
  .link-card {
    max-width: 100%;
  }

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

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

  .cookie-buttons {
    width: 100%;
  }

  .cookie-btn {
    flex: 1;
  }

  .cookie-modal-content {
    padding: 24px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 28px;
  }

  h2 {
    font-size: 24px;
  }

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

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

  .btn {
    padding: 14px 28px;
    font-size: 14px;
  }

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

  .stat-number {
    font-size: 36px;
  }

  .step-number {
    font-size: 48px;
  }
}

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

  body {
    background: #ffffff;
  }

  a {
    text-decoration: underline;
  }
}

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

.btn:focus,
.mobile-menu-toggle:focus,
.mobile-menu-close:focus,
.cookie-btn:focus {
  outline: 3px solid #000000;
  outline-offset: 3px;
}

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

.stat-card,
.service-card,
.course-card,
.feature-card,
.testimonial-card {
  animation: fadeIn 0.6s ease forwards;
}

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

.mb-0 {
  margin-bottom: 0 !important;
}

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

.hidden {
  display: none !important;
}

/* High contrast for better readability */
.high-contrast {
  background: #000000;
  color: #ffffff;
}

.high-contrast h1,
.high-contrast h2,
.high-contrast h3,
.high-contrast h4,
.high-contrast p,
.high-contrast li {
  color: #ffffff;
}

/* END OF STYLESHEET */