:root {
    --lp-primary: #1a56db;
    --lp-primary-dark: #1e429f;
    --lp-secondary: #7e3af2;
    --lp-accent: #0ea5e9;
    --lp-text: #1f2937;
    --lp-text-light: #6b7280;
    --lp-bg: #fff;
    --lp-bg-light: #f9fafb;
    --lp-bg-dark: #111827;
    --lp-border: #e5e7eb;
    --lp-success: #10b981;
    --lp-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --lp-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --lp-radius: 8px;
    --lp-radius-lg: 12px;
    --lp-transition: all .3s ease
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--lp-text);
    background-color: var(--lp-bg);
    overflow-x: hidden
}

h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem
}

h1 {
    font-size: 2.5rem;
    color: var(--lp-primary-dark)
}

h2 {
    font-size: 2rem;
    color: var(--lp-primary-dark);
    text-align: center;
    margin-bottom: 2.5rem
}

h3 {
    font-size: 1.5rem;
    color: var(--lp-primary);
    margin-bottom: .75rem
}

p {
    margin-bottom: 1rem;
    color: var(--lp-text)
}

a {
    text-decoration: none;
    color: inherit
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem
}

.btn {
    display: inline-block;
    padding: .875rem 2rem;
    background-color: var(--lp-primary);
    color: white;
    border-radius: var(--lp-radius);
    font-weight: 600;
    text-align: center;
    transition: var(--lp-transition);
    border: none;
    cursor: pointer;
    font-size: 1rem
}

.btn:hover {
    background-color: var(--lp-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--lp-shadow-lg)
}

.btn-secondary {
    background-color: var(--lp-secondary)
}

.btn-secondary:hover {
    background-color: #6d28d9
}

.lp-header {
    background-color: var(--lp-bg);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 100
}

.lp-header-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1rem 1.5rem
}

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

.lp-hero {
    padding: 5rem 0;
    background: linear-gradient(135deg, #f0f9ff 0, #e0f2fe 100%)
}

.lp-hero-container {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    align-items: center
}

.lp-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    line-height: 1.1
}

.lp-hero p {
    font-size: 1.125rem;
    color: var(--lp-text-light);
    margin-bottom: 2rem;
    max-width: 600px
}

.lp-hero-image img {
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    width: 100%;
    height: 400px;
    object-fit: cover
}

@media(min-width:768px) {
    .lp-hero-container {
        flex-direction: row;
        align-items: center
    }

    .lp-hero-content {
        flex: 1
    }

    .lp-hero-image {
        flex: 1
    }

    .lp-hero h1 {
        font-size: 3rem
    }
}

@media(max-width:768px) {
    .lp-hero {
        padding: 3rem 0
    }

    h1 {
        font-size: 2rem
    }

    h2 {
        font-size: 1.75rem
    }
}

.text-center {
    text-align: center
}

.section {
    padding: 4rem 0
}

.section-alt {
    background-color: var(--lp-bg-light)
}

.lp-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 3rem
}

@media(min-width:640px) {
    .lp-stats {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:480px) {
    .lp-stats {
        grid-template-columns: 1fr
    }
}

.lp-stat-item {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow)
}

.lp-stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: .5rem
}

.lp-stat-label {
    font-size: .875rem;
    color: var(--lp-text-light);
    font-weight: 500
}

.lp-pillars {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem
}

@media(min-width:768px) {
    .lp-pillars {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(min-width:1024px) {
    .lp-pillars {
        grid-template-columns: repeat(4, 1fr)
    }
}

@media(max-width:480px) {
    .lp-pillars {
        grid-template-columns: 1fr
    }
}

.lp-pillar {
    background: white;
    padding: 2rem;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    text-align: center;
    transition: var(--lp-transition)
}

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

.lp-pillar-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 1.5rem;
    background-color: #e0f2fe;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--lp-primary);
    font-size: 1.5rem
}

.lp-benefits {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem
}

@media(min-width:768px) {
    .lp-benefits {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .lp-benefits {
        grid-template-columns: 1fr
    }
}

.lp-benefit {
    background: white;
    padding: 2rem;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    border-left: 4px solid var(--lp-primary);
    border-right: 4px solid var(--lp-primary)
}

.lp-benefit h3 {
    display: flex;
    align-items: center;
    gap: .75rem
}

.lp-benefit h3::before {
    content: "✓";
    color: var(--lp-success);
    font-weight: bold
}

.lp-timeline {
    max-width: 800px;
    margin: 3rem auto 0;
    position: relative
}

.lp-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background-color: var(--lp-primary)
}

.lp-timeline-item {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 3rem;
    position: relative
}

.lp-timeline-content {
    background: white;
    padding: 2rem;
    border-radius: var(--lp-radius);
    box-shadow: var(--lp-shadow);
    width: 90%;
    max-width: 400px;
    text-align: center
}

.lp-timeline-year {
    font-size: 2rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin-bottom: .5rem
}

.lp-testimonial {
    max-width: 800px;
    margin: 3rem auto 0;
    background: white;
    padding: 3rem;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow);
    position: relative
}

.lp-testimonial::before {
    content: '"';
    font-size: 6rem;
    color: var(--lp-accent);
    position: absolute;
    top: -1rem;
    left: 2rem;
    font-family: Georgia, serif
}

.lp-testimonial-text {
    font-size: 1.125rem;
    font-style: italic;
    color: var(--lp-text);
    margin-bottom: 1.5rem;
    line-height: 1.8
}

.lp-testimonial-author {
    font-weight: 600;
    color: var(--lp-primary)
}

.lp-testimonial-role {
    color: var(--lp-text-light);
    font-size: .875rem
}

.lp-faq {
    max-width: 800px;
    margin: 3rem auto 0
}

.lp-faq-item {
    margin-bottom: 1rem;
    border: 1px solid var(--lp-border);
    border-radius: var(--lp-radius);
    overflow: hidden
}

.lp-faq-question {
    padding: 1.5rem;
    background-color: var(--lp-bg-light);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center
}

.lp-faq-answer {
    padding: 1.5rem;
    display: none
}

.lp-faq-item.active .lp-faq-answer {
    display: block
}

.lp-cta-section {
    text-align: center;
    padding: 3rem 0
}

.lp-cta-section h2 {
    margin-bottom: 1.5rem
}

.lp-cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: var(--lp-text-light)
}

.lp-footer {
    background-color: var(--lp-bg-dark);
    color: white;
    padding: 4rem 0 2rem
}

.lp-footer-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    margin-bottom: 3rem
}

@media(min-width:768px) {
    .lp-footer-container {
        grid-template-columns: repeat(3, 1fr)
    }
}

.lp-footer-brand img {
    height: 40px;
    margin-bottom: 1rem
}

.lp-footer h3 {
    color: white;
    font-size: 1.25rem;
    margin-bottom: 1.5rem
}

.lp-footer-links ul {
    list-style: none
}

.lp-footer-links li {
    margin-bottom: .75rem
}

.lp-footer-links a {
    color: #d1d5db;
    transition: var(--lp-transition)
}

.lp-footer-links a:hover {
    color: white
}

.lp-footer-contact p {
    color: #d1d5db;
    margin-bottom: .75rem;
    display: flex;
    align-items: center;
    gap: .5rem
}

.lp-footer-legal {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #374151;
    color: #9ca3af;
    font-size: .875rem
}

.lp-footer-legal a {
    color: #9ca3af;
    margin: 0 .5rem
}

.lp-footer-legal a:hover {
    color: white
}

.mt-1 {
    margin-top: 1rem
}

.mt-2 {
    margin-top: 2rem
}

.mt-3 {
    margin-top: 3rem
}

.mb-1 {
    margin-bottom: 1rem
}

.mb-2 {
    margin-bottom: 2rem
}

.mb-3 {
    margin-bottom: 3rem
}

.skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--lp-primary);
    color: white;
    padding: 8px;
    z-index: 1001;
    text-decoration: none
}

.skip-link:focus {
    top: 0
}

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

.award-img {
    max-width: 300px;
    margin: 2rem auto;
    display: block
}

@media(max-width:768px) {
    .section {
        padding: 3rem 0
    }

    .lp-testimonial {
        padding: 2rem 1.5rem
    }
}

@media(max-width:480px) {
    .lp-benefits {
        grid-template-columns: 1fr
    }
}

.lp-requirements {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-top: 3rem
}

@media(min-width:768px) {
    .lp-requirements {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media(max-width:480px) {
    .lp-requirements {
        grid-template-columns: 1fr
    }
}

.lp-requirement-box {
    background: white;
    padding: 2.5rem;
    border-radius: var(--lp-radius-lg);
    box-shadow: var(--lp-shadow-lg);
    text-align: center;
    transition: var(--lp-transition);
    border: 2px solid var(--lp-primary)
}

.lp-requirement-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04)
}

.lp-requirement-icon {
    width: 50px;
    height: 50px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #1a56db, #0ea5e9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: var(--lp-shadow)
}

.lp-requirement-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--lp-primary);
    margin: 1rem 0;
    font-family: 'Playfair Display', serif
}

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