/* ============================================
   VOLUXIS GRID - TECH FUTURISTIC DESIGN SYSTEM
   ============================================ */

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  line-height: 1.6;
  color: #E0E0E0;
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 50%, #0F1525 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  line-height: 1.3;
  margin-bottom: 16px;
  color: #FFFFFF;
  font-weight: 700;
}

h1 {
  font-size: 48px;
  background: linear-gradient(135deg, #00D9FF 0%, #7B2FFF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-shadow: 0 0 30px rgba(0, 217, 255, 0.3);
}

h2 {
  font-size: 32px;
  color: #00D9FF;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.3);
}

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

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

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

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

a:hover {
  color: #7B2FFF;
  text-shadow: 0 0 10px rgba(123, 47, 255, 0.5);
}

ul {
  list-style: none;
  padding-left: 0;
}

li {
  padding-left: 24px;
  position: relative;
  margin-bottom: 12px;
  color: #B8C5D6;
}

li:before {
  content: '▹';
  position: absolute;
  left: 0;
  color: #00D9FF;
  font-size: 20px;
}

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

/* HEADER */
header {
  background: rgba(10, 14, 39, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid rgba(0, 217, 255, 0.3);
  padding: 16px 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 4px 30px rgba(0, 217, 255, 0.2);
}

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

.logo img {
  height: 50px;
  width: auto;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
  transition: all 0.3s ease;
}

.logo img:hover {
  filter: drop-shadow(0 0 20px rgba(123, 47, 255, 0.8));
  transform: scale(1.05);
}

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

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

.main-nav a:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00D9FF, #7B2FFF);
  transition: width 0.3s ease;
}

.main-nav a:hover {
  color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
}

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

/* MOBILE MENU */
.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2000;
  background: linear-gradient(135deg, #00D9FF, #7B2FFF);
  border: none;
  color: white;
  font-size: 24px;
  width: 50px;
  height: 50px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(123, 47, 255, 0.6);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  border-left: 2px solid rgba(0, 217, 255, 0.3);
  box-shadow: -4px 0 30px rgba(0, 0, 0, 0.5);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 30px 30px;
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid #00D9FF;
  color: #00D9FF;
  font-size: 24px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.mobile-menu-close:hover {
  background: #00D9FF;
  color: #0A0E27;
  transform: rotate(90deg);
}

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

.mobile-nav a {
  color: #B8C5D6;
  font-size: 18px;
  font-weight: 500;
  padding: 16px 20px;
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 8px;
  transition: all 0.3s ease;
}

.mobile-nav a:hover {
  background: rgba(0, 217, 255, 0.15);
  border-color: #00D9FF;
  color: #00D9FF;
  transform: translateX(10px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.3);
}

/* HERO SECTION */
.hero {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1) 0%, rgba(123, 47, 255, 0.1) 100%);
  border-bottom: 2px solid rgba(0, 217, 255, 0.2);
  position: relative;
  overflow: hidden;
}

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

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.2); opacity: 0.8; }
}

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

.hero h1 {
  margin-bottom: 24px;
  animation: slideDown 0.8s ease-out;
}

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

.hero-subtitle {
  font-size: 20px;
  color: #B8C5D6;
  margin-bottom: 32px;
  line-height: 1.6;
  animation: fadeIn 1s ease-out 0.2s backwards;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
  animation: fadeIn 1.2s ease-out 0.4s backwards;
}

.trust-indicator {
  color: #00D9FF;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  animation: fadeIn 1.4s ease-out 0.6s backwards;
}

/* BUTTONS */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn:before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
  z-index: -1;
}

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

.btn-primary {
  background: linear-gradient(135deg, #00D9FF 0%, #7B2FFF 100%);
  color: white;
  box-shadow: 0 4px 20px rgba(0, 217, 255, 0.4);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(123, 47, 255, 0.6);
}

.btn-secondary {
  background: transparent;
  color: #00D9FF;
  border: 2px solid #00D9FF;
}

.btn-secondary:hover {
  background: rgba(0, 217, 255, 0.1);
  border-color: #7B2FFF;
  color: #7B2FFF;
  box-shadow: 0 4px 20px rgba(123, 47, 255, 0.3);
}

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

.section-subtitle {
  text-align: center;
  font-size: 18px;
  color: #B8C5D6;
  margin-bottom: 40px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

/* VALUE PROPOSITION */
.value-proposition {
  padding: 80px 20px;
  text-align: center;
}

.value-proposition h2 {
  margin-bottom: 16px;
}

.value-proposition > p {
  font-size: 18px;
  margin-bottom: 48px;
  color: #B8C5D6;
}

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

.benefit-card {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.benefit-card:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #00D9FF, #7B2FFF);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

.benefit-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
  background: rgba(0, 217, 255, 0.1);
}

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

.benefit-card h3 {
  margin-bottom: 16px;
  color: #00D9FF;
}

/* SERVICES OVERVIEW */
.services-overview {
  padding: 80px 20px;
  text-align: center;
}

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

.service-card {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.05), rgba(123, 47, 255, 0.05));
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.service-card:before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 100px;
  height: 100px;
  background: radial-gradient(circle, rgba(123, 47, 255, 0.2), transparent);
  border-radius: 50%;
  transform: translate(50%, -50%);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(123, 47, 255, 0.3);
  border-color: #7B2FFF;
}

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

.service-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #00D9FF;
  margin-top: 16px;
  text-shadow: 0 0 10px rgba(0, 217, 255, 0.5);
}

/* SERVICES DETAIL */
.services-detail {
  padding: 60px 20px;
}

.service-item {
  background: rgba(0, 217, 255, 0.03);
  border: 1px solid rgba(0, 217, 255, 0.2);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 40px;
  position: relative;
  overflow: hidden;
}

.service-item:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(180deg, #00D9FF, #7B2FFF);
}

.service-item h2 {
  margin-bottom: 16px;
}

.service-item .price {
  font-size: 28px;
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 24px;
  display: block;
}

.service-item h3 {
  margin-top: 32px;
  margin-bottom: 16px;
}

.service-item ul {
  margin-bottom: 24px;
}

.service-item .btn {
  margin-top: 24px;
}

/* TESTIMONIALS */
.testimonials {
  padding: 80px 20px;
  background: rgba(123, 47, 255, 0.05);
  border-top: 2px solid rgba(123, 47, 255, 0.2);
  border-bottom: 2px solid rgba(123, 47, 255, 0.2);
}

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

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

.testimonial-card {
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  position: relative;
}

.testimonial-card:before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  color: rgba(0, 217, 255, 0.2);
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.4);
}

.testimonial-card p {
  color: #2C3E50;
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.testimonial-card .author {
  color: #1A1F3A;
  font-weight: 600;
  font-size: 14px;
  text-align: right;
  margin-bottom: 0;
  font-style: italic;
}

/* WORKSHOPS */
.workshops-overview,
.workshops-grid {
  padding: 60px 20px;
}

.workshops-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
  padding-top: 0;
}

.workshop-card {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 300px;
  max-width: 550px;
  transition: all 0.3s ease;
}

.workshop-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.workshop-card h3 {
  margin-bottom: 16px;
}

.workshop-card .format {
  color: #00D9FF;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.workshop-card .price {
  font-size: 24px;
  font-weight: 700;
  color: #7B2FFF;
  margin-bottom: 16px;
  display: block;
}

.workshop-card h4 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 18px;
}

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

.workshop-card .btn {
  margin-top: 24px;
}

/* RESOURCES */
.resource-categories {
  padding: 60px 20px;
}

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

.category-card {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 47, 255, 0.1));
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 8px;
  padding: 20px 32px;
  color: #00D9FF;
  font-weight: 600;
  transition: all 0.3s ease;
  cursor: pointer;
}

.category-card:hover {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.2), rgba(123, 47, 255, 0.2));
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(0, 217, 255, 0.3);
}

.featured-resources,
.ebooks,
.audio-library,
.worksheets {
  padding: 60px 20px;
}

.resources-grid,
.ebooks-grid,
.meditations-grid,
.worksheets-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.resource-card,
.ebook-item,
.meditation-item,
.worksheet-item {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
}

.resource-card:hover,
.ebook-item:hover,
.meditation-item:hover,
.worksheet-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.resource-card h3,
.ebook-item h3,
.meditation-item h3,
.worksheet-item h3 {
  margin-bottom: 12px;
}

.resource-card .format {
  color: #7B2FFF;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  margin-bottom: 16px;
  display: block;
}

/* BLOG */
.blog-categories {
  padding: 40px 20px;
  background: rgba(0, 217, 255, 0.03);
}

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

.category-link {
  padding: 10px 20px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 20px;
  color: #00D9FF;
  font-size: 14px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.category-link:hover {
  background: rgba(0, 217, 255, 0.2);
  border-color: #00D9FF;
  transform: translateY(-2px);
}

.featured-article {
  padding: 60px 20px;
}

.featured-card {
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 47, 255, 0.1));
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 48px;
  max-width: 900px;
  margin: 0 auto;
}

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

.featured-card .excerpt {
  font-size: 18px;
  color: #B8C5D6;
  margin-bottom: 16px;
}

.featured-card .meta {
  color: #7B2FFF;
  font-size: 14px;
  margin-bottom: 24px;
}

.blog-grid {
  padding: 60px 20px;
}

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

.article-card {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 280px;
  max-width: 380px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

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

.article-card .meta {
  color: #7B2FFF;
  font-size: 12px;
  margin-top: 16px;
}

/* CONTACT */
.contact-options,
.contact-info,
.booking-process {
  padding: 60px 20px;
}

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

.option-card,
.info-item,
.step-card {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  text-align: center;
  transition: all 0.3s ease;
}

.option-card:hover,
.step-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.emergency-note {
  text-align: center;
  color: #FF6B6B;
  font-weight: 600;
  margin-top: 40px;
  padding: 20px;
  background: rgba(255, 107, 107, 0.1);
  border: 1px solid rgba(255, 107, 107, 0.3);
  border-radius: 8px;
}

/* TRUST BADGES */
.trust-badges {
  padding: 60px 20px;
  background: rgba(123, 47, 255, 0.05);
}

.badges-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.badge {
  padding: 16px 32px;
  background: rgba(0, 217, 255, 0.1);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 30px;
  color: #00D9FF;
  font-weight: 600;
  font-size: 14px;
}

/* VALUES & TEAM */
.values,
.team,
.mission-vision,
.story {
  padding: 60px 20px;
}

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

.value-card,
.team-member {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(50% - 24px);
  min-width: 280px;
  max-width: 500px;
  transition: all 0.3s ease;
}

.value-card:hover,
.team-member:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
  border-color: #00D9FF;
}

.team-member .role {
  color: #7B2FFF;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 12px;
}

/* THANK YOU PAGE */
.thank-you-content {
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.next-steps,
.meanwhile,
.testimonial,
.social-proof {
  padding: 60px 20px;
}

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

.suggestion-card,
.stat-card {
  background: rgba(0, 217, 255, 0.05);
  border: 1px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  flex: 1 1 calc(33.333% - 24px);
  min-width: 250px;
  max-width: 350px;
  text-align: center;
  transition: all 0.3s ease;
}

.suggestion-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 217, 255, 0.3);
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: #00D9FF;
  margin-bottom: 8px;
  text-shadow: 0 0 20px rgba(0, 217, 255, 0.5);
}

.stat-label {
  color: #B8C5D6;
  font-size: 14px;
}

/* NEWSLETTER */
.newsletter-signup,
.newsletter-cta {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(0, 217, 255, 0.1), rgba(123, 47, 255, 0.1));
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  border-bottom: 2px solid rgba(123, 47, 255, 0.3);
}

.newsletter-benefits {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 500px;
  margin: 32px auto;
  text-align: left;
}

.newsletter-benefits p {
  color: #B8C5D6;
  font-size: 16px;
}

.privacy-note,
.frequency {
  font-size: 14px;
  color: #7B2FFF;
  margin-top: 24px;
}

/* CTA SECTION */
.cta-section {
  padding: 80px 20px;
  text-align: center;
  background: linear-gradient(135deg, rgba(123, 47, 255, 0.15), rgba(0, 217, 255, 0.15));
  border-top: 2px solid rgba(123, 47, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.cta-section:before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(123, 47, 255, 0.3), transparent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  animation: pulse 6s ease-in-out infinite;
}

.cta-section h2 {
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}

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

.cta-section .btn {
  position: relative;
  z-index: 1;
}

.trust-element {
  color: #B8C5D6;
  font-size: 14px;
  margin-top: 16px;
}

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

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

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

.legal-content h3 {
  margin-top: 24px;
  margin-bottom: 12px;
  font-size: 20px;
}

.legal-content p,
.legal-content ul {
  margin-bottom: 16px;
}

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

/* FOOTER */
footer {
  background: rgba(10, 14, 39, 0.95);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 60px 20px 30px;
  margin-top: 80px;
}

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

.footer-brand,
.footer-contact,
.footer-links {
  flex: 1 1 250px;
}

.footer-brand img {
  height: 40px;
  margin-bottom: 16px;
  filter: drop-shadow(0 0 10px rgba(0, 217, 255, 0.5));
}

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

.footer-contact h4,
.footer-links h4 {
  color: #00D9FF;
  margin-bottom: 16px;
  font-size: 18px;
}

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

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

.footer-links a {
  color: #B8C5D6;
  font-size: 14px;
  transition: all 0.3s ease;
  padding-left: 12px;
  position: relative;
}

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

.footer-links a:hover {
  color: #00D9FF;
  padding-left: 20px;
}

.footer-links a:hover:before {
  opacity: 1;
}

.copyright {
  text-align: center;
  color: #7B2FFF;
  font-size: 14px;
  padding-top: 30px;
  border-top: 1px solid rgba(0, 217, 255, 0.2);
}

/* COOKIE CONSENT BANNER */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(180deg, #0A0E27 0%, #1A1F3A 100%);
  border-top: 2px solid rgba(0, 217, 255, 0.3);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.5);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

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

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

.cookie-banner-text {
  flex: 1 1 400px;
  color: #B8C5D6;
  font-size: 14px;
  line-height: 1.6;
}

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

.cookie-banner button {
  padding: 10px 24px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
}

.cookie-accept {
  background: linear-gradient(135deg, #00D9FF, #7B2FFF);
  color: white;
}

.cookie-accept:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 217, 255, 0.4);
}

.cookie-reject {
  background: rgba(255, 255, 255, 0.1);
  color: #B8C5D6;
  border: 1px solid rgba(0, 217, 255, 0.3);
}

.cookie-reject:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #00D9FF;
}

.cookie-settings {
  background: transparent;
  color: #00D9FF;
  text-decoration: underline;
}

.cookie-settings:hover {
  color: #7B2FFF;
}

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

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

.cookie-modal-content {
  background: linear-gradient(135deg, #0A0E27 0%, #1A1F3A 100%);
  border: 2px solid rgba(0, 217, 255, 0.3);
  border-radius: 12px;
  padding: 40px;
  max-width: 600px;
  width: 100%;
  max-height: 80vh;
  overflow-y: auto;
  box-shadow: 0 8px 40px rgba(0, 217, 255, 0.3);
}

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

.cookie-category {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0, 217, 255, 0.2);
}

.cookie-category:last-child {
  border-bottom: none;
}

.cookie-category h3 {
  margin-bottom: 8px;
  color: #00D9FF;
}

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

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

.toggle-switch {
  position: relative;
  width: 50px;
  height: 26px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 13px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.toggle-switch.active {
  background: linear-gradient(90deg, #00D9FF, #7B2FFF);
}

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

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

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

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

.cookie-modal button {
  flex: 1;
  min-width: 120px;
}

/* RESPONSIVE DESIGN */
@media (max-width: 768px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  h3 { font-size: 20px; }
  
  .main-nav {
    display: none;
  }
  
  .mobile-menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .hero {
    padding: 60px 20px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .benefit-card,
  .service-card,
  .value-card,
  .team-member,
  .workshop-card,
  .option-card,
  .step-card {
    flex: 1 1 100%;
  }
  
  .footer-content {
    flex-direction: column;
  }
  
  .cookie-banner-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-banner-buttons {
    justify-content: center;
    width: 100%;
  }
  
  .cookie-modal-content {
    padding: 24px;
  }
  
  .article-card,
  .resource-card,
  .suggestion-card {
    flex: 1 1 100%;
  }
}

@media (max-width: 480px) {
  h1 { font-size: 28px; }
  
  .hero-subtitle {
    font-size: 16px;
  }
  
  .btn {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
  }
  
  .section {
    padding: 40px 20px;
  }
  
  .mobile-menu {
    width: 100%;
    right: -100%;
  }
}

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