/* ========================================
   PHANTOM ASCEND - VIBRANT ENERGETIC DESIGN
   Modern CSS with Flexbox Layouts Only
   ======================================== */

/* ===== CSS RESET & BASE ===== */
* {
  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', sans-serif;
  line-height: 1.6;
  color: #1a1a1a;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 24px;
  color: #1a1a1a;
}

h1 {
  font-size: 48px;
  color: #FF1744;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

h2 {
  font-size: 32px;
  color: #FF6F00;
}

h3 {
  font-size: 24px;
  color: #7C4DFF;
}

h4 {
  font-size: 18px;
  color: #00BFA5;
}

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

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

/* ===== HEADER ===== */
header {
  background: linear-gradient(135deg, #FF1744 0%, #FF6F00 50%, #FFD600 100%);
  box-shadow: 0 4px 20px rgba(255, 23, 68, 0.3);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 16px 0;
}

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

.logo {
  height: 50px;
  width: auto;
  filter: drop-shadow(2px 2px 4px rgba(0,0,0,0.2));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.1) rotate(5deg);
}

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

.main-nav a {
  font-weight: 600;
  font-size: 14px;
  color: #FFFFFF;
  padding: 8px 12px;
  border-radius: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
  position: relative;
}

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

.main-nav a:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-3px);
}

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

/* ===== MOBILE MENU ===== */
.mobile-menu-toggle {
  display: none;
  background: #FF1744;
  color: #FFFFFF;
  border: none;
  font-size: 28px;
  padding: 12px 20px;
  cursor: pointer;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(255, 23, 68, 0.4);
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  transition: all 0.3s ease;
}

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

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 280px;
  height: 100vh;
  background: linear-gradient(180deg, #FF1744 0%, #7C4DFF 100%);
  box-shadow: -4px 0 20px rgba(0,0,0,0.3);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  display: flex;
  flex-direction: column;
  padding: 80px 24px 24px;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.2);
  color: #FFFFFF;
  border: none;
  font-size: 32px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: rgba(255, 255, 255, 0.4);
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #FFFFFF;
  font-size: 18px;
  font-weight: 600;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  transition: all 0.3s ease;
  text-align: center;
}

.mobile-nav a:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateX(8px);
}

@media (max-width: 992px) {
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: block;
  }
}

/* ===== BUTTONS ===== */
.cta-button,
.cta-primary,
.cta-secondary {
  display: inline-block;
  padding: 16px 32px;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  border-radius: 50px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.2);
  position: relative;
  overflow: hidden;
}

.cta-button::before,
.cta-primary::before,
.cta-secondary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s, height 0.6s;
}

.cta-button:hover::before,
.cta-primary:hover::before,
.cta-secondary:hover::before {
  width: 300px;
  height: 300px;
}

.cta-button,
.cta-primary {
  background: linear-gradient(135deg, #FF1744 0%, #FF6F00 100%);
  color: #FFFFFF;
}

.cta-button:hover,
.cta-primary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(255, 23, 68, 0.4);
}

.cta-secondary {
  background: linear-gradient(135deg, #7C4DFF 0%, #00BFA5 100%);
  color: #FFFFFF;
}

.cta-secondary:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 30px rgba(124, 77, 255, 0.4);
}

.download-button,
.read-more {
  background: linear-gradient(135deg, #FFD600 0%, #FF6F00 100%);
  color: #1a1a1a;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  display: inline-block;
  margin-top: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.3);
}

.download-button:hover,
.read-more:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 214, 0, 0.5);
}

/* ===== HERO SECTION ===== */
.hero {
  background: linear-gradient(135deg, #FF1744 0%, #7C4DFF 50%, #00BFA5 100%);
  padding: 80px 20px;
  margin-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  animation: float 6s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -5%;
  width: 400px;
  height: 400px;
  background: rgba(255, 214, 0, 0.2);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-30px) rotate(10deg); }
}

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

.hero h1 {
  color: #FFFFFF;
  margin-bottom: 24px;
  font-size: 56px;
  text-shadow: 3px 3px 6px rgba(0,0,0,0.3);
  animation: slideInDown 0.8s ease-out;
}

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

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

.trust-badge,
.secondary-text {
  color: #FFD600;
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}

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

.problem-section,
.three-pillars,
.services-overview,
.community-proof,
.why-us,
.faq,
.final-cta {
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  padding: 60px 40px;
}

/* ===== PAIN POINTS ===== */
.pain-points {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 32px;
}

.pain-points li {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 20px 24px;
  border-radius: 16px;
  border-left: 6px solid #FF6F00;
  font-size: 16px;
  font-weight: 600;
  color: #1a1a1a;
  box-shadow: 0 4px 12px rgba(255, 111, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
}

.pain-points li::before {
  content: '⚡';
  position: absolute;
  left: -20px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 24px;
}

.pain-points li:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.3);
}

.transition-text {
  font-size: 18px;
  font-weight: 600;
  color: #7C4DFF;
  text-align: center;
  padding: 24px;
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  border-radius: 16px;
  margin-top: 32px;
}

/* ===== GRID LAYOUTS (FLEXBOX) ===== */
.pillars-grid,
.services-grid,
.stats-grid,
.usp-grid,
.benefits-grid,
.tiers-grid,
.resources-grid,
.articles-grid,
.tools-grid,
.methods-grid,
.steps-grid,
.stories-grid,
.testimonials-grid,
.values-grid,
.team-grid,
.awards,
.events-list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
  margin-bottom: 32px;
}

/* ===== CARDS ===== */
.pillar-card,
.service-card,
.stat-card,
.usp-card,
.benefit-card,
.tier-card,
.resource-card,
.article-card,
.tool-card,
.method-card,
.step-card,
.story-card,
.value-card,
.team-member,
.event-card {
  background: #FFFFFF;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  position: relative;
  margin-bottom: 20px;
}

.pillar-card::before,
.service-card::before,
.benefit-card::before {
  content: '';
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: linear-gradient(135deg, #FF1744, #FF6F00, #FFD600, #7C4DFF, #00BFA5);
  border-radius: 20px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pillar-card:hover::before,
.service-card:hover::before,
.benefit-card:hover::before {
  opacity: 1;
}

.pillar-card:hover,
.service-card:hover,
.stat-card:hover,
.usp-card:hover,
.benefit-card:hover,
.tier-card:hover,
.resource-card:hover,
.article-card:hover,
.tool-card:hover,
.method-card:hover,
.step-card:hover,
.story-card:hover,
.value-card:hover,
.team-member:hover,
.event-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.2);
}

/* ===== FEATURED CARDS ===== */
.service-card.featured,
.tier-card.featured {
  background: linear-gradient(135deg, #FF1744 0%, #7C4DFF 100%);
  color: #FFFFFF;
  transform: scale(1.05);
}

.service-card.featured h3,
.tier-card.featured h3 {
  color: #FFFFFF;
}

.badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: #FFD600;
  color: #1a1a1a;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  box-shadow: 0 4px 12px rgba(255, 214, 0, 0.4);
}

/* ===== PRICING ===== */
.price {
  font-size: 36px;
  font-weight: 700;
  color: #FF1744;
  margin: 16px 0;
  font-family: 'Merriweather', serif;
}

.service-card.featured .price,
.tier-card.featured .price {
  color: #FFD600;
}

/* ===== STATS ===== */
.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #FF1744;
  margin-bottom: 8px;
  font-family: 'Merriweather', serif;
}

.stat-label {
  font-size: 14px;
  color: #666;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ===== TESTIMONIALS ===== */
.testimonials {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.testimonial-card {
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  padding: 32px;
  border-radius: 20px;
  border-left: 6px solid #7C4DFF;
  box-shadow: 0 6px 20px rgba(124, 77, 255, 0.2);
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 20px;
}

.testimonial-card p {
  font-size: 16px;
  line-height: 1.8;
  color: #1a1a1a;
  margin-bottom: 0;
}

.testimonial-author {
  font-weight: 700;
  color: #7C4DFF;
  font-size: 14px;
  text-align: right;
}

.quote {
  font-size: 18px;
  font-style: italic;
  color: #1a1a1a;
  position: relative;
  padding-left: 24px;
}

.quote::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 48px;
  color: #7C4DFF;
  font-family: Georgia, serif;
}

.author {
  font-weight: 600;
  color: #FF6F00;
  font-size: 14px;
}

/* ===== FAQ ===== */
.faq-item {
  margin-bottom: 24px;
  padding: 24px;
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  border-radius: 16px;
  border-left: 6px solid #00BFA5;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  box-shadow: 0 6px 20px rgba(0, 191, 165, 0.3);
}

.faq-item h3 {
  color: #00BFA5;
  margin-bottom: 12px;
  font-size: 18px;
}

.faq-item p {
  color: #1a1a1a;
  margin-bottom: 0;
}

/* ===== SERVICE DETAILS ===== */
.service-detailed-card {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  border: 3px solid transparent;
  transition: all 0.3s ease;
}

.service-detailed-card:hover {
  border-color: #FF1744;
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(255, 23, 68, 0.2);
}

.service-detailed-card.featured {
  background: linear-gradient(135deg, #FF1744 0%, #7C4DFF 100%);
  color: #FFFFFF;
}

.service-detailed-card.featured h2,
.service-detailed-card.featured h3 {
  color: #FFFFFF;
}

.service-detailed-card ul {
  list-style: none;
  margin: 24px 0;
}

.service-detailed-card li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  line-height: 1.6;
}

.service-detailed-card li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #00BFA5;
  font-weight: 700;
  font-size: 20px;
}

.service-detailed-card.featured li::before {
  color: #FFD600;
}

.duration,
.ideal-for,
.results {
  margin: 16px 0;
  padding: 16px;
  background: rgba(0, 191, 165, 0.1);
  border-radius: 12px;
  font-size: 14px;
}

/* ===== PILLAR SECTIONS ===== */
.pillar-detailed {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.pillar-one {
  border-top: 8px solid #FF1744;
}

.pillar-two {
  border-top: 8px solid #7C4DFF;
}

.pillar-three {
  border-top: 8px solid #00BFA5;
}

.tagline {
  font-size: 20px;
  color: #FF6F00;
  font-weight: 600;
  font-style: italic;
  margin-bottom: 24px;
}

.strategies,
.skills-grid,
.legal-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.strategy-card,
.skill-card,
.legal-card {
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 6px 20px rgba(255, 111, 0, 0.2);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.strategy-card:hover,
.skill-card:hover,
.legal-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(255, 111, 0, 0.3);
}

.potential,
.time {
  background: #FF1744;
  color: #FFFFFF;
  padding: 12px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 14px;
  margin: 16px 0;
  display: inline-block;
}

.case-study,
.success-story,
.real-example {
  background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  padding: 32px;
  border-radius: 20px;
  margin-top: 40px;
  border-left: 6px solid #00BFA5;
  box-shadow: 0 6px 20px rgba(0, 191, 165, 0.2);
}

/* ===== JOURNEY TIMELINE ===== */
.journey-timeline {
  margin: 40px 0;
}

.timeline-item {
  background: linear-gradient(135deg, #F3E5F5 0%, #E1BEE7 100%);
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 24px;
  border-left: 6px solid #7C4DFF;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -15px;
  top: 50%;
  width: 24px;
  height: 24px;
  background: #7C4DFF;
  border-radius: 50%;
  transform: translateY(-50%);
  box-shadow: 0 0 0 6px rgba(124, 77, 255, 0.2);
}

.financial-summary {
  background: linear-gradient(135deg, #FF1744 0%, #FF6F00 100%);
  color: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 40px;
  box-shadow: 0 10px 30px rgba(255, 23, 68, 0.3);
}

/* ===== SUPPORT LEVELS ===== */
.support-levels {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin: 40px 0;
}

.support-card {
  flex: 1 1 calc(25% - 24px);
  min-width: 240px;
  background: #FFFFFF;
  padding: 32px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
  margin-bottom: 20px;
}

.support-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.2);
}

/* ===== TEAM & VALUES ===== */
.values-grid,
.team-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.value-card,
.team-member {
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
}

/* ===== MILESTONES ===== */
.milestones {
  background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
  padding: 32px;
  border-radius: 20px;
  margin-top: 40px;
}

.milestones h3 {
  color: #FF6F00;
  margin-bottom: 24px;
}

.milestones ul {
  list-style: none;
}

.milestones li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 111, 0, 0.2);
}

.milestones li::before {
  content: '🎯';
  position: absolute;
  left: 0;
  font-size: 20px;
}

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #FFFFFF;
  padding: 60px 20px 20px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-links,
.footer-contact,
.footer-legal {
  flex: 1 1 calc(25% - 40px);
  min-width: 200px;
}

.footer-brand img {
  margin-bottom: 16px;
}

.footer-brand p {
  color: #FFD600;
  font-size: 14px;
}

footer h4 {
  color: #FFD600;
  font-size: 16px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

footer a {
  display: block;
  color: #FFFFFF;
  margin-bottom: 12px;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 0;
  position: relative;
}

footer a::before {
  content: '→';
  position: absolute;
  left: -20px;
  opacity: 0;
  transition: all 0.3s ease;
}

footer a:hover {
  color: #FFD600;
  padding-left: 20px;
}

footer a:hover::before {
  opacity: 1;
  left: 0;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 2px solid rgba(255, 214, 0, 0.3);
  color: #999;
  font-size: 14px;
}

/* ===== COOKIE CONSENT BANNER ===== */
.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #333333 100%);
  color: #FFFFFF;
  padding: 24px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  z-index: 1500;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

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

.cookie-consent p {
  flex: 1 1 300px;
  margin: 0;
  font-size: 14px;
}

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

.cookie-accept,
.cookie-reject,
.cookie-settings {
  padding: 12px 24px;
  border: none;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-accept {
  background: #00BFA5;
  color: #FFFFFF;
}

.cookie-accept:hover {
  background: #00897B;
  transform: scale(1.05);
}

.cookie-reject {
  background: #FF1744;
  color: #FFFFFF;
}

.cookie-reject:hover {
  background: #D50000;
  transform: scale(1.05);
}

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

.cookie-settings:hover {
  background: #FFD600;
  color: #1a1a1a;
}

/* ===== COOKIE MODAL ===== */
.cookie-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.8);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  padding: 20px;
}

.cookie-modal.active {
  opacity: 1;
  visibility: visible;
}

.cookie-modal-content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  position: relative;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.cookie-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #FF1744;
  color: #FFFFFF;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 24px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

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

.cookie-category {
  margin-bottom: 24px;
  padding: 20px;
  background: #F5F5F5;
  border-radius: 16px;
}

.cookie-category h3 {
  color: #FF6F00;
  margin-bottom: 12px;
  font-size: 18px;
}

.cookie-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
}

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

.toggle-switch.active {
  background: #00BFA5;
}

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

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

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

/* ===== LEGAL CONTENT ===== */
.legal-content {
  background: #FFFFFF;
  border-radius: 24px;
  padding: 60px 40px;
  margin-bottom: 60px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.legal-content h1 {
  color: #FF1744;
  border-bottom: 4px solid #FFD600;
  padding-bottom: 16px;
  margin-bottom: 32px;
}

.legal-content h2 {
  color: #7C4DFF;
  margin-top: 40px;
  margin-bottom: 16px;
}

.legal-content h3 {
  color: #FF6F00;
  margin-top: 24px;
  margin-bottom: 12px;
}

.legal-content ul,
.legal-content ol {
  margin: 16px 0 16px 32px;
}

.legal-content li {
  margin-bottom: 12px;
  line-height: 1.8;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 20px; }
  
  .hero { padding: 60px 20px; }
  .hero h1 { font-size: 32px; }
  
  .pillars-grid,
  .services-grid,
  .stats-grid,
  .usp-grid,
  .benefits-grid,
  .tiers-grid,
  .resources-grid,
  .articles-grid,
  .tools-grid,
  .methods-grid,
  .steps-grid,
  .stories-grid,
  .testimonials-grid,
  .values-grid,
  .team-grid,
  .strategies,
  .skills-grid,
  .legal-areas,
  .support-levels {
    flex-direction: column;
  }
  
  .pillar-card,
  .service-card,
  .stat-card,
  .usp-card,
  .benefit-card,
  .tier-card,
  .resource-card,
  .article-card,
  .tool-card,
  .method-card,
  .step-card,
  .story-card,
  .value-card,
  .team-member,
  .strategy-card,
  .skill-card,
  .legal-card,
  .support-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .footer-brand,
  .footer-links,
  .footer-contact,
  .footer-legal {
    flex: 1 1 100%;
  }
  
  .cookie-consent {
    flex-direction: column;
    align-items: stretch;
  }
  
  .cookie-buttons {
    justify-content: stretch;
    flex-direction: column;
  }
  
  .cookie-accept,
  .cookie-reject,
  .cookie-settings {
    width: 100%;
  }
  
  section {
    padding: 32px 16px;
  }
  
  .service-detailed-card,
  .pillar-detailed,
  .legal-content {
    padding: 32px 24px;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  h2 { font-size: 24px; }
  
  .cta-button,
  .cta-primary,
  .cta-secondary {
    padding: 14px 24px;
    font-size: 14px;
  }
  
  .stat-number { font-size: 36px; }
  .price { font-size: 28px; }
  
  .mobile-menu { width: 100%; }
}

/* ===== ANIMATIONS ===== */
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

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

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

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

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