/**
 * Landing Page - Design Moderne et Épuré
 * Nouveau design clean et professionnel
 */

/* ============================================
   VARIABLES & BASE
   ============================================ */
:root {
    --lp-primary: #667eea;
    --lp-primary-dark: #5568d3;
    --lp-primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --lp-success: #28c76f;
    --lp-warning: #ff9f43;
    --lp-danger: #ea5455;
}

body.account-page {
    background: #ffffff;
    overflow-x: hidden;
    font-family: "Inter", sans-serif;
}

.account-content {
    padding: 0;
    min-height: 100vh;
}

.landing-page-wrapper {
    width: 100%;
    overflow-x: hidden;
}

/* Assure que les conteneurs dans les sections prennent toute la largeur */
.lp-hero-section > .container,
.lp-features-section > .container,
.lp-why-section > .container,
.lp-stats-section > .container,
.lp-cta-section > .container {
    width: 100%;
}

/* Toggle Button Custom Style */
#toggle_btn {
    background: #28c76f !important;
}

/* ============================================
   NAVBAR - Modern & Clean
   ============================================ */
.lp-navbar {
    background: #ffffff;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.lp-navbar.scrolled {
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.lp-navbar-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 0;
}

.lp-navbar-brand {
    display: flex;
    align-items: center;
    text-decoration: none;
    gap: 10px;
}

.lp-navbar-logo {
    height: 36px;
    width: auto;
}

.lp-brand-name {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a202c;
    letter-spacing: -0.02em;
}

.lp-navbar-toggler {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 36px;
    height: 36px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
}

.lp-toggler-icon {
    width: 20px;
    height: 2px;
    background: #1a202c;
    margin: 2.5px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.lp-navbar-toggler.active .lp-toggler-icon:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.lp-navbar-toggler.active .lp-toggler-icon:nth-child(2) {
    opacity: 0;
}

.lp-navbar-toggler.active .lp-toggler-icon:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.lp-navbar-menu {
    display: flex;
    align-items: center;
}

.lp-navbar-nav {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 4px;
}

.lp-nav-item {
    margin: 0;
}

.lp-nav-link {
    display: block;
    padding: 8px 16px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: all 0.2s ease;
    border-radius: 8px;
}

.lp-nav-link:hover {
    color: #309d58;
    background: rgba(48, 157, 88, 0.08);
}

.lp-nav-link-btn {
    background: #309d58;
    color: #fff !important;
    padding: 8px 20px;
    border-radius: 8px;
    font-weight: 600;
    margin-left: 8px;
}

.lp-nav-link-btn:hover {
    background: #27844a;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(48, 157, 88, 0.25);
}

/* ============================================
   HERO SECTION - Modern Design
   ============================================ */
.lp-hero-section {
    background: linear-gradient(135deg, #309d58 0%, #27844a 100%);
    padding: 140px 0 120px;
    position: relative;
    overflow: hidden;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Decorative Elements */
.lp-hero-decoration {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    z-index: 1;
}

.lp-hero-decoration-1 {
    width: 400px;
    height: 400px;
    top: -150px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.lp-hero-decoration-2 {
    width: 300px;
    height: 300px;
    bottom: -100px;
    left: -80px;
    animation: float 10s ease-in-out infinite reverse;
}

.lp-hero-decoration-3 {
    width: 200px;
    height: 200px;
    top: 50%;
    right: 10%;
    animation: float 12s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-30px);
    }
}

.lp-hero-content {
    position: relative;
    z-index: 2;
}

.lp-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.18);
    color: #fff;
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 28px;
    border: 1px solid rgba(255, 255, 255, 0.25);
}

.lp-hero-title {
    font-size: 3rem;
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.lp-text-gradient {
    color: #fff;
    position: relative;
    display: inline-block;
    text-shadow: 0 2px 20px rgba(255, 255, 255, 0.3);
}

.lp-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.92);
    line-height: 1.6;
    margin-bottom: 36px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.lp-hero-actions {
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.lp-hero-actions .btn {
    transition: all 0.3s ease;
    font-weight: 600;
    padding: 15px 36px;
    border-radius: 10px;
    font-size: 1rem;
}

.lp-hero-actions .btn:hover {
    transform: translateY(-3px);
}

.lp-hero-actions .btn-primary {
    background: #309d58;
    color: #fff;
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
}

.lp-hero-actions .btn-primary:hover {
    background: #27844a;
    color: #fff;
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(-3px) scale(1.02);
}

.lp-hero-actions .btn-outline-primary {
    border: 2px solid #fff !important;
    color: #fff !important;
    background: rgba(255, 255, 255, 0.1);
}

.lp-hero-actions .btn-outline-primary:hover {
    background: #fff;
    color: #309d58;
    border-color: #fff;
}

/* Hero Features - New Design */
.lp-hero-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
    margin-top: 48px;
}

.lp-hero-feature-item {
    display: flex;
    align-items: center;
    color: #fff;
    font-size: 0.9375rem;
    font-weight: 500;
    gap: 10px;
}

.lp-hero-feature-item i {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
}

.lp-hero-feature-item span {
    opacity: 0.92;
}

/* ============================================
   FEATURES SECTION - Card Grid
   ============================================ */
.lp-features-section {
    padding: 90px 0;
    background: #ffffff;
    min-height: 75vh;
    display: flex;
    align-items: center;
}

.lp-section-badge {
    display: inline-block;
    background: rgba(48, 157, 88, 0.1);
    color: #309d58;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.lp-section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 14px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.lp-section-subtitle {
    font-size: 1rem;
    color: #718096;
    max-width: 620px;
    margin: 0 auto 50px;
    line-height: 1.6;
}

.lp-feature-card {
    background: #ffffff;
    border-radius: 10px;
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
    height: 100%;
    border: 1px solid #e8edf2;
}

.lp-feature-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(48, 157, 88, 0.12);
    border-color: rgba(48, 157, 88, 0.2);
}

.lp-feature-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lp-feature-icon i {
    font-size: 2rem;
}

.bg-primary-light {
    background: rgba(48, 157, 88, 0.15);
}

.bg-primary-light i {
    color: #309d58;
}

.bg-success-light {
    background: rgba(40, 199, 111, 0.15);
}

.bg-success-light i {
    color: #28c76f;
}

.bg-warning-light {
    background: rgba(255, 159, 67, 0.15);
}

.bg-warning-light i {
    color: #ff9f43;
}

.bg-danger-light {
    background: rgba(234, 84, 85, 0.15);
}

.bg-danger-light i {
    color: #ea5455;
}

.lp-feature-title {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 12px;
}

.lp-feature-text {
    font-size: 0.875rem;
    color: #718096;
    line-height: 1.6;
    margin: 0;
}

/* ============================================
   WHY PROFILE SECTION - Benefits & Advantages
   ============================================ */
.lp-why-section {
    padding: 90px 0;
    background: #ffffff;
    position: relative;
    min-height: 90vh;
    display: flex;
    align-items: center;
}

/* Benefits List - Left Side */
.lp-benefits-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    height: 100%;
}

.lp-benefit-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    background: #ffffff;
    border-radius: 10px;
    transition: all 0.3s ease;
    border: 1px solid #e8edf2;
}

.lp-benefit-item:hover {
    transform: translateX(8px);
    box-shadow: 0 4px 16px rgba(48, 157, 88, 0.1);
    border-color: rgba(48, 157, 88, 0.2);
}

.lp-benefit-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    background: linear-gradient(135deg, rgba(48, 157, 88, 0.1) 0%, rgba(48, 157, 88, 0.05) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.lp-benefit-item:hover .lp-benefit-icon {
    background: linear-gradient(135deg, #309d58 0%, #27844a 100%);
    transform: scale(1.1);
}

.lp-benefit-icon i {
    font-size: 1.5rem;
    color: #309d58;
    transition: all 0.3s ease;
}

.lp-benefit-item:hover .lp-benefit-icon i {
    color: #fff;
}

.lp-benefit-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 8px;
}

.lp-benefit-content p {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
    line-height: 1.6;
}

/* Highlight Box - Right Side */
.lp-why-highlight {
    background: linear-gradient(135deg, #309d58 0%, #27844a 100%);
    border-radius: 12px;
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(48, 157, 88, 0.25);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lp-why-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.lp-highlight-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: max-content;
}

.lp-highlight-badge i {
    font-size: 0.875rem;
}

.lp-why-highlight h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 28px;
    letter-spacing: -0.01em;
    position: relative;
    z-index: 1;
}

.lp-highlight-list {
    list-style: none;
    padding: 0;
    margin: 0 0 32px 0;
    position: relative;
    z-index: 1;
    flex-grow: 1;
}

.lp-highlight-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 0.875rem;
    line-height: 1.6;
}

.lp-highlight-list li:last-child {
    margin-bottom: 0;
}

.lp-highlight-list i {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 2px;
    min-width: 1.125rem;
}

.lp-highlight-list span {
    color: rgba(255, 255, 255, 0.95);
}

.lp-highlight-list strong {
    color: #fff;
    font-weight: 700;
}

.lp-highlight-footer {
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    position: relative;
    z-index: 1;
}

.lp-highlight-footer p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.95);
    display: flex;
    align-items: center;
}

.lp-highlight-footer strong {
    color: #fff;
    font-weight: 700;
}

/* ============================================
   STATS SECTION - Modern Design
   ============================================ */
.lp-stats-section {
    padding: 80px 0;
    background: #f8fafb;
    position: relative;
    min-height: 65vh;
    display: flex;
    align-items: center;
}

.lp-stat-card {
    text-align: center;
    padding: 40px 24px;
    background: transparent;
    border-radius: 12px;
    transition: all 0.3s ease;
    height: 100%;
}

.lp-stat-card:hover {
    transform: translateY(-8px);
}

.lp-stat-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(48, 157, 88, 0.1) 0%, rgba(48, 157, 88, 0.05) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    position: relative;
}

.lp-stat-card:hover .lp-stat-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, rgba(48, 157, 88, 0.15) 0%, rgba(48, 157, 88, 0.08) 100%);
}

.lp-stat-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 12px;
    background: linear-gradient(135deg, #309d58, #27844a);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.lp-stat-card:hover .lp-stat-icon::before {
    opacity: 0.15;
}

.lp-stat-icon i {
    font-size: 2.25rem;
    color: #309d58;
    transition: all 0.3s ease;
}

.lp-stat-card:hover .lp-stat-icon i {
    color: #27844a;
}

.lp-stat-number {
    font-size: 2rem;
    font-weight: 700;
    color: #1a202c;
    margin-bottom: 10px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    background: linear-gradient(135deg, #309d58 0%, #27844a 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.lp-stat-label {
    font-size: 0.875rem;
    color: #718096;
    margin: 0;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================================
   CTA SECTION - Dark
   ============================================ */
.lp-cta-section {
    padding: 90px 0;
    background: #1a202c;
    text-align: center;
    min-height: 55vh;
    display: flex;
    align-items: center;
}

.lp-cta-content {
    max-width: 720px;
    margin: 0 auto;
}

.lp-cta-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}

.lp-cta-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    line-height: 1.6;
}

.lp-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px;
}

.lp-cta-actions .btn {
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    border-radius: 8px;
}

.lp-cta-actions .btn-light {
    background: #309d58;
    color: #fff;
    border: none;
}

.lp-cta-actions .btn-light:hover {
    background: #27844a;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(48, 157, 88, 0.4);
}

.lp-cta-actions .btn-outline-light {
    border: 2px solid #309d58;
    background: transparent;
    color: #309d58 !important;
}

.lp-cta-actions .btn-outline-light:hover {
    background: #309d58;
    color: #fff !important;
    border-color: #309d58;
    transform: translateY(-2px);
}

/* ============================================
   FOOTER - Clean
   ============================================ */
.lp-footer {
    background: #0f1419;
    color: #a0aec0;
    padding: 56px 0 28px;
}

.lp-footer-title {
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 18px;
    letter-spacing: -0.01em;
}

.lp-footer-text {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #a0aec0;
}

.lp-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lp-footer-links li {
    margin-bottom: 10px;
}

.lp-footer-links a {
    color: #a0aec0;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.lp-footer-links a:hover {
    color: #309d58;
}

.lp-footer-social {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.lp-social-link {
    width: 40px;
    height: 40px;
    background: rgba(48, 157, 88, 0.12);
    color: #309d58;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all 0.3s ease;
}

.lp-social-link:hover {
    background: #309d58;
    color: #fff;
    transform: translateY(-3px);
}

.lp-footer-divider {
    border-color: rgba(255, 255, 255, 0.08);
    margin: 32px 0 20px;
}

.lp-footer-copy {
    margin: 0;
    font-size: 0.875rem;
    color: #718096;
}

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-in-up {
    opacity: 0;
    transform: translateY(25px);
    transition: all 0.6s ease-out;
}

.fade-in-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE - Mobile First
   ============================================ */

/* Tablette */
@media (max-width: 991px) {
    .lp-hero-section {
        padding: 100px 0 90px;
        min-height: 85vh;
    }

    .lp-hero-decoration-1,
    .lp-hero-decoration-2,
    .lp-hero-decoration-3 {
        display: none;
    }

    .lp-hero-title {
        font-size: 2.75rem;
    }

    .lp-hero-subtitle {
        font-size: 1.0625rem;
    }

    .lp-section-title {
        font-size: 2.125rem;
    }

    .lp-stat-number {
        font-size: 2.5rem;
    }

    .lp-cta-title {
        font-size: 2.125rem;
    }

    .lp-hero-features {
        gap: 24px;
    }

    .lp-why-section {
        padding: 70px 0;
    }

    .lp-why-highlight {
        margin-top: 40px;
    }

    .lp-why-highlight h3 {
        font-size: 1.625rem;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .lp-navbar-toggler {
        display: flex;
    }

    .lp-navbar-menu {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        width: 100%;
        background: #fff;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .lp-navbar-menu.active {
        max-height: 400px;
    }

    .lp-navbar-nav {
        flex-direction: column;
        align-items: stretch;
        padding: 1rem;
        gap: 0;
        width: 100%;
    }

    .lp-nav-item {
        width: 100%;
    }

    .lp-nav-link {
        padding: 12px 16px;
        width: 100%;
        text-align: left;
    }

    .lp-nav-link-btn {
        text-align: center;
        margin: 8px 0 0 0;
        width: 100%;
        display: block;
    }

    .lp-hero-section {
        padding: 80px 0 70px;
        min-height: 85vh;
    }

    .lp-hero-title {
        font-size: 2.25rem;
    }

    .lp-hero-subtitle {
        font-size: 1rem;
        max-width: 100%;
    }

    .lp-hero-actions {
        flex-direction: column;
        gap: 12px;
    }

    .lp-hero-actions .btn {
        width: 100%;
    }

    .lp-hero-features {
        flex-direction: column;
        gap: 16px;
    }

    .lp-hero-feature-item {
        justify-content: center;
    }

    .lp-section-title {
        font-size: 1.75rem;
    }

    .lp-section-subtitle {
        font-size: 1rem;
    }

    .lp-features-section {
        padding: 70px 0;
        min-height: auto;
    }
    
    .lp-why-section {
        padding: 70px 0;
        min-height: auto;
    }
    
    .lp-stats-section {
        padding: 70px 0;
        min-height: 60vh;
    }
    
    .lp-cta-section {
        padding: 70px 0;
        min-height: 50vh;
    }

    .lp-feature-card {
        padding: 32px 24px;
        margin-bottom: 20px;
    }

    .lp-stat-number {
        font-size: 2.25rem;
    }

    .lp-cta-title {
        font-size: 1.875rem;
    }

    .lp-cta-actions {
        flex-direction: column;
    }

    .lp-cta-actions .btn {
        width: 100%;
    }

    .lp-benefits-list {
        gap: 20px;
        margin-bottom: 40px;
    }

    .lp-benefit-item {
        padding: 20px;
    }

    .lp-benefit-item:hover {
        transform: translateY(-4px);
    }

    .lp-why-highlight {
        padding: 32px 24px;
        margin-top: 0;
    }

    .lp-why-highlight h3 {
        font-size: 1.5rem;
    }
}

/* Petit mobile */
@media (max-width: 575px) {
    .lp-hero-title {
        font-size: 1.875rem;
    }

    .lp-hero-subtitle {
        font-size: 0.9375rem;
    }

    .lp-section-title {
        font-size: 1.5rem;
    }

    .lp-stat-card {
        padding: 24px 12px;
    }

    .lp-stat-number {
        font-size: 1.875rem;
    }

    .lp-stat-label {
        font-size: 0.875rem;
    }

    .lp-hero-features {
        gap: 14px;
    }

    .lp-hero-feature-item {
        font-size: 0.875rem;
    }

    .lp-hero-feature-item i {
        font-size: 1.125rem;
    }

    .lp-benefit-item {
        flex-direction: column;
        gap: 16px;
        padding: 20px;
    }

    .lp-benefit-icon {
        margin: 0 auto;
    }

    .lp-benefit-content {
        text-align: center;
    }

    .lp-why-highlight {
        padding: 28px 20px;
    }

    .lp-why-highlight h3 {
        font-size: 1.375rem;
    }

    .lp-highlight-list li {
        font-size: 0.875rem;
    }
}

/* ============================================
   ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
