.lp-testimonial-carousel {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 10px;
}


.lp-testimonial-item {
    flex: 0 0 280px;
}

.lp-video-portrait {
    position: relative;
    width: 100%;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
}

.lp-video-portrait::before {
    content: '';
    display: block;
    padding-top: 177.78%;
}

.lp-video-portrait iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 24px;
    object-fit: cover;
}

@media (max-width: 767px) {
    .lp-testimonial-item {
        flex: 0 0 220px;
    }
}

/* ============================================
   LANDING PAGE STYLES
   Modern, Bold, High-Converting Design
   ============================================ */

/* DISABLE PARALLAX TRANSFORMATIONS ON LANDING PAGE */
.lp-hero-section,
.lp-hero-overlay,
.lp-hero-section * {
    transform: none !important;
    transition: none !important;
}

/* Allow only intentional hover/click transitions on interactive elements */
.lp-hero-section .primary-btn,
.lp-hero-section button,
.lp-hero-section a {
    transition: all 0.3s ease !important;
}


/* ============================================
   UNIVERSAL SECTION TITLE/SUBTITLE CLASSES
   For individual customization of each section
   ============================================ */

/* Section Title (Top line - usually uppercase) */
.section-title-text {
    /* Color */
    color: inherit;

    /* Font properties */
    font-size: inherit;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    font-stretch: normal;

    /* Text layout */
    line-height: 1.2;
    letter-spacing: inherit;
    text-transform: inherit;

    /* Display */
    display: block;
}

/* Section Subtitle (Main heading - usually larger h2) */
.section-subtitle-text {
    /* Color */
    color: inherit;

    /* Font properties */
    font-size: inherit;
    font-style: normal;
    font-weight: 700;
    font-variant: normal;
    font-stretch: normal;

    /* Text layout */
    line-height: 1.2;
    letter-spacing: inherit;
    text-transform: inherit;

    /* Display */
    display: block;
    margin: 0;
}








/* ============================================
   SECTION TITLES - FORCE VISIBILITY
   ============================================ */

/* Override any animation classes that might hide titles */
.section-title,
.section-title span,
.section-title h2,
.js-enabled .section-title,
.js-enabled .section-title span,
.js-enabled .section-title h2,
.lp-overview-section .section-title,
.lp-video-section .section-title,
.lp-giveaway-section .section-title,
.lp-faq-section .section-title,
.lp-buynow-section .section-title,
.lp-overview-section .section-title span,
.lp-video-section .section-title span,
.lp-giveaway-section .section-title span,
.lp-faq-section .section-title span,
.lp-buynow-section .section-title span,
.lp-overview-section .section-title h2,
.lp-video-section .section-title h2,
.lp-giveaway-section .section-title h2,
.lp-faq-section .section-title h2,
.lp-buynow-section .section-title h2 {
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    display: block !important;
}

/* Base section title styles with high specificity */
section.lp-overview-section .section-title,
section.lp-video-section .section-title,
section.lp-giveaway-section .section-title,
section.lp-faq-section .section-title,
section.lp-buynow-section .section-title {
    text-align: center !important;
    margin-bottom: 30px !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}






/* Parallax animation keyframes */
@keyframes parallaxFloat {

    0%,
    100% {
        transform: translateX(0) translateY(0) rotate(0deg);
    }

    25% {
        transform: translateX(20px) translateY(-30px) rotate(5deg);
    }

    50% {
        transform: translateX(-10px) translateY(-20px) rotate(-3deg);
    }

    75% {
        transform: translateX(15px) translateY(-10px) rotate(2deg);
    }
}


@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   OVERVIEW SECTION
   ============================================ */

.lp-overview-section {
    background: #0a0a0a;
}

.lp-overview-description {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.lp-overview-description p {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
    color: #c4c4c4;
}

.lp-benefit-item {
    background: #151515;
    padding: 40px 30px;
    border-radius: 10px;
    text-align: center;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.lp-benefit-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(243, 97, 0, 0.1), transparent);
    transition: left 0.5s;
}

.lp-benefit-item:hover::before {
    left: 100%;
}

.lp-benefit-item:hover {
    transform: translateY(-10px);
    border-color: #f36100;
    box-shadow: 0 20px 40px rgba(243, 97, 0, 0.2);
}

.lp-benefit-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f36100, #ff8c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 36px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.lp-benefit-item:hover .lp-benefit-icon {
    transform: scale(1.1) rotate(360deg);
}

.lp-benefit-item h4 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.lp-benefit-item p {
    font-size: 16px;
    color: #a9a9a9;
    font-weight: 400;
    line-height: 1.6;
}

/* Equal height layout for Program Overview boxes - only apply to the benefits row */
.lp-overview-section .row.mt-5 {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
}

.lp-overview-section .row.mt-5>[class*='col-'] {
    display: flex;
}

.lp-overview-section .lp-benefit-item {
    /* fixed visual height so all boxes match */
    min-height: 380px;
    height: 100%;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

/* Stack title, subtitle, and description vertically in Program Overview */
.lp-overview-section .section-title {
    display: block !important;
    text-align: center;
    padding: 0;
    margin: 0 0 28px;
}



.lp-overview-section .section-title .section-title-text {
    margin-bottom: 10px;
}

.lp-overview-section .section-title .section-subtitle-text {
    margin-bottom: 18px;
}

.lp-overview-section .lp-overview-description {
    margin-top: 0;
}

.lp-overview-section .lp-overview-description p {
    margin: 0 auto;
}

/* ============================================
    VIDEO SECTION
    ============================================ */

.lp-main-video {
    margin-bottom: 60px;
}

.video-responsive {
    position: relative;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.video-responsive iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.lp-testimonial-item {
    background: #ffffff;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 30px;
    min-height: 0;
    /* allow aspect ratio to define height */
    width: 320px;
    /* fixed width for consistency */
    max-width: 320px;
    /* safeguard */
}

.lp-testimonial-item:hover {
    transform: translateY(-10px);
    border-color: #f36100;
    box-shadow: 0 15px 40px rgba(243, 97, 0, 0.2);
}

.lp-testimonial-video {
    margin-bottom: 0;
}

.lp-testimonial-info {
    /* Portrait 9:16 ratio => 16/9 = 1.777... => 177.78% height relative to width */
    padding-top: 177.78%;
}

.lp-testimonial-info h5 {
    font-size: 17px;
    color: #0a0a0a;
    margin-bottom: 8px;
    font-weight: 500;
}

.lp-testimonial-info span {
    font-size: 14px;
    color: #f36100;
    font-weight: 500;
}

/* ============================================
   GIVEAWAY SECTION
   ============================================ */

.lp-giveaway-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    position: relative;
    overflow: hidden;
}

.lp-giveaway-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 97, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-giveaway-image {
    position: relative;
    z-index: 2;
}

.lp-giveaway-image img {
    max-width: 100%;
    filter: drop-shadow(0 20px 40px rgba(243, 97, 0, 0.3));
    transition: transform 0.3s ease;
}

.lp-giveaway-image:hover img {
    transform: scale(1.05);
}

.lp-giveaway-content {
    position: relative;
    z-index: 2;
}

.lp-giveaway-content h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 600;
}

.lp-giveaway-content p {
    font-size: 16px;
    color: #c4c4c4;
    font-weight: 400;
    margin-bottom: 30px;
    line-height: 1.6;
}

.lp-email-form .input-group {
    display: flex;
    /* gap: 10px; */
    margin-bottom: 30px;
}

.lp-email-form input {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    border: 2px solid #363636;
    background: #151515;
    color: #ffffff;
    border-radius: 50px;
    transition: all 0.3s ease;
    height: 51px;
}

.lp-email-form input:focus {
    border-color: #f36100;
    box-shadow: 0 0 20px rgba(243, 97, 0, 0.2);
}

.lp-email-form button {
    padding: 15px 30px;
    border-radius: 0 50px 50px 0;
    white-space: nowrap;
    border: 0;
}

.lp-success-message {
    text-align: center;
    padding: 30px;
    background: linear-gradient(135deg, #28a745, #20c997);
    border-radius: 15px;
    margin-bottom: 30px;
}

.lp-success-message i {
    font-size: 48px;
    color: #ffffff;
    margin-bottom: 15px;
}

.lp-success-message p {
    font-size: 18px;
    color: #ffffff;
    margin: 0;
}

.lp-giveaway-features ul {
    list-style: none;
    padding: 0;
}

/* .lp-giveaway-features li {
    font-size: 16px;
    color: #c4c4c4;
    padding: 10px 0;
    border-bottom: 1px solid #252525;
} */

.lp-giveaway-features li:last-child {
    border-bottom: none;
}

.lp-giveaway-features li i {
    color: #f36100;
    margin-right: 15px;
    font-size: 18px;
}

/* ============================================
   FAQ SECTION
   ============================================ */



.lp-faq-accordion {
    /* background: #f36100; 
    border-radius: 15px;*/
    overflow: hidden;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(243, 97, 0, 0.15);
    animation: fadeInUp 0.8s ease-out;
}

.btnenrollnow {
    background: linear-gradient(90deg, rgb(176, 50, 18), rgb(176, 50, 18));
    border: none;
    border-radius: 999px;
    color: #fff !important;
    padding: 14px 32px;
    font-size: 17px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 6px 14px rgba(183, 116, 255, .3);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 200px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.btnenrollnow:before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(225, 225, 225, .45), rgba(225, 225, 225, 0) 40%);
    mix-blend-mode: screen;
    opacity: .55;
    -webkit-mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 30%, transparent 60%);
    mask-image: linear-gradient(90deg, rgba(255, 255, 255, 0.9) 30%), linear-gradient(90deg, transparent 60%);
    animation: sheen 2.8s ease-in-out infinite;
}

@keyframes sheen {
    0% {
        transform: translateX(-40%);
    }

    60% {
        transform: translateX(120%);
    }

    100% {
        transform: translateX(120%);
    }
}

/* Fade in animation for the accordion */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.lp-faq-item {
    background: #f36100;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    animation: slideInFromLeft 0.6s ease-out forwards;
    opacity: 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    cursor: pointer;
}

/* Staggered animation for FAQ items */
.lp-faq-item:nth-child(1) {
    animation-delay: 0.1s;
}

.lp-faq-item:nth-child(2) {
    animation-delay: 0.2s;
}

.lp-faq-item:nth-child(3) {
    animation-delay: 0.3s;
}

.lp-faq-item:nth-child(4) {
    animation-delay: 0.4s;
}

.lp-faq-item:nth-child(5) {
    animation-delay: 0.5s;
}

.lp-faq-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes slideInFromLeft {
    from {
        opacity: 0;
        transform: translateX(-100px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.lp-faq-item:last-child {
    margin-bottom: 0;
}

.lp-faq-item.active {
    background: #f36100;
    border-color: #f36100;
    box-shadow: 0 4px 16px rgba(243, 97, 0, 0.15);
    transform: translateY(-1px);
    transition: all 0.4s ease;
}

/* Hover effect */
.lp-faq-item:hover {
    border-color: #f36100;
    box-shadow: 0 4px 12px rgba(243, 97, 0, 0.12);
    transform: translateY(-2px);
}

.lp-faq-question {
    padding: 18px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    position: relative;
    background: transparent;
}

.lp-faq-question:hover {
    background: transparent;
}

.lp-faq-question h5 {
    font-size: 17px;
    color: #ffffff;
    margin: 0;
    font-weight: 500;
    flex: 1;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.3s ease;
    line-height: 1.4;
}

.lp-faq-question:hover h5 {
    color: #fff;
}

/* Plus/Minus icon styling */
.lp-faq-question i {
    color: #ffffff;
    font-size: 18px;
    transition: all 0.4s ease;
    opacity: 1 !important;
    visibility: visible !important;
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border-radius: 0;
    padding: 0;
    font-weight: bold;
}

/* Smooth icon transition */
.lp-faq-question i {
    transform: scale(1);
}

.lp-faq-question:hover i {
    transform: scale(1.1);
    color: #ffffff;
}

.lp-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0 25px;
    background: transparent;
    position: relative;
    border-top: 1px solid rgba(224, 224, 224, 0);
    opacity: 0;
}

.lp-faq-item.active .lp-faq-answer {
    max-height: 500px;
    padding: 20px 25px 25px 25px;
    border-top-color: rgba(224, 224, 224, 0.5);
    opacity: 1;
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Smooth expand animation for answer content */
@keyframes expandAnswer {
    0% {
        opacity: 0;
        transform: translateY(-15px);
    }

    50% {
        opacity: 0.5;
        transform: translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Enhanced text animation */
.lp-faq-answer p {
    font-size: 16px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.6;
    margin: 0;
    padding-top: 0;
    opacity: 1 !important;
    visibility: visible !important;
    transition: all 0.6s ease 0.2s;
    transform: translateY(0);
}

/* Text slides in when FAQ opens */
.lp-faq-item.active .lp-faq-answer p {
    animation: expandAnswer 0.8s ease-out 0.2s both;
    visibility: visible !important;
    transition: all 0.3s ease;
}

/* Animate answer text when FAQ is opened */
.lp-faq-item.active .lp-faq-answer p {
    transform: translateY(0);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* ============================================
   SCHEDULE ROW ANIMATIONS
   ============================================ */

/* Base schedule-row animation class */
.schedule-row {
    opacity: 0;
    transform: translateX(-100px);
    animation: scheduleSlideIn 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
    position: relative;
    overflow: hidden;
}

/* Staggered animation delays for multiple rows */
.schedule-row:nth-child(1) {
    animation-delay: 0.1s;
}

.schedule-row:nth-child(2) {
    animation-delay: 0.2s;
}

.schedule-row:nth-child(3) {
    animation-delay: 0.3s;
}

.schedule-row:nth-child(4) {
    animation-delay: 0.4s;
}

.schedule-row:nth-child(5) {
    animation-delay: 0.5s;
}

.schedule-row:nth-child(6) {
    animation-delay: 0.6s;
}

.schedule-row:nth-child(7) {
    animation-delay: 0.7s;
}

.schedule-row:nth-child(8) {
    animation-delay: 0.8s;
}

/* Main slide-in animation */
@keyframes scheduleSlideIn {
    0% {
        opacity: 0;
        transform: translateX(-100px) rotateY(-15deg);
    }

    60% {
        opacity: 0.8;
        transform: translateX(20px) rotateY(5deg);
    }

    100% {
        opacity: 1;
        transform: translateX(0) rotateY(0deg);
    }
}

/* Hover effect for schedule rows */
.schedule-row:hover {
    transform: translateX(10px) scale(1.02);
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(243, 97, 0, 0.15);
    z-index: 2;
}

/* Pulse animation for active/highlighted schedule rows */
.schedule-row.active {
    animation: schedulePulse 2s infinite;
}

@keyframes schedulePulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(243, 97, 0, 0.4);
        transform: scale(1);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(243, 97, 0, 0);
        transform: scale(1.05);
    }
}

/* Wave animation for sequential schedule items */
.schedule-row.wave {
    animation: scheduleWave 1.5s ease-in-out infinite;
}

.schedule-row.wave:nth-child(1) {
    animation-delay: 0s;
}

.schedule-row.wave:nth-child(2) {
    animation-delay: 0.1s;
}

.schedule-row.wave:nth-child(3) {
    animation-delay: 0.2s;
}

.schedule-row.wave:nth-child(4) {
    animation-delay: 0.3s;
}

.schedule-row.wave:nth-child(5) {
    animation-delay: 0.4s;
}

@keyframes scheduleWave {

    0%,
    100% {
        transform: translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateY(-10px);
        opacity: 0.8;
    }
}

/* Fade in from different directions */
.schedule-row.fade-in-left {
    opacity: 0;
    transform: translateX(-50px);
    animation: fadeInLeft 0.6s ease-out forwards;
}

.schedule-row.fade-in-right {
    opacity: 0;
    transform: translateX(50px);
    animation: fadeInRight 0.6s ease-out forwards;
}

.schedule-row.fade-in-up {
    opacity: 0;
    transform: translateY(50px);
    animation: fadeInUp 0.6s ease-out forwards;
}

.schedule-row.fade-in-down {
    opacity: 0;
    transform: translateY(-50px);
    animation: fadeInDown 0.6s ease-out forwards;
}

@keyframes fadeInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Typing animation effect for schedule text */
.schedule-row.typing {
    overflow: hidden;
    white-space: nowrap;
    border-right: 2px solid #f36100;
    animation: typing 3s steps(30, end), blink 0.5s step-end infinite alternate;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink {
    50% {
        border-color: transparent;
    }
}

/* Bounce animation for important schedule items */
.schedule-row.bounce {
    animation: scheduleBounce 1s ease-in-out;
}

@keyframes scheduleBounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

/* Apply schedule-row animations to FAQ items */
.lp-faq-item.schedule-row {
    border-radius: 8px;
    margin-bottom: 10px;
    background: linear-gradient(135deg, #f36100 0%, #ff8c3a 100%);
}

.lp-faq-item.schedule-row:hover {
    background: linear-gradient(135deg, #ff8c3a 0%, #f36100 100%);
}

/* ============================================
   BUY NOW SECTION
   ============================================ */

.lp-buynow-section {
    background: rgb(243, 97, 0);
    position: relative;
    overflow: hidden;
}

.lp-buynow-section::before {
    display: none;
}

.lp-buynow-section .container {
    position: relative;
    z-index: 1;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.lp-buynow-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    visibility: visible !important;
    opacity: 1 !important;
    align-items: stretch !important;
}

.lp-buynow-section .section-title span {
    color: #f36100 !important;
}



.lp-pricing-card {
    background: #ffffff !important;
    border-radius: 20px;
    padding: 32px 24px;
    /* reduced padding to help shrink height */
    position: relative;
    border: 3px solid #e0e0e0;
    transition: all 0.3s ease;
    margin-bottom: 30px;
    overflow: hidden;
    height: 100%;
    min-height: 70px;
    /* reduced by additional 30px from 100px */
    display: flex !important;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 10;
}

/* Desktop widening: expand card by 70px with matching row gap to avoid overlap */
@media (min-width: 992px) {
    .lp-buynow-section .row {
        gap: 70px;
    }

    .lp-buynow-section .lp-pricing-card {
        width: calc(100% + 70px);
        margin-left: -35px;
        margin-right: -35px;
    }
}

@media (max-width: 991.98px) {
    .lp-overview-section .lp-benefit-item {
        min-height: 340px;
    }

    section.lp-overview-section .section-title,
    section.lp-video-section .section-title,
    section.lp-giveaway-section .section-title,
    section.lp-faq-section .section-title,
    section.lp-buynow-section .section-title {
        margin-bottom: 20px !important;
    }

    .input-group>.custom-select:not(:last-child),
    .input-group>.form-control:not(:last-child),
    .lp-email-form button {
        border-radius: 50px;
    }
}

.lp-pricing-card::before {
    display: none;
}

.lp-pricing-card:hover::before {
    left: 100%;
}

.lp-pricing-card:hover {
    transform: translateY(-10px);
    border-color: #f36100;
    box-shadow: 0 20px 60px rgba(243, 97, 0, 0.2);
}

.lp-pricing-featured {
    border-color: #f36100;
    border-width: 4px;
    box-shadow: 0 20px 50px rgba(243, 97, 0, 0.15);
    background: linear-gradient(135deg, #fff9f5 0%, #ffffff 100%);
}

.lp-pricing-featured:hover {
    box-shadow: 0 25px 70px rgba(243, 97, 0, 0.25);
}

.lp-pricing-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #f36100, #ff8c3a);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(243, 97, 0, 0.3);
}

.lp-badge-premium {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: pulse 2s infinite;
    box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 5px 20px rgba(255, 215, 0, 0.4);
    }

    50% {
        transform: scale(1.05);
        box-shadow: 0 8px 30px rgba(255, 215, 0, 0.6);
    }
}

.lp-pricing-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 5;
    padding: 10px 0;
}

.lp-pricing-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #f36100, #ff8c3a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 32px;
    color: #ffffff;
    border: none;
    box-shadow: 0 5px 15px rgba(243, 97, 0, 0.3);
    transition: all 0.3s ease;
    z-index: 10;
    position: relative;
}

.lp-pricing-featured .lp-pricing-icon {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    box-shadow: 0 5px 15px rgba(255, 215, 0, 0.4);
}

.lp-pricing-card:hover .lp-pricing-icon {
    transform: scale(1.1) rotate(360deg);
}

.lp-pricing-header h3 {
    font-size: 24px;
    color: #0a0a0a;
    margin-bottom: 10px;
    font-weight: 600;
    z-index: 10;
    position: relative;
}

.lp-pricing-header p {
    font-size: 14px;
    color: #666666;
    margin: 0;
    z-index: 10;
    position: relative;
}

.lp-pricing-price {
    text-align: center;
    margin-bottom: 25px;
    padding: 20px 0;
    position: relative;
    z-index: 5;
}

.lp-pricing-price h2 {
    font-size: 28px;
    color: #f36100;
    margin-bottom: 5px;
    font-weight: 700;
    z-index: 10;
    position: relative;
}

.lp-pricing-featured .lp-pricing-price h2 {
    background: linear-gradient(135deg, #f36100, #FFD700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-pricing-price span {
    font-size: 14px;
    color: #999999;
    padding: 32px 24px;
    /* reduced padding to shrink overall height */
    letter-spacing: 1px;
    font-weight: 600;
}

.lp-pricing-features {
    margin-bottom: 25px;
    min-height: 220px;
    /* further reduced */
    z-index: 5;
    flex-grow: 1;
    padding: 0 10px;
}

.lp-pricing-features ul {
    list-style: none;

    align-items: center;
    font-weight: 500;
    border-bottom: none;
}

.lp-pricing-features li:last-child {
    border-bottom: none;
}

.lp-pricing-features li i {
    color: #f36100;
    margin-right: 15px;
    font-size: 18px;
    min-width: 20px;
}

.lp-pricing-btn {
    width: 100%;
    padding: 15px 20px;
    font-size: 16px;
    border-radius: 25px;
    position: relative;
    z-index: 10;
    overflow: hidden;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: var(--brand-secondary, #FFE5DC);
    border: none;
    color: var(--text-dark, #1A1A1A);
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: auto;
}

.lp-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 122, 89, 0.4);
    background: var(--brand-primary, #FF7A59);
    color: var(--text-white, #ffffff);
}

.glow-btn {
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 5px 25px rgba(243, 97, 0, 0.4);
    }

    to {
        box-shadow: 0 5px 40px rgba(243, 97, 0, 0.7);
    }
}

.premium-glow {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    animation: premiumGlow 2s infinite alternate;
}

@keyframes premiumGlow {
    from {
        box-shadow: 0 5px 25px rgba(255, 215, 0, 0.4);
    }

    to {
        box-shadow: 0 5px 40px rgba(255, 215, 0, 0.7);
    }
}

.lp-guarantee-badge {
    background: #f8f8f8;
    border-radius: 15px;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    gap: 25px;
    border: 2px solid #e0e0e0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.lp-guarantee-badge i {
    font-size: 56px;
    color: #28a745;
    min-width: 60px;
}

.lp-guarantee-text h5 {
    font-size: 17px;
    color: #0a0a0a;
    margin-bottom: 10px;
    font-weight: 500;
}

.lp-guarantee-text p {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   CLOSING SECTION
   ============================================ */

.lp-closing-section {
    background: rgb(243, 97, 0);
    padding: 70px 0;
    position: relative;
    overflow: hidden;
}

.lp-closing-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 97, 0, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.lp-closing-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.lp-quote-icon {
    font-size: 60px;
    color: #f36100;
    margin-bottom: 30px;
    opacity: 0.5;
}

.lp-closing-quote {
    font-size: 24px;
    color: #000;
    font-weight: 400;
    line-height: 1.6;
    margin-bottom: 30px;
    font-style: italic;
}

.lp-closing-author {
    font-size: 18px;
    color: #f36100;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

/* Equal height cards in Buy Now section */
.lp-buynow-section .row {
    display: flex !important;
    flex-wrap: wrap !important;
    align-items: stretch !important;
}

.lp-buynow-section .row>[class*='col-'] {
    display: flex !important;
    flex-direction: column !important;
}

@media (max-width: 991px) {
    .lp-hero-headline {
        font-size: 36px;
    }

    .lp-hero-subheadline {
        font-size: 16px;
    }

    .lp-pricing-card {
        margin-bottom: 30px;
    }
}

/* Ultra-wide screens: 2560x1600 and above */
@media (min-width: 1920px) {

    /* Prevent any accidental horizontal scroll on ultra-wide displays */
    html,
    body {
        overflow-x: hidden;
    }

    .lp-buynow-section {
        overflow-x: hidden;
    }

    /* Slightly compact the pricing cards to reduce height */
    .lp-pricing-card {
        padding: 28px 22px;
        /* slightly more compact on ultra-wide */
        min-height: 70px;
        /* keep consistent reduced min-height */
        box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    }

    .lp-pricing-price h2 {
        font-size: 28px;
    }

    .lp-pricing-header h3 {
        font-size: 24px;
    }

    .lp-pricing-header p {
        font-size: 13px;
    }
}

@media (max-width: 767px) {
    .lp-hero-headline {
        font-size: 36px;
    }

    .lp-hero-subheadline {
        font-size: 16px;
    }

    .lp-hero-cta {
        font-size: 16px;
        padding: 15px 35px;
    }

    .lp-benefit-item {
        padding: 30px 20px;
        margin-bottom: 25px;
    }

    .lp-email-form .input-group {
        flex-direction: column;
        gap: 10px;
    }

    .lp-email-form button {
        width: 100%;
    }

    .lp-guarantee-badge {
        flex-direction: column;
        text-align: center;
    }

    .lp-closing-quote {
        font-size: 24px;
    }

    .lp-pricing-price h2 {
        font-size: 28px;
    }
}

/* ============================================
   TESTIMONIALS SECTION WITH OWL CAROUSEL
   ============================================ */

/* (removed duplicate testimonials-section block defined later with nav and container overrides) */

/* Owl Carousel Testimonials Styling */
/* Owl Carousel Testimonials Styling */
.testimonials-carousel {
    position: relative;
    overflow: hidden;
}

/* Enhanced testimonial item with smooth transitions */
.testimonial-item {
    background: var(--brand-secondary, #FFE5DC);
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 16px;
    min-height: 0;
    /* allow aspect ratio to define height */
    max-width: 320px;
    /* narrower cards on desktop */
    text-align: center;
    margin: 15px auto;
    /* center within owl item */
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid #f5f5f5;
    transform: scale(1);
    opacity: 1;
}

@media (max-width: 767px) {
    .testimonial-item {
        padding: 28px;
        min-height: 0;
        /* Fill viewport nicely while keeping margins and avoiding cut offs */
        width: min(340px, calc(100vw - 40px));
        max-width: min(340px, calc(100vw - 40px));
        margin-bottom: 15px;
    }

    /* Center the single item inside each owl slide */
    .testimonials-carousel .owl-item {
        display: flex;
        justify-content: center;
        padding-bottom: 15px;
    }

    /* Allow full card (shadows, rounded corners) to be visible */
    .testimonials-carousel .owl-stage-outer {
        overflow: visible;
        padding-bottom: 20px;
    }
}

/* Enhanced hover effects */
.testimonial-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(243, 97, 0, 0.15);
    border-color: #f36100;
}

/* Owl carousel stage animations - Enhanced for slow and smooth movement */
.testimonials-carousel .owl-stage {
    transition: transform 1.2s linear !important;
    backface-visibility: hidden;
    perspective: 1000px;
    will-change: transform;
    -webkit-overflow-scrolling: touch;
}

/* Ensure smooth infinite looping without jumps */
.testimonials-carousel .owl-stage-outer {
    overflow: hidden;
    position: relative;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 10px;
}

/* Smooth transition when looping */
.testimonials-carousel .owl-item {
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 1s ease-out;
}

/* Enhanced smooth dragging - only disable transition during active drag */
.testimonials-carousel.owl-drag .owl-stage {
    transition: none !important;
}

.testimonials-carousel.owl-grab .owl-stage {
    transition: none !important;
}

/* Smooth item scaling during transitions */
.testimonials-carousel .owl-item .testimonial-item {
    transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Active item enhancement for mobile swipe */
.testimonials-carousel .owl-item.active .testimonial-item {
    animation: slideInPop 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Slide-in pop animation */
@keyframes slideInPop {
    0% {
        opacity: 0;
        transform: scale(0.8) translateY(30px);
    }

    60% {
        opacity: 1;
        transform: scale(1.05) translateY(-5px);
    }

    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

/* Mobile swipe transition effects */
@media (max-width: 767px) {
    .testimonials-carousel .owl-stage {
        transition: transform 1s linear !important;
        backface-visibility: hidden;
        will-change: transform;
        -webkit-overflow-scrolling: touch;
    }

    /* Disable transition during drag for smoother interaction */
    .testimonials-carousel.owl-drag .owl-stage,
    .testimonials-carousel.owl-grab .owl-stage {
        transition: none !important;
    }

    /* Enhanced active item for mobile */
    .testimonials-carousel .owl-item.active .testimonial-item {
        transform: scale(1);
        opacity: 1;
        animation: mobileSlideIn 1s cubic-bezier(0.25, 0.1, 0.25, 1);
    }

    /* Non-active items fade slightly */
    .testimonials-carousel .owl-item:not(.active) .testimonial-item {
        opacity: 0.7;
        transform: scale(0.95);
        transition: all 0.4s cubic-bezier(0.25, 0.1, 0.25, 1);
    }
}

/* Mobile slide-in animation */
@keyframes mobileSlideIn {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }

    50% {
        opacity: 0.8;
        transform: translateX(0) scale(1.02);
    }

    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

/* Swipe hint with pulse animation */
.testimonials-carousel .swipe-hint {
    animation: pulseHint 2s infinite;
}

@keyframes pulseHint {

    0%,
    100% {
        opacity: 0.6;
        transform: scale(1);
    }

    50% {
        opacity: 1;
        transform: scale(1.05);
    }
}

.testimonial-video {
    margin-bottom: 25px;
    position: relative;
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    /* Reduced aspect ratio height to make cards smaller */
    padding-top: 140%;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.testimonial-video iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 18px;
    transition: transform 0.3s ease;
    object-fit: cover;
}

/* Ensure uniform content heights across cards */
.testimonial-content {
    min-height: 72px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.testimonial-content h3 {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.testimonial-content p {
    line-height: 1.4;
    line-clamp: 2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 44px;
}

.testimonial-item:hover .testimonial-video iframe {
    transform: scale(1.02);
}

.testimonial-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 12px 0 6px;
    color: #2c2c2c;
    font-family: 'Montserrat', sans-serif;
}

.testimonial-content p {
    font-size: 15px;
    color: #b03212;
    margin: 0;
    font-weight: 500;
    font-style: italic;
    letter-spacing: 0;
}

/* Owl Carousel Navigation - Desktop (Side positioning) */
.testimonials-section {
    background: #ffe5dc !important;
    position: relative;
    width: 100%;
    border-radius: 0;
    margin: 0;
    max-width: none;
    box-shadow: none;
    overflow: hidden;
}

.testimonials-section .container {
    background: transparent !important;
}

/* Swiper Carousel Styles - DESKTOP */
.testimonials-swiper {
    position: relative;
    overflow: visible;
    padding: 0 0 60px 0;
    width: 100%;
}

.testimonials-swiper .swiper-wrapper {
    padding-bottom: 20px;
}

.testimonials-swiper .swiper-slide {
    height: auto;
    display: flex;
    justify-content: center;
    width: 100%;
}

.testimonials-swiper .testimonial-item {
    width: 100%;
}

.testimonials-swiper .swiper-button-prev,
.testimonials-swiper .swiper-button-next {
    width: 50px;
    height: 50px;
    background: #fff !important;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(243, 97, 0, 0.3);
    transition: all 0.3s ease;
    color: #f36100 !important;
    z-index: 100 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    top: 40% !important;
    transform: translateY(-50%);
}

.testimonials-swiper .swiper-button-prev:after,
.testimonials-swiper .swiper-button-next:after {
    font-size: 20px;
    font-weight: bold;
    color: #f36100;
}

.testimonials-swiper .swiper-button-prev {
    left: -60px !important;
}

.testimonials-swiper .swiper-button-next {
    right: -60px !important;
}

.testimonials-swiper .swiper-button-prev:hover,
.testimonials-swiper .swiper-button-next:hover {
    background: #333 !important;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.testimonials-swiper .swiper-button-prev:hover:after,
.testimonials-swiper .swiper-button-next:hover:after {
    color: #fff;
}

.testimonials-swiper .swiper-button-disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.testimonials-swiper .swiper-pagination {
    position: relative !important;
    bottom: auto !important;
    margin-top: 0px;
    display: block !important;
}


/* Old Owl Carousel Styles - Kept for backwards compatibility */
.testimonials-carousel {
    position: relative;
    overflow: visible;
    /* Ensure buttons are not clipped */
}

.testimonials-carousel .owl-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    height: 0;
    pointer-events: none;
    display: block;
}

.testimonials-carousel .owl-nav button {
    width: 50px;
    height: 50px;
    background: #fff !important;
    color: #fff;
    border: none;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
    outline: none;
    position: absolute;
    pointer-events: all;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(243, 97, 0, 0.3);
}

.testimonials-carousel .owl-nav button:hover {
    background: #333;
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(51, 51, 51, 0.4);
}

.testimonials-carousel .owl-nav button.owl-prev {
    left: -70px;
    /* Position outside the carousel but within the padded container */
}

.testimonials-carousel .owl-nav button.owl-next.testimonials-section {
    right: -70px;
    /* Position outside the carousel but within the padded container */
}

/* Owl Carousel Dots - Desktop */
.testimonials-carousel .owl-dots {
    text-align: center;
    margin-top: 30px;
    display: block;
}

.testimonials-carousel .owl-dot {
    width: 12px;
    height: 12px;
    background: #ddd;
    border-radius: 50%;
    margin: 0 5px;
    transition: all 0.3s ease;
    border: none;
    outline: none;
    display: inline-block;
}

.testimonials-carousel .owl-dot.active {
    background: #f36100;
    transform: scale(1.2);
}

/* .testimonials-carousel .owl-dot:hover {
    background: #f36100;
} */

.testimonials-swiper .swiper-pagination-bullet {
        background: rgba(255, 122, 89, 0.35) !important;
    width: 12px !important;
    height: 12px !important;
    display: inline-block !important;
    border-radius: 50% !important;
    border: 2px solid rgba(255, 122, 89, 0.5) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.6), 0 2px 6px rgba(255, 122, 89, 0.25) !important;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
    opacity: 1;
    }

    .testimonials-swiper .swiper-pagination-bullet-active {
            background: var(--brand-primary) !important;
    transform: scale(1.35) !important;
    transform-origin: center !important;
    border-color: var(--brand-primary) !important;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.9), 0 3px 10px rgba(255, 122, 89, 0.4) !important;
    }

/* Desktop and larger screens - Navigation arrows on sides */
@media (min-width: 992px) {
    .testimonials-section {
        padding: 0 80px;
        /* Add padding to make room for side buttons */
    }

    .testimonials-carousel {
        overflow: visible;
        /* Ensure buttons are not clipped */
    }

    .testimonials-carousel .owl-nav {
        display: block !important;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        width: 100%;
        height: 0;
        pointer-events: none;
    }

    .testimonials-carousel .owl-nav button {
        position: absolute;
        pointer-events: all;
        z-index: 10;
    }

    .testimonials-carousel .owl-nav button.owl-prev {
        left: -70px;
        /* Position outside the carousel but within the padded container */
    }

    .testimonials-carousel .owl-nav button.owl-next {
        right: -70px;
        /* Position outside the carousel but within the padded container */
    }
}

/* Mobile and tablet - Navigation arrows at bottom */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 0 20px;
    }

    /* Swiper mobile adjustments */
    .testimonials-swiper {
        padding: 0 20px 50px 20px;
        overflow: visible !important;
    }

    .testimonials-swiper .swiper-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .testimonials-swiper .testimonial-item {
        max-width: 100%;
        width: 100%;
        margin: 0 auto;
    }

    /* Hide navigation arrows on mobile */
    .testimonials-swiper .swiper-button-prev,
    .testimonials-swiper .swiper-button-next {
        display: none !important;
    }

    .testimonials-swiper .swiper-pagination {
        position: relative !important;
        bottom: auto !important;
        margin-top: 25px;
    }

    /* Old Owl Carousel mobile styles */
    .testimonials-carousel {
        overflow: visible;
    }

    .testimonials-carousel .owl-nav {
        position: static;
        margin-top: 30px;
        text-align: center;
        transform: none;
        width: auto;
        height: auto;
        pointer-events: all;
    }

    .testimonials-carousel .owl-nav button {
        position: static;
        display: inline-block;
        margin: 0 10px;
        z-index: auto;
    }

    .testimonials-carousel .owl-nav button.owl-prev,
    .testimonials-carousel .owl-nav button.owl-next {
        left: auto;
        right: auto;
    }

    .lp-giveaway-content h3 {
        margin-top: 20px;
    }
}

.testimonials-carousel .owl-nav button {
    display: inline-block !important;
}

/* Enable dots for all devices */
.testimonials-carousel .owl-dots {
    display: block !important;
    text-align: center;
    margin-top: 30px;
    padding: 10px 0;
}

.testimonials-carousel .owl-dot {
    display: inline-block !important;
    width: 10px;
    height: 10px;
    background: rgba(255, 122, 89, 0.5);
    border: 2px solid rgba(255, 122, 89, 0.3);
    border-radius: 50%;
    margin: 0 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    outline: none;
    cursor: pointer;
}

/* .testimonials-carousel .owl-dot.active {
    background: var(--brand-primary, #FF7A59);
    transform: scale(1.3);
    box-shadow: 0 2px 8px rgba(255, 122, 89, 0.4);
} */

/* .testimonials-carousel .owl-dot:hover {
    background: var(--brand-primary, #FF7A59);
    transform: scale(1.15);
} */

/* Mobile responsive styles for testimonials carousel */
@media (max-width: 991px) {
    .testimonials-section {
        padding: 60px 20px;
    }

    .testimonials-section .section-title {
        margin-bottom: 40px;
    }

    .testimonials-section .section-title h2 {
        font-size: 28px;
    }

    .testimonial-item {
        margin: 0 10px;
        padding: 25px 20px;
    }

    .testimonials-carousel .owl-nav {
        margin-top: 40px;
    }

    .testimonials-carousel .owl-nav button {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .testimonials-section {
        padding: 40px 15px;
    }

    .testimonials-section .section-title {
        margin-bottom: 20px;
    }

    .testimonials-section .section-title h2 {
        font-size: 28px;
    }

    .testimonial-item {
        margin: 0 5px;
        padding: 15px 15px 0;
    }

    .testimonial-content h3 {
        font-size: 18px;
    }

    .testimonial-content p {
        font-size: 15px;
        font-weight: 500;
    }

    /* Hide navigation on mobile but show dots */
    .testimonials-carousel .owl-nav {
        display: none !important;
    }

    .testimonials-carousel .owl-dots {
        display: block !important;
        margin-top: 0;
    }

    .testimonials-section {
        background-color: #FFE5DC !important;
        position: relative;
        width: 100%;
        border-radius: 0;
        margin: 0;
        max-width: none;
        box-shadow: none;
        overflow: hidden;
    }

    /* Utility: fullscreen centered layout for loading/error states on landing page */
    .lp-fullscreen-center {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
    }
}
    @media screen and (max-width: 991px) {

        .lp-overview-description,
        .lp-overview-section .section-title {
            margin: 0 auto 20px;
        }
    }

    @media (max-width: 767.98px) {
        .lp-overview-section .lp-benefit-item {
            min-height: 250px;
            margin-bottom: 40px !important;
        }

        /* Add spacing to columns containing benefit items */
        .lp-overview-section .row.mt-5>[class*='col-'] {
            margin-bottom: 20px;
            padding-bottom: 0;
        }

        /* Last column should not have extra margin */
        .lp-overview-section .row.mt-5>[class*='col-']:last-child {
            margin-bottom: 0;
        }

        .testimonial-video {
            padding-top: 120%;
            margin-bottom: 10px;
        }
    }