/* ──────────────────────────────────────────────
   LCT Homepage v2 – CSS Custom Properties
   ────────────────────────────────────────────── */
:root {
    --lct-teal: #4192A5;
    --lct-teal-light: #8BCDD0;
    --lct-teal-lighter: #CED1D9;
    --lct-teal-dark: #357d8e;
    --lct-dark: #1a2332;
    --lct-dark-alt: #232f3e;
    --lct-dark-text: #303C42;
    --lct-white: #ffffff;
    --lct-off-white: #f2f2f2;
    --lct-lighter-white: #C2C6D0;
    --lct-grey-light: #e8e8e8;
    --lct-grey: #888888;
    --lct-text: #333333;
    --lct-text-light: #555555;
    --lct-font-serif: 'Prata', 'Playfair Display', Georgia, serif;
    --lct-font-sans: 'Lato', 'Inter', 'Helvetica Neue', Arial, sans-serif;
    --lct-max-width: 1200px;
    --lct-padding: 30px;
}


/* ──────────────────────────────────────────────
   1. HERO (Mobile First)
   ────────────────────────────────────────────── */
.lct__hero {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--lct-white);
    min-height: 100vh;
}

.lct__hero-container {
    max-width: 670px;
    margin: 0 auto;
    padding: 50px 30px 100px 30px;
}

.lct__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;
}

.lct__hero-headline {
    display: block;
    text-align: center;
    font: normal normal normal 52px/54px Prata;
    color: #FAFAFA;
    margin: 0 0 20px 0;
}

.lct__hero-description {
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    color: #FFFFFF;
    max-width: 650px;
    margin: 0 0 45px 0;
}

.lct__hero-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    margin: 0 0 35px 0;
}

.lct__hero-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: normal normal 600 14px/16px Lato;
    letter-spacing: 0.7px;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 19px;
    border-radius: 5px;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    margin: 0;
    width: 294px;
    height: 50px;
}

.lct__hero-cta--primary {
    background: #FFFFFF;
    color: #303C42 !important;
    border: 2px solid #FFFFFF;
}
.lct__hero-cta--primary:hover {
    background: #8BCDD0;
    color: #303C42 !important;
    border: 2px solid #8BCDD0;
}

.lct__hero-cta--secondary {
    background: rgba(48, 60, 66, 0.25);
    color: #FFFFFF;
    border: 2px solid #FFFFFF;
}
.lct__hero-cta--secondary:hover {
    background: #8BCDD0;
    color: #303C42 !important;
    border: 2px solid #8BCDD0;
}

.lct__hero-cta-icon {
    flex-shrink: 0;
    width: 21px;
    height: 18px;
}

.lct__hero-selling-points {
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    margin: 0;
}

.lct__hero-divider {
    width: 3px;
    height: 106px;
    background-color: var(--lct-teal-light);
    margin: 0 auto;
    position: absolute;
    bottom: -53px;
    z-index: 2;
}

@media (min-width: 768px) {
    .lct__hero {
        height: calc(100vh - 100px);
        min-height: auto;
    }
    .lct__hero-container {
        height: 100%;
        padding-top: 60px;
        padding-bottom: 65px;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    .lct__hero-headline { font: normal normal normal 60px/65px Prata; }
    .lct__hero-description {
        margin: 0;
        max-width: 470px;
    }
    .lct__hero-ctas {
        flex-direction: row;
        justify-content: center;
        margin-top: auto;
    }
}
@media (min-width: 1024px) {
    .lct__hero-container {
        max-width: 936px;
    }
    .lct__hero-headline { font: normal normal normal 70px/75px Prata; }
}


/* ──────────────────────────────────────────────
   2. TRUSTED BY
   ────────────────────────────────────────────── */
.lct__trusted {
    padding: 70px 0;
    background-color: var(--lct-off-white);
    text-align: center;
}

.lct__trusted-container {
    max-width: var(--lct-max-width);
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
}

.lct__trusted-headline {
    font: normal normal normal 34px/38px Prata;
    color: var(--lct-dark-text);
    text-align: center;
    letter-spacing: 0px;
    margin-bottom: 30px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lct__trusted-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    max-width: 334px;
    margin: 0 auto;
}

.lct__trusted-logo {
    background: #FFFFFF;
    border-radius: 5px;
    padding: 0;
    box-shadow: 0px 1px 20px rgba(103, 117, 132, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 159px;
    height: 81px;
}
.lct__trusted-logo:last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
}
.lct__trusted-logo img {
    display: block;
}

/* Per-logo sizing */
.lct__trusted-logo:nth-child(1) img { width: 130px; height: 19px; }
.lct__trusted-logo:nth-child(2) img { width: 124px; height: 70px; }
.lct__trusted-logo:nth-child(3) img { width: 82px;  height: 15px; }
.lct__trusted-logo:nth-child(4) img { width: 118px; height: 21px; }
.lct__trusted-logo:nth-child(5) img { width: 72px;  height: 21px; }

@media (min-width: 768px) {
    .lct__trusted-headline {  }
    .lct__trusted-logos {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 20px;
        max-width: 660px;
        grid-template-columns: 1fr 1fr 1fr;
    }
    .lct__trusted-logo {
        width: 206px;
        height: 105px;
    }
    .lct__trusted-logo:last-child:nth-child(odd) {
        max-width: none;
    }
    /* Per-logo sizing */
    .lct__trusted-logo:nth-child(1) img { width: 168px; height: 24px; }
    .lct__trusted-logo:nth-child(2) img { width: 160px; height: 90px; }
    .lct__trusted-logo:nth-child(3) img { width: 106px;  height: 19px; }
    .lct__trusted-logo:nth-child(4) img { width: 152px; height: 27px; }
    .lct__trusted-logo:nth-child(5) img { width: 93px;  height: 28px; }
}

@media (min-width: 1024px) {
    .lct__trusted-headline { font: normal normal normal 40px/48px Prata; max-width: 800px; }
    .lct__trusted-logos { max-width: 1110px; grid-template-columns: 1fr 1fr 1fr 1fr 1fr;}
}

/* ──────────────────────────────────────────────
   3. PROBLEM SECTION
   ────────────────────────────────────────────── */

/* 3a. Headline + description */
.lct__problem {
    padding: 60px 30px 0 30px;
    background-color: var(--lct-white);
    text-align: center;
}

.lct__problem-container {
    margin: 0 auto;
}

.lct__problem-headline {
    text-align: center;
    font: normal normal normal 34px/38px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0 auto 20px auto;
}

.lct__problem-description {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0 auto 50px auto;
}

@media (min-width: 768px) {
    .lct__problem-headline { max-width: 500px; }
    .lct__problem-description { max-width: 500px; }
}

/* 3b. Old model – image left, card right */
.lct__problem-old {
    background-color: var(--lct-white);
    padding: 0 30px;
    position: relative;
}

.lct__problem-old::after {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    bottom: 0px;
    left: 0px;
    right: 0px;
    z-index: 1;
    background-color: #677584;
}

.lct__problem-old-inner {
    display: grid;
    grid-template-columns: 1fr;
}

.lct__problem-old-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 333;
    position: relative;
}

.lct__problem-old-card {
    padding: 50px;
    background-color: var(--lct-off-white);
    z-index: 333;
}

.lct__problem-old-card-accent {
    width: 52px;
    height: 2px;
    background-color: var(--lct-teal-lighter);
    margin-bottom: 20px;
}

.lct__problem-old-heading {
    text-align: left;
    font: normal normal normal 32px/40px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0 0 20px 0;
    padding: 0;
}

.lct__problem-old-tagline {
    text-align: left;
    font: normal normal 600 16px/20px Lato;
    letter-spacing: 0.8px;
    color: #303C42;
    text-transform: uppercase;
    opacity: 1;
    margin: 0 0 20px 0;
    padding: 0;
}

.lct__problem-old-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.lct__problem-old-list li {
    text-align: left;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
}

@media (min-width: 768px) {
    .lct__problem-old-inner {
        grid-template-columns: 1fr;
        max-width: 544px;
        margin: 0 auto;
    }
    .lct__problem-old-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .lct__problem-headline {
        font: normal normal normal 40px/48px Prata;
    }
    .lct__problem-old-inner {
        max-width: 1088px;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }
}

/* 3c. Quote bar */
.lct__problem-quote {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-color: var(--lct-dark-alt);
    padding: 50px 0;
    text-align: center;
}

.lct__problem-quote-overlay {
    position: absolute;
    inset: 0;
    background: #677584;
    z-index: 1;
}

.lct__problem-quote-bg {
    display: none;
}

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

.lct__problem-quote-text {
    text-align: center;
    font: normal normal normal 34px/38px Prata;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .lct__problem-quote { padding: 50px 0; }
    .lct__problem-quote-text { font: normal normal normal 36px/46px Prata; }
}

/* 3d. New model – card left, image right (mirrors old model) */
.lct__problem-new {
    background-color: var(--lct-white);
    padding: 0 30px;
    position: relative;
}

.lct__problem-new::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 50px;
    top: 0;
    left: 0;
    z-index: 1;
    background-color: #677584;
}

.lct__problem-new-inner {
    display: grid;
    grid-template-columns: 1fr;
}

.lct__problem-new-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    z-index: 333;
    position: relative;
}

.lct__problem-new-card {
    padding: 50px;
    background-color: var(--lct-teal);
    z-index: 333;
    color: #FFFFFF;
}

.lct__problem-new-card-accent {
    width: 52px;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 20px;
}

.lct__problem-new-heading {
    text-align: left;
    font: normal normal normal 32px/40px Prata;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin: 0 0 20px 0;
    padding: 0;
}

.lct__problem-new-tagline {
    text-align: left;
    font: normal normal 600 16px/20px Lato;
    letter-spacing: 0.8px;
    color: #FFFFFF;
    text-transform: uppercase;
    opacity: 1;
    margin: 0 0 20px 0;
    padding: 0;
}

.lct__problem-new-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0 0 24px;
}

.lct__problem-new-list li {
    text-align: left;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
}

.lct__problem-new-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font: normal normal 600 14px/16px Lato;
    letter-spacing: 0.7px;
    color: #303C42 !important;
    text-transform: uppercase;
    text-decoration: none;
    padding: 14px 18px;
    border-radius: 5px;
    background: #FFFFFF;
    border: 2px solid #FFFFFF;
    transition: background-color 0.25s ease, border-color 0.25s ease;
    cursor: pointer;
    max-width: 187px;
}
.lct__problem-new-cta:hover {
    background: #8BCDD0;
    color: #303C42 !important;
    border: 2px solid #8BCDD0;
}

@media (min-width: 768px) {
    .lct__problem-new-inner {
        grid-template-columns: 1fr;
        max-width: 544px;
        margin: 0 auto;
    }
    .lct__problem-new-card {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }
}

@media (min-width: 1024px) {
    .lct__problem-new-inner {
        max-width: 1088px;
        width: 100%;
        grid-template-columns: 1fr 1fr;
    }

    .lct__problem-quote-bg {
        display: block;
        position: absolute;
        bottom: -50px;
        left: 0;
        width: 203px;
        height: 293px;
        z-index: 2;
        pointer-events: none;
    }
}


/* ──────────────────────────────────────────────
   4. 90% SOCIAL PROOF
   ────────────────────────────────────────────── */
.lct__proof {
    padding: 60px 0;
    background-color: var(--lct-white);
    text-align: center;
}

.lct__proof-container {
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
}

.lct__proof-number {
    display: block;
    text-align: center;
    font: normal normal normal 70px/75px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0 0 20px 0;
    padding: 0;
}

.lct__proof-text {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 30px/34px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0;
    padding: 0;
}

.lct__proof-divider {
    width: 3px;
    height: 65px;
    background-color: var(--lct-teal-light);
    margin: 20px auto;
}

.lct__proof-label {
    /* UI Properties */
    text-align: center;
    font: normal normal 600 16px/24px Lato;
    letter-spacing: 0.8px;
    color: #303C42;
    text-transform: uppercase;
    opacity: 1;
    margin: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .lct__proof { padding: 70px 0 60px 0; }
    .lct__proof-number {  }
}

@media (min-width: 1024px) {
    .lct__proof-text {
        /* UI Properties */
        text-align: center;
        font: normal normal normal 35px/42px Prata;
        letter-spacing: 0px;
        color: #303C42;
        opacity: 1;
    }
}


/* ──────────────────────────────────────────────
   5. ACHIEVER STORY
   ────────────────────────────────────────────── */
.lct__story {
    padding: 0 0 50px 0;
    background-color: var(--lct-white);
}

.lct__story-container {
    max-width: 608px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 25px;
    align-items: center;
}

.lct__story-media { border-radius: 0px; overflow: hidden; }
.lct__story-image { width: 100%; height: auto; display: block; border-radius: 0px; }
.lct__story-video { position: relative; padding-top: 56.25%; }
.lct__story-video iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.lct__story-heading {
    /* UI Properties */
    text-align: left;
    font: normal normal normal 30px/32px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0;
    padding: 0 10px;
}

.lct__story-description {
    /* UI Properties */
    text-align: left;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 20px 0 0 0;
    padding: 0 10px;
}
.lct__story-description p { margin-bottom: 12px; }
.lct__story-description p:last-child { margin-bottom: 0; }

.lct__story-disclaimer {
    width: 100%;
    margin: 20px 0 0 0;
    padding: 0 10px;
    /* UI Properties */
    text-align: left;
    font: italic normal normal 12px/16px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
}

.lct__story-disclaimer a {
    /* UI Properties */
    text-align: left;
    text-decoration: underline;
    font: italic normal normal 12px/16px Lato;
    letter-spacing: 0px;
    color: #303C42 !important;
}

/* 5b. Story: Play button + Video modal */
.lct__story-video-link {
    display: block;
    text-decoration: none;
}

.lct__story-image-wrap {
    position: relative;
    overflow: hidden;
}

.lct__story-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    transform: translate(-50%, -50%);
    background-image: url('https://luxuryconciergetravel.com/wp-content/uploads/default-button.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    pointer-events: none;
    transition: opacity 0.2s ease-in-out;
}

.lct__story-video-link:hover .lct__story-play-button {
    opacity: 0.8;
}

.lct-video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 99999;
    align-items: center;
    justify-content: center;
}

.lct-video-modal.is-open {
    display: flex;
}

.lct-video-modal__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
}

.lct-video-modal__dialog {
    position: relative;
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.lct-video-modal__close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: #FFFFFF;
    font-size: 28px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: opacity 0.2s ease;
}
.lct-video-modal__close:hover {
    opacity: 0.7;
}

.lct-video-modal__inner {
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}

.lct-video-modal__aspect {
    position: relative;
    padding-top: 56.25%;
}

.lct-video-modal__aspect iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (min-width: 768px) {
    .lct__story {  }
    .lct__story-container {  }
    .lct__story-heading {  }
    .lct__story-disclaimer, .lct__story-heading, .lct__story-description {padding: 0;}
    .lct__story-heading {
        /* UI Properties */
        text-align: left;
        font: normal normal normal 30px/34px Prata;
        letter-spacing: 0px;
        color: #303C42;
        opacity: 1;
    }
}

@media (min-width: 1024px) {
    .lct__story {  }
    .lct__story-container { max-width: 1128px; grid-template-columns: 628px 1fr; gap: 45px; padding: 0 20px; }
    .lct__story-heading {  }
}


/* ──────────────────────────────────────────────
   6. A BETTER WAY TO REWARD
   ────────────────────────────────────────────── */
.lct__better {
    position: relative;
    background-color: var(--lct-teal);
    padding: 65px 0;
    overflow: hidden;
    background-size: 0px;
}

.lct__better-container {
    max-width: var(--lct-max-width);
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0px;
    align-items: center;
}

.lct__better-content {
    background-color: var(--lct-lighter-white);
    padding: 50px 30px 40px 30px;
}

.lct__better-headline {
    /* UI Properties */
    text-align: left;
    font: normal normal normal 30px/34px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0 0 20px 0;
    padding: 0;
}

.lct__better-description {
    /* UI Properties */
    text-align: left;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0;
    padding: 0;
}
.lct__better-description p {  }

.lct__better-changes-heading {
    font: normal normal 700 12px/18px Lato;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    color: var(--lct-teal);
    margin-bottom: 14px;
}

.lct__better-changes-list {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.lct__better-changes-item {
    text-align: left;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
}

.lct__better-image {
    position: relative;
    padding: 0 30px;
}

.lct__better-image:before {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    content: "";
    height: 40px;
    width: 100%;
    background-color: var(--lct-lighter-white);
    z-index: 1;
}

.lct__better-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 333;
    position: relative;
}

@media (min-width: 768px) {
    .lct__better { padding: 75px 0; }
    .lct__better {
        background-size: 249px auto;
        background-position: top right;
        background-repeat: no-repeat;
    }
    .lct__better-container { padding: 0 70px; }
    .lct__better-content {
        padding: 50px 60px 40px 60px;
        max-width: 628px;
        margin: 0 auto;
    }
    .lct__better-headline {
        text-align: left;
        font: normal normal normal 30px/34px Prata;
        letter-spacing: 0px;
        color: #303C42;
        opacity: 1;
        padding-right: 55px;
    }
    .lct__better-image {
        padding: 0 45px;
        max-width: 628px;
        margin: 0 auto;
    }
    .lct__better-image:before {
        height: 60px;
    }
}

@media (min-width: 1024px) {
    .lct__better-container {
        grid-template-columns: 628px 1fr;
        padding: 0 30px;
        margin: 0 auto;
        gap: 0;
        max-width: 1148px;
        overflow: hidden;
    }
    .lct__better-content {
        padding: 81px 136px 81px 60px;
    }
    .lct__better-image:before {
        display: none;
    }
    .lct__better-image {
        width: 536px;
        height: 340px;
        padding: 0;
        margin-left: -76px;
    }
    .lct__better-image img {
        width: 100%;
        height: 100%;
    }
}


/* ──────────────────────────────────────────────
   7. REWARD WITHOUT MORE WORK
   ────────────────────────────────────────────── */
.lct__reward {
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.lct__reward-video-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.lct__reward-video-bg iframe {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 600%;
    width: 600%;
    min-width: 100%;
    min-height: 100%;
    transform: translate(-50%, -50%);
    border: 0;
}

.lct__reward-video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(00, 00, 00, 0.25);
    z-index: 1;
}

.lct__reward-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__reward-headline {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 34px/38px Prata;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto 20px auto;
}

.lct__reward-description {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    max-width: 700px;
    margin: 0 auto 30px auto;
}

.lct__reward-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 348px;
    margin: 0 auto;
}

.lct__reward-step {
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 1px 20px #6775844D;
    border-radius: 5px;
    opacity: 1;
    min-height: 270px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px 30px;
    gap: 15px;
}

.lct__reward-step-icon { margin: 0; }
.lct__reward-step-icon img { width: 50%; height: auto; object-fit: contain; }

.lct__reward-step-heading {
    text-align: center;
    font: normal normal 600 16px/24px Lato;
    letter-spacing: 0.8px;
    color: #303C42;
    text-transform: uppercase;
    opacity: 1;
    margin: 0;
}

.lct__reward-step-description {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 16px/24px Lato;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0;
}

@media (min-width: 768px) {
    .lct__reward-headline {  }
    .lct__reward-video-bg iframe {
        height: 400%;
        width: 400%;
    }
}

@media (min-width: 1024px) {
    .lct__reward-video-bg iframe {
        height: 300%;
        width: 100%;
    }
    .lct__reward-description {
        margin: 0 auto 45px auto;
    }
    .lct__reward-headline {
        /* UI Properties */
        text-align: center;
        font: normal normal normal 40px/47px Prata;
        letter-spacing: 0px;
        color: #FFFFFF;
        opacity: 1;
    }
    .lct__reward-steps { grid-template-columns: repeat(3, 1fr); max-width: 1088px; }
}


/* ──────────────────────────────────────────────
   8. HOW SALES LEADERS USE LCT
   ────────────────────────────────────────────── */
.lct__use-cases {
    padding: 60px 0;
    background-color: var(--lct-off-white);
    text-align: center;
}

.lct__use-cases-container {
    max-width: var(--lct-max-width);
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
}

.lct__use-cases-headline {
    text-align: center;
    font: normal normal normal 34px/38px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    max-width: 650px;
    margin: 0 auto;
}

.lct__use-cases-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-top: 30px;
}

.lct__use-cases-card {
    background: none;
    border-radius: 0;
    padding: 0;
    box-shadow: none;
    min-width: unset;
    max-width: unset;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    z-index: 2;
}
.lct__use-cases-card:hover {
    box-shadow: none;
}

.lct__use-cases-card-icon {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    /* UI Properties */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    box-shadow: 0px 3px 20px #00000029;
    opacity: 1;
}
.lct__use-cases-card-icon img {
    width: 50%;
    height: auto;
    object-fit: contain;
}

.lct__use-cases-card:nth-child(1) .lct__use-cases-card-icon img { width: 55px; height: 59px; }
.lct__use-cases-card:nth-child(2) .lct__use-cases-card-icon img { width: 46px; height: 60px; }
.lct__use-cases-card:nth-child(3) .lct__use-cases-card-icon img { width: 54px; height: 54px; }

.lct__use-cases-card-label {
    /* UI Properties */
    text-align: center;
    font: normal normal 600 16px/24px Lato;
    letter-spacing: 0.8px;
    color: #303C42 !important;
    text-transform: uppercase;
    opacity: 1;
}
.lct__use-cases-card-label:hover { color: var(--lct-teal); }

@media (min-width: 768px) {
    .lct__use-cases-grid {
        display: flex;
        flex-direction: row;
        align-items: flex-start;
        position: relative;
        justify-content: space-between;
        max-width: 708px;
        margin: 30px auto 0 auto;
    }
    .lct__use-cases-grid::before {
        position: absolute;
        content: "";
        top: 60px;
        width: calc(100% - 96px);
        left: 48px;
        height: 0;
        border-top: 2px dashed #CED1D9;
        z-index: 1;
    }
    .lct__use-cases-headline {
        font: normal normal normal 40px/48px;
    }
    .lct__use-cases-card {
        width: 207px;
    }
}

@media (min-width: 1024px) {
    .lct__use-cases-grid { max-width: 880px; }
    .lct__use-cases-card {
        width: 234px;
    }
    .lct__use-cases-grid::before {
        width: calc(100% - 120px);
        left: 60px;
    }
}


/* ──────────────────────────────────────────────
   9. IMPACT STATS (image left, stats right)
   ────────────────────────────────────────────── */
.lct__stats {
    position: relative;
    background-color: var(--lct-teal);
    padding: 65px 0;
    overflow: hidden;
    background-size: 0px;
}

.lct__stats-inner {
    max-width: var(--lct-max-width);
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    align-items: center;
}

.lct__stats-image {
    position: relative;
    padding: 0 30px;
}

.lct__stats-image::after {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    content: "";
    height: 40px;
    width: 100%;
    background-color: var(--lct-lighter-white);
    z-index: 1;
}

.lct__stats-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
    z-index: 333;
    position: relative;
}

.lct__stats-content {
    background-color: var(--lct-lighter-white);
    padding: 50px 30px 40px 30px;
}

.lct__stats-headline {
    /* UI Properties */
    text-align: left;
    font: normal normal normal 30px/34px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin: 0 0 30px 0;
}

.lct__stats-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.lct__stats-item-number {
    display: block;
    text-align: left;
    font: normal normal normal 60px/65px Prata;
    letter-spacing: 0px;
    color: #303C42;
    opacity: 1;
    margin-bottom: 6px;
}

.lct__stats-item-label {
    display: block;
    text-align: left;
    font: normal normal 600 16px/20px Lato;
    letter-spacing: 0.8px;
    color: #303C42;
    text-transform: uppercase;
    opacity: 1;
}

@media (min-width: 768px) {
    .lct__stats { padding: 75px 0; }
    .lct__stats {
        background-size: 249px auto;
        background-position: top left;
        background-repeat: no-repeat;
    }
    .lct__stats-inner { padding: 0 70px; }
    .lct__stats-content {
        padding: 50px 60px 40px 60px;
        max-width: 628px;
        margin: 0 auto;
    }
    .lct__stats-image {
        padding: 0 45px;
        max-width: 628px;
        margin: 0 auto;
    }
    .lct__stats-image::after {
        height: 60px;
    }
}

@media (min-width: 1024px) {
    .lct__stats-inner {
        grid-template-columns: 1fr 628px;
        padding: 0 30px;
        margin: 0 auto;
        gap: 0;
        max-width: 1148px;
        overflow: hidden;
    }
    .lct__stats-image::after {
        display: none;
    }
    .lct__stats-image {
        width: 536px;
        height: 446px;
        padding: 0;
        margin-right: -76px;
    }
    .lct__stats-image img {
        width: 100%;
        height: 100%;
    }
    .lct__stats-content {
        padding: 62px 60px 62px 136px;
    }
    .lct__stats-headline { font: normal normal normal 35px/40px Prata; }
    .lct__stats-item-number {  }
}


/* ──────────────────────────────────────────────
   10. PRESIDENTS CLUB CTA
   ────────────────────────────────────────────── */
.lct__pclub {
    padding: 60px 0;
    background-color: #677584;
    text-align: center;
}

.lct__pclub-container {
    max-width: 800px;
    margin: 0 auto;
    padding-left: var(--lct-padding);
    padding-right: var(--lct-padding);
}

.lct__pclub-headline {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 34px/38px Prata;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: 20px;
}

.lct__pclub-description {
    /* UI Properties */
    text-align: center;
    font: normal normal normal 18px/24px Lato;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin-bottom: 28px;
}

.lct__pclub-cta {
    display: inline-block;
    /* UI Properties */
    background: #FFFFFF 0% 0% no-repeat padding-box;
    /* UI Properties */
    text-align: center;
    font: normal normal 600 14px/16px Lato;
    letter-spacing: 0.7px;
    color: #303C42 !important;
    text-transform: uppercase;
    text-decoration: none;
    padding: 17px 21px;
    border-radius: 5px;
    transition: background-color 0.25s ease;
    margin-bottom: 20px;
}
.lct__pclub-cta:hover { background-color: #8BCDD0; }

.lct__pclub-tagline {
    /* UI Properties */
    text-align: center;
    font: normal normal 600 18px/24px Lato;
    letter-spacing: 0px;
    color: #FFFFFF;
    opacity: 1;
    margin: 0;
}

@media (min-width: 1024px) {
    .lct__pclub { padding: 80px 0; }
    .lct__pclub-headline { font: normal normal normal 40px/47px Prata; }
}

.elementor-element-5cb712a {
    display: none !important;
}