/* ====================================
   Session LP Specific Styles
   ==================================== */

/* LP uses a Dark Theme mainly */
.lp-body {
    background-color: #0F172A;
    /* Dark Slate 900 */
    color: #F8FAFC;
    /* Slate 50 */
    font-family: var(--font-base);
}

/* Override Container for LP if needed */
.lp-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

@media (min-width: 768px) {
    .lp-container {
        padding: 0 1.5rem;
    }
}

/* ====================================
   Hero Section
   ==================================== */
.lp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.8), rgba(76, 29, 149, 0.6)),
        url('../assets/session/hero-bg.png');
    background-size: cover;
    background-position: center;
    color: #fff;
    padding: 4rem 1rem;
}

.lp-hero__content {
    max-width: 800px;
    z-index: 2;
}

.lp-hero__title {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

@media (min-width: 768px) {
    .lp-hero__title {
        font-size: 2.5rem;
    }
}

.lp-hero__subtitle {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #E2E8F0;
    font-weight: 500;
}

/* ====================================
   Pains Section (White/Light bg for contrast or Dark Card?) 
   Let's go with Dark cards on Dark bg or Light section.
   Designing as alternating sections.
   ==================================== */
.lp-section-dark {
    background-color: #0F172A;
    color: #fff;
    padding: 6rem 0;
}

.lp-section-light {
    background-color: #F8FAFC;
    color: #1E293B;
    padding: 6rem 0;
}

.lp-card-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

@media (min-width: 768px) {
    .lp-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lp-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.lp-section-light .lp-card {
    background: #fff;
    border: 1px solid #E2E8F0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

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

.lp-card__icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    /* Use CSS mask or just standard img */
}

/* ====================================
   Features (3 Pillars)
   ==================================== */
.lp-pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 3rem;
}

.lp-pillar__img {
    width: 150px;
    height: 150px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 4px 6px rgba(0, 0, 0, 0.2));
}

/* ====================================
   Utilities
   ==================================== */
.text-gradient {
    background: linear-gradient(to right, #A78BFA, #34D399);
    /* Purple to Teal */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.lp-profile-card-inner {
    display: flex;
    flex-direction: column-reverse;
    /* Mobile: Image on top (because HTML is Text then Image, reverse puts Image first visually?) -> Wait, usually we want Image on Top. If HTML is Text, Image. column-reverse makes Image, Text. Correct. */
}

@media (min-width: 768px) {
    .lp-profile-card-inner {
        flex-direction: row;
        /* Desktop: Text (Left), Image (Right) as per new HTML order */
    }
}

.btn-lp-primary {
    display: inline-block;
    background: linear-gradient(135deg, #4C1D95 0%, #6D28D9 100%);
    color: #fff;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    box-shadow: 0 10px 15px -3px rgba(76, 29, 149, 0.4);
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-lp-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(76, 29, 149, 0.5);
    color: #fff;
}

.btn-lp-secondary {
    display: inline-block;
    background: #fff;
    color: #0070BA;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    border: 1px solid #0070BA;
    transition: all 0.3s;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
}

.btn-lp-secondary:hover {
    transform: translateY(-2px);
    background: #F0F7FF;
    box-shadow: 0 10px 15px -3px rgba(0, 112, 186, 0.2);
    color: #0070BA;
}

/* ====================================
   Booking Page
   ==================================== */
.booking-header {
    text-align: center;
    padding: 4rem 1rem;
    background: #0F172A;
    color: #fff;
}

.booking-container {
    max-width: 600px;
    margin: -3rem auto 4rem;
    background: #fff;
    color: #333;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    position: relative;
}

.booking-alert {
    background-color: #FFF7ED;
    /* Orange 50 */
    border-left: 4px solid #F97316;
    /* Orange 500 */
    padding: 1rem;
    margin-bottom: 2rem;
    color: #9A3412;
    /* Orange 900 */
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-step {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #E2E8F0;
}

.booking-step:last-child {
    border-bottom: none;
}

.step-number {
    background: #0F172A;
    color: #fff;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    flex-shrink: 0;
}

/* ====================================
   LeoSuppli Explanation
   ==================================== */
.lp-leosupp-expl {
    background: #F1F5F9;
    padding: 6rem 0;
    color: #334155;
    text-align: center;
}

.intro-lead {
    font-size: 1.1rem;
    line-height: 2;
    margin-bottom: 3rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.leosupp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    justify-content: center;
    margin-top: 3rem;
}

.leosupp-feature-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    flex: 0 0 45%;
    display: flex;
    align-items: center;
    text-align: left;
    gap: 1rem;
    max-width: 300px;
}

@media(max-width: 640px) {
    .leosupp-feature-item {
        flex: 0 0 100%;
        max-width: 100%;
    }
}

/* ====================================
   Pricing Section (2 Columns)
   ==================================== */
.pricing-grid {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: 3rem auto 0;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 1.5rem;
    flex: 0 0 100%;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.3s;
}

@media (min-width: 768px) {
    .pricing-card {
        padding: 2.5rem;
        flex: 1;
        min-width: 300px;
    }
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.3);
}

.pricing-card--premium {
    background: linear-gradient(145deg, rgba(76, 29, 149, 0.3), rgba(15, 23, 42, 0.6));
    border: 1px solid rgba(167, 139, 250, 0.3);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.3);
    z-index: 2;
}

.pricing-tag {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: #A78BFA;
    color: #fff;
    padding: 0.25rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    white-space: nowrap;
}

.pricing-price {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin: 1rem 0;
}

.pricing-price span {
    font-size: 1rem;
    color: #94A3B8;
    font-weight: 400;
}

.pricing-list {
    text-align: left;
    margin: 2rem 0;
    list-style: none;
    padding: 0;
    flex: 1;
}

.pricing-list li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #E2E8F0;
}

.pricing-list li::before {
    content: '\f00c';
    /* FontAwesome check */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    color: #34D399;
    position: absolute;
    left: 0;
    top: 2px;
}

/* ====================================
   Pricing Transformation (Before/After)
   ==================================== */
.pricing-transform-container {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    padding: 1.5rem;
    margin: 1.5rem 0;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.pricing-transform-row {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.pricing-phase {
    width: 100%;
    text-align: left;
}

.pricing-phase__label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.pricing-phase__label--before {
    color: #94A3B8;
}

.pricing-phase__label--after {
    color: #34D399;
    /* Primary Accent for After */
}

.pricing-phase__text {
    font-size: 0.95rem;
    line-height: 1.6;
    color: #E2E8F0;
    font-weight: 500;
}

.pricing-phase__sub {
    display: block;
    font-size: 0.85rem;
    color: #94A3B8;
    margin-top: 0.5rem;
    line-height: 1.4;
}

.pricing-arrow {
    color: #64748B;
    font-size: 1.2rem;
    margin: 0.5rem 0;
}

/* Master Plan Specific Accents */
.pricing-card--executive .pricing-phase__label--after {
    color: #A78BFA;
}

.pricing-card--executive .pricing-transform-container {
    background: rgba(124, 58, 237, 0.1);
    border-color: rgba(124, 58, 237, 0.2);
}

@media (min-width: 1024px) {
    /* On very wide cards, maybe side-by-side? 
       But cards are vertical columns. Stacked is safer for narrow columns. 
       Let's keep stacked for now but refine spacing. */
}

.pricing-phase__list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.pricing-phase__list li {
    font-size: 0.85rem;
    color: #E2E8F0;
    margin-bottom: 0.4rem;
    position: relative;
    padding-left: 1rem;
    line-height: 1.4;
}

.pricing-phase__list li::before {
    content: '•';
    color: #94A3B8;
    position: absolute;
    left: 0;
}

/* ====================================
   After Session Card
   ==================================== */
.lp-after-session-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border: 1px solid #CBD5E1;
    margin-bottom: 2rem;
}

.lp-after-session-left {
    flex: 1;
    padding: 1.5rem;
    border-bottom: 1px solid #E2E8F0;
}

.lp-after-session-right {
    flex: 1;
    padding: 1.5rem;
    background: #F8FAFC;
}

@media (min-width: 768px) {
    .lp-after-session-left {
        padding: 2.5rem;
    }

    .lp-after-session-right {
        padding: 2.5rem;
    }
}

@media (min-width: 768px) {
    .lp-after-session-card {
        flex-direction: row;
    }

    .lp-after-session-left {
        border-bottom: none;
        border-right: 1px solid #E2E8F0;
    }
}