/* ==========================================================================
   LUNABLOOM LANDING PAGE - COMPLETE STYLES
   Combined CSS from all sections
   ========================================================================== */

:root {
    --luna-teal-deep: #164552;
    --luna-teal-mid: #2B879E;
    --luna-peach-burnt: #D46B45;
    --luna-peach-glow: #F7A384;
    --luna-bg: #FFF0EB;
    --luna-bg-solid: #FFF0EB;
    --luna-bg-mint: #F2FAF7;
    --white: #FFFFFF;
    --warning-red: #D9534F;

    --bloom-standard-width: 1200px;
    --bloom-standard-radius: 64px;
    --bloom-transition: 0.7s cubic-bezier(0.16, 1, 0.3, 1);
    --bloom-radius-lg: 40px;
    --bloom-radius-xl: 64px;
    --transition-bounce: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    
    /* BloomLab Design Standards - match MetaBloom hero spacing */
    --bloom-hero-padding-top: 80px;
    --bloom-hero-padding-top-mobile: 40px;
    --bloom-teal: #1A4B52;
    --bloom-green: #00D084;
    --bloom-black: #121212;
    --bloom-bg: #f8fafc;
    --text-sub: #4a5568;
    --text-purple: #4A1D63;
    --bloom-yellow: #FFD700;
    --bloom-red: #F05A5E;
    --bg-cream: #FFFFFF;
    
    /* Responsive side padding */
    --bloom-side-padding: clamp(16px, 5vw, 60px);
    --bloom-standard-padding: 80px var(--bloom-side-padding);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
}

html, body {
    width: 100%;
    background-color: var(--luna-bg);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--luna-teal-deep);
    overflow-x: hidden;
}

/* ===================== */
/* HERO OUTER */
/* ===================== */

.lunabloom-hero-outer {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--luna-bg);
}

.lunabloom-hero-wrapper {
    width: 100%;
    max-width: var(--bloom-standard-width);
    padding: var(--bloom-hero-padding-top, 80px) var(--bloom-side-padding);
    display: flex;
    align-items: center;
    gap: 60px;
    position: relative;
}

.lunabloom-hero-wrapper::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -5%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(247,163,132,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

/* ===================== */
/* CONTENT */
/* ===================== */

.hero-content-side {
    flex: 1.2;
    z-index: 1;
}

.badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.trust-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border-radius: 999px;
    background: var(--white);
    border: 1px solid rgba(26,75,82,0.06);
    font-size: 13px;
    font-weight: 700;
}

.badge-icon svg {
    width: 18px;
    height: 18px;
    color: var(--luna-peach-burnt);
}

.headline-main {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 20px;
}

.headline-main span {
    color: var(--luna-peach-burnt);
}

.sub-headline {
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.6;
    max-width: 500px;
    opacity: 0.9;
}

/* ===================== */
/* VISUAL (BOX REMOVED) */
/* ===================== */

.hero-visual-side {
    flex: 1;
    display: flex;
    justify-content: center;
    z-index: 1;
}

.product-img {
    width: 100%;
    max-width: 400px;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    border-radius: 0;
    filter: none;
    transform: none;
    transition: var(--bloom-transition);
}

/* ===================== */
/* VIDEO SECTION */
/* ===================== */

.video-outer-container {
    width: 100%;
    display: flex;
    justify-content: center;
    background-color: var(--luna-bg);
}

.bloomlab-player {
    width: 100%;
    max-width: var(--bloom-standard-width);
    margin: 0 var(--bloom-side-padding) 100px; 
    aspect-ratio: 16 / 9;
    border-radius: var(--bloom-standard-radius);
    overflow: hidden;
    background: #000;
    position: relative;
    cursor: pointer;
}

.bloomlab-thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://img.youtube.com/vi/4pZXLkeCXww/maxresdefault.jpg');
    background-position: center;
    background-size: cover;
}

.bloomlab-play-trigger {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--luna-peach-burnt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bloomlab-play-trigger::after {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 5px;
}

/* ===================== */
/* SECTION 2: DEEP SKIN ANALYSIS */
/* ===================== */

.luna-kinetic-section {
    width: 100%;
    padding: var(--bloom-section-padding, 80px var(--bloom-side-padding));
    display: flex;
    justify-content: center;
    background: radial-gradient(circle at 50% 50%, #ffffff 0%, var(--luna-bg-solid) 100%);
}

.luna-kinetic-wrapper {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.luna-text-block {
    position: relative;
    z-index: 2;
}

.luna-eyebrow {
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 800;
    font-size: 0.85rem;
    color: var(--luna-peach-burnt);
    margin-bottom: 20px;
    display: block;
}

.luna-title-main {
    font-size: clamp(2.5rem, 5.5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.05em;
    margin-bottom: 35px;
}

.luna-title-main span {
    color: var(--luna-teal-mid);
}

.luna-mosaic {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 45px;
}

.luna-mosaic-item {
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(15px);
    padding: 22px 28px;
    border-radius: 28px;
    border: 1px solid rgba(22, 69, 82, 0.06);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--bloom-transition);
}

.luna-mosaic-item:hover {
    transform: translateX(15px) scale(1.02);
    background: var(--white);
    border-color: var(--luna-peach-glow);
    box-shadow: 20px 20px 40px rgba(212, 107, 69, 0.12);
}

.luna-mosaic-item b {
    font-size: 26px;
}

.luna-mosaic-item p {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--luna-teal-deep);
}

.luna-quote-box {
    border-left: 5px solid var(--luna-peach-burnt);
    padding-left: 25px;
    max-width: 500px;
}

.luna-quote-box h3 {
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.5;
    font-style: italic;
    color: var(--luna-teal-deep);
}

.luna-visual-anchor {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    position: relative;
}

.luna-spotlight-card {
    background: var(--white);
    border-radius: 48px;
    padding: 12px;
    box-shadow: 0 40px 80px rgba(22, 69, 82, 0.15);
    position: relative;
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.founder-media {
    width: 100%;
    max-width: 420px;
    height: auto;
    border-radius: 38px;
    display: block;
}

.luna-trust-pill {
    position: absolute;
    bottom: 30px;
    right: -25px;
    background: var(--luna-teal-deep);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 0.9rem;
    box-shadow: 10px 10px 30px rgba(22, 69, 82, 0.3);
    z-index: 3;
}

.brand-pill {
    background: var(--white);
    padding: 22px 45px;
    border-radius: 100px;
    border: 2px solid var(--luna-peach-glow);
    text-align: center;
    transition: var(--bloom-transition);
    text-decoration: none;
    display: inline-block;
}

.brand-pill span {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 800;
    font-size: 0.7rem;
    color: var(--luna-peach-burnt);
    margin-bottom: 6px;
}

.brand-pill h4 {
    font-size: 2.4rem;
    color: var(--luna-teal-mid);
    font-weight: 800;
    letter-spacing: -0.05em;
}

/* ===================== */
/* SECTION 3: WHAT IS LUNABLOOM */
/* ===================== */

.luna-visual-container {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.luna-product-wrap {
    position: relative;
    z-index: 2;
    margin-bottom: -60px;
}

.luna-main-img {
    width: 100%;
    max-width: 340px;
    filter: drop-shadow(0 25px 50px rgba(212, 107, 69, 0.25));
    transform: rotate(-4deg);
    transition: var(--bloom-transition);
    border-radius: 40px;
    display: block;
}

.luna-visual-container:hover .luna-main-img {
    transform: rotate(0deg) scale(1.05);
}

.luna-flow-chamber {
    background: var(--luna-bg-solid);
    padding: 90px 30px 50px;
    border-radius: 40px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.luna-flow-title {
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--luna-peach-burnt);
    margin-bottom: 45px;
    display: block;
}

.luna-flow-grid {
    display: flex;
    justify-content: space-between;
    position: relative;
    gap: 15px;
}

.luna-flow-grid::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--luna-peach-burnt), transparent);
    opacity: 0.2;
}

.luna-flow-node {
    flex: 1;
    text-align: center;
    position: relative;
}

.luna-node-dot {
    width: 12px;
    height: 12px;
    background: var(--luna-peach-burnt);
    border-radius: 50%;
    margin: 0 auto 18px;
    box-shadow: 0 0 15px var(--luna-peach-burnt);
    animation: pulse-glow 2s infinite ease-in-out;
}

@keyframes pulse-glow {
    0% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.4); opacity: 1; }
    100% { transform: scale(1); opacity: 0.5; }
}

.luna-flow-node h5 {
    font-size: 1.25rem;
    font-weight: 800;
    line-height: 1.1;
    color: var(--luna-teal-deep);
    margin-bottom: 4px;
}

.luna-flow-node span {
    display: block;
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.9;
    color: var(--luna-teal-mid);
    margin-top: 4px;
}

.luna-content-block h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.1;
    margin-bottom: 35px;
}

.luna-content-block h2 span {
    color: var(--luna-teal-mid);
}

.luna-ing-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.luna-ing-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 24px;
    background: var(--white);
    border-radius: 24px;
    border: 1px solid rgba(22, 69, 82, 0.08);
    transition: var(--bloom-transition);
}

.luna-ing-item:hover {
    transform: translateX(12px);
    border-color: var(--luna-peach-burnt);
    box-shadow: 15px 15px 35px rgba(212, 107, 69, 0.1);
}

.luna-ing-icon {
    width: 54px;
    height: 54px;
    background: var(--luna-bg-solid);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
}

.luna-ing-item h4 {
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--luna-teal-mid);
    margin-bottom: 4px;
}

.luna-ing-item p {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.85;
    color: var(--luna-teal-deep);
}

/* ===================== */
/* SECTION 4: PRODUCT PACKS */
/* ===================== */

.luna-product-section {
    width: 100%;
    padding: 80px 0;
    display: flex;
    justify-content: center;
}

.luna-container {
    max-width: 1200px;
    width: 100%;
    padding: 0 var(--bloom-side-padding);
}

.luna-header {
    text-align: center;
    margin-bottom: 60px;
}

.luna-stat-pill {
    color: var(--luna-peach-burnt);
    font-weight: 800;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.25em;
    margin-bottom: 20px;
    display: block;
}

.luna-header h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--luna-teal-deep);
    line-height: 1.1;
}

.luna-header h2 span {
    color: var(--luna-teal-mid);
}

.luna-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    gap: 24px;
    padding: 20px 10px 60px 10px;
    scrollbar-width: none;
}

.luna-grid::-webkit-scrollbar {
    display: none;
}

.luna-card {
    flex: 0 0 320px;
    scroll-snap-align: center;
    background: var(--white);
    border-radius: 32px;
    padding: 28px;
    border: 1px solid rgba(22, 69, 82, 0.06);
    box-shadow: 0 12px 30px rgba(22, 69, 82, 0.05);
    display: flex;
    flex-direction: column;
    transition: var(--transition-bounce);
}

@media (min-width: 768px) {
    .luna-card {
        flex: 0 0 calc(50% - 24px);
    }
}

@media (min-width: 1100px) {
    .luna-card {
        flex: 1;
    }
}

.luna-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(22, 69, 82, 0.12);
    border-color: var(--luna-teal-mid);
}

.luna-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--luna-bg-mint);
    border-radius: 20px;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.luna-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 20px;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.luna-card:hover img {
    transform: scale(1.06);
}

.luna-card-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.luna-card-info h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--luna-teal-deep);
    margin-bottom: 12px;
    line-height: 1.3;
    min-height: 3.2rem;
}

.luna-card-info p {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--luna-teal-deep);
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 30px;
    flex-grow: 1;
}

.luna-btn {
    background: var(--luna-peach-burnt);
    color: var(--white);
    text-align: center;
    text-decoration: none;
    padding: 16px;
    border-radius: 100px;
    font-weight: 800;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    transition: var(--transition-bounce);
    box-shadow: 0 10px 20px rgba(212, 107, 69, 0.15);
    display: block;
    margin-top: auto;
    border: none;
    cursor: pointer;
}

.luna-btn:hover {
    background: var(--luna-teal-deep);
    transform: translateY(-2px);
    box-shadow: 0 15px 30px rgba(22, 69, 82, 0.2);
}

.luna-swipe-hint {
    text-align: center;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--luna-teal-mid);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.6;
    margin-bottom: 25px;
}

@media (min-width: 1100px) {
    .luna-swipe-hint {
        display: none;
    }
}

/* ===================== */
/* SECTION 5: EDUCATION */
/* ===================== */

.luna-edu-section {
    width: 100%;
    padding: 20px var(--bloom-side-padding);
    display: flex;
    justify-content: center;
}

.luna-edu-wrapper {
    max-width: 1140px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: start;
}

.luna-edu-content h2 {
    font-size: var(--bloom-font-h2, clamp(2.2rem, 4.5vw, 3.4rem));
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 24px;
}

.luna-edu-content h2 span {
    color: var(--luna-teal-mid);
}

.luna-edu-intro {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 40px;
    opacity: 0.85;
    color: var(--luna-teal-deep);
}

.luna-feature-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.luna-feature-card {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 28px;
    border: 1px solid rgba(255, 255, 255, 0.6);
    transition: var(--bloom-transition);
}

.luna-feature-card:hover {
    transform: translateX(12px);
    background: var(--white);
    border-color: var(--luna-teal-mid);
    box-shadow: 0 15px 35px rgba(22, 69, 82, 0.08);
}

.luna-feature-icon {
    font-size: 24px;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: 16px;
    flex-shrink: 0;
    box-shadow: 0 8px 15px rgba(22, 69, 82, 0.05);
}

.luna-feature-text h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--luna-teal-mid);
    margin-bottom: 2px;
}

.luna-feature-text p {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.8;
}

.luna-highlight-pill {
    background: var(--luna-teal-deep);
    color: var(--white);
    padding: 28px 32px;
    border-radius: 32px;
    font-weight: 700;
    font-size: 1.05rem;
    line-height: 1.5;
    box-shadow: 0 20px 40px rgba(22, 69, 82, 0.2);
    position: relative;
    overflow: hidden;
}

.luna-timeline-container {
    background: var(--white);
    padding: 56px 48px;
    border-radius: var(--bloom-radius-lg);
    position: sticky;
    top: 60px;
    box-shadow: 0 40px 80px rgba(22, 69, 82, 0.06);
}

.luna-timeline-header {
    text-align: center;
    margin-bottom: 48px;
}

.luna-timeline-header h4 {
    text-transform: uppercase;
    letter-spacing: 0.2em;
    font-weight: 800;
    font-size: 0.8rem;
    color: var(--luna-peach-burnt);
}

.luna-step-stack {
    display: flex;
    flex-direction: column;
    gap: 48px;
    position: relative;
}

.luna-step-stack::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 10px;
    bottom: 10px;
    width: 2px;
    background: linear-gradient(180deg, var(--luna-peach-burnt) 0%, rgba(212, 107, 69, 0) 100%);
    opacity: 0.2;
}

.luna-step-node {
    display: flex;
    gap: 28px;
    position: relative;
}

.luna-node-dot {
    width: 26px;
    height: 26px;
    background: var(--white);
    border: 6px solid var(--luna-peach-burnt);
    border-radius: 50%;
    flex-shrink: 0;
    z-index: 2;
    position: relative;
}

.luna-node-dot::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: 50%;
    background: var(--luna-peach-burnt);
    z-index: -1;
    animation: pulse-ring 2.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(2.4); opacity: 0; }
}

.luna-node-content h5 {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 800;
    color: var(--luna-peach-burnt);
    margin-bottom: 6px;
}

.luna-node-content h6 {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.luna-node-content p {
    font-size: 0.95rem;
    font-weight: 600;
    opacity: 0.75;
    line-height: 1.5;
}

/* ===================== */
/* SECTION 6: EXPERT */
/* ===================== */

.luna-expert-section {
    width: 100%;
    padding: var(--bloom-section-padding, 80px var(--bloom-side-padding));
    display: flex;
    justify-content: center;
    background-color: var(--luna-bg-solid);
}

.luna-expert-wrapper {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.expert-content-left {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.expert-badge {
    background: rgba(43, 135, 158, 0.1);
    color: var(--luna-teal-mid);
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.75rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: fit-content;
}

.expert-content-left h2 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.05;
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--luna-teal-deep);
}

.expert-content-left h2 span {
    color: var(--luna-peach-burnt);
}

.expert-subtext {
    font-size: 1.2rem;
    line-height: 1.6;
    font-weight: 600;
    border-left: 4px solid var(--luna-peach-burnt);
    padding-left: 20px;
    color: var(--luna-teal-deep);
}

.expert-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.expert-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 700;
    font-size: 1rem;
}

.expert-item b {
    color: var(--luna-peach-burnt);
    font-size: 20px;
}

.expert-video-side {
    position: relative;
}

.luna-video-container {
    position: relative;
    border-radius: var(--bloom-radius-lg);
    overflow: hidden;
    aspect-ratio: 4/5;
    background: #000;
    cursor: pointer;
    transition: var(--bloom-transition);
    border: 3px solid var(--luna-teal-mid);
    box-shadow: 0 40px 80px -20px rgba(22, 69, 82, 0.15);
}

.luna-video-container:hover {
    transform: translateY(-12px);
    box-shadow: 0 40px 80px -15px rgba(22, 69, 82, 0.25);
}

.expert-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: 0.6s;
}

.luna-video-container:hover .expert-thumb {
    transform: scale(1.05);
}

.expert-play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 85px;
    height: 85px;
    background: var(--luna-peach-burnt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: 0.3s;
    box-shadow: 0 0 30px rgba(212, 107, 69, 0.4);
}

.expert-play-btn::after {
    content: '';
    border-style: solid;
    border-width: 15px 0 15px 25px;
    border-color: transparent transparent transparent white;
    margin-left: 5px;
}

/* ===================== */
/* SECTION 7: INGREDIENTS CAROUSEL */
/* ===================== */

.header-section {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    padding: 80px var(--bloom-side-padding) 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.badge {
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--luna-peach-burnt);
}

.header-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.05em;
}

.header-section h2 span {
    color: var(--luna-teal-mid);
}

.header-section p {
    font-size: 1.25rem;
    opacity: 0.85;
    max-width: 600px;
    font-weight: 600;
    line-height: 1.6;
}

.carousel-hint {
    display: none;
    text-align: center;
    padding: 10px 0;
    color: var(--luna-teal-mid);
    font-size: 0.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: bounceSide 2s infinite;
}

@keyframes bounceSide {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(10px); }
}

.carousel-container {
    padding: 0px 0 100px;
    position: relative;
}

.carousel-track {
    display: flex;
    gap: 30px;
    padding: 40px calc(50vw - (var(--bloom-standard-width) / 2) + 40px);
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    cursor: grab;
    scroll-snap-type: x mandatory;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 380px;
    min-height: 580px;
    background: var(--luna-bg-solid);
    border-radius: 48px;
    padding: 50px;
    border: 1px solid rgba(43, 135, 158, 0.05);
    box-shadow: 0 20px 40px rgba(22, 69, 82, 0.04);
    transition: var(--bloom-transition);
    scroll-snap-align: center;
}

.carousel-card:hover {
    transform: translateY(-15px);
    border-color: var(--luna-peach-burnt);
    background: var(--white);
    box-shadow: 0 30px 60px rgba(212, 107, 69, 0.12);
}

.card-visual {
    width: 90px;
    height: 90px;
    background: var(--white);
    border-radius: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 35px;
    font-size: 40px;
    box-shadow: 0 10px 20px rgba(22, 69, 82, 0.05);
}

.carousel-card h3 {
    font-size: 1.6rem;
    font-weight: 800;
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}

.carousel-card h4 {
    font-size: 0.85rem;
    color: var(--luna-teal-mid);
    margin-bottom: 25px;
    font-weight: 800;
    text-transform: uppercase;
}

.carousel-card li {
    font-size: 1.1rem;
    margin-bottom: 15px;
    display: flex;
    gap: 12px;
    font-weight: 600;
    line-height: 1.5;
}

.carousel-card li::before {
    content: "✦";
    color: var(--luna-peach-burnt);
}

.card-footer-note {
    margin-top: auto;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--luna-peach-burnt);
    font-style: italic;
}

.nav-controls {
    max-width: var(--bloom-standard-width);
    margin: 0 auto;
    padding: 0 var(--bloom-side-padding);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-btns {
    display: flex;
    gap: 15px;
}

.nav-btn {
    width: 55px;
    height: 55px;
    border-radius: 18px;
    border: 1px solid rgba(43, 135, 158, 0.1);
    background: var(--white);
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.2rem;
}

.nav-btn:hover {
    background: var(--luna-teal-deep);
    color: var(--white);
}

.progress-bar-container {
    width: 200px;
    height: 4px;
    background: rgba(22, 69, 82, 0.1);
    border-radius: 10px;
    overflow: hidden;
}

#progress {
    width: 16.6%;
    height: 100%;
    background: var(--luna-peach-burnt);
    transition: width 0.3s ease;
}

.mobile-dots {
    display: none;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.dot {
    width: 8px;
    height: 8px;
    background: rgba(22, 69, 82, 0.2);
    border-radius: 50%;
    transition: 0.3s;
}

.dot.active {
    width: 24px;
    border-radius: 10px;
    background: var(--luna-peach-burnt);
}

/* ===================== */
/* SECTION 8: WARNING/CHECK */
/* ===================== */

.luna-check-section {
    width: 100%;
    padding: var(--bloom-section-padding, 80px var(--bloom-side-padding));
    display: flex;
    justify-content: center;
    overflow: hidden;
}

.luna-check-header {
    text-align: center;
    margin-bottom: 60px;
}

.luna-check-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.8rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--warning-red);
}

.luna-check-header p {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--luna-teal-deep);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.85;
    line-height: 1.6;
}

.luna-condition-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 16px;
    margin-bottom: 80px;
}

.luna-condition-item {
    background: var(--luna-bg-solid);
    padding: 24px 28px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--luna-teal-deep);
    border: 1px solid transparent;
    transition: var(--bloom-transition);
    cursor: default;
}

.luna-condition-item:hover {
    transform: scale(1.03) translateY(-5px);
    background: var(--white);
    border-color: var(--luna-peach-glow);
    box-shadow: 0 20px 40px rgba(212, 107, 69, 0.12);
    z-index: 2;
}

.luna-condition-item::before {
    content: "✦";
    color: var(--luna-peach-burnt);
    font-size: 1.2rem;
    margin-right: 18px;
    transition: transform 0.4s ease;
}

.luna-condition-item:hover::before {
    transform: rotate(180deg) scale(1.3);
    color: var(--luna-teal-mid);
}

.luna-cta-box {
    background: linear-gradient(135deg, var(--luna-teal-deep) 0%, #0d2a32 100%);
    color: var(--white);
    padding: var(--bloom-standard-padding);
    border-radius: var(--bloom-standard-radius);
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: none;
}

.luna-cta-box::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: rgba(247, 163, 132, 0.15);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
}

.luna-cta-box h3 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    letter-spacing: -0.03em;
    line-height: 1.2;
}

.luna-cta-box p {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.luna-btn-primary {
    display: inline-flex;
    align-items: center;
    background: var(--luna-peach-glow);
    color: var(--white);
    padding: 22px 55px;
    border-radius: 100px;
    text-decoration: none;
    font-weight: 800;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    box-shadow: 0 15px 35px rgba(247, 163, 132, 0.4);
}

.luna-btn-primary:hover {
    transform: translateY(-3px);
    background: var(--white);
    color: var(--luna-teal-deep);
    box-shadow: 0 20px 45px rgba(255, 255, 255, 0.25);
}

.luna-timeline-note {
    margin-top: 40px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.7;
    position: relative;
    z-index: 1;
}

.luna-timeline-note strong {
    color: var(--luna-peach-glow);
}

/* ===================== */
/* SECTION 9: PRE/PRO/POSTBIOTICS */
/* ===================== */

.s-curve-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 80px 20px;
}

.s-curve-container::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 50%;
    width: 2px;
    height: 80%;
    background: linear-gradient(var(--bloom-yellow), var(--bloom-green), var(--bloom-red));
    opacity: 0.2;
    z-index: 0;
}

.curve-row {
    display: flex;
    align-items: center;
    min-height: 220px;
    margin-bottom: -20px;
    position: relative;
    z-index: 1;
}

.blob {
    padding: 60px 60px 60px 140px;
    width: 85%;
    transition: transform 0.3s ease;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
}

.pre .blob {
    background-color: var(--bloom-yellow);
    border-radius: 60% 40% 70% 30% / 40% 50% 60% 70%;
    margin-right: auto;
}

.pro .blob {
    background-color: var(--bloom-green);
    border-radius: 30% 70% 40% 60% / 50% 40% 70% 50%;
    margin-left: auto;
    color: white;
    padding: 60px 60px 60px 140px;
}

.post .blob {
    background-color: var(--bloom-red);
    border-radius: 70% 30% 50% 50% / 30% 60% 40% 70%;
    margin-right: auto;
    color: white;
}

.pro {
    flex-direction: row-reverse;
}

.content-wrap {
    max-width: 500px;
    margin-left: 40px;
}

.pro .content-wrap {
    margin-left: 40px;
    margin-right: 0;
}

.curve-row h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 12px;
    letter-spacing: -1px;
    color: var(--text-purple);
}

.pro h2, .post h2 {
    color: white;
}

.description {
    font-size: 1.1rem;
    font-weight: 500;
    line-height: 1.6;
    opacity: 0.95;
}

.emoji-icon {
    font-size: 4rem;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.1));
    margin: 0 40px;
}

/* ===================== */
/* SECTION 10: FIBER COMPARISON */
/* ===================== */

.split-section {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 100px var(--bloom-side-padding);
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.content-left {
    text-align: left;
    z-index: 2;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: var(--white);
    color: var(--luna-peach-burnt);
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(212, 107, 69, 0.08);
}

.split-section h2 {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.05;
    color: var(--luna-teal-deep);
    margin-bottom: 25px;
    letter-spacing: -0.05em;
}

.split-section h2 span {
    color: var(--luna-teal-mid);
    display: block;
}

.hero-desc {
    font-size: 1.15rem;
    color: var(--luna-teal-deep);
    opacity: 0.85;
    margin-bottom: 40px;
    line-height: 1.6;
    font-weight: 600;
    max-width: 540px;
}

.comparison-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
}

.comp-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--white);
    padding: 20px 32px;
    border-radius: 28px;
    border: 1px solid rgba(22, 69, 82, 0.03);
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 30px rgba(22, 69, 82, 0.03);
}

.comp-item:hover {
    transform: scale(1.02) translateX(10px);
    border-color: var(--luna-peach-glow);
    box-shadow: 0 20px 40px rgba(212, 107, 69, 0.1);
}

.comp-info {
    display: flex;
    flex-direction: column;
}

.comp-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--luna-teal-mid);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
}

.comp-weight {
    font-size: 2rem;
    font-weight: 800;
    color: var(--luna-teal-deep);
}

.sachet-tag {
    background: var(--luna-bg-solid);
    padding: 8px 16px;
    border-radius: 12px;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--luna-peach-burnt);
}

.visual-right {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.image-bg-blob {
    position: absolute;
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, var(--white) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
    animation: pulse-glow 8s infinite alternate ease-in-out;
}

.illustration-container img {
    width: 100%;
    max-width: 480px;
    height: auto;
    display: block;
    filter: drop-shadow(0 30px 50px rgba(22, 69, 82, 0.15));
    animation: float 6s infinite ease-in-out;
}

.disclaimer {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--luna-teal-deep);
    opacity: 0.5;
    margin-top: 30px;
    line-height: 1.5;
    max-width: 500px;
}

/* ===================== */
/* SECTION 11: TESTIMONIALS */
/* ===================== */

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px var(--bloom-side-padding) 40px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

.section-wrapper .content-left h2 {
    font-size: clamp(2.2rem, 5vw, 3.2rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    letter-spacing: -0.05em;
    color: var(--luna-teal-deep);
}

.section-wrapper .content-left h2 span {
    color: var(--luna-teal-mid);
}

.section-wrapper .content-left p {
    font-size: 1.15rem;
    line-height: 1.7;
    font-weight: 600;
    opacity: 0.85;
    max-width: 480px;
}

.player-card {
    position: relative;
    border-radius: 40px;
    overflow: hidden;
    background: #000;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 30px 60px -15px rgba(22, 69, 82, 0.2);
}

.player-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px -20px rgba(22, 69, 82, 0.3);
}

.yt-lite {
    position: relative;
    aspect-ratio: 16/9;
    width: 100%;
    display: block;
}

.yt-lite img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: transform 1s ease;
}

.player-card:hover img {
    transform: scale(1.05);
}

.play-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: var(--luna-teal-mid);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 4;
    transition: 0.3s;
}

.play-ring::after {
    content: '';
    border-style: solid;
    border-width: 12px 0 12px 20px;
    border-color: transparent transparent transparent #ffffff;
    margin-left: 4px;
}

.carousel-wrapper {
    position: relative;
    max-width: 100%;
    padding: 20px 0 100px;
    overflow: hidden;
}

.carousel-track {
    display: flex;
    gap: 20px;
    padding: 0 var(--bloom-side-padding);
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-card {
    flex: 0 0 auto;
    width: 400px;
    height: 550px;
    scroll-snap-align: center;
    border-radius: 32px;
    overflow: hidden;
    background: var(--white);
    box-shadow: 0 15px 35px rgba(22, 69, 82, 0.08);
    transition: transform 0.4s ease;
    border: 1px solid rgba(22, 69, 82, 0.05);
}

.carousel-card:hover {
    transform: scale(0.98);
}

.carousel-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-arrow {
    position: absolute;
    top: 45%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;
    border-radius: 50%;
    background: var(--luna-teal-deep);
    color: #fff;
    border: none;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.carousel-arrow:hover {
    background: var(--luna-teal-mid);
    transform: translateY(-50%) scale(1.1);
}

.carousel-arrow.left {
    left: 20px;
}

.carousel-arrow.right {
    right: 20px;
}

.carousel-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #D1D1D1;
    cursor: pointer;
    transition: all 0.3s;
}

.carousel-dot.active {
    background: var(--luna-teal-mid);
    width: 25px;
    border-radius: 10px;
}

/* ===================== */
/* SECTION 12: FAQ */
/* ===================== */

.faq-section {
    padding: 40px var(--bloom-side-padding);
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bloom-bg);
    color: var(--bloom-teal);
    -webkit-font-smoothing: antialiased;
}

.faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.faq-header {
    text-align: center;
    margin-bottom: 50px;
}

.faq-header h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -0.05em;
    color: var(--bloom-teal);
    margin-bottom: 10px;
}

.faq-header p {
    color: var(--bloom-teal);
    opacity: 0.8;
    font-weight: 600;
    font-size: 1.15rem;
}

.faq-item {
    background: #ffffff;
    border-radius: 24px;
    margin-bottom: 16px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border: 2px solid rgba(226, 232, 240, 0.9);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-item:hover {
    box-shadow: 0 20px 40px -12px rgba(26, 75, 82, 0.15);
    transform: translateY(-4px);
    border-color: var(--bloom-black);
    border-width: 3px;
}

.faq-question {
    width: 100%;
    padding: 24px 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    background: none;
    border: none;
    text-align: left;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--bloom-teal);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question.active {
    color: var(--bloom-green);
}

.icon-svg {
    width: 24px;
    height: 24px;
    fill: none;
    stroke: var(--bloom-teal);
    stroke-width: 3.5;
    stroke-linecap: round;
    stroke-linejoin: round;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.faq-question.active .icon-svg {
    stroke: var(--bloom-green);
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.answer-content {
    padding: 0 32px 32px 32px;
    line-height: 1.7;
    color: var(--text-sub);
    font-size: 1.1rem;
    font-weight: 500;
}

.answer-content strong {
    color: var(--bloom-teal);
    font-weight: 700;
}

/* ===================== */
/* MOBILE RESPONSIVE */
/* ===================== */

/* === TABLET BREAKPOINT (iPads 768-991px) === */
@media (min-width: 768px) and (max-width: 991px) {
    .lunabloom-hero-wrapper {
        gap: 30px;
    }
}

@media (max-width: 991px) {
    .lunabloom-hero-wrapper::before {
        display: none;
    }

    .lunabloom-hero-wrapper {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        padding: var(--bloom-hero-padding-top-mobile, 40px) var(--bloom-side-padding);
    }

    .hero-content-side {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .badge-row {
        justify-content: center;
    }

    .headline-main {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
    }

    .sub-headline {
        font-size: 1.15rem;
        max-width: 100%;
    }

    .product-img {
        transform: none;
        max-width: 280px;
        max-height: 320px;
        filter: none;
        box-shadow: none;
        border-radius: 0;
    }

    .bloomlab-player {
        margin: 0 var(--bloom-side-padding) 60px;
        border-radius: 24px;
    }

    .luna-kinetic-section {
        padding: var(--bloom-section-padding-mobile, 60px var(--bloom-side-padding));
        background: var(--luna-bg-solid) !important;
    }

    .luna-kinetic-wrapper {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .luna-text-block {
        text-align: center;
    }

    .luna-mosaic-item {
        background: var(--white);
        backdrop-filter: none;
        box-shadow: none;
        border: 1px solid rgba(22, 69, 82, 0.1);
    }

    .luna-mosaic-item:hover {
        transform: none;
        box-shadow: none;
    }

    .luna-quote-box {
        border-left: none;
        border-top: 4px solid var(--luna-peach-burnt);
        padding: 25px 0 0 0;
        margin: 0 auto;
    }

    .luna-spotlight-card {
        animation: none;
        box-shadow: none;
        background: var(--luna-bg-solid);
        padding: 0;
    }

    .luna-trust-pill {
        bottom: -20px;
        right: 50%;
        transform: translateX(50%);
        width: 85%;
        text-align: center;
        box-shadow: none;
    }

    .brand-pill {
        box-shadow: none;
    }

    .luna-kinetic-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .luna-content-block {
        text-align: center;
    }

    .luna-ing-item {
        padding: 18px;
    }

    .luna-ing-item:hover {
        transform: translateY(-5px);
    }

    .luna-flow-grid::before {
        display: none;
    }

    .luna-edu-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .luna-edu-content {
        text-align: center;
    }

    .luna-feature-card {
        justify-content: flex-start;
        text-align: left;
    }

    .luna-feature-card:hover {
        transform: translateY(-5px);
    }

    .luna-timeline-container {
        position: static;
        max-width: 600px;
        margin: 0 auto;
    }

    .luna-expert-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .expert-content-left {
        order: 2;
        align-items: center;
    }

    .expert-video-side {
        order: 1;
    }

    .luna-video-container {
        aspect-ratio: 16/9;
        margin-bottom: 20px;
    }

    .expert-subtext {
        border-left: none;
        border-top: 4px solid var(--luna-peach-burnt);
        padding: 20px 0 0 0;
    }

    .header-section {
        padding: 60px var(--bloom-side-padding) 10px;
        text-align: center;
        align-items: center;
    }

    .header-section h2 {
        font-size: var(--bloom-font-h2-mobile, 2.2rem);
    }

    .carousel-hint {
        display: block;
    }

    .carousel-track {
        padding: 20px var(--bloom-side-padding);
        gap: 20px;
    }

    .carousel-card {
        width: 85vw;
        padding: 35px;
        min-height: 500px;
        border-radius: 32px;
    }

    .nav-controls {
        display: none;
    }

    .mobile-dots {
        display: flex;
    }

    .luna-check-section {
        padding: 60px var(--bloom-side-padding);
    }

    .luna-check-header h2 {
        font-size: var(--bloom-font-h2-mobile, 2.2rem);
    }

    .luna-condition-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .luna-cta-box {
        padding: 60px var(--bloom-side-padding);
        border-radius: 40px;
    }

    .luna-btn-primary {
        width: 100%;
        justify-content: center;
    }

    .s-curve-container {
        padding: 60px var(--bloom-side-padding);
    }

    .curve-row, .pro {
        flex-direction: column;
        text-align: center;
    }

    .blob {
        width: 100%;
        padding: 40px 20px !important;
        border-radius: 40px !important;
    }

    .content-wrap, .pro .content-wrap {
        margin: 0;
    }

    .emoji-icon {
        margin: 20px 0;
        font-size: 3rem;
    }

    .s-curve-container::before {
        display: none;
    }

    .split-section {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 60px 20px;
        gap: 40px;
    }

    .content-left {
        text-align: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .split-section h2 span {
        display: inline;
    }

    .visual-right {
        order: -1;
        margin-bottom: 20px;
    }

    .comp-item:hover {
        transform: scale(1.02);
    }

    .comp-weight {
        font-size: 1.6rem;
    }

    .illustration-container img {
        max-width: 320px;
    }

    .disclaimer {
        margin: 30px auto 0;
    }

    .section-wrapper {
        padding: 60px var(--bloom-side-padding) 20px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .section-wrapper .content-left p {
        margin: 0 auto;
    }

    .carousel-card {
        width: 300px;
        height: 420px;
        border-radius: 24px;
    }

    .carousel-track {
        padding: 0 var(--bloom-side-padding);
    }

    .carousel-arrow {
        display: none;
    }

    .faq-section {
        padding: 20px var(--bloom-side-padding);
    }

    .faq-header h2 {
        font-size: var(--bloom-font-h1-mobile, 2.2rem);
    }

    .faq-question {
        padding: 20px 24px;
        font-size: 1.1rem;
    }

    .faq-item {
        border-radius: 20px;
    }
}

@media (max-width: 480px) {
    .luna-flow-grid {
        flex-direction: column;
        gap: 32px;
    }

    .luna-flow-chamber {
        padding-top: 80px;
    }

    .luna-flow-node h5 {
        font-size: 1.4rem;
    }

    .luna-flow-node span {
        font-size: 1rem;
    }

    .luna-ing-item {
        gap: 16px;
        text-align: left;
    }

    .luna-main-img {
        max-width: 280px;
    }

    .luna-content-block h2 {
        font-size: 2.2rem;
    }

    .luna-timeline-container {
        padding: 40px 24px;
    }

    .luna-step-node {
        gap: 16px;
    }
}
