/* ──────────────────────────────────────────────
   LCT Pricing Page – Additional CSS
   Extends the homepage design system.
   All CSS variables already defined in the
   homepage stylesheet (:root block).
   ────────────────────────────────────────────── */


/* ──────────────────────────────────────────────
   1. PRICING HERO
   All hero styles inherited from homepage.css
   via .lct__hero. Only the label needs defining
   here since the homepage uses .lct__hero-label
   on an h1, but the pricing page uses a <p>.
   ────────────────────────────────────────────── */
.lct__hero--pricing {

}

.lct__hero--pricing .lct__hero-container {
    justify-content: space-between;
    padding: 0px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: calc(100vh - 100px);
}

.lct__hero-top {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-start;
    width: 100%;
}

.lct__hero-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    align-self: flex-end;
    width: 100%;
}
   
.lct__hero--pricing .lct__hero-headline {
    max-width: 460px;
    margin: 0 auto 20px auto;
    padding: 0 15px;
}

.lct__hero--pricing .lct__hero-description {
    max-width: 550px;
    margin: 0 auto 45px auto;
    padding: 0 20px;
}

@media (min-width: 767px) {
    .lct__hero--pricing .lct__hero-container {
        height: calc(100vh - 205px);
    }
    .lct__hero--pricing .lct__hero-headline {
        max-width: 720px;
        font: normal normal normal 60px/65px Prata;
    }
}

@media (min-width: 1024px) {
    .lct__hero--pricing .lct__hero-headline {
        font: normal normal normal 70px/75px Prata;
    }
}

.lct__pricing-hero-label {
    display: block;
    text-align: center;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    margin: 0 0 20px 0;
}


/* ── Pricing Tiers Section (lct__stats shell) ── */
.lct__pricing-tiers-section.lct__stats {
    padding: 65px 0 0 0;
    background-position: top left;
    background-size: 0px 0px;
}

.lct__pricing-tiers-top {
    text-align: center;
    padding: 0 30px 50px 30px;
    max-width: var(--lct-max-width);
    margin: 0 auto;
}

.lct__pricing-tiers-headline {
    font: normal normal normal 34px/38px Prata;
    color: #FFFFFF;
    margin: 0 0 20px;
}

@media (min-width: 1024px) {
    .lct__pricing-tiers-headline {
        font: normal normal normal 40px/48px Prata;
    }

    .lct__pricing-tier-price {
        font: normal normal normal 60px/62px Prata;
    }
}

.lct__pricing-tiers-desc {
    font: normal normal normal 18px/24px Lato;
    color: rgba(255, 255, 255, 0.9);
    max-width: 536px;
    margin: 0 auto 40px auto;
}

.lct__pricing-tiers-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.lct__pricing-tier {
    text-align: center;
    padding-bottom: 10px;
}
.lct__pricing-tier:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.lct__pricing-tier-accent {
    width: 52px;
    height: 2px;
    background: #8BCDD0;
    margin: 0 auto 10px;
}

.lct__pricing-tier-label {
    display: block;
    font: normal normal normal 16px/20px Lato;
    letter-spacing: .8px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    margin-bottom: 8px;
}

.lct__pricing-tier-price {
    display: block;
    font: normal normal normal 52px/54px Prata;
    color: #FFFFFF;
    margin: 17px 0;
}

.lct__pricing-tier-unit {
    display: block;
    font: normal normal normal 12px/14px Lato;
    letter-spacing: .6px;
    color: rgba(255, 255, 255, 1);
    text-transform: uppercase;
    margin-bottom: 10px;
}

.lct__pricing-tier-description {
    font: italic normal normal 16px/20px Lato;
    color: rgba(255, 255, 255, 1);
    margin: 0 auto;
    max-width: 250px;
}

/* Included section — sits inside the teal section, reuses problem-new layout */
.lct__pricing-included-inner {
    position: relative;
    z-index: 2;
    padding: 0 30px;
}

.lct__problem-new-card--light {
    background-color: var(--lct-lighter-white);
}

.lct__problem-new-card--light .lct__problem-new-card-accent {
    background-color: var(--lct-teal-lighter);
}

.lct__problem-new-card--light .lct__problem-new-heading {
    color: #303C42;
    max-width: 400px;
}

.lct__problem-new-card--light .lct__problem-new-tagline {
    color: #303C42;
}

.lct__problem-new-card--light .lct__problem-new-list li {
    color: #303C42;
}

.lct__pricing-tiers-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 75px; /* covers the included section at the bottom */
        background-color: var(--lct-white);
        z-index: 0;
}

@media (min-width: 768px) {
    .lct__pricing-tiers-grid {
        /* grid-template-columns: repeat(3, 1fr); */
        gap: 30px;
    }
    .lct__pricing-tier {
        border-bottom: none;
        padding-bottom: 0;
        padding: 0;
    }
    .lct__pricing-tier:first-child { padding-left: 0; }
    .lct__pricing-tier:last-child { border-right: none; padding-right: 0; }

    .lct__pricing-included-inner {
        padding: 0;
    }
}

@media (min-width: 1024px) {
    .lct__pricing-tiers-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }
    .lct__pricing-tiers-section.lct__stats {
        background-size: 249px auto;
    }
    .lct__pricing-tiers-section {
        position: relative;
    }

    .lct__pricing-tiers-section::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 75px; /* covers the included section at the bottom */
        background-color: var(--lct-white);
        z-index: 0;
    }

    .lct__pricing-included-inner {
        position: relative;
        z-index: 1;
    }
    .lct__pricing-tiers-top {
        padding-bottom: 60px;
    }
}


/* ──────────────────────────────────────────────
   4. MOMENTS BOX
   Mirrors homepage .lct__better (teal bg, content left, image right)
   But uses white bg with the existing page colour palette
   ────────────────────────────────────────────── */
.lct__pricing-box {
    background-color: var(--lct-white);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 0 30px 65px 30px;
}

.lct__pricing-box-inner {
    display: grid;
    grid-template-columns: 1fr;
    max-width: 1088px;
    margin: 0 auto;
}

.lct__pricing-box-content {
    padding: 75px 0px 55px 0px;
    background-color: var(--lct-white);
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.lct__pricing-box-headline {
    text-align: left;
    font: normal normal normal 34px/38px Prata;
    letter-spacing: 0;
    color: #303C42;
    margin: 0 0 20px;
    padding: 0 45px 0 0;
}

.lct__pricing-box-description {
    text-align: left;
    font: normal normal normal 16px/26px Lato;
    letter-spacing: 0;
    color: #303C42;
    margin: 0 0 30px;
}
.lct__pricing-box-description p { margin-bottom: 14px; }
.lct__pricing-box-description p:last-child { margin-bottom: 0; }

.lct__pricing-box-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font: normal normal 600 14px/16px Lato;
    letter-spacing: 0.7px;
    color: #FFFFFF !important;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 22px;
    border-radius: 5px;
    background: var(--lct-teal);
    border: 2px solid var(--lct-teal);
    transition: background-color 0.25s ease, border-color 0.25s ease;
    align-self: flex-start;
}
.lct__pricing-box-cta:hover {
    background: var(--lct-teal-dark);
    border-color: var(--lct-teal-dark);
}

.lct__pricing-box-image {
    background-color: var(--lct-lighter-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    min-height: 400px;
    position: relative;
}

.lct__pricing-box-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    height: auto;
    display: block;
}

@media (min-width: 768px) {
    .lct__pricing-box-content {
        max-width: 544px;
        margin: 0 auto;
        padding: 70px 45px 65px 45px;
    }
    
    .lct__pricing-box-image {
        max-width: 544px;
        margin: 0 auto;
    }
}

@media (min-width: 1024px) {
    .lct__pricing-box .lct__pricing-box-inner {
        grid-template-columns: 1fr 1fr;
        width: 100%;
        padding: 65px 0 0 0;
    }
    .lct__pricing-box-content {
        max-width: none;
        padding: 0px 50px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: flex-start;
    }
    .lct__pricing-box-headline {
        padding: 0;
        font: normal normal normal 40px/48px Prata;
    }
    .lct__pricing-box-image {
    }
}


/* ──────────────────────────────────────────────
   5. SOCIAL PROOF — re-uses .lct__proof from homepage
   Just a background tweak for the pricing context
   ────────────────────────────────────────────── */
.lct__pricing-proof {
    background-color: var(--lct-off-white);
}


/* ──────────────────────────────────────────────
   6. HOW IT WORKS
   Mirrors homepage .lct__reward section
   ────────────────────────────────────────────── */

.lct__pricing-how .lct__pricing-how-description {
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    color: #303C42;
    max-width: 600px;
    margin: 15px auto 10px auto;
}

.lct__pricing-how .lct__pricing-how-step-description {
    text-align: center;
    font: normal normal normal 16px/24px Lato;
    color: #303C42;
    margin: -10px 0 0 0;
}

.lct__pricing-how .lct__pricing-how-note {
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    color: #303C42;
    max-width: 640px;
    margin: 30px auto 0 auto;
}

.lct__pricing-how {
    padding: 80px 45px 65px 45px;
    text-align: center;
    position: relative;
    overflow: hidden;
    background-color: var(--lct-off-white);
}

/* Reuse video bg classes from homepage if a video is set */
.lct__pricing-how .lct__reward-video-bg,
.lct__pricing-how .lct__reward-video-overlay {
    /* Inherited from homepage stylesheet – no extra rules needed */
}

.lct__pricing-how-container {
    max-width: var(--lct-max-width);
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
    position: relative;
    z-index: 2;
}

.lct__pricing-how-headline {
    text-align: center;
    font: normal normal normal 40px/48px Prata;
    letter-spacing: 0;
    color: #303C42;
    margin: 0 0 16px;
}

/* White text if a video bg is active */
.lct__pricing-how .lct__reward-video-bg ~ .lct__pricing-how-container .lct__pricing-how-headline,
.lct__pricing-how .lct__reward-video-bg ~ .lct__pricing-how-container .lct__pricing-how-description,
.lct__pricing-how .lct__reward-video-bg ~ .lct__pricing-how-container .lct__pricing-how-note {
    color: #FFFFFF;
}

.lct__pricing-how-description {
    text-align: center;
    font: normal normal normal 18px/26px Lato;
    letter-spacing: 0;
    color: #303C42;
    max-width: 600px;
    margin: 0 auto 45px;
}

.lct__pricing-how-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    max-width: 360px;
    margin: 0 auto 40px;
    position: relative;
}

/* Dashed connector line between steps (desktop only) */
@media (min-width: 768px) {
    .lct__pricing-how-steps {
        grid-template-columns: repeat(3, 1fr);
        max-width: 860px;
        gap: 40px;
        align-items: start;
    }
    .lct__pricing-how-steps::before {
        position: absolute;
        content: "";
        top: 60px;
        width: calc(100% - 96px);
        left: 48px;
        height: 0;
        border-top: 2px dashed rgba(65, 146, 165, 0.4);
        z-index: 1;
    }
}

.lct__pricing-how-step {
    background: #FFFFFF;
    box-shadow: 0px 1px 20px rgba(103, 117, 132, 0.25);
    border-radius: 5px;
    min-height: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 25px;
    gap: 14px;
    position: relative;
    z-index: 2;
}

.lct__pricing-how-step-icon img {
    width: 50px;
    height: 50px;
    object-fit: contain;
}

.lct__pricing-how-step-heading {
    text-align: center;
    font: normal normal 600 14px/20px Lato;
    letter-spacing: 0.8px;
    color: #303C42;
    text-transform: uppercase;
    margin: 0;
}

.lct__pricing-how-step-description {
    text-align: center;
    font: normal normal normal 15px/22px Lato;
    letter-spacing: 0;
    color: #303C42;
    margin: 0;
}

.lct__pricing-how-note {
    text-align: center;
    font: normal normal normal 18px/26px Lato;
    color: #303C42;
    max-width: 640px;
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .lct__pricing-how-steps {
        max-width: 1060px;
    }
    .lct__pricing-how-steps::before {
        width: calc(100% - 120px);
        left: 60px;
    }
}


/* ──────────────────────────────────────────────
   7. BOTTOM CTA — re-uses .lct__pclub from homepage
   Minor override to shift headline size on pricing
   ────────────────────────────────────────────── */
.lct__pricing-cta .lct__pclub-headline {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lct__pricing-story {
    position: relative;
    background-color: #677584;
    padding-bottom: 60px;
}

.lct__pricing-story-label-wrap {
    text-align: center;
    padding: 70px 30px 0px 30px;
}

.lct__pricing-story-headline {
    font: normal normal normal 30px/34px Prata;
    color: #FFFFFF;
    margin: 0 0 20px;
    margin-left: auto;
    margin-right: auto;
    max-width: 534px;
}
@media (min-width: 768px) {
    .lct__pricing-story-headline {
        font: normal normal normal 34px/38px Prata;
    }
}
@media (min-width: 1024px) {
    .lct__pricing-story-headline {
        font: normal normal normal 40px/48px Prata;
    }
}

.lct__pricing-story .lct__proof-divider {
    margin: 0 auto 20px;
    width: 2px;
    background-color: #8BCDD0;
}

.lct__pricing-story .lct__story-heading,
.lct__pricing-story .lct__story-description {
    color: #FFFFFF;
}

.lct__pricing-story .lct__story-description p {
    color: #FFFFFF;
}

.lct__pricing-story .lct__story-disclaimer,
.lct__pricing-story .lct__story-disclaimer a {
    color: rgba(255, 255, 255, 1) !important;
}

/* Bottom right decorative image */
.lct__pricing-story::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 276px;
    height: 398px;
    background-image: var(--story-bg);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: bottom right;
    pointer-events: none;
    z-index: 1;
    display: none;
}

@media (min-width: 768px) {
}
@media (min-width: 1024px) {
    .lct__pricing-story::after {
        display: block;
    }
}