:root {
    --lp-primary: #e8ff3c;
    --lp-secondary: #abffdc;
    --lp-accent: #0d6efd;
    --lp-cta: #e8ff3c;
    --lp-cta-text: #111;
    --lp-cta-secondary: #abffdc;
    --lp-cta-secondary-text: #111;
    --lp-text: #111;
    --lp-background: #fff;
    --lp-surface: #f8fafc;
    --lp-border: #e2e8f0;
    --lp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --lp-font-primary: 'Inter', sans-serif;
    --lp-font-secondary: 'Inter', sans-serif
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

body {
    font-family: var(--lp-font-primary);
    color: var(--lp-text);
    background-color: var(--lp-background);
    line-height: 1.6;
    overflow-x: hidden
}

.lp-voozaa-skip-link {
    position: absolute;
    top: -40px;
    left: 6px;
    background: var(--lp-accent);
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 1000;
    border-radius: 4px
}

.lp-voozaa-skip-link:focus {
    top: 6px
}

.lp-voozaa-header {
    background: transparent;
    padding-bottom: 4rem;
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0;
    z-index: 100
}

.lp-voozaa-header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: flex;
    justify-content: center;
    align-items: center
}

.lp-voozaa-logo {
    height: 60px;
    width: auto
}

.lp-voozaa-hero {
    padding: 2rem 0 4rem 0;
    background: linear-gradient(#efff1f 7.71766%,#abffdc 100%)
}

.lp-voozaa-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    gap: 3rem;
    align-items: center;
    justify-content: center
}

.lp-voozaa-hero-content h1 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--lp-text)
}

.lp-voozaa-hero-content .lp-voozaa-highlight {
    color: black;
}

.lp-voozaa-hero-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6
}

.lp-voozaa-hero-image {
    position: relative
}

.lp-voozaa-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--lp-shadow-lg)
}

.lp-voozaa-cta {
    background: black;
    color: var(--lp-primary);
    padding: 1rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    transition: all .3s ease;
    text-decoration: none;
    display: inline-block;
    min-height: 44px;
    min-width: 44px
}

.lp-voozaa-cta:hover {
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg)
}

.lp-voozaa-cta:focus {
    outline: 2px solid var(--lp-accent);
    outline-offset: 2px
}

.lp-voozaa-numbers {
    padding: 4rem 0;
    background: var(--lp-surface)
}

.lp-voozaa-numbers-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    text-align: center
}

.lp-voozaa-numbers h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: var(--lp-text)
}

.lp-voozaa-numbers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.lp-voozaa-number-box {
    background: var(--lp-background);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--lp-shadow);
    text-align: center
}

.lp-voozaa-number-value {
    font-size: 3rem;
    font-weight: 700;
    color: black;
    margin-bottom: .5rem
}

.lp-voozaa-number-label {
    font-size: 1.125rem;
    color: #64748b;
    font-weight: 500
}

.lp-voozaa-image-divider {
    padding: 2rem 0;
    background: var(--lp-background);
    text-align: center
}

.lp-voozaa-image-divider img {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 12px;
    box-shadow: var(--lp-shadow)
}

.lp-voozaa-advantages {
    padding: 4rem 0;
    background: var(--lp-background)
}

.lp-voozaa-advantages-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

.lp-voozaa-advantages h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lp-text)
}

.lp-voozaa-advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem
}

.lp-voozaa-advantage-card {
    background: var(--lp-surface);
    padding: 2rem;
    border-radius: 12px;
    border: 2px solid var(--lp-border)
}

.lp-voozaa-advantage-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: black;
}

.lp-voozaa-advantage-card p {
    color: #64748b;
    line-height: 1.6
}

.lp-voozaa-requirements {
    padding: 4rem 0;
    background: var(--lp-surface)
}

.lp-voozaa-requirements-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

.lp-voozaa-requirements h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lp-text)
}

.lp-voozaa-requirements-list {
    max-width: 600px;
    margin: 0 auto 3rem auto
}

.lp-voozaa-requirement-item {
    background: var(--lp-background);
    padding: 1.5rem;
    margin-bottom: 1rem;
    border-radius: 8px;
    border-left: 4px solid #000000;
    box-shadow: var(--lp-shadow)
}

.lp-voozaa-requirement-item p {
    margin: 0;
    font-weight: 500
}

.lp-voozaa-footer {
    background: var(--lp-text);
    color: var(--lp-background);
    padding: 3rem 0 1rem 0
}

.lp-voozaa-footer-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

.lp-voozaa-footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem
}

.lp-voozaa-footer-brand h3 {
    color: var(--lp-primary);
    margin-bottom: 1rem
}

.lp-voozaa-footer-brand p {
    color: #94a3b8;
    line-height: 1.6
}

.lp-voozaa-footer-contact h4 {
    color: var(--lp-background);
    margin-bottom: 1rem
}

.lp-voozaa-footer-contact p {
    color: #94a3b8;
    margin-bottom: .5rem
}

.lp-voozaa-footer-legal {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    text-align: center
}

.lp-voozaa-footer-legal p {
    color: #94a3b8;
    margin-bottom: 1rem
}

.lp-voozaa-legal-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap
}

.lp-voozaa-legal-links a {
    color: var(--lp-secondary);
    text-decoration: none
}

.lp-voozaa-legal-links a:hover {
    text-decoration: underline
}

.lp-voozaa-section-cta {
    text-align: center;
    margin-top: 2rem
}

.final-section {
    padding: 4rem 0;
    background: var(--lp-background)
}

.final-section-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center
}

.final-section-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--lp-text);
    line-height: 1.2
}

.final-section-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: #64748b;
    line-height: 1.6
}

.final-section-image {
    position: relative
}

.final-section-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 500px;
    object-fit: contain
}

.final-section-image .splide__slide img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    max-height: 500px;
    margin: 0 auto;
    display: block;
    object-fit: contain
}

.final-section-image .splide__arrow {
    background: rgba(0, 0, 0, 0.5);
    width: 3rem;
    height: 3rem;
    border-radius: 50%;
    transition: all .3s ease
}

.final-section-image .splide__arrow:hover {
    background: rgba(0, 0, 0, 0.8)
}

.final-section-image .splide__arrow svg {
    fill: var(--lp-primary)
}

.lp-vooza-sector-list {
    padding: 4rem 0;
    background: var(--lp-background)
}

.lp-vooza-sector-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem
}

.lp-vooza-sector-container h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--lp-text)
}

.lp-vooza-sector-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem
}

.lp-vooza-sector-card {
    background: #f8fafc;
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    transition: all .3s ease
}

.lp-vooza-sector-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--lp-shadow-lg)
}

.lp-vooza-sector-card img {
    width: 50px;
    height: auto;
    margin-bottom: .5rem
}

.lp-vooza-sector-card p {
    font-weight: 400;
    color: var(--lp-text);
    margin: 0
}

@media(max-width:768px) {
    .lp-voozaa-hero-container {
        grid-template-columns: 1fr;
        gap: 0rem;
        text-align: center
    }

    .lp-voozaa-hero-content h1 {
        font-size: 2.25rem
    }

    .lp-voozaa-numbers h2,
    .lp-voozaa-advantages h2,
    .lp-voozaa-requirements h2 {
        font-size: 2rem
    }

    .lp-voozaa-numbers-grid {
        grid-template-columns: 1fr
    }

    .lp-voozaa-advantages-grid {
        grid-template-columns: 1fr
    }

    .lp-voozaa-modal-content {
        margin: 10% auto;
        width: 95%
    }

    .lp-voozaa-legal-links {
        flex-direction: column;
        gap: 1rem
    }

    .final-section-container {
        grid-template-columns: 1fr;
        gap: 2rem
    }

    .final-section-content h2 {
        font-size: 2rem
    }
    .lp-vooza-sector-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem
    }

    .lp-vooza-sector-container h2 {
        font-size: 2rem
    }
}

@media(max-width:480px) {
    .lp-voozaa-hero {
        padding: 2rem 0
    }

    .lp-voozaa-hero-content h1 {
        font-size: 1.875rem
    }

    .lp-voozaa-hero-content p {
        font-size: 1.125rem
    }

    .lp-voozaa-cta {
        padding: .875rem 1.5rem;
        font-size: 1rem
    }

    .lp-voozaa-numbers,
    .lp-voozaa-advantages,
    .lp-voozaa-requirements {
        padding: 3rem 0
    }

    .lp-voozaa-number-value {
        font-size: 2.5rem
    }

    .lp-voozaa-advantage-card,
    .lp-voozaa-number-box {
        padding: 1.5rem
    }
}



.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    background-color: #fff;
    margin: 5% auto;
    padding: 30px;
    border-radius: 8px;
    max-width: 600px;
    width: 90%;
    position: relative;
}

.close-modal {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
    line-height: 1;
    z-index: 100000;
    position: absolute;
    top: 0;
    right: 10px;
}

.close-modal:hover,
.close-modal:focus {
    color: #000;
}

.modal-content h2 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #333;
}


.d-none {
    display: none;
}
.d-block {
    display: block;
}

@media only screen and (min-width:767px) {
    .d-md-none {
        display: none !important;
    }
    .d-md-block {
        display: block !important;
    }
}