/* ================================
   CRYSTAL CABIN - PLAYFUL DYNAMIC DESIGN
   CSS Reset & 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: #2D3748;
  background: #FFFFFF;
  overflow-x: hidden;
}

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

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

ul, ol {
  list-style-position: inside;
}

/* ================================
   PLAYFUL DYNAMIC COLOR PALETTE
   ================================ */

:root {
  --primary: #FF6B35;
  --primary-dark: #E85A28;
  --primary-light: #FF8B5E;
  --secondary: #2C5F7C;
  --secondary-light: #4A7D9A;
  --accent: #FFD23F;
  --accent-alt: #7B68EE;
  --success: #4ECDC4;
  --bg-light: #FFF9F4;
  --bg-gradient: linear-gradient(135deg, #FFE5D9 0%, #E8F4F8 100%);
  --text-dark: #2D3748;
  --text-light: #718096;
  --white: #FFFFFF;
  --shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
  --shadow-hover: 0 12px 40px rgba(255, 107, 53, 0.25);
}

/* ================================
   PLAYFUL TYPOGRAPHY
   ================================ */

h1, h2, h3, h4, h5, h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: var(--secondary);
  margin-bottom: 20px;
}

h1 {
  font-size: 48px;
  color: var(--secondary);
  text-transform: none;
  letter-spacing: -0.5px;
}

h2 {
  font-size: 36px;
  color: var(--secondary);
}

h3 {
  font-size: 28px;
  color: var(--secondary);
}

h4 {
  font-size: 22px;
  color: var(--secondary);
}

p {
  font-size: 18px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 16px;
}

/* ================================
   CONTAINER & LAYOUT
   ================================ */

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
}

.section {
  margin-bottom: 80px;
  padding: 60px 0;
  position: relative;
}

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

/* ================================
   ANIMATED HEADER
   ================================ */

header {
  background: var(--white);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  position: sticky;
  top: 0;
  z-index: 1000;
  padding: 20px 0;
  animation: slideDown 0.5s ease;
}

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

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

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

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

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

.main-nav a {
  font-weight: 600;
  color: var(--secondary);
  font-size: 16px;
  position: relative;
  padding: 8px 0;
  transition: all 0.3s ease;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--primary);
  transition: width 0.3s ease;
  border-radius: 3px;
}

.main-nav a:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

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

/* ================================
   MOBILE MENU - PLAYFUL SLIDE
   ================================ */

.mobile-menu-toggle {
  display: none;
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2000;
  background: var(--primary);
  color: var(--white);
  border: none;
  padding: 12px 16px;
  font-size: 24px;
  border-radius: 12px;
  cursor: pointer;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.mobile-menu-toggle:hover {
  background: var(--primary-dark);
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-hover);
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 85%;
  max-width: 400px;
  height: 100vh;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-alt) 100%);
  z-index: 1999;
  transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  padding: 80px 32px 32px;
  box-shadow: -10px 0 50px rgba(0, 0, 0, 0.3);
  overflow-y: auto;
}

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

.mobile-menu-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 10px 14px;
  font-size: 28px;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.mobile-menu-close:hover {
  transform: rotate(90deg) scale(1.1);
  background: var(--accent);
}

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

.mobile-nav a {
  display: block;
  padding: 16px 20px;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  font-weight: 600;
  font-size: 18px;
  border-radius: 12px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.mobile-nav a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateX(10px) scale(1.03);
  border-color: var(--accent);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

/* ================================
   PLAYFUL HERO SECTION
   ================================ */

.hero {
  background: var(--bg-gradient);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
  margin-bottom: 0;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 8s ease-in-out infinite;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(123, 104, 238, 0.12) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 10s ease-in-out infinite reverse;
}

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

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

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

.hero h1 {
  font-size: 56px;
  color: var(--secondary);
  margin-bottom: 24px;
  animation: bounceIn 1s ease;
}

@keyframes bounceIn {
  0% { transform: scale(0.3); opacity: 0; }
  50% { transform: scale(1.05); }
  70% { transform: scale(0.9); }
  100% { transform: scale(1); opacity: 1; }
}

.hero-subheadline {
  font-size: 22px;
  color: var(--text-dark);
  margin-bottom: 32px;
  line-height: 1.6;
}

.hero-cta {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.trust-indicator {
  font-size: 16px;
  color: var(--secondary);
  font-weight: 600;
  margin-top: 20px;
}

/* ================================
   ENERGETIC BUTTONS
   ================================ */

.btn {
  display: inline-block;
  padding: 16px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 18px;
  text-align: center;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.3s ease;
  text-transform: none;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  width: 300px;
  height: 300px;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  box-shadow: 0 6px 25px rgba(255, 107, 53, 0.3);
}

.btn-primary:hover {
  background: var(--primary-dark);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 10px 35px rgba(255, 107, 53, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--secondary);
  border-color: var(--secondary);
  box-shadow: 0 4px 15px rgba(44, 95, 124, 0.15);
}

.btn-secondary:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 8px 25px rgba(44, 95, 124, 0.3);
}

/* ================================
   DYNAMIC CARD LAYOUTS
   ================================ */

.benefits-grid,
.services-grid,
.programs-grid,
.team-grid,
.testimonials-grid,
.stats-grid,
.articles-grid,
.coaches-grid,
.packages-grid,
.contact-grid,
.categories-grid,
.tips-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 40px;
  justify-content: center;
}

.benefit-item,
.service-card,
.program-card,
.team-member,
.testimonial-card,
.stat-item,
.article-card,
.coach-card,
.package-card,
.contact-option,
.category-card,
.tip-card,
.story-card,
.achievement-item {
  flex: 1 1 calc(33.333% - 28px);
  min-width: 280px;
  background: var(--white);
  padding: 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  border: 3px solid transparent;
}

.benefit-item:hover,
.service-card:hover,
.program-card:hover,
.team-member:hover,
.article-card:hover,
.coach-card:hover,
.package-card:hover,
.contact-option:hover,
.category-card:hover,
.tip-card:hover,
.story-card:hover {
  transform: translateY(-12px) rotate(1deg);
  box-shadow: 0 15px 50px rgba(255, 107, 53, 0.2);
  border-color: var(--accent);
}

.benefit-item img,
.contact-option img {
  width: 70px;
  height: 70px;
  margin-bottom: 20px;
  transition: transform 0.4s ease;
}

.benefit-item:hover img,
.contact-option:hover img {
  transform: scale(1.2) rotate(10deg);
}

/* ================================
   PLAYFUL PRICE DISPLAY
   ================================ */

.price {
  font-size: 42px;
  font-weight: 800;
  color: var(--primary);
  margin: 20px 0;
  font-family: 'Montserrat', sans-serif;
  text-align: center;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.program-duration,
.package-sessions {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 600;
  text-align: center;
  margin-bottom: 12px;
}

/* ================================
   BADGES & LABELS
   ================================ */

.program-badge,
.badge,
.category {
  display: inline-block;
  padding: 8px 16px;
  background: var(--accent);
  color: var(--secondary);
  font-weight: 700;
  font-size: 14px;
  border-radius: 20px;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 4px 15px rgba(255, 210, 63, 0.3);
}

.featured {
  border: 4px solid var(--primary);
  position: relative;
}

.featured .badge {
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  padding: 10px 24px;
  font-size: 16px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: translateX(-50%) scale(1); }
  50% { transform: translateX(-50%) scale(1.1); }
}

/* ================================
   TESTIMONIALS - HIGH CONTRAST
   ================================ */

.testimonial-card {
  background: linear-gradient(135deg, var(--accent) 0%, var(--primary-light) 100%);
  color: var(--white);
  padding: 40px;
  border-radius: 24px;
  box-shadow: 0 10px 40px rgba(255, 107, 53, 0.25);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: '❝';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 80px;
  opacity: 0.2;
  color: var(--white);
  font-family: Georgia, serif;
}

.quote {
  font-size: 20px;
  font-style: italic;
  line-height: 1.7;
  margin-bottom: 20px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.author {
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  font-size: 18px;
}

.result,
.credentials,
.role,
.specialty {
  color: rgba(255, 255, 255, 0.9);
  font-size: 16px;
  font-weight: 600;
}

/* ================================
   STATS SECTION - VIBRANT
   ================================ */

.stats {
  background: linear-gradient(135deg, var(--secondary) 0%, var(--accent-alt) 100%);
  padding: 80px 0;
  margin-bottom: 80px;
  position: relative;
  overflow: hidden;
}

.stats::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml,<svg width="40" height="40" xmlns="http://www.w3.org/2000/svg"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
  opacity: 0.3;
}

.stat-item {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 40px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.stat-number {
  font-size: 56px;
  font-weight: 900;
  color: var(--white);
  font-family: 'Montserrat', sans-serif;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
  animation: countUp 1.5s ease;
}

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

.stat-label {
  font-size: 18px;
  color: var(--white);
  font-weight: 600;
  text-align: center;
}

/* ================================
   STEPS & PROCESS
   ================================ */

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

.step-item {
  flex: 1 1 calc(33.333% - 32px);
  min-width: 280px;
  background: var(--white);
  padding: 40px 32px;
  border-radius: 20px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  text-align: center;
  position: relative;
  border: 3px solid transparent;
  transition: all 0.4s ease;
}

.step-item:hover {
  transform: translateY(-10px);
  border-color: var(--primary);
  box-shadow: 0 15px 45px rgba(255, 107, 53, 0.2);
}

.step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  color: var(--white);
  font-size: 36px;
  font-weight: 900;
  border-radius: 50%;
  margin-bottom: 24px;
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.3);
  font-family: 'Montserrat', sans-serif;
}

/* ================================
   CTA SECTIONS - ENERGETIC
   ================================ */

.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent-alt) 100%);
  padding: 80px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 80px;
  border-radius: 30px;
  margin-left: 24px;
  margin-right: 24px;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  animation: float 7s ease-in-out infinite;
}

.cta-section h2 {
  color: var(--white);
  font-size: 42px;
  margin-bottom: 20px;
  text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.2);
}

.cta-section p {
  color: var(--white);
  font-size: 20px;
  margin-bottom: 32px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.trust-badge,
.guarantee {
  color: var(--white);
  font-weight: 600;
  margin-top: 24px;
  font-size: 16px;
}

/* ================================
   FOOTER - PLAYFUL
   ================================ */

footer {
  background: linear-gradient(135deg, var(--secondary) 0%, #1A3A4D 100%);
  color: var(--white);
  padding: 60px 0 24px;
  margin-top: 80px;
}

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

.footer-col {
  flex: 1 1 220px;
  min-width: 200px;
}

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

.footer-col h4 {
  color: var(--accent);
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 700;
}

.footer-col p,
.footer-col a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  line-height: 1.8;
  transition: all 0.3s ease;
}

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

.footer-col a:hover {
  color: var(--accent);
  transform: translateX(5px);
}

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

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

/* ================================
   COOKIE CONSENT BANNER
   ================================ */

.cookie-consent {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
  padding: 24px;
  box-shadow: 0 -4px 30px rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

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

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

.cookie-text {
  color: var(--white);
  font-size: 16px;
  flex: 1 1 400px;
}

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

.cookie-btn {
  padding: 12px 28px;
  border-radius: 25px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.cookie-btn-accept {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
}

.cookie-btn-accept:hover {
  background: var(--white);
  transform: scale(1.05);
}

.cookie-btn-decline {
  background: transparent;
  color: var(--white);
}

.cookie-btn-decline:hover {
  background: rgba(255, 255, 255, 0.1);
}

.cookie-btn-settings {
  background: transparent;
  color: var(--white);
}

.cookie-btn-settings:hover {
  background: rgba(255, 255, 255, 0.1);
}

/* ================================
   LISTS & CONTENT
   ================================ */

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

ul li, ol li {
  margin-bottom: 12px;
  line-height: 1.7;
  color: var(--text-dark);
  font-size: 17px;
}

blockquote {
  border-left: 5px solid var(--primary);
  padding-left: 24px;
  margin: 24px 0;
  font-style: italic;
  color: var(--text-dark);
  font-size: 19px;
  background: var(--bg-light);
  padding: 24px;
  border-radius: 12px;
}

/* ================================
   SECTION SPECIFIC STYLES
   ================================ */

.section-intro {
  text-align: center;
  font-size: 20px;
  color: var(--text-light);
  max-width: 700px;
  margin: 0 auto 40px;
}

.last-updated {
  font-size: 16px;
  color: var(--text-light);
  font-style: italic;
}

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

.legal-content h2 {
  margin-top: 40px;
  margin-bottom: 20px;
}

/* ================================
   FORM STYLES
   ================================ */

.form-info {
  text-align: center;
  margin-bottom: 40px;
}

/* ================================
   ARTICLES & BLOG
   ================================ */

.article-card,
.article-item {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.article-card:hover {
  transform: translateY(-8px) rotate(1deg);
  box-shadow: 0 12px 40px rgba(255, 107, 53, 0.15);
}

.articles-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 40px;
}

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

.date,
.meta {
  font-size: 14px;
  color: var(--text-light);
  font-weight: 600;
}

.count {
  font-size: 24px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 8px;
}

/* ================================
   LOCATION & CONTACT
   ================================ */

.location-content {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 40px;
}

.location-details {
  flex: 1 1 400px;
  background: var(--bg-light);
  padding: 40px;
  border-radius: 20px;
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
}

.note {
  background: var(--accent);
  padding: 16px;
  border-radius: 12px;
  margin-top: 20px;
  font-weight: 600;
  color: var(--secondary);
}

/* ================================
   FAQ
   ================================ */

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin-top: 40px;
}

.faq-item {
  background: var(--white);
  padding: 32px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid var(--primary);
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(8px);
  box-shadow: 0 8px 30px rgba(255, 107, 53, 0.15);
}

.faq-item h3 {
  color: var(--primary);
  margin-bottom: 12px;
}

/* ================================
   NEWSLETTER
   ================================ */

.newsletter {
  background: var(--bg-gradient);
  padding: 80px 0;
  text-align: center;
  border-radius: 30px;
  margin: 80px 24px;
}

.newsletter-benefits {
  max-width: 600px;
  margin: 32px auto;
  text-align: left;
}

.newsletter-benefits p {
  font-size: 18px;
  font-weight: 600;
  color: var(--secondary);
  margin-bottom: 12px;
}

.subscriber-count {
  font-weight: 700;
  color: var(--primary);
  font-size: 18px;
  margin-top: 24px;
}

/* ================================
   RESPONSIVE DESIGN
   ================================ */

@media (max-width: 1024px) {
  h1 { font-size: 42px; }
  h2 { font-size: 32px; }
  h3 { font-size: 24px; }
  
  .hero h1 { font-size: 48px; }
}

@media (max-width: 768px) {
  /* Show mobile menu */
  .mobile-menu-toggle {
    display: block;
  }
  
  .main-nav {
    display: none;
  }
  
  /* Typography */
  h1 { font-size: 36px; }
  h2 { font-size: 28px; }
  h3 { font-size: 22px; }
  p { font-size: 16px; }
  
  .hero h1 { font-size: 38px; }
  .hero-subheadline { font-size: 18px; }
  
  /* Layout adjustments */
  .section {
    padding: 40px 0;
    margin-bottom: 60px;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero-cta {
    flex-direction: column;
    align-items: stretch;
  }
  
  .btn {
    padding: 14px 28px;
    font-size: 16px;
  }
  
  /* Cards - stack on mobile */
  .benefit-item,
  .service-card,
  .program-card,
  .team-member,
  .stat-item,
  .article-card,
  .coach-card,
  .package-card,
  .contact-option,
  .category-card,
  .tip-card,
  .story-card,
  .step-item {
    flex: 1 1 100%;
    min-width: 100%;
  }
  
  /* Footer */
  .footer-content {
    flex-direction: column;
    gap: 32px;
  }
  
  .footer-col {
    flex: 1 1 100%;
  }
  
  /* Cookie consent */
  .cookie-content {
    flex-direction: column;
    text-align: center;
  }
  
  .cookie-buttons {
    justify-content: center;
    width: 100%;
  }
  
  /* Stats */
  .stat-number { font-size: 42px; }
  .stat-label { font-size: 16px; }
  
  /* CTA sections */
  .cta-section {
    padding: 60px 24px;
    margin-left: 0;
    margin-right: 0;
    border-radius: 0;
  }
  
  .cta-section h2 { font-size: 32px; }
  
  /* Location */
  .location-details {
    flex: 1 1 100%;
  }
  
  /* Testimonials */
  .testimonials-grid {
    gap: 24px;
  }
  
  .quote { font-size: 18px; }
}

@media (max-width: 480px) {
  .container {
    padding: 0 16px;
  }
  
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  
  .hero h1 { font-size: 32px; }
  
  .price { font-size: 36px; }
  
  .step-number {
    width: 60px;
    height: 60px;
    font-size: 28px;
  }
  
  .mobile-menu {
    width: 100%;
    max-width: 100%;
  }
}

/* ================================
   ANIMATIONS & EFFECTS
   ================================ */

@keyframes wiggle {
  0%, 100% { transform: rotate(0deg); }
  25% { transform: rotate(5deg); }
  75% { transform: rotate(-5deg); }
}

.benefit-item:hover,
.service-card:hover {
  animation: wiggle 0.5s ease;
}

/* Smooth scroll */
html {
  scroll-behavior: smooth;
}

/* Selection colors */
::selection {
  background: var(--primary);
  color: var(--white);
}

/* Focus states */
a:focus,
button:focus {
  outline: 3px solid var(--accent);
  outline-offset: 3px;
}

/* ================================
   UTILITY CLASSES
   ================================ */

.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mt-40 { margin-top: 40px; }
.mb-40 { margin-bottom: 40px; }

/* Ensures no grid/columns used */
/* All layouts use flexbox only */
/* No position: absolute for content cards */
/* Proper spacing maintained throughout */