/* 
   CXBliss Landing Page Design System 
   Focus: High-Conversion, Premium Aesthetics, Execution-Oriented
*/

:root {
    --lp-padding-y: 8rem;
    --lp-gap-section: 6rem;
    --lp-border-radius: 2rem;
    --grad-premium: linear-gradient(135deg, rgba(14, 165, 233, 0.1) 0%, rgba(245, 158, 11, 0.05) 100%);
    --grad-cta: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
}

/* --- Hero Section --- */
.lp-hero {
    padding-top: 12rem;
    padding-bottom: 8rem;
    background: radial-gradient(circle at top right, rgba(14, 165, 233, 0.15), transparent),
                radial-gradient(circle at bottom left, rgba(245, 158, 11, 0.05), transparent);
    text-align: center;
}

.lp-hero__badge {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background: rgba(14, 165, 233, 0.1);
    border: 1px solid rgba(14, 165, 233, 0.2);
    color: var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.75rem;
    border-radius: 100px;
    margin-bottom: 2rem;
}

.lp-hero__title {
    font-size: clamp(2.5rem, 8vw, 5rem);
    line-height: 1;
    margin-bottom: 2rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.lp-hero__subtitle {
    font-size: clamp(1.1rem, 3vw, 1.5rem);
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 3rem;
    line-height: 1.6;
}

.lp-hero__actions {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Section Layouts --- */
.lp-section {
    padding: var(--lp-padding-y) 0;
}

.lp-section--alt {
    background: rgba(255, 255, 255, 0.02);
}

.lp-section-header {
    margin-bottom: 4rem;
    max-width: 700px;
}

.lp-section-header.center {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
}

/* --- Problem Section --- */
.lp-problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.lp-problem-card {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.1);
    padding: 3rem;
    border-radius: var(--lp-border-radius);
    transition: var(--transition);
}

.lp-problem-card:hover {
    background: rgba(248, 113, 113, 0.08);
}

.lp-problem-card i {
    color: #f87171;
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

/* --- Solution Section --- */
.lp-solution-card {
    background: var(--background-light);
    border: 1px solid var(--border-color);
    padding: 0;
    border-radius: var(--lp-border-radius);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 500px;
}

.lp-solution-content {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lp-solution-image {
    background-size: cover;
    background-position: center;
}

@media (max-width: 992px) {
    .lp-solution-card {
        grid-template-columns: 1fr;
    }
    .lp-solution-image {
        height: 300px;
    }
}

/* --- Feature Grid --- */
.lp-feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.lp-feature-item {
    display: flex;
    gap: 1.5rem;
}

.lp-feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

/* --- Outcomes / Results --- */
.lp-outcome-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: var(--background-light);
    border: 1px solid var(--border-color);
    border-radius: 100px;
    font-weight: 600;
    margin-right: 1rem;
    margin-bottom: 1rem;
}

.lp-outcome-pill i {
    color: var(--accent-color);
}

/* --- Qualifier Section (For / Not For) --- */
.lp-qualifier-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.lp-qualifier-box {
    padding: 3rem;
    border-radius: var(--lp-border-radius);
}

.lp-qualifier-box--for {
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.1);
}

.lp-qualifier-box--not {
    background: rgba(248, 113, 113, 0.05);
    border: 1px solid rgba(248, 113, 113, 0.1);
}

/* --- Process Section --- */
.lp-process-row {
    display: flex;
    gap: 4rem;
    position: relative;
    padding-bottom: 4rem;
}

.lp-process-row:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 24px;
    top: 60px;
    bottom: 0;
    width: 2px;
    background: var(--border-color);
}

.lp-process-step {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    z-index: 1;
}

/* --- Global CTA Sections --- */
.lp-cta-block {
    background: var(--grad-cta);
    padding: 6rem;
    border-radius: var(--lp-border-radius);
    text-align: center;
    color: white;
    margin-top: 4rem;
}

.lp-cta-block h2 {
    color: white;
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.lp-cta-block p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.2rem;
    margin-bottom: 3rem;
}

/* --- Utilities --- */
.text-execution {
    color: var(--secondary-color);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 0.85rem;
}

/* --- Navbar Dropdown --- */
.nav__links {
    position: relative;
    align-items: center;
}

.nav__dropdown {
    position: relative;
    display: inline-block;
}

.nav__dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--background-dark);
    min-width: 200px;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
    border-radius: 1rem;
    padding: 0.5rem;
    z-index: 1001;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    margin-top: 15px;
}

.nav__dropdown-content::after {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: var(--background-dark);
    border-left: 1px solid var(--border-color);
    border-top: 1px solid var(--border-color);
}

.nav__dropdown:hover .nav__dropdown-content {
    display: block;
    animation: fadeIn 0.2s ease;
}

.nav__dropdown-link {
    color: var(--text-primary);
    padding: 0.8rem 1rem;
    text-decoration: none;
    display: block;
    border-radius: 0.5rem;
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

.nav__dropdown-link:hover {
    background: rgba(14, 165, 233, 0.1);
    color: var(--primary-color);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateX(-50%) translateY(10px); }
    to { opacity: 1; transform: translateX(-50%) translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    :root {
        --lp-padding-y: 5rem;
    }
    .lp-hero__title {
        font-size: 3rem;
    }
    .lp-qualifier-grid {
        grid-template-columns: 1fr;
    }
    .lp-cta-block {
        padding: 3rem 1.5rem;
    }
    .lp-cta-block h2 {
        font-size: 2rem;
    }
    
    .nav__dropdown-content {
        position: static;
        transform: none;
        box-shadow: none;
        border: none;
        display: block;
        padding-left: 1rem;
        margin-top: 0;
    }
    .nav__dropdown-content::after { display: none; }
}
