/* CSS Reset and Base Styles */
* {
  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', Roboto, sans-serif;
  line-height: 1.6;
  color: #1E293B;
  background: #FFFFFF;
  overflow-x: hidden;
}

/* Modern Bold Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0F172A;
  letter-spacing: -0.02em;
}

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

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

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

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

p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

a {
  color: #2563EB;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
}

a:hover {
  color: #1E40AF;
  transform: translateY(-2px);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

ul {
  list-style: none;
}

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

/* Header - Bold Modern Style */
header {
  background: #0F172A;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: brightness(0) invert(1);
  transition: transform 0.3s ease;
}

.logo:hover img {
  transform: scale(1.1);
}

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

.main-nav a {
  color: #FFFFFF;
  font-weight: 700;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  padding: 8px 0;
}

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

.main-nav a:hover {
  color: #F59E0B;
  transform: none;
}

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

.header-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Bold Modern Buttons */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 0;
  border: 3px solid transparent;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transition: left 0.3s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background: #2563EB;
  color: #FFFFFF;
  border-color: #2563EB;
  box-shadow: 0 8px 16px rgba(37, 99, 235, 0.4);
}

.btn-primary:hover {
  background: #1E40AF;
  border-color: #1E40AF;
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(37, 99, 235, 0.5);
}

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

.btn-secondary:hover {
  background: #F59E0B;
  color: #0F172A;
  transform: translateY(-3px);
}

.btn-large {
  padding: 18px 48px;
  font-size: 18px;
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  background: #F59E0B;
  color: #0F172A;
  border: none;
  font-size: 28px;
  font-weight: 800;
  padding: 12px 20px;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 1001;
  border-radius: 0;
  box-shadow: 0 8px 16px rgba(245, 158, 11, 0.4);
  transition: all 0.3s ease;
}

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

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #0F172A;
  z-index: 1000;
  padding: 80px 40px 40px;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  box-shadow: -8px 0 24px rgba(0, 0, 0, 0.3);
}

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

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #F59E0B;
  color: #0F172A;
  border: none;
  font-size: 32px;
  font-weight: 800;
  width: 48px;
  height: 48px;
  cursor: pointer;
  border-radius: 0;
  transition: all 0.3s ease;
}

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

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px;
  border-left: 4px solid transparent;
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.mobile-nav a:hover {
  color: #F59E0B;
  border-left-color: #F59E0B;
  padding-left: 24px;
  transform: none;
}

/* Hero Section - Bold Modern */
.hero {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(245, 158, 11, 0.05) 10px, rgba(245, 158, 11, 0.05) 20px);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero h1 {
  color: #FFFFFF;
  font-size: 56px;
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 24px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.subheadline {
  font-size: 20px;
  color: #F1F5F9;
  margin-bottom: 32px;
  font-weight: 600;
  line-height: 1.6;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.trust-indicators {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-top: 40px;
}

.trust-indicators span {
  color: #F1F5F9;
  font-weight: 700;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Hero Internal */
.hero-internal {
  background: linear-gradient(135deg, #1E40AF 0%, #2563EB 100%);
  padding: 80px 0 60px;
  position: relative;
}

.hero-internal::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8px;
  background: #F59E0B;
}

.breadcrumb {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.breadcrumb a {
  color: rgba(255, 255, 255, 0.8);
}

.breadcrumb a:hover {
  color: #F59E0B;
}

.hero-internal h1 {
  color: #FFFFFF;
}

.hero-internal .subheadline {
  color: #F1F5F9;
}

/* Section Spacing */
section {
  padding: 80px 0;
  position: relative;
}

.section-subtitle {
  font-size: 18px;
  color: #64748B;
  margin-bottom: 48px;
  text-align: center;
  font-weight: 600;
}

/* Benefits Section - Bold Cards */
.benefits {
  background: #F8FAFC;
}

.benefits h2 {
  text-align: center;
  margin-bottom: 56px;
}

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

.benefit-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px 32px;
  border-left: 8px solid #2563EB;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  position: relative;
}

.benefit-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background: rgba(37, 99, 235, 0.05);
  transition: width 0.3s ease;
}

.benefit-card:hover {
  transform: translateX(8px);
  border-left-color: #F59E0B;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

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

.benefit-card h3 {
  color: #0F172A;
  margin-bottom: 16px;
  position: relative;
}

.benefit-card p {
  color: #475569;
  margin: 0;
  position: relative;
  font-size: 15px;
}

/* Services Grid - Bold Modern Cards */
.services-featured {
  background: linear-gradient(to bottom, #FFFFFF 0%, #F8FAFC 100%);
}

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

.service-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 40px;
  border: 4px solid #E2E8F0;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #2563EB;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.service-card:hover {
  border-color: #2563EB;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.15);
  transform: translateY(-8px);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card.featured {
  border-color: #F59E0B;
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.service-card.featured::before {
  background: #F59E0B;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 16px;
  color: #0F172A;
}

.service-card p {
  color: #475569;
  margin-bottom: 20px;
  font-size: 15px;
}

.price {
  font-size: 32px;
  font-weight: 900;
  color: #2563EB;
  margin: 24px 0;
  display: block;
}

.service-card.featured .price {
  color: #D97706;
}

/* Steps Grid */
.how-it-works {
  background: #0F172A;
  color: #FFFFFF;
}

.how-it-works h2 {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 56px;
}

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

.step {
  flex: 1 1 calc(25% - 30px);
  min-width: 220px;
  text-align: center;
  padding: 32px 24px;
  background: rgba(255, 255, 255, 0.05);
  border: 2px solid rgba(245, 158, 11, 0.3);
  transition: all 0.3s ease;
}

.step:hover {
  background: rgba(245, 158, 11, 0.1);
  border-color: #F59E0B;
  transform: translateY(-8px);
}

.step-number {
  display: inline-block;
  width: 64px;
  height: 64px;
  background: #F59E0B;
  color: #0F172A;
  font-size: 32px;
  font-weight: 900;
  line-height: 64px;
  margin-bottom: 20px;
  border-radius: 0;
}

.step h3 {
  color: #FFFFFF;
  margin-bottom: 16px;
}

.step p {
  color: #CBD5E1;
  margin: 0;
}

/* Testimonials - High Contrast */
.testimonials {
  background: #F8FAFC;
}

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

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

.testimonial-card {
  flex: 1 1 calc(50% - 16px);
  min-width: 300px;
  background: #FFFFFF;
  padding: 40px;
  border-left: 8px solid #F59E0B;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 20px;
  left: 20px;
  font-size: 80px;
  font-weight: 900;
  color: rgba(37, 99, 235, 0.1);
  line-height: 1;
}

.testimonial-card p {
  color: #1E293B;
  font-size: 16px;
  font-style: italic;
  margin-bottom: 24px;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.testimonial-author strong {
  color: #0F172A;
  font-weight: 800;
  font-size: 16px;
}

.testimonial-author span {
  color: #64748B;
  font-size: 14px;
  font-weight: 600;
}

.stats {
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  justify-content: center;
  margin: 48px 0;
}

.stats span {
  font-size: 18px;
  font-weight: 800;
  color: #0F172A;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Course Cards Detailed */
.courses-overview {
  background: #FFFFFF;
}

.course-card-detailed {
  background: #FFFFFF;
  padding: 48px;
  margin-bottom: 40px;
  border: 4px solid #E2E8F0;
  transition: all 0.3s ease;
  position: relative;
}

.course-card-detailed::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 0;
  background: #2563EB;
  transition: height 0.3s ease;
}

.course-card-detailed:hover {
  border-color: #2563EB;
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.course-card-detailed:hover::before {
  height: 100%;
}

.course-card-detailed h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.duration {
  font-size: 14px;
  font-weight: 700;
  color: #64748B;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.course-card-detailed ul {
  margin: 24px 0;
  padding-left: 24px;
}

.course-card-detailed ul li {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  color: #475569;
}

.course-card-detailed ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-weight: 900;
  font-size: 18px;
}

.course-card-featured {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  border: 6px solid #F59E0B;
  padding: 48px;
  margin-bottom: 40px;
  position: relative;
}

.featured-badge {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #D97706;
  color: #FFFFFF;
  padding: 8px 20px;
  font-weight: 800;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.savings {
  display: inline-block;
  background: #D97706;
  color: #FFFFFF;
  padding: 8px 16px;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 16px;
}

.limited {
  display: inline-block;
  background: #DC2626;
  color: #FFFFFF;
  padding: 12px 20px;
  font-weight: 800;
  font-size: 14px;
  margin: 24px 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Team & Stats */
.team-grid, .stats-grid, .metrics-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: space-between;
}

.team-member, .stat, .metric {
  flex: 1 1 calc(25% - 24px);
  min-width: 220px;
  background: #FFFFFF;
  padding: 32px 24px;
  border: 4px solid #E2E8F0;
  text-align: center;
  transition: all 0.3s ease;
}

.team-member:hover, .stat:hover, .metric:hover {
  border-color: #2563EB;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.12);
}

.stat h3, .metric h3 {
  font-size: 48px;
  color: #2563EB;
  font-weight: 900;
  margin-bottom: 12px;
}

.stat p, .metric p {
  color: #475569;
  font-weight: 700;
  margin: 0;
}

/* Blog Posts */
.blog-categories {
  background: #F8FAFC;
}

.categories-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.category {
  background: #FFFFFF;
  color: #0F172A;
  padding: 16px 32px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #2563EB;
  transition: all 0.3s ease;
}

.category:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-4px);
}

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

.post-card {
  flex: 1 1 calc(33.333% - 22px);
  min-width: 280px;
  background: #FFFFFF;
  padding: 32px;
  border: 4px solid #E2E8F0;
  transition: all 0.3s ease;
}

.post-card:hover {
  border-color: #F59E0B;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(245, 158, 11, 0.12);
}

.post-card h3 {
  font-size: 20px;
  margin-bottom: 16px;
  color: #0F172A;
}

.post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 20px;
  font-size: 13px;
  color: #64748B;
  font-weight: 700;
}

.category-tag {
  background: #2563EB;
  color: #FFFFFF;
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Featured Post */
.post-featured {
  background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
  padding: 48px;
  border: 6px solid #F59E0B;
  margin-bottom: 48px;
  position: relative;
}

/* CTA Section - Bold Call to Action */
.cta-section {
  background: linear-gradient(135deg, #2563EB 0%, #1E40AF 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: repeating-linear-gradient(45deg, transparent, transparent 20px, rgba(255, 255, 255, 0.05) 20px, rgba(255, 255, 255, 0.05) 40px);
}

.cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 24px;
  position: relative;
}

.cta-section p {
  color: #F1F5F9;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 40px;
  position: relative;
}

.contact-info {
  margin-top: 48px;
  position: relative;
}

.contact-info p {
  font-weight: 700;
  margin-bottom: 12px;
}

/* Footer - Bold Modern */
footer {
  background: #0F172A;
  color: #FFFFFF;
  padding: 60px 0 24px;
  border-top: 8px solid #F59E0B;
}

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

.footer-column {
  flex: 1 1 calc(25% - 36px);
  min-width: 220px;
}

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

.footer-column h4 {
  color: #F59E0B;
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

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

.footer-column ul li a {
  color: #CBD5E1;
  font-weight: 600;
  transition: all 0.3s ease;
}

.footer-column ul li a:hover {
  color: #F59E0B;
  padding-left: 8px;
}

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

.footer-bottom {
  border-top: 2px solid rgba(245, 158, 11, 0.3);
  padding-top: 24px;
  text-align: center;
}

.footer-bottom p {
  color: #94A3B8;
  font-weight: 700;
  font-size: 14px;
  margin: 0;
}

/* Error Page */
.error-hero {
  background: linear-gradient(135deg, #DC2626 0%, #B91C1C 100%);
  padding: 120px 0;
  text-align: center;
}

.error-code {
  font-size: 120px;
  font-weight: 900;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 24px;
  text-shadow: 4px 4px 8px rgba(0, 0, 0, 0.3);
}

.error-content h1 {
  color: #FFFFFF;
}

.error-content .subheadline {
  color: #FEE2E2;
}

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

.link-card {
  flex: 1 1 calc(33.333% - 14px);
  min-width: 200px;
  background: #FFFFFF;
  padding: 32px;
  text-align: center;
  font-weight: 800;
  font-size: 16px;
  color: #0F172A;
  border: 4px solid #2563EB;
  transition: all 0.3s ease;
}

.link-card:hover {
  background: #2563EB;
  color: #FFFFFF;
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(37, 99, 235, 0.2);
}

/* Thank You Page */
.thank-you-hero {
  background: linear-gradient(135deg, #10B981 0%, #059669 100%);
  padding: 100px 0;
  text-align: center;
}

.success-icon {
  display: inline-block;
  width: 96px;
  height: 96px;
  background: #FFFFFF;
  color: #10B981;
  font-size: 64px;
  font-weight: 900;
  line-height: 96px;
  border-radius: 50%;
  margin-bottom: 32px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.2);
}

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

.thank-you-hero .subheadline {
  color: #D1FAE5;
}

/* Legal Content */
.legal-hero {
  background: linear-gradient(135deg, #64748B 0%, #475569 100%);
  padding: 80px 0 60px;
}

.legal-hero h1 {
  color: #FFFFFF;
}

.legal-content {
  padding: 60px 0;
}

.legal-content h2 {
  margin-top: 48px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 4px solid #F59E0B;
}

.legal-content h3 {
  margin-top: 32px;
  margin-bottom: 16px;
  color: #2563EB;
}

.legal-content ul {
  padding-left: 32px;
  margin: 24px 0;
}

.legal-content ul li {
  list-style: none;
  padding-left: 24px;
  margin-bottom: 12px;
  position: relative;
  color: #475569;
}

.legal-content ul li::before {
  content: '●';
  position: absolute;
  left: 0;
  color: #F59E0B;
  font-size: 20px;
  line-height: 1.2;
}

.legal-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  border: 4px solid #E2E8F0;
}

.legal-content table th {
  background: #0F172A;
  color: #FFFFFF;
  padding: 16px;
  text-align: left;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 14px;
}

.legal-content table td {
  padding: 16px;
  border-bottom: 2px solid #E2E8F0;
  color: #475569;
}

.legal-content table tr:hover {
  background: #F8FAFC;
}

/* Cookie Consent Banner - Modern Bold */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #0F172A;
  padding: 24px;
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.3);
  z-index: 998;
  border-top: 6px solid #F59E0B;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

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

.cookie-text p {
  color: #F1F5F9;
  font-weight: 600;
  margin: 0;
  font-size: 15px;
}

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

.cookie-accept {
  background: #10B981;
  color: #FFFFFF;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

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

.cookie-reject {
  background: transparent;
  color: #F1F5F9;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #64748B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-reject:hover {
  border-color: #F1F5F9;
  color: #FFFFFF;
}

.cookie-settings {
  background: transparent;
  color: #F59E0B;
  padding: 14px 32px;
  font-weight: 800;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: 3px solid #F59E0B;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-settings:hover {
  background: #F59E0B;
  color: #0F172A;
}

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

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

.cookie-modal-content {
  background: #FFFFFF;
  padding: 48px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  border: 6px solid #2563EB;
  position: relative;
}

.cookie-modal-close {
  position: absolute;
  top: 24px;
  right: 24px;
  background: #DC2626;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 24px;
  font-weight: 900;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-modal-close:hover {
  transform: rotate(90deg);
  background: #B91C1C;
}

.cookie-category {
  padding: 24px;
  margin-bottom: 20px;
  border-left: 6px solid #2563EB;
  background: #F8FAFC;
}

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

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

.cookie-toggle.active {
  background: #10B981;
}

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

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

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

.cookie-save {
  background: #2563EB;
  color: #FFFFFF;
  padding: 16px 40px;
  font-weight: 800;
  font-size: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
  border: none;
  cursor: pointer;
  width: 100%;
  margin-top: 24px;
  transition: all 0.3s ease;
}

.cookie-save:hover {
  background: #1E40AF;
  transform: translateY(-2px);
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  h1 {
    font-size: 36px;
  }

  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

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

  .main-nav {
    display: none;
  }

  .header-cta {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero {
    padding: 80px 0 60px;
  }

  section {
    padding: 60px 0;
  }

  .benefit-card,
  .service-card,
  .testimonial-card,
  .post-card,
  .link-card,
  .step,
  .team-member,
  .stat,
  .metric {
    flex: 1 1 100%;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .btn {
    width: 100%;
    padding: 16px 24px;
  }

  .footer-column {
    flex: 1 1 100%;
  }

  .cookie-content {
    flex-direction: column;
    text-align: center;
  }

  .cookie-buttons {
    width: 100%;
    flex-direction: column;
  }

  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }

  .stats {
    flex-direction: column;
    gap: 24px;
  }

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

@media (min-width: 769px) and (max-width: 1024px) {
  .benefit-card,
  .service-card,
  .testimonial-card,
  .post-card {
    flex: 1 1 calc(50% - 16px);
  }

  .step,
  .team-member,
  .stat,
  .metric {
    flex: 1 1 calc(50% - 16px);
  }
}

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

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

/* Print Styles */
@media print {
  header,
  footer,
  .mobile-menu-toggle,
  .mobile-menu,
  .cookie-banner,
  .btn {
    display: none;
  }

  body {
    color: #000;
  }

  a {
    text-decoration: underline;
  }
}