/* LADING PAGE STYLES - Premium Salon Growth */

body.landing-page {
    display: block;
    height: auto;
    width: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    background: var(--color-bg);
}

.landing-page {
    margin: 0 auto;
}

@media (min-width: 440px) {
    .landing-page {
        max-width: 430px;
        min-height: 100vh;
        box-shadow: 0 0 100px rgba(0,0,0,0.5);
        border-left: 1px solid var(--color-border);
        border-right: 1px solid var(--color-border);
    }
    
}

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

/* Typography Refinement */
.section-heading {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 15px;
    text-align: center;
}

.section-sub {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 50px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

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

/* 1. HERO */
.hero-section {
    position: relative;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover;
    background-position: center;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.9) 100%);
    z-index: -1;
}

.landing-header {
    position: absolute;
    top: 0; left: 0; width: 100%;
    padding: 30px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
}

.brand {
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.brand .dot { color: var(--color-primary); }

.header-logo {
    height: 42px; /* Nicely sized to match brand text */
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 4px 10px rgba(0,0,0,0.3));
    transition: transform 0.3s ease;
}

.header-logo:hover {
    transform: scale(1.05);
}

.hero-content {
    max-width: 600px;
    padding: 0 30px;
}

.hero-content h1 {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.05;
    margin-bottom: 25px;
    letter-spacing: -0.03em;
}

.hero-content p {
    font-size: 0.95rem;
    margin-bottom: 40px;
    opacity: 0.7;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--color-text-muted);
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid var(--color-text-muted);
    border-radius: 20px;
    position: relative;
}

.mouse::before {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--color-primary);
    border-radius: 2px;
    animation: scrollWheel 1.5s infinite;
}

@keyframes scrollWheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    30% { opacity: 1; }
    100% { opacity: 0; transform: translate(-50%, 15px); }
}

.btn-lg {
    padding: 18px 32px;
    font-size: 1rem;
}

/* Button Icon Spacing */
.btn i, .btn svg {
    margin-right: 10px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.2);
    color: white;
    font-weight: 800;
    border-radius: 20px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--color-primary);
    color: white;
    box-shadow: var(--shadow-orange);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 45px rgba(255, 140, 0, 0.4);
}

.btn-outline {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: white;
}

.btn-white {
    background: white;
    color: black;
}

/* Animations Fallback */
.reveal {
    opacity: 1; /* Default to visible for resilience */
}

/* 2. BRIDGE / MOCKUP */
.bridge-section {
    padding: 100px 0;
    background: #000;
}

.device-mockup {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.phone-frame {
    width: 320px;
    height: 640px;
    background: #222;
    border-radius: 40px;
    border: 8px solid #333;
    position: relative;
    overflow: hidden;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    pointer-events: none; /* Make mockup non-clickable */
}

.phone-island {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 20px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
}

.phone-frame iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* 3. PROBLEMS */
.problems-section {
    padding: 80px 0;
    background: var(--color-bg);
}

.problem-cards {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.problem-cards::-webkit-scrollbar {
    display: none;
}

.problem-card {
    background: var(--color-surface);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1.5px solid var(--color-primary);
    flex: 0 0 85%;
    scroll-snap-align: center;
}

/* CAROUSEL DOTS */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 10px;
}

.carousel-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.carousel-dots .dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}

.problem-card i {
    width: 40px;
    height: 40px;
    color: var(--color-primary);
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.problem-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

/* 4. SOLUTION */
.solution-section {
    padding: 80px 0;
    background: #000;
}

.solution-grid {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 40px;
}

.solution-card {
    background: var(--color-surface);
    padding: 35px 30px;
    border-radius: 28px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.solution-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 4px;
    background: linear-gradient(90deg, transparent, var(--color-primary), transparent);
    opacity: 0;
    transition: 0.3s;
}

.solution-card:hover::before {
    opacity: 1;
}



.solution-card p {
    font-size: 0.9rem;
    line-height: 1.6;
    opacity: 0.8;
}

.sol-icon {
    width: 70px;
    height: 70px;
    background: rgba(255,140,0,0.15);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.sol-icon i { color: var(--color-primary); width: 30px; height: 30px; }

/* 5. STEPS */
.steps-section {
    padding: 80px 0;
}

.steps-flow {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-top: 40px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.steps-flow::-webkit-scrollbar {
    display: none;
}

.step {
    background: var(--color-surface);
    padding: 40px 30px;
    border-radius: 24px;
    border: 1.5px solid var(--color-primary);
    flex: 0 0 85%;
    scroll-snap-align: center;
    text-align: center;
    position: relative;
}

.step p {
    font-size: 0.85rem;
    line-height: 1.6;
    opacity: 0.8;
}

.step-num {
    font-size: 3rem;
    font-weight: 900;
    opacity: 0.1;
    margin-bottom: -15px;
    color: var(--color-primary);
}

/* STEPS DOTS */
.steps-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 15px;
}

.steps-dots .dot {
    width: 8px;
    height: 8px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.steps-dots .dot.active {
    background: var(--color-primary);
    width: 24px;
    border-radius: 4px;
}
.results-section {
    padding: 60px 0;
}

.result-box {
    background: var(--color-primary);
    border-radius: 32px;
    padding: 40px;
    display: flex;
    justify-content: space-around;
    text-align: center;
    color: #000;
}

.res-val { font-size: 2.5rem; font-weight: 900; }
.res-lbl { font-size: 0.9rem; font-weight: 700; text-transform: uppercase; }

/* 7. TESTIMONIALS */
.testimonials-section {
    padding: 100px 0;
}

.testimonial-carousel {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 20px;
    margin-top: 40px;
    padding-bottom: 20px;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

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

.testimonial-card {
    background: var(--color-surface);
    padding: 40px;
    border-radius: 24px;
    border: 1.5px solid var(--color-primary);
    flex: 0 0 90%;
    scroll-snap-align: center;
    text-align: center;
}

.testimonial-card p {
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 30px;
    line-height: 1.6;
}

.testimonial-user {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.t-avatar { 
    width: 60px; 
    height: 60px; 
    background-color: #444; 
    border-radius: 50%; 
    background-position: center;
    background-size: cover;
}

.t-info { text-align: left; }
.t-info strong { display: block; font-size: 1.1rem; }
.t-info span { font-size: 0.85rem; color: var(--color-text-muted); }

/* 8. FINAL CTA */
.final-cta {
    padding: 120px 0;
    text-align: center;
    background: linear-gradient(to top, #000, #0d0d0d);
}

.final-cta h2 { font-size: 2.5rem; margin-bottom: 40px; }

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


/* Mobile Adjustments */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.2rem; }
    .result-box { 
        flex-direction: row; 
        gap: 10px; 
        padding: 25px 12px;
        justify-content: space-between;
        margin: 0 15px;
    }
    .res-val { font-size: 1.3rem; }
    .res-lbl { font-size: 0.55rem; }
    .hero-actions { flex-direction: column; width: 100%; }
    .cta-actions { flex-direction: column; width: 100%; }
}

/* 9. FOOTER */
.landing-footer {
    padding: 60px 0 30px;
    background: #000;
    border-top: 1px solid var(--color-border);
}

.footer-top {
    margin-bottom: 40px;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-top: 10px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    padding-top: 30px;
    color: var(--color-text-muted);
    font-size: 0.8rem;
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-socials i {
    width: 20px;
    height: 20px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.footer-socials i:hover {
    color: var(--color-primary);
}

/* Mobile Footer Adjustments */
@media (max-width: 768px) {
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

/* Informational Pages Styles */
.policy-page {
    padding: 140px 0 80px;
}

.policy-content h1 {
    font-size: 2.5rem;
    margin-bottom: 40px;
    color: var(--color-primary);
    text-align: center;
}

.policy-content h2 {
    font-size: 1.5rem;
    margin: 40px 0 15px;
    color: white;
}

.policy-content p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--color-text-muted);
    margin-bottom: 20px;
}

.policy-content ul {
    margin: 0 0 20px 20px;
}

.policy-content li {
    color: var(--color-text-muted);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

/* Footer Links Styling */
.footer-links {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.footer-link {
    color: var(--color-text-muted);
    text-decoration: none;
    font-size: 0.8rem;
    transition: color 0.3s ease;
}

.footer-link:hover {
    color: var(--color-primary);
}

/* 10. ASSESSMENT SECTION */
.assessment-section {
    padding: 100px 0;
}

.assessment-container {
    max-width: 600px;
    margin: 0 auto;
    background: var(--color-surface);
    border: 1.5px solid var(--color-border);
    border-radius: 32px;
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
    min-height: 450px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.assessment-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255,140,0,0.1);
}

.progress-fill {
    height: 100%;
    background: var(--color-primary);
    width: 0%;
    transition: width 0.4s ease;
}

.assessment-step {
    opacity: 0;
    display: none;
    width: 100%;
}

.assessment-step.active {
    display: block;
    opacity: 1;
    width: 100%;
}

.assessment-centered {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
}

.assessment-step h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.assessment-step p {
    color: var(--color-text-muted);
    margin-bottom: 30px;
}

.assessment-step h3 {
    font-size: 1.4rem;
    line-height: 1.4;
    margin-bottom: 25px;
}

.options-grid {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.option-btn {
    background: #000;
    border: 1px solid var(--color-border);
    padding: 20px;
    border-radius: 16px;
    color: var(--color-text-muted);
    text-align: left;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.option-btn:hover {
    border-color: var(--color-primary);
    color: white;
}

.option-btn:active {
    transform: scale(0.98);
}

/* Locking System */
.locked-section {
    position: relative;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.locked-section .container {
    filter: blur(15px);
    opacity: 0.4;
    pointer-events: none;
    transition: all 1.2s cubic-bezier(0.19, 1, 0.22, 1);
}

.locked-section.unlocked .container {
    filter: blur(0);
    opacity: 1;
    pointer-events: auto;
}

.lock-notice-wrapper {
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    z-index: 150;
    display: flex;
    justify-content: center;
    pointer-events: none;
}

.lock-notice {
    background: rgba(20, 20, 20, 0.85);
    backdrop-filter: blur(15px);
    border: 1px solid var(--color-primary);
    padding: 14px 24px;
    border-radius: 100px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.5);
    pointer-events: auto;
    animation: pulseLock 2s infinite;
}

.locked-section.unlocked .lock-notice-wrapper {
    display: none;
}

@keyframes pulseLock {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 140, 0, 0.4); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 15px rgba(255, 140, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 140, 0, 0); }
}

.hidden-filtered {
    display: none !important;
}

@media (max-width: 768px) {
    .assessment-container {
        padding: 40px 20px;
        border-radius: 24px;
        min-height: 500px;
    }
}
