/* landing-awareness.css */

/* ============================================
   CONSCIOUSNESS HERO SECTION
   ============================================ */
.consciousness-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 50%, #16213e 100%);
    position: relative;
    overflow: hidden;
    padding: 40px 20px;
}

.consciousness-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    animation: cosmicRotate 30s linear infinite;
}

@keyframes cosmicRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(102, 126, 234, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(118, 75, 162, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255, 215, 0, 0.05) 0%, transparent 80%);
    pointer-events: none;
}

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

.hero-title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-line-1, .hero-line-2, .hero-line-3 {
    display: block;
}

.hero-line-3.hero-highlight-text {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease infinite;
}

@keyframes shimmer {
    0%, 100% { filter: brightness(1); }
    50% { filter: brightness(1.2); }
}

.hero-subtitle {
    font-size: clamp(1.125rem, 3vw, 1.5rem);
    font-weight: 300;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 0 1px 5px rgba(0,0,0,0.3);
    color: rgba(255, 255, 255, 0.9);
}

.hero-quote {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    margin: 2rem auto 2rem;
    max-width: 600px;
    font-size: 1.25rem;
    font-style: italic;
    color: #FFD700;
}

.hero-quote cite {
    display: block;
    margin-top: 0.5rem;
    font-size: 1rem;
    font-style: normal;
    color: rgba(255, 255, 255, 0.7);
}

.btn-hero-cta {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.btn-hero-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(102, 126, 234, 0.4);
}

/* ============================================
   CONSCIOUSNESS TEST SECTION
   ============================================ */
.section-consciousness-test {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.section-consciousness-test h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.consciousness-levels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
}

.level-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    position: relative;
    overflow: hidden;
}

.level-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, transparent 40%, var(--level-color) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.level-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

.level-card:hover::before {
    opacity: 0.05;
}

.level-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.level-icon i {
    font-size: 2rem;
    color: white;
}

.level-icon.survival {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    --level-color: #ef4444;
}

.level-icon.desire {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    --level-color: #f97316;
}

.level-icon.power {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    --level-color: #fbbf24;
}

.level-icon.heart {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --level-color: #10b981;
}

.level-icon.truth {
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --level-color: #3b82f6;
}

.level-icon.unity {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    --level-color: #8b5cf6;
}

.level-card h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.level-card p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

.cta-link {
    text-align: center;
    margin-top: 3rem;
}

.consciousness-article-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.consciousness-article-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

/* ============================================
   THREE PILLARS SECTION
   ============================================ */
.section-three-pillars {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.section-three-pillars h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.pillar-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.3s ease;
}

.pillar-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.pillar-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pillar-icon i {
    font-size: 2rem;
    color: white;
}

.pillar-card h3 {
    text-align: center;
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
    color: white;
}

.pillar-subtitle {
    text-align: center;
    color: #64ffda;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pillar-card p {
    text-align: center;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.pillar-card ul {
    list-style: none;
    padding: 0;
}

.pillar-card ul li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
}

.pillar-card ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #64ffda;
}

/* ============================================
   MASTERS WISDOM SECTION
   ============================================ */
.section-masters-wisdom {
    padding: 80px 20px;
    background: white;
}

.section-masters-wisdom h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
    font-size: clamp(2rem, 4vw, 2.5rem);
}

.wisdom-carousel {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.wisdom-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border-left: 4px solid #667eea;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.wisdom-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.wisdom-card blockquote {
    color: #1f2937;
    font-size: 1.125rem;
    line-height: 1.7;
    margin-bottom: 1rem;
    font-style: italic;
}

.wisdom-card cite {
    display: block;
    text-align: right;
    color: #667eea;
    font-weight: 600;
    font-style: normal;
}

/* ============================================
   TRANSFORMATION PROCESS SECTION
   ============================================ */
.section-transformation-process {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.section-transformation-process h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.journey-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 3rem auto;
    position: relative;
}

.journey-timeline::before {
    content: '';
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #667eea 0%, #764ba2 100%);
    z-index: 0;
}

.journey-step {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.journey-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.step-number {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 0.875rem;
}

.journey-step h3 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.journey-step p {
    color: #6b7280;
    margin: 0;
    font-size: 0.9rem;
}

/* ============================================
   ABOUT GUIDE SECTION
   ============================================ */
.section-about-guide {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.guide-wrapper {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
}

.guide-image img {
    width: 100%;
    max-width: 300px;
    border-radius: 20px;
    border: 4px solid rgba(102, 126, 234, 0.3);
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.guide-content h2 {
    color: white;
    margin-bottom: 0.5rem;
}

.guide-content h3 {
    color: #64ffda;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.guide-content p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.guide-quote {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #64ffda;
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 8px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.95);
}

.guide-credentials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 2rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.credential i {
    font-size: 1.5rem;
    color: #64ffda;
}

.credential span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
}

/* ============================================
   READINESS CHECK SECTION
   ============================================ */
.section-readiness-check {
    padding: 80px 20px;
    background: white;
}

.section-readiness-check h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.readiness-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
}

.readiness-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 12px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.readiness-item.yes {
    border-color: #10b981;
}

.readiness-item.yes i {
    color: #10b981;
    font-size: 1.5rem;
}

.readiness-item:hover {
    transform: translateX(5px);
    background: white;
}

.readiness-item p {
    margin: 0;
    color: #1f2937;
}

.readiness-message {
    text-align: center;
    margin-top: 2rem;
}

.readiness-message p {
    font-size: 1.125rem;
    color: #667eea;
    font-weight: 500;
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */
.section-testimonials {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.section-testimonials h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.testimonials-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    padding: 20px 80px 60px;
}

.testimonial-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
}

.testimonial-stars i {
    color: #FFD700;
    font-size: 1.125rem;
}

.testimonial-text {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.author-name {
    font-weight: 600;
    color: white;
}

.country-flag {
    font-size: 1.5rem;
}

/* Glide arrows and bullets */
.glide__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: white;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 2;
}

.glide__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-50%) scale(1.1);
}

.glide__arrow--left {
    left: 0;
}

.glide__arrow--right {
    right: 0;
}

.glide__bullets {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
}

.glide__bullet {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.glide__bullet--active {
    background: white;
    width: 30px;
    border-radius: 5px;
}

/* ============================================
   MAIN OFFER SECTION
   ============================================ */
.section-main-offer {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
}

.consciousness-offer {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    overflow: hidden;
}

.offer-header {
    background: linear-gradient(135deg, #0a0e27 0%, #1a1a2e 100%);
    color: white;
    padding: 3rem;
    text-align: center;
    position: relative;
}

.offer-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="%23ffffff" fill-opacity="0.05" d="M0,96L120,112C240,128,480,160,720,165.3C960,171,1200,149,1320,138.7L1440,128L1440,320L1320,320C1200,320,960,320,720,320C480,320,240,320,120,320L0,320Z"></path></svg>') no-repeat bottom;
    background-size: cover;
    pointer-events: none;
}

.offer-header h2 {
    margin-bottom: 0.5rem;
    position: relative;
    color: white;
}

.offer-subtitle {
    color: #64ffda;
    font-size: 1.125rem;
    position: relative;
}

.offer-content {
    padding: 3rem;
}

.what-you-get h3 {
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.what-you-get ul {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.what-you-get ul li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: #1f2937;
    border-bottom: 1px solid #f3f4f6;
}

.what-you-get ul li:last-child {
    border-bottom: none;
}

.what-you-get ul li i {
    color: #10b981;
    font-size: 1.25rem;
    flex-shrink: 0;
}

.investment-section {
    margin-top: 2rem;
}

.investment-section h3 {
    color: #1f2937;
    margin-bottom: 1rem;
    text-align: center;
}

.price-display {
    text-align: center;
    margin-bottom: 2rem;
}

.price-main {
    display: block;
    font-size: 3rem;
    font-weight: 700;
    color: #667eea;
    margin-bottom: 0.5rem;
}

.price-note {
    color: #6b7280;
    font-size: 0.9rem;
}

.discovery-offer-box {
    background: linear-gradient(135deg, #fef3c7 0%, #fde68a 100%);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    position: relative;
    border: 2px solid #fbbf24;
}

.offer-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
}

.discovery-offer-box p {
    color: #92400e;
    margin-bottom: 1.5rem;
}

.discovery-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.original-price {
    text-decoration: line-through;
    color: #9ca3af;
    font-size: 1.125rem;
}

.special-price {
    font-size: 2rem;
    font-weight: 700;
    color: #10b981;
}

.discount-label {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.875rem;
    font-weight: 600;
}

.btn-book-discovery {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-book-discovery:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.guarantee-section {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #6b7280;
}

.guarantee-section i {
    color: #10b981;
    font-size: 1.5rem;
}

/* ============================================
   WHAT HAPPENS SECTION
   ============================================ */
.section-what-happens {
    padding: 80px 20px;
    background: linear-gradient(135deg, #1e293b 0%, #0f172a 100%);
    color: white;
}

.section-what-happens h2 {
    text-align: center;
    margin-bottom: 3rem;
    color: white;
}

.transformation-grid {
    max-width: 1000px;
    margin: 0 auto;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.before, .after {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
}

.before {
    border-color: rgba(239, 68, 68, 0.3);
}

.after {
    border-color: rgba(16, 185, 129, 0.3);
}

.before h3, .after h3 {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.before h3 {
    color: #ef4444;
}

.after h3 {
    color: #10b981;
}

.before ul, .after ul {
    list-style: none;
    padding: 0;
}

.before ul li, .after ul li {
    padding: 0.75rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.before ul li:last-child, .after ul li:last-child {
    border-bottom: none;
}

.before ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #ef4444;
    font-weight: bold;
}

.after ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

.transformation-quote {
    max-width: 700px;
    margin: 3rem auto 0;
    text-align: center;
    font-size: 1.25rem;
    line-height: 1.8;
    color: #64ffda;
    font-style: italic;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

/* ============================================
   BOOKING SECTION
   ============================================ */
.section-booking {
    padding: 80px 20px;
    background: #f8f9fa;
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.booking-header p {
    color: #6b7280;
    font-size: 1.125rem;
}

.booking-wrapper {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.booking-calendar {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0,0,0,0.08);
    position: relative;
}

.availability-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: white;
    border: 2px solid #667eea;
    color: #1f2937;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.availability-badge i {
    color: #667eea;
}

.availability-badge strong {
    color: #667eea;
    font-size: 1.25rem;
}

/* ============================================
   RESOURCES SECTION
   ============================================ */
.section-resources {
    padding: 80px 20px;
    background: white;
}

.section-resources h2 {
    text-align: center;
    color: #1f2937;
    margin-bottom: 3rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.resource-card {
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.12);
    border-color: #667eea;
}

.resource-card i {
    font-size: 3rem;
    color: #667eea;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.resource-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
}

.resource-card ul {
    list-style: none;
    padding: 0;
    text-align: left;
    margin-bottom: 1.5rem;
}

.resource-card ul li {
    padding: 0.5rem 0;
    color: #1f2937;
}

.btn-resource {
    width: 100%;
    padding: 1rem;
    border-radius: 50px;
    border: none;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-decoration: none;
    display: inline-block;
}

.btn-resource:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
    color: white;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */
.section-final-cta {
    padding: 80px 20px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.final-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.final-cta-content h2 {
    margin-bottom: 1rem;
    color: white;
}

.final-cta-content > p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.final-quote {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 2rem;
    margin: 2rem 0;
    font-style: italic;
    font-size: 1.25rem;
    line-height: 1.8;
}

.final-quote cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-size: 1rem;
    color: #64ffda;
}

.btn-final-cta {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1f2937;
    border: none;
    padding: 1.25rem 3rem;
    border-radius: 50px;
    font-size: 1.125rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 215, 0, 0.3);
}

.btn-final-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 215, 0, 0.4);
}

/* ============================================
   POPUP MODAL
   ============================================ */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.8);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    padding: 20px;
}

.popup-overlay.active {
    display: flex;
}

.popup-modal {
    background: white;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
}

.popup-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2rem;
    color: #6b7280;
    cursor: pointer;
    transition: all 0.2s ease;
}

.popup-close:hover {
    color: #1f2937;
    transform: rotate(90deg);
}

.popup-content {
    padding: 3rem;
}

.popup-content h3 {
    color: #1f2937;
    margin-bottom: 1rem;
}

.popup-content p {
    color: #6b7280;
    line-height: 1.7;
}

/* ============================================
   MOBILE RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .consciousness-levels {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .journey-timeline {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .journey-timeline::before {
        display: none;
    }
    
    .wisdom-carousel {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 992px) {
    .guide-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .guide-credentials {
        grid-template-columns: 1fr;
    }
    
    .before-after {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    /* Hero adjustments */
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .hero-quote {
        font-size: 1rem;
        padding: 1rem;
    }
    
    /* Consciousness levels */
    .consciousness-levels {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .level-card {
        padding: 1.5rem;
    }
    
    /* Journey timeline */
    .journey-timeline {
        grid-template-columns: 1fr;
    }
    
    /* Readiness grid */
    .readiness-grid {
        grid-template-columns: 1fr;
    }
    
    /* Resources */
    .resources-grid {
        grid-template-columns: 1fr;
    }
    
    /* General section padding */
    section {
        padding: 60px 20px;
    }
    
    /* Testimonials */
    .testimonials-carousel {
        padding: 20px 50px 60px;
    }
    
    .glide__arrow {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    /* Hero mobile optimizations */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .btn-hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    /* Level cards */
    .level-icon {
        width: 60px;
        height: 60px;
    }
    
    .level-icon i {
        font-size: 1.5rem;
    }
    
    /* Offer card */
    .offer-header {
        padding: 2rem 1.5rem;
    }
    
    .offer-content {
        padding: 2rem 1.5rem;
    }
    
    .price-main {
        font-size: 2rem;
    }
    
    .discovery-price {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    /* Popup */
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-close {
        top: 15px;
        right: 15px;
        font-size: 1.5rem;
    }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

/* Apply animations to elements */
.hero-content {
    animation: fadeIn 1s ease;
}

.level-card {
    animation: slideInUp 0.6s ease;
    animation-fill-mode: both;
}

.level-card:nth-child(1) { animation-delay: 0.1s; }
.level-card:nth-child(2) { animation-delay: 0.2s; }
.level-card:nth-child(3) { animation-delay: 0.3s; }
.level-card:nth-child(4) { animation-delay: 0.4s; }
.level-card:nth-child(5) { animation-delay: 0.5s; }
.level-card:nth-child(6) { animation-delay: 0.6s; }

/* ============================================
   UTILITY CLASSES (continued)
   ============================================ */
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mb-3 { margin-bottom: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mt-5 { margin-top: 2rem; }
.mb-5 { margin-bottom: 2rem; }

.px-3 { padding-left: 1rem; padding-right: 1rem; }
.py-3 { padding-top: 1rem; padding-bottom: 1rem; }
.px-4 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1.5rem; padding-bottom: 1.5rem; }

.text-left { text-align: left; }
.text-right { text-align: right; }
.text-justify { text-align: justify; }

.d-none { display: none; }
.d-block { display: block; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }
.d-flex { display: flex; }
.d-grid { display: grid; }

.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }
.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }
.mw-100 { max-width: 100%; }

.fw-bold { font-weight: 700; }
.fw-normal { font-weight: 400; }
.fw-light { font-weight: 300; }

.text-white { color: white; }
.text-dark { color: #1f2937; }
.text-muted { color: #6b7280; }
.text-primary { color: #667eea; }
.text-success { color: #10b981; }
.text-danger { color: #ef4444; }
.text-warning { color: #fbbf24; }

.bg-white { background-color: white; }
.bg-light { background-color: #f8f9fa; }
.bg-dark { background-color: #1f2937; }

.rounded { border-radius: 8px; }
.rounded-lg { border-radius: 16px; }
.rounded-xl { border-radius: 24px; }
.rounded-circle { border-radius: 50%; }

.shadow { box-shadow: 0 5px 15px rgba(0,0,0,0.08); }
.shadow-lg { box-shadow: 0 10px 30px rgba(0,0,0,0.12); }
.shadow-xl { box-shadow: 0 20px 60px rgba(0,0,0,0.15); }

.opacity-0 { opacity: 0; }
.opacity-50 { opacity: 0.5; }
.opacity-75 { opacity: 0.75; }
.opacity-100 { opacity: 1; }

/* ============================================
   IPHONE 13 MINI SPECIFIC (375px width)
   ============================================ */
@media (max-width: 375px) {
    /* Global adjustments for iPhone 13 Mini */
    body {
        font-size: 14px;
        -webkit-text-size-adjust: 100%;
        -ms-text-size-adjust: 100%;
    }
    
    /* Container padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    /* Section padding reduction */
    section {
        padding: 50px 16px;
    }
    
    /* Hero Section - iPhone 13 Mini */
    .consciousness-hero {
        padding: 30px 16px;
        min-height: 100vh;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 1.5rem;
    }
    
    .hero-line-1,
    .hero-line-2,
    .hero-line-3 {
        display: block;
        margin-bottom: 0.25rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 1.5rem;
        padding: 0 10px;
    }
    
    .hero-subtitle br {
        display: none;
    }
    
    .hero-quote {
        font-size: 1rem;
        padding: 1rem;
        margin: 1.5rem 0;
    }
    
    .hero-quote cite {
        font-size: 0.875rem;
    }
    
    .btn-hero-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    .btn-hero-cta i {
        display: none; /* Hide icon on very small screens */
    }
    
    /* Consciousness Test - iPhone 13 Mini */
    .section-consciousness-test {
        padding: 50px 16px;
    }
    
    .section-consciousness-test h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        font-size: 0.875rem;
        margin-bottom: 2rem;
    }
    
    .consciousness-levels {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
        padding: 0;
    }
    
    .level-card {
        padding: 1rem;
        border-radius: 12px;
    }
    
    .level-icon {
        width: 50px;
        height: 50px;
        margin-bottom: 0.5rem;
    }
    
    .level-icon i {
        font-size: 1.25rem;
    }
    
    .level-card h3 {
        font-size: 0.875rem;
        margin-bottom: 0.25rem;
    }
    
    .level-card p {
        font-size: 0.75rem;
    }
    
    .consciousness-article-link {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
    
    /* Three Pillars - iPhone 13 Mini */
    .section-three-pillars {
        padding: 50px 16px;
    }
    
    .section-three-pillars h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .pillars-grid {
        gap: 1rem;
    }
    
    .pillar-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .pillar-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }
    
    .pillar-icon i {
        font-size: 1.5rem;
    }
    
    .pillar-card h3 {
        font-size: 1.25rem;
        margin-bottom: 0.5rem;
    }
    
    .pillar-subtitle {
        font-size: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .pillar-card p {
        font-size: 0.875rem;
        margin-bottom: 1rem;
    }
    
    .pillar-card ul li {
        font-size: 0.875rem;
        padding: 0.375rem 0;
    }
    
    /* Masters Wisdom - iPhone 13 Mini */
    .section-masters-wisdom {
        padding: 50px 16px;
    }
    
    .section-masters-wisdom h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .wisdom-carousel {
        gap: 1rem;
    }
    
    .wisdom-card {
        padding: 1.25rem;
        border-radius: 10px;
    }
    
    .wisdom-card blockquote {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    .wisdom-card cite {
        font-size: 0.75rem;
    }
    
    /* Journey Timeline - iPhone 13 Mini */
    .section-transformation-process {
        padding: 50px 16px;
    }
    
    .section-transformation-process h2 {
        font-size: 1.75rem;
    }
    
    .journey-timeline {
        gap: 1rem;
    }
    
    .journey-step {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .step-number {
        font-size: 0.75rem;
        padding: 0.375rem 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .journey-step h3 {
        font-size: 1rem;
        margin-bottom: 0.375rem;
    }
    
    .journey-step p {
        font-size: 0.8125rem;
        line-height: 1.5;
    }
    
    /* About Guide - iPhone 13 Mini */
    .section-about-guide {
        padding: 50px 16px;
    }
    
    .guide-wrapper {
        gap: 2rem;
    }
    
    .guide-image img {
        width: 200px;
        max-width: 100%;
        margin: 0 auto;
        display: block;
    }
    
    .guide-content h2 {
        font-size: 1.75rem;
        text-align: center;
    }
    
    .guide-content h3 {
        font-size: 1.125rem;
        text-align: center;
        margin-bottom: 1rem;
    }
    
    .guide-content p {
        font-size: 0.875rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .guide-quote {
        padding: 1rem;
        margin: 1.5rem 0;
        font-size: 0.875rem;
    }
    
    .guide-credentials {
        gap: 0.75rem;
    }
    
    .credential {
        gap: 0.5rem;
        padding: 0.5rem 0;
    }
    
    .credential i {
        font-size: 1.25rem;
    }
    
    .credential span {
        font-size: 0.8125rem;
    }
    
    /* Readiness Check - iPhone 13 Mini */
    .section-readiness-check {
        padding: 50px 16px;
    }
    
    .section-readiness-check h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .readiness-grid {
        gap: 0.75rem;
    }
    
    .readiness-item {
        padding: 0.75rem;
        border-radius: 10px;
        gap: 0.75rem;
    }
    
    .readiness-item i {
        font-size: 1.25rem;
        flex-shrink: 0;
    }
    
    .readiness-item p {
        font-size: 0.8125rem;
        line-height: 1.4;
    }
    
    .readiness-message p {
        font-size: 1rem;
    }
    
    /* Testimonials - iPhone 13 Mini */
    .section-testimonials {
        padding: 50px 16px;
    }
    
    .section-testimonials h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .testimonials-carousel {
        padding: 15px 40px 50px;
    }
    
    .testimonial-card {
        padding: 1.25rem;
        margin: 8px 2px;
        border-radius: 16px;
    }
    
    .testimonial-stars {
        margin-bottom: 1rem;
    }
    
    .testimonial-stars i {
        font-size: 0.875rem;
    }
    
    .testimonial-text {
        font-size: 0.8125rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }
    
    .testimonial-author {
        padding-top: 0.75rem;
    }
    
    .author-name {
        font-size: 0.875rem;
    }
    
    .country-flag {
        font-size: 1.25rem;
    }
    
    .glide__arrow {
        width: 36px;
        height: 36px;
        font-size: 0.875rem;
    }
    
    .glide__arrow--left {
        left: -5px;
    }
    
    .glide__arrow--right {
        right: -5px;
    }
    
    .glide__bullets {
        gap: 0.375rem;
        padding-top: 15px;
    }
    
    .glide__bullet {
        width: 8px;
        height: 8px;
    }
    
    .glide__bullet--active {
        width: 24px;
        border-radius: 4px;
    }
    
    /* Main Offer - iPhone 13 Mini */
    .section-main-offer {
        padding: 50px 16px;
    }
    
    .consciousness-offer {
        border-radius: 16px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    }
    
    .offer-header {
        padding: 2rem 1.5rem;
        border-radius: 16px 16px 0 0;
    }
    
    .offer-header h2 {
        font-size: 1.5rem;
        margin-bottom: 0.375rem;
    }
    
    .offer-subtitle {
        font-size: 0.875rem;
    }
    
    .offer-content {
        padding: 1.5rem;
    }
    
    .what-you-get h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .what-you-get ul li {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
        gap: 0.75rem;
    }
    
    .what-you-get ul li i {
        font-size: 1rem;
    }
    
    .investment-section {
        margin-top: 1.5rem;
    }
    
    .investment-section h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .price-display {
        margin-bottom: 1.5rem;
    }
    
    .price-main {
        font-size: 2rem;
        margin-bottom: 0.375rem;
    }
    
    .price-note {
        font-size: 0.8125rem;
    }
    
    .discovery-offer-box {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .offer-badge {
        font-size: 0.625rem;
        padding: 0.375rem 1rem;
        top: -12px;
    }
    
    .discovery-offer-box p {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .discovery-price {
        gap: 0.5rem;
        margin-bottom: 1rem;
        flex-wrap: wrap;
    }
    
    .original-price {
        font-size: 0.875rem;
    }
    
    .special-price {
        font-size: 1.5rem;
    }
    
    .discount-label {
        font-size: 0.75rem;
        padding: 0.25rem 0.5rem;
    }
    
    .btn-book-discovery {
        padding: 0.875rem 1.5rem;
        font-size: 0.875rem;
        border-radius: 25px;
    }
    
    .guarantee-section {
        margin-top: 1.5rem;
        padding-top: 1.5rem;
        gap: 0.5rem;
        flex-direction: column;
        text-align: center;
    }
    
    .guarantee-section i {
        font-size: 1.25rem;
    }
    
    .guarantee-section p {
        font-size: 0.75rem;
    }
    
    /* What Happens - iPhone 13 Mini */
    .section-what-happens {
        padding: 50px 16px;
    }
    
    .section-what-happens h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .before-after {
        gap: 1.5rem;
    }
    
    .before,
    .after {
        padding: 1.25rem;
        border-radius: 12px;
    }
    
    .before h3,
    .after h3 {
        font-size: 1.125rem;
        margin-bottom: 1rem;
    }
    
    .before ul li,
    .after ul li {
        font-size: 0.8125rem;
        padding: 0.5rem 0;
        padding-left: 1.25rem;
    }
    
    .transformation-quote {
        margin: 2rem auto 0;
        padding: 1.25rem;
        font-size: 1rem;
        line-height: 1.6;
        border-radius: 12px;
    }
    
    /* Booking - iPhone 13 Mini */
    .section-booking {
        padding: 50px 16px;
    }
    
    .booking-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.5rem;
    }
    
    .booking-header p {
        font-size: 0.875rem;
        margin-bottom: 1.5rem;
    }
    
    .booking-calendar {
        padding: 1.5rem 1rem;
        border-radius: 16px;
    }
    
    .availability-badge {
        position: relative;
        top: auto;
        right: auto;
        margin-bottom: 1rem;
        width: 100%;
        justify-content: center;
        padding: 0.625rem 1rem;
        font-size: 0.875rem;
    }
    
    .availability-badge strong {
        font-size: 1.125rem;
    }
    
    /* Resources - iPhone 13 Mini */
    .section-resources {
        padding: 50px 16px;
    }
    
    .section-resources h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .resources-grid {
        gap: 1rem;
    }
    
    .resource-card {
        padding: 1.5rem;
        border-radius: 16px;
    }
    
    .resource-card i {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .resource-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .resource-card p {
        font-size: 0.8125rem;
        margin-bottom: 1rem;
    }
    
    .resource-card ul li {
        font-size: 0.8125rem;
        padding: 0.375rem 0;
    }
    
    .btn-resource {
        padding: 0.75rem 1rem;
        font-size: 0.875rem;
    }
    
    /* Final CTA - iPhone 13 Mini */
    .section-final-cta {
        padding: 50px 16px;
    }
    
    .final-cta-content h2 {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .final-cta-content > p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }
    
    .final-quote {
        padding: 1.25rem;
        margin: 1.5rem 0;
        font-size: 0.875rem;
        line-height: 1.6;
        border-radius: 12px;
    }
    
    .final-quote cite {
        font-size: 0.75rem;
        margin-top: 0.75rem;
    }
    
    .btn-final-cta {
        padding: 1rem 2rem;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
    
    /* Popup Modal - iPhone 13 Mini */
    .popup-overlay {
        padding: 10px;
    }
    
    .popup-modal {
        border-radius: 16px;
        max-height: 85vh;
    }
    
    .popup-close {
        top: 12px;
        right: 12px;
        font-size: 1.5rem;
        width: 32px;
        height: 32px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .popup-content {
        padding: 2rem 1.5rem;
    }
    
    .popup-content h3 {
        font-size: 1.25rem;
        margin-bottom: 0.75rem;
    }
    
    .popup-content p {
        font-size: 0.875rem;
        line-height: 1.6;
    }
    
    /* Touch targets optimization */
    button,
    .btn-hero-cta,
    .btn-book-discovery,
    .btn-final-cta,
    .btn-resource,
    .share-button,
    .copy-link-button,
    .level-card,
    .pain-option,
    .approach-card,
    .process-card {
        min-height: 44px; /* iOS minimum touch target */
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* Improve tap spacing */
    a,
    button {
        -webkit-tap-highlight-color: rgba(102, 126, 234, 0.1);
    }
    
    /* Prevent horizontal scroll */
    body {
        overflow-x: hidden;
    }
    
    .container {
        max-width: 100%;
    }
}

/* ============================================
   SMALL MOBILE OPTIMIZATION (320px - 374px)
   ============================================ */
@media (min-width: 320px) and (max-width: 374px) {
    /* Additional adjustments for phones smaller than iPhone 13 Mini */
    .hero-title {
        font-size: 1.75rem;
    }
    
    .consciousness-levels {
        grid-template-columns: 1fr;
    }
    
    .level-card {
        min-height: auto;
        padding: 1.25rem;
    }
    
    .testimonial-card {
        padding: 1rem;
    }
    
    .offer-header h2 {
        font-size: 1.25rem;
    }
    
    .price-main {
        font-size: 1.75rem;
    }
}

/* ============================================
   LANDSCAPE MODE ADJUSTMENTS
   ============================================ */
@media (max-height: 500px) and (orientation: landscape) {
    .consciousness-hero {
        min-height: auto;
        padding: 30px 20px;
    }
    
    .hero-title {
        font-size: 2rem;
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1rem;
    }
    
    section {
        padding: 40px 20px;
    }
    
    .consciousness-levels {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .level-card {
        padding: 1rem;
    }
    
    .level-icon {
        width: 40px;
        height: 40px;
    }
}

/* ============================================
   PERFORMANCE OPTIMIZATIONS
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Optimize for slow connections */
@media (prefers-reduced-data: reduce) {
    .hero-pattern,
    .hero-pattern::before,
    .section::before,
    .section::after {
        display: none;
    }
    
    * {
        background-image: none !important;
    }
}

/* ============================================
   ACCESSIBILITY ENHANCEMENTS
   ============================================ */
@media (prefers-contrast: high) {
    .level-card,
    .pillar-card,
    .testimonial-card,
    .wisdom-card,
    .journey-step {
        border: 2px solid currentColor;
    }
    
    .btn-hero-cta,
    .btn-book-discovery,
    .btn-final-cta {
        border: 2px solid currentColor;
    }
}

/* Focus styles for keyboard navigation */
*:focus-visible {
    outline: 3px solid #667eea;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to content link */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #667eea;
    color: white;
    padding: 8px;
    z-index: 100000;
    text-decoration: none;
}

.skip-to-content:focus {
    top: 0;
}

/* ============================================
   LOADING & SKELETON SCREENS
   ============================================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* ============================================
   PRINT STYLES
   ============================================ */
@media print {
    .hero-section,
    .section-testimonials,
    .section-final-cta,
    .section-booking,
    footer,
    .btn-hero-cta,
    .btn-book-discovery,
    .btn-final-cta,
    .glide__arrows,
    .glide__bullets {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
        color: black;
        background: white;
    }
    
    section {
        page-break-inside: avoid;
        padding: 20px 0;
    }
    
    h1, h2, h3 {
        page-break-after: avoid;
    }
}

/* ============================================
   DARK MODE SUPPORT (if needed in future)
   ============================================ */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here */
}
