/* ===============================
   RESET & BASE STYLES
   =============================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --blue: #4a90e2;
    --yellow: #f4c430;
    --green: #34c759;
    --coral: #ff6f61;
    --light: #e9ecef;
    --dark: #333;
    --white: #fff;
    --gray: #f8f9fa;
    --dark-gray: #6c757d;
    --border-radius: 12px;
    --box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Quicksand', sans-serif;
    font-weight: 700;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===============================
   HEADER & NAVIGATION
   =============================== */
.header-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.top-banner {
    background: var(--blue);
    color: var(--white);
    text-align: center;
    padding: 0.5rem;
    font-size: 0.9rem;
    font-weight: 500;
}

.nav-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
}

.logo-small img {
    height: 40px;
    width: auto;
}

.nav-menu {
    display: flex;
    gap: 1.5rem;
}

.nav-link {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    transition: var(--transition);
    position: relative;
    font-size: 0.95rem;
}

.nav-link:hover {
    color: var(--blue);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--blue);
    transition: var(--transition);
}

.nav-link:hover::after {
    width: 100%;
}

.auth-buttons {
    display: flex;
    gap: 0.8rem;
}

.auth-btn {
    padding: 0.5rem 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
}

.auth-btn.login {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.auth-btn.login:hover {
    background: var(--blue);
    color: var(--white);
}

.auth-btn.signup {
    background: var(--blue);
    color: var(--white);
}

.auth-btn.signup:hover {
    background: #3a7ac8;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--dark);
    padding: 0.5rem;
}

.mobile-menu {
    display: none;
    flex-direction: column;
    background: var(--white);
    padding: 1.5rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    z-index: 1000;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    padding: 1rem 0;
    border-bottom: 1px solid var(--light);
    width: 100%;
}

.mobile-auth-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.mobile-auth-btn {
    padding: 0.8rem;
    border-radius: 50px;
    border: none;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.mobile-auth-btn.login {
    background: transparent;
    border: 1px solid var(--blue);
    color: var(--blue);
}

.mobile-auth-btn.signup {
    background: var(--blue);
    color: var(--white);
}

/* ===============================
   HERO SECTION
   =============================== */
.hero {
    padding: 7rem 1.5rem 4rem;
    background-image: url(../img/bbg.jpg);
    background-size: cover;
    background-position: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.hero-content {
    max-width: 800px;
    margin: 0;
    position: relative;
    z-index: 2;
    padding: 0 1rem;
    text-align: left;
    margin-top: 2rem;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
    text-align: left;
}

.highlight {
    color: var(--yellow);
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--white);
    text-align: left;
}

.sub-tagline {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
    text-align: left;
}

.cta-button {
    display: inline-block;
    padding: 1rem 2rem;
    background: var(--yellow);
    color: var(--dark);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    margin-bottom: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
    background: #e6b620;
}

.discover-how {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    color: var(--white);
    font-weight: 600;
    animation: bounce 2s infinite;
    cursor: pointer;
    z-index: 2;
}

.discover-how span {
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.discover-how i {
    font-size: 1.2rem;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0) translateX(-50%); }
    40% { transform: translateY(-10px) translateX(-50%); }
    60% { transform: translateY(-5px) translateX(-50%); }
}

/* ===============================
   COMMON SECTION STYLES
   =============================== */
section {
    padding: 4rem 1.5rem;
}

.section-header-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.section-badge {
    display: inline-block;
    background: var(--blue);
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-title-premium {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #1a202c;
}

.title-highlight {
    color: var(--yellow);
}

.section-subtitle-premium {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #4a5568;
    font-weight: 400;
}

/* ===============================
   PREMIUM SECTIONS BASE
   =============================== */
.premium-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #ffffff 100%);
    overflow: hidden;
}

.premium-section::before,
.premium-section::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    background: rgba(74, 144, 226, 0.03);
}

.premium-section::before {
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
}

.premium-section::after {
    bottom: -50px;
    left: -50px;
    width: 200px;
    height: 200px;
    background: rgba(244, 196, 48, 0.03);
}

/* ===============================
   MANIFESTO SECTION
   =============================== */
.manifesto-section {
    composes: premium-section;
}

.manifesto-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.manifesto-wrapper {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.manifesto-content {
    padding-right: 40px;
}

.content-wrapper {
    max-width: 580px;
}

.manifesto-title {
    font-size: 3rem;
    line-height: 1.2;
    margin-bottom: 40px;
    color: #1a202c;
    font-weight: 700;
}

.manifesto-text {
    margin-bottom: 40px;
}

.text-block {
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out;
}

.text-block p {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    font-weight: 400;
}

.highlight-block {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin: 32px 0;
    padding: 20px;
    background: rgba(74, 144, 226, 0.08);
    border-radius: 16px;
    border-left: 4px solid var(--blue);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.2s;
}

.highlight-icon {
    background: var(--blue);
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-block p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.text-highlight {
    color: var(--blue);
    font-weight: 700;
}

.manifesto-conclusion {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease-out 0.4s;
}

.conclusion-decoration {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.decoration-line {
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.decoration-dot {
    width: 8px;
    height: 8px;
    background: var(--yellow);
    border-radius: 50%;
}

.manifesto-conclusion h3 {
    font-size: 1.5rem;
    color: #2d3748;
    font-weight: 600;
    line-height: 1.5;
}

.brand-highlight {
    color: var(--blue);
    font-weight: 700;
}

.manifesto-visual {
    position: relative;
}

.visual-container {
    position: relative;
}

/* ===============================
   YOUTUBE EMBED FIXES
   =============================== */
.main-video {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: all 0.6s ease-out;
    height: 500px; /* Fixed height */
}

/* Make YouTube iframe match your video styling perfectly */
.youtube-wrapper {
  position: relative;
  width: 100%;
  height: 100%; /* Fill main-video container */
  border-radius: 24px;
  overflow: hidden;
}

.youtube-wrapper iframe {
  position: absolute;
  top: 0; 
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
  transition: transform 0.6s ease-out; /* Add transition for scaling */
}

/* Hover effects - corrected selectors */
.main-video:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.main-video:hover .youtube-wrapper iframe {
    transform: scale(1.05);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(74, 144, 226, 0.1);
    z-index: 1;
    pointer-events: none; /* Allow clicks to pass through to video */
}

.floating-element {
    position: absolute;
    background: white;
    border-radius: 12px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    z-index: 2;
    animation: float 6s ease-in-out infinite;
}

.floating-element i {
    font-size: 1.2rem;
    color: var(--blue);
}

.element-1 { top: 20%; left: -20px; animation-delay: 0s; }
.element-2 { top: 60%; right: -20px; animation-delay: 2s; }
.element-3 { bottom: 20%; left: 30px; animation-delay: 4s; }

.stats-card {
    position: relative; /* Changed from absolute */
    margin-top: 30px;   /* Added spacing below video */
    background: white;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    display: flex;
    gap: 30px;
    z-index: 3;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.8);
    justify-content: center; /* Added to match mobile centering */
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.manifesto-section.in-view .text-block,
.manifesto-section.in-view .highlight-block,
.manifesto-section.in-view .manifesto-conclusion {
    opacity: 1;
    transform: translateY(0);
}

/* ===============================
   HOW IT WORKS SECTION
   =============================== */
.how-it-works-premium {
    composes: premium-section;
}

.process-journey {
    position: relative;
    max-width: 1000px;
    margin: 0 auto 80px;
}

.journey-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 60px;
    align-items: start;
    margin-bottom: 80px;
    position: relative;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out;
}

.how-it-works-premium.in-view .journey-step {
    opacity: 1;
    transform: translateY(0);
}

.journey-step:nth-child(1) { transition-delay: 0.1s; }
.journey-step:nth-child(2) { transition-delay: 0.3s; }
.journey-step:nth-child(3) { transition-delay: 0.5s; }

.step-visual {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-number-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.step-number {
    font-size: 1rem;
    font-weight: 700;
    color: var(--blue);
    background: rgba(74, 144, 226, 0.1);
    padding: 8px 16px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.step-connector {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), rgba(74, 144, 226, 0.3));
    border-radius: 1px;
}

.step-icon-circle {
    position: relative;
    width: 120px;
    height: 120px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease-out;
}

.journey-step:hover .step-icon-circle {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: var(--blue);
}

.step-icon {
    font-size: 2.5rem;
    color: var(--blue);
    transition: all 0.4s ease-out;
}

.journey-step:hover .step-icon {
    color: var(--yellow);
    transform: scale(1.1);
}

.step-glow {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.4s ease-out;
}

.journey-step:hover .step-glow {
    opacity: 1;
    transform: scale(1.1);
}

.step-content {
    padding-top: 20px;
}

.step-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
    position: relative;
}

.step-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--blue);
    border-radius: 2px;
}

.step-description {
    font-size: 1.2rem;
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 25px;
}

.step-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.feature-tag {
    background: rgba(74, 144, 226, 0.1);
    color: var(--blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.feature-tag:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.process-cta-card {
    background: linear-gradient(135deg, var(--blue) 0%, #3a7ac8 100%); 
    border-radius: 24px;
    padding: 60px;
    color: white;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 60px;
    align-items: center;
    box-shadow: 0 30px 80px rgba(74, 144, 226, 0.3);
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out 0.7s;
}

.how-it-works-premium.in-view .process-cta-card {
    opacity: 1;
    transform: translateY(0);
}

.process-cta-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.5;
}

.cta-content1 h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.cta-content1 p {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 30px;
    color: white;
}

.cta-button-premium {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--yellow);
    color: #1a202c;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
}

.cta-button-premium:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.4);
    background: #e6b620;
}

.cta-stats {
    display: flex;
    flex-direction: column;
    gap: 25px;
    position: relative;
    z-index: 2;
}

.stat {
    text-align: center;
}

.stat-number1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--yellow);
}

.stat-label1 {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
    color: white;
}

/* ===============================
   PLANS SECTION
   =============================== */
.plans-section-premium {
    composes: premium-section;
}

.plans-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 80px;
    position: relative;
    z-index: 2;
}

.plan-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s ease-out;
    position: relative;
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
}

.plans-section-premium.in-view .plan-card {
    opacity: 1;
    transform: translateY(0);
}

.plan-card:nth-child(1) { transition-delay: 0.1s; }
.plan-card:nth-child(2) { transition-delay: 0.3s; }

.plan-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.plan-card.premium {
    border: 2px solid var(--yellow);
    transform: scale(1.02);
}

.plan-card.premium:hover {
    transform: scale(1.02) translateY(-10px);
}

.premium-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--yellow), #e6b620);
    color: #1a202c;
    padding: 12px 24px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
    z-index: 3;
}

.plan-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
}

.plan-badge {
    display: inline-block;
    background: rgba(74, 144, 226, 0.1);
    color: var(--blue);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.plan-badge.premium {
    background: rgba(244, 196, 48, 0.15);
    color: #b58a1a;
}

.plan-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 20px;
}

.plan-price {
    margin-bottom: 12px;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--blue);
    vertical-align: top;
    margin-right: 2px;
}

.amount {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--blue);
    line-height: 1;
}

.period {
    font-size: 1.1rem;
    color: #718096;
    font-weight: 500;
}

.plan-sessions {
    font-size: 1rem;
    color: #718096;
    font-weight: 500;
}

.plan-features {
    margin-bottom: 40px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(74, 144, 226, 0.05);
    transition: all 0.3s ease;
}

.feature:last-child {
    border-bottom: none;
}

.feature:hover {
    transform: translateX(5px);
}

.feature-icon {
    width: 24px;
    height: 24px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.feature:hover .feature-icon {
    background: var(--blue);
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 0.8rem;
    color: var(--blue);
    transition: all 0.3s ease;
}

.feature:hover .feature-icon i {
    color: white;
}

.feature span {
    font-size: 1rem;
    color: #4a5568;
    font-weight: 500;
    line-height: 1.5;
}

.plan-footer {
    text-align: center;
}

.plan-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    background: var(--blue);
    color: white;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.plan-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    background: #3a7ac8;
}

.plan-button.premium {
    background: var(--yellow);
    color: #1a202c;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
}

.plan-button.premium:hover {
    background: #e6b620;
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.4);
}

.plan-note {
    font-size: 0.9rem;
    color: #718096;
    font-style: italic;
}

.plans-cta {
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05) 0%, rgba(244, 196, 48, 0.05) 100%);
    border-radius: 24px;
    padding: 60px;
    text-align: center;
    border: 1px solid rgba(74, 144, 226, 0.1);
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease-out 0.5s;
}

.plans-section-premium.in-view .plans-cta {
    opacity: 1;
    transform: translateY(0);
}

.cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
}

.cta-content p {
    font-size: 1.2rem;
    color: #4a5568;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button-secondary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    color: var(--blue);
    padding: 14px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: 2px solid var(--blue);
}

.cta-button-secondary:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

/* ===============================
   LEGEND OF THE MONTH SECTION
   =============================== */
.legend-section-premium {
    composes: premium-section;
}

.legend-container-premium {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.legend-visual {
    position: relative;
    height: fit-content;
}

.legend-image-wrapper {
    position: sticky;
    top: 140px;
    transition: all 0.3s ease;
}

.legend-section-premium.scrolling .legend-image-wrapper {
    top: 120px;
}

.legend-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(5deg) rotateX(5deg);
    transition: all 0.6s ease-out;
}

.legend-section-premium.in-view .legend-image {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.legend-image:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2);
}

.legend-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease-out;
}

.legend-image:hover img {
    transform: scale(1.05);
}

.image-overlay-premium {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.1) 0%, rgba(244, 196, 48, 0.05) 100%);
    z-index: 1;
}

.legend-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--yellow), #e6b620);
    color: #1a202c;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
    z-index: 2;
}

.legend-content-premium {
    padding-top: 20px;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    perspective: 1000;
}

.legend-content-premium::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(transparent, rgba(248, 250, 252, 0.9));
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.legend-content-premium.scrollable::after {
    opacity: 1;
}

.scroll-indicator {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
    transition: all 0.3s ease;
}

.legend-content-premium:hover .scroll-indicator {
    opacity: 1;
}

.scroll-dot {
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    opacity: 0.3;
    transition: all 0.3s ease;
}

.scroll-dot.active {
    opacity: 1;
    transform: scale(1.2);
}

.scroll-line {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, var(--blue), transparent);
    border-radius: 1px;
}

.legend-header {
    margin-bottom: 40px;
}

.legend-name {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 8px;
}

.legend-subtitle {
    font-size: 1.2rem;
    color: #718096;
    margin-bottom: 20px;
    font-weight: 500;
}

.legend-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.legend-tag {
    background: rgba(74, 144, 226, 0.1);
    color: var(--blue);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.legend-tag:hover {
    background: var(--blue);
    color: white;
    transform: translateY(-2px);
}

.legend-story {
    margin-bottom: 40px;
}

.story-block {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.legend-section-premium.in-view .story-block {
    opacity: 1;
    transform: translateY(0);
}

.story-block:nth-child(1) { transition-delay: 0.1s; }
.story-block:nth-child(2) { transition-delay: 0.3s; }
.story-block:nth-child(3) { transition-delay: 0.5s; }

.story-block p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #4a5568;
}

.story-block strong {
    color: var(--blue);
    font-weight: 700;
}

.story-highlight {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 30px;
    padding: 20px;
    background: linear-gradient(135deg, rgba(244, 196, 48, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 16px;
    border-left: 4px solid var(--yellow);
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 0.7s;
}

.legend-section-premium.in-view .story-highlight {
    opacity: 1;
    transform: translateY(0);
}

.highlight-icon {
    background: var(--yellow);
    color: #1a202c;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.story-highlight p {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2d3748;
    margin: 0;
}

.legend-stats-premium {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card-premium {
    background: white;
    padding: 20px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s ease;
    border: 1px solid rgba(74, 144, 226, 0.1);
    opacity: 0;
    transform: translateY(30px);
}

.legend-section-premium.in-view .stat-card-premium {
    opacity: 1;
    transform: translateY(0);
}

.stat-card-premium:nth-child(1) { transition-delay: 0.9s; }
.stat-card-premium:nth-child(2) { transition-delay: 1.0s; }
.stat-card-premium:nth-child(3) { transition-delay: 1.1s; }
.stat-card-premium:nth-child(4) { transition-delay: 1.2s; }

.stat-card-premium:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: rgba(74, 144, 226, 0.2);
}

.stat-icon {
    width: 50px;
    height: 50px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.stat-card-premium:hover .stat-icon {
    background: var(--blue);
    transform: scale(1.1);
}

.stat-icon i {
    font-size: 1.2rem;
    color: var(--blue);
    transition: all 0.3s ease;
}

.stat-card-premium:hover .stat-icon i {
    color: white;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--blue);
    margin-bottom: 4px;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: #718096;
    font-weight: 500;
}

.legend-testimonial {
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 1.3s;
}

.legend-section-premium.in-view .legend-testimonial {
    opacity: 1;
    transform: translateY(0);
}

.testimonial-quote {
    position: relative;
    padding: 30px;
    background: linear-gradient(135deg, rgba(74, 144, 226, 0.05), rgba(244, 196, 48, 0.05));
    border-radius: 16px;
    border-left: 4px solid var(--blue);
}

.quote-icon {
    position: absolute;
    color: var(--blue);
    opacity: 0.3;
    font-size: 1.5rem;
}

.quote-icon:first-child {
    top: 15px;
    left: 15px;
}

.quote-icon:last-child {
    bottom: 15px;
    right: 15px;
}

.testimonial-quote p {
    font-size: 1.2rem;
    font-style: italic;
    line-height: 1.6;
    color: #4a5568;
    margin: 0;
    padding: 0 10px;
}

.testimonial-author {
    text-align: right;
    margin-top: 10px;
    font-weight: 600;
    color: var(--blue);
}

.legend-cta-premium {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out 1.5s;
}

.legend-section-premium.in-view .legend-cta-premium {
    opacity: 1;  
    transform: translateY(0);  
}

.legend-button {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: var(--blue);
    color: white;
    padding: 16px 32px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
    margin-bottom: 15px;
}

.legend-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.4);
    background: #3a7ac8;
}

.cta-note {
    font-size: 0.9rem;
    color: #718096;
}

/* ===============================
   CRISIS SECTION
   =============================== */
.crisis-section-premium {
    composes: premium-section;
}

.crisis-container-premium {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.crisis-content-premium {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.crisis-stats-premium {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.crisis-stat-card {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s ease-out;
    border: 1px solid rgba(74, 144, 226, 0.1);
    opacity: 0;
    transform: translateY(50px);
}

.crisis-section-premium.in-view .crisis-stat-card {
    opacity: 1;
    transform: translateY(0);
}

.crisis-stat-card:nth-child(1) { transition-delay: 0.1s; }
.crisis-stat-card:nth-child(2) { transition-delay: 0.3s; }
.crisis-stat-card:nth-child(3) { transition-delay: 0.5s; }

.crisis-stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border-color: rgba(74, 144, 226, 0.2);
}

.stat-visual {
    position: relative;
    flex-shrink: 0;
}

.stat-circle {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--blue), #3a7ac8);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 700;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(74, 144, 226, 0.3);
}

.stat-percentage {
    font-size: 1.8rem;
    line-height: 1;
}

.stat-unit {
    font-size: 0.8rem;
    opacity: 0.9;
    margin-top: 2px;
}

.stat-wave {
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: rgba(74, 144, 226, 0.1);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.1); opacity: 0.7; }
}

.stat-content {
    flex: 1;
}

.stat-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 1rem;
    line-height: 1.5;
    color: #4a5568;
}

.parent-challenges-premium {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(74, 144, 226, 0.1);
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out 0.7s;
}

.crisis-section-premium.in-view .parent-challenges-premium {
    opacity: 1;
    transform: translateY(0);
}

.challenges-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 12px;
    text-align: center;
}

.challenges-subtitle {
    font-size: 1.1rem;
    color: #4a5568;
    text-align: center;
    margin-bottom: 40px;
}

.challenges-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.challenge-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(74, 144, 226, 0.03);
    border-radius: 12px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.challenge-item:hover {
    transform: translateY(-5px);
    background: rgba(74, 144, 226, 0.08);
    border-color: rgba(74, 144, 226, 0.2);
}

.challenge-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 107, 107, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.challenge-icon i {
    font-size: 1.2rem;
    color: #ff6b6b;
}

.challenge-content h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 6px;
}

.challenge-content p {
    font-size: 0.95rem;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.crisis-cta-premium {
    position: relative;
}

.cta-card-premium {
    position: sticky;
    top: 140px;
    background: linear-gradient(135deg, var(--blue) 0%, #3a7ac8 100%);
    border-radius: 24px;
    padding: 40px;
    color: white;
    box-shadow: 0 30px 80px rgba(74, 144, 226, 0.3);
    overflow: hidden;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.6s ease-out 0.9s;
}

.crisis-section-premium.in-view .cta-card-premium {
    opacity: 1;
    transform: translateY(0);
}

.cta-card-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    opacity: 0.5;
}

.cta-header {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: white;
}

.cta-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.5;
    margin: 0;
}

.cta-features {
    position: relative;
    z-index: 2;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cta-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    opacity: 0.9;
}

.feature-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1rem;
    color: var(--yellow);
}

.cta-button-crisis {
    position: relative;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: center;
    background: var(--yellow);
    color: #1a202c;
    padding: 16px 24px;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    box-shadow: 0 10px 30px rgba(244, 196, 48, 0.3);
}

.cta-button-crisis:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(244, 196, 48, 0.4);
    background: #e6b620;
}

.urgency-badge {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    background: rgba(255, 255, 255, 0.2);
    padding: 12px 20px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(10px);
}

.urgency-badge i {
    color: var(--yellow);
}

.guarantees-premium {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.guarantee-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.guarantee-item i {
    color: var(--yellow);
    width: 16px;
}

/* ===============================
   FOOTER
   =============================== */
.footer {
    background: var(--dark);
    color: var(--white);
    padding: 3rem 1.5rem 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer h3 {
    color: var(--white);
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.footer-contact p {
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
}

.footer-contact i {
    margin-right: 0.8rem;
    color: var(--blue);
    width: 20px;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: var(--white);
    text-decoration: none;
    transition: var(--transition);
}

.social-icons a:hover {
    background: var(--blue);
    transform: translateY(-3px);
}

.footer-btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    background: var(--blue);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--border-radius);
    font-weight: 500;
    transition: var(--transition);
    margin-top: 0.5rem;
}

.footer-btn:hover {
    background: #3a7ac8;
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: var(--dark-gray);
}

/* ===============================
   COMPREHENSIVE RESPONSIVE DESIGN
   =============================== */

/* Large Desktops (1440px+) */
@media (min-width: 1440px) {
    .manifesto-container,
    .crisis-container-premium {
        max-width: 1400px;
    }
    
    .legend-container-premium {
        max-width: 1300px;
    }
    
    .process-journey {
        max-width: 1100px;
    }
    
    .plans-grid {
        max-width: 1100px;
    }
    
    .legend-image-wrapper {
        top: 160px;
    }
    
    .legend-section-premium.scrolling .legend-image-wrapper {
        top: 140px;
    }
}

/* Standard Desktops (1200px - 1439px) */
@media (max-width: 1200px) {
    .manifesto-wrapper,
    .crisis-container-premium {
        gap: 60px;
    }
    
    .manifesto-title,
    .section-title-premium {
        font-size: 2.8rem;
    }
    
    .main-video,
    .legend-image img {
        height: 450px;
    }
    
    .journey-step {
        gap: 50px;
    }
    
    .process-cta-card {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }
    
    .plans-grid {
        grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
        gap: 30px;
    }
    
    .stat-circle {
        width: 90px;
        height: 90px;
    }
    
    .stat-percentage {
        font-size: 1.6rem;
    }
}

/* Small Desktops and Tablets (1024px - 1199px) */
@media (max-width: 1024px) {
    .manifesto-wrapper,
    .legend-container-premium,
    .crisis-container-premium {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .manifesto-content {
        padding-right: 0;
        text-align: center;
    }
    
    .content-wrapper {
        max-width: 100%;
    }
    
    .manifesto-title,
    .section-title-premium {
        font-size: 2.5rem;
    }
    
    .section-subtitle-premium {
        font-size: 1.2rem;
    }
    
    .highlight-block,
    .conclusion-decoration {
        justify-content: center;
    }
    
    .main-video,
    .legend-image {
        transform: none !important;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .main-video:hover,
    .legend-image:hover {
        transform: translateY(-10px) !important;
    }
    
    .legend-image-wrapper {
        position: relative;
        top: 0 !important;
    }
    
    .scroll-indicator {
        display: none;
    }
    
    .journey-step {
        gap: 40px;
    }
    
    .step-icon-circle {
        width: 100px;
        height: 100px;
    }
    
    .step-icon {
        font-size: 2rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }
    
    .plan-card.premium {
        transform: none;
    }
    
    .plan-card.premium:hover {
        transform: translateY(-10px);
    }
    
    .cta-card-premium {
        position: relative;
        top: 0;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Tablets (768px - 1023px) */
@media (max-width: 1023px) {
    .premium-section {
        padding: 80px 0;
    }
    
    .manifesto-container {
        padding: 0 30px;
    }
    
    .section-header-premium {
        margin-bottom: 60px;
    }
    
    .manifesto-title,
    .section-title-premium {
        font-size: 2.2rem;
    }
    
    .text-block p,
    .highlight-block p,
    .section-subtitle-premium {
        font-size: 1.1rem;
    }
    
    .main-video {
        height: 400px;
    }
    
    .legend-image img {
        height: 400px;
    }
    
    .stats-card {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 30px;
        justify-content: center;
    }
    
    .floating-element {
        width: 40px;
        height: 40px;
    }
    
    .floating-element i {
        font-size: 1rem;
    }
    
    .journey-step {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
        margin-bottom: 60px;
    }
    
    .step-visual {
        order: -1;
    }
    
    .step-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .step-features {
        justify-content: center;
    }
    
    .step-connector {
        display: none;
    }
    
    .step-number-wrapper {
        margin-bottom: 20px;
    }
    
    .process-cta-card,
    .plans-cta {
        padding: 40px 30px;
    }
    
    .cta-content h3 {
        font-size: 1.7rem;
    }
    
    .crisis-content-premium {
        gap: 40px;
    }
    
    .parent-challenges-premium {
        padding: 30px;
    }
    
    .challenges-grid {
        grid-template-columns: 1fr;
    }
}

/* Large Mobile (600px - 767px) */
@media (max-width: 767px) {
    .premium-section {
        padding: 60px 0;
    }
    
    .manifesto-container {
        padding: 0 25px;
    }
    
    .manifesto-title,
    .section-title-premium {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 6px 16px;
    }
    
    .main-video {
        height: 350px;
    }
    
    .legend-image img {
        height: 350px;
    }
    
    .stats-card {
        padding: 20px;
        gap: 20px;
    }
    
    .stat-number {
        font-size: 1.7rem;
    }
    
    .stat-label {
        font-size: 0.8rem;
    }
    
    .step-title {
        font-size: 1.7rem;
    }
    
    .step-description {
        font-size: 1.1rem;
    }
    
    .step-icon-circle {
        width: 90px;
        height: 90px;
    }
    
    .step-icon {
        font-size: 1.8rem;
    }
    
    .process-cta-card,
    .plans-cta {
        padding: 30px 25px;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
    }
    
    .cta-content p {
        font-size: 1.1rem;
    }
    
    .plans-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .plan-card {
        padding: 30px 25px;
    }
    
    .plan-name {
        font-size: 1.6rem;
    }
    
    .amount {
        font-size: 3rem;
    }
    
    .legend-stats-premium,
    .crisis-stats-premium {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .legend-name {
        font-size: 2rem;
    }
    
    .testimonial-quote {
        padding: 20px;
    }
    
    .testimonial-quote p {
        font-size: 1.1rem;
    }
    
    .crisis-stat-card {
        flex-direction: column;
        text-align: center;
        padding: 25px;
        gap: 20px;
    }
    
    .stat-circle {
        width: 80px;
        height: 80px;
    }
    
    .stat-percentage {
        font-size: 1.4rem;
    }
    
    .parent-challenges-premium {
        padding: 25px;
    }
    
    .cta-card-premium {
        padding: 30px 25px;
    }
    
    .cta-title {
        font-size: 1.6rem;
    }
}

/* Medium Mobile (480px - 599px) */
@media (max-width: 599px) {
    .manifesto-container {
        padding: 0 20px;
    }
    
    .manifesto-title,
    .section-title-premium {
        font-size: 1.8rem;
    }
    
    .text-block p {
        font-size: 1rem;
    }
    
    .highlight-block {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }
    
    .main-video {
        height: 300px;
    }
    
    .legend-image img {
        height: 300px;
    }
    
    .stats-card {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }
    
    .floating-element {
        width: 35px;
        height: 35px;
        display: none;
    }
    
    .manifesto-conclusion h3 {
        font-size: 1.3rem;
    }
    
    .step-title {
        font-size: 1.5rem;
    }
    
    .step-description {
        font-size: 1rem;
    }
    
    .feature-tag {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .cta-stats {
        flex-direction: row;
        justify-content: space-around;
        gap: 15px;
    }
    
    .stat-number1 {
        font-size: 2rem;
    }
    
    .stat-label1 {
        font-size: 0.8rem;
    }
    
    .cta-button-premium,
    .plan-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .plan-card {
        padding: 25px 20px;
    }
    
    .plan-name {
        font-size: 1.5rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .feature span {
        font-size: 0.95rem;
    }
    
    .premium-badge,
    .legend-badge {
        font-size: 0.7rem;
        padding: 10px 20px;
    }
    
    .legend-name {
        font-size: 1.8rem;
    }
    
    .stat-card-premium {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .legend-button {
        padding: 14px 28px;
        font-size: 1rem;
    }
    
    .crisis-stat-card {
        padding: 20px;
    }
    
    .challenge-item {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 15px;
    }
    
    .cta-card-premium {
        padding: 25px 20px;
    }
    
    .cta-title {
        font-size: 1.4rem;
    }
    
    .cta-button-crisis {
        padding: 14px 20px;
        font-size: 1rem;
    }
}

/* Small Mobile (360px - 479px) */
@media (max-width: 479px) {
    .premium-section {
        padding: 50px 0;
    }
    
    .manifesto-container {
        padding: 0 15px;
    }
    
    .manifesto-title,
    .section-title-premium {
        font-size: 1.6rem;
    }
    
    .section-badge {
        font-size: 0.75rem;
        padding: 5px 14px;
    }
    
    .section-subtitle-premium {
        font-size: 1rem;
    }
    
    .main-video {
        height: 250px;
    }
    
    .legend-image img {
        height: 250px;
    }
    
    .text-block p,
    .highlight-block p {
        font-size: 0.95rem;
    }
    
    .manifesto-conclusion h3 {
        font-size: 1.2rem;
    }
    
    .decoration-line {
        width: 30px;
    }
    
    .step-title {
        font-size: 1.4rem;
    }
    
    .step-icon-circle {
        width: 80px;
        height: 80px;
    }
    
    .step-icon {
        font-size: 1.6rem;
    }
    
    .process-cta-card,
    .plans-cta {
        padding: 25px 20px;
    }
    
    .cta-content h3 {
        font-size: 1.3rem;
    }
    
    .cta-content p {
        font-size: 1rem;
    }
    
    .stat-number1 {
        font-size: 1.8rem;
    }
    
    .plan-card {
        padding: 20px 15px;
    }
    
    .plan-name {
        font-size: 1.4rem;
    }
    
    .amount {
        font-size: 2.2rem;
    }
    
    .feature {
        gap: 12px;
        padding: 10px 0;
    }
    
    .feature-icon {
        width: 20px;
        height: 20px;
    }
    
    .feature-icon i {
        font-size: 0.7rem;
    }
    
    .plans-cta {
        padding: 25px 20px;
    }
    
    .legend-name {
        font-size: 1.6rem;
    }
    
    .story-block p {
        font-size: 1rem;
    }
    
    .story-highlight {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        padding: 16px;
    }
    
    .stat-icon {
        width: 40px;
        height: 40px;
    }
    
    .stat-icon i {
        font-size: 1rem;
    }
    
    .testimonial-quote p {
        font-size: 1rem;
    }
    
    .crisis-stat-card {
        padding: 15px;
    }
    
    .stat-circle {
        width: 70px;
        height: 70px;
    }
    
    .stat-percentage {
        font-size: 1.2rem;
    }
    
    .parent-challenges-premium {
        padding: 20px 15px;
    }
    
    .challenges-title {
        font-size: 1.5rem;
    }
    
    .cta-card-premium {
        padding: 20px 15px;
    }
}

/* Extra Small Mobile (320px - 359px) */
@media (max-width: 359px) {
    .manifesto-title,
    .section-title-premium {
        font-size: 1.5rem;
    }
    
    .main-video {
        height: 220px;
    }
    
    .legend-image img {
        height: 220px;
    }
    
    .stats-card {
        padding: 15px;
    }
    
    .stat-number {
        font-size: 1.5rem;
    }
    
    .step-title {
        font-size: 1.3rem;
    }
    
    .step-features {
        gap: 8px;
    }
    
    .feature-tag {
        font-size: 0.75rem;
        padding: 5px 10px;
    }
    
    .cta-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .cta-button-premium {
        width: 100%;
        justify-content: center;
    }
    
    .plan-card {
        padding: 15px;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .plan-button {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .legend-name {
        font-size: 1.5rem;
    }
    
    .legend-image img {
        height: 220px;
    }
    
    .legend-tags {
        justify-content: center;
    }
    
    .legend-button {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
    
    .crisis-stat-card {
        padding: 12px;
    }
    
    .cta-button-crisis {
        flex-direction: column;
        gap: 8px;
        padding: 12px;
    }
}

/* ===============================
   ACCESSIBILITY & PERFORMANCE
   =============================== */

/* Reduced motion support */
@media (prefers-reduced-motion: reduce) {
    .legend-image-wrapper {
        position: relative;
        top: 0 !important;
    }
    
    .legend-content-premium::after,
    .scroll-indicator {
        display: none;
    }
    
    .legend-image,
    .legend-image img,
    .stat-card-premium,
    .legend-tag,
    .legend-button,
    .main-video,
    .main-video .youtube-wrapper iframe,
    .stat-card-premium,
    .challenge-item,
    .cta-button-crisis,
    .crisis-stat-card,
    .plan-card,
    .feature,
    .plan-button,
    .cta-button-secondary,
    .journey-step,
    .step-icon-circle,
    .step-icon,
    .step-glow,
    .feature-tag {
        transition: none;
    }
    
    .decoration-dot,
    .stat-wave {
        animation: none;
    }
    
    .floating-element {
        animation: none;
    }
}

/* Touch device optimizations */
@media (hover: none) and (pointer: coarse) {
    .legend-image:hover,
    .stat-card-premium:hover,
    .legend-tag:hover,
    .legend-button:hover,
    .main-video:hover,
    .main-video:hover .youtube-wrapper iframe,
    .crisis-stat-card:hover,
    .challenge-item:hover,
    .cta-button-crisis:hover,
    .plan-card:hover,
    .plan-card.premium:hover,
    .feature:hover,
    .plan-button:hover,
    .cta-button-secondary:hover,
    .journey-step:hover .step-icon-circle,
    .journey-step:hover .step-icon,
    .journey-step:hover .step-glow,
    .feature-tag:hover {
        transform: none;
    }
    
    .legend-image:hover {
        box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    }
    
    .stat-card-premium:hover {
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    }
    
    .crisis-stat-card:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }
    
    .plan-card:hover {
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    }
    
    .scroll-indicator {
        display: none;
    }
}

/* Performance optimizations for sticky elements */
.legend-image-wrapper {
    transform: translateZ(0);
    will-change: position, transform;
}

/* Header Responsive */
@media (max-width: 768px) {
    .nav-menu, .auth-buttons {
        display: none;
    }
    
    .mobile-menu-btn {
        display: block;
    }
    
    .hero {
        padding: 6rem 1rem 3rem;
        min-height: 80vh;
    }
    
    .hero h1 {
        font-size: 1.8rem;
    }
    
    .tagline {
        font-size: 1.2rem;
    }
    
    .sub-tagline {
        font-size: 1rem;
    }
    
    section {
        padding: 3rem 1rem;
    }
    
    .nav-bar {
        padding: 1rem;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 1.6rem;
    }
    
    .tagline {
        font-size: 1.1rem;
    }
    
    .cta-button {
        padding: 0.8rem 1.5rem;
        font-size: 1rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
    }
}

/* Mobile menu animation */
.mobile-menu {
    transform: translateY(-10px);
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
}

.mobile-menu.active {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

/* Improved focus states for accessibility */
button:focus,
a:focus {
    outline: 2px solid var(--blue);
    outline-offset: 2px;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Floating animation */
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}