:root {
    /* Brand Core */
    --primary: #F37E21;
    --primary-hover: #D66B15;
    --bg-dark: #F8F9FA;
    /* Changed from dark slate to light grey per palette */
    --bg-slate: #FFFFFF;
    --text-main: #212529;
    --text-muted: #6C757D;
    --accent: #0063A3;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.7);
    /* More opaque for light theme */
    --glass-border: rgba(0, 0, 0, 0.05);








    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;



























}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.2s ease;
}

/* --- Layout Components --- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

section {
    padding: 100px 0;


}

/* --- Navigation --- */

nav {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    backdrop-filter: blur(12px);
    background: rgba(255, 255, 255, 0.8);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);


}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}

.logo span {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 32px;
    font-weight: 500;
}






.nav-links a:hover {
    color: var(--primary);





}

.btn {
    padding: 12px 24px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);





}

.btn-primary {
    background-color: var(--primary);
    color: var(--text-main);


}

.btn-primary:hover {
    background-color: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px -5px rgba(13, 148, 136, 0.4);

}

.btn-outline {

    border: 1px solid var(--glass-border);


}

.btn-outline:hover {
    background: var(--glass);
    border-color: var(--primary);

}

/* --- Hero Section --- */

.hero {
    position: relative;
    padding: 160px 0 100px;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243, 126, 33, 0.15) 0%, transparent 70%);
    filter: blur(60px);
    z-index: -1;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    font-size: 0.875rem;
    color: var(--accent);
    margin-bottom: 24px;
    font-weight: 600;

}

.hero h1 {
    font-size: 4.5rem;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-main) 0%, var(--ligo-dark, #3F464E) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;

}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-btns {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* --- Hero Showcase --- */

.showcase {
    margin-top: 80px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05) 0%, rgba(255, 255, 255, 0) 100%);


    overflow: hidden;
    box-shadow: 0 40px 100px -20px rgba(0, 0, 0, 0.5);
    position: relative;






}

.showcase img {
    width: 100%;

    display: block;

}

/* --- Features --- */











.section-title {
    text-align: center;
    margin-bottom: 60px;

}

.section-title h2 {
    font-size: 2.5rem;




































    margin-bottom: 16px;
}

.section-title p {
    color: var(--text-muted);


}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    padding: 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: var(--primary);
    transform: translateY(-8px);
    background: rgba(255, 255, 255, 0.05);


}

.feature-icon {
    width: 48px;
    height: 48px;
    background: rgba(243, 126, 33, 0.1);

    color: var(--primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
























































}

.feature-card p {
    color: var(--text-muted);

}

/* --- Pricing --- */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    align-items: flex-start;
}

.pricing-card {
    padding: 48px 40px;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;










}

.pricing-card.popular {
    border-color: var(--primary);
    background: linear-gradient(180deg, rgba(13, 148, 136, 0.1) 0%, rgba(13, 148, 136, 0) 100%);
    position: relative;
    transform: scale(1.05);







}

.popular-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;



}

.plan-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.plan-price {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;

}

.plan-price span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
}

.features-list {
    list-style: none;
    margin-bottom: 40px;
    flex-grow: 1;
}

.features-list li {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;

}

.features-list li svg {
    color: var(--primary);
    flex-shrink: 0;

}

/* --- FAQ Section --- */

.faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-question {
    padding: 24px;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.125rem;
    color: var(--text-main);
    background: transparent;
    border: none;
    text-align: left;
    font-family: var(--font-heading);
}

.faq-answer {
    padding: 0 24px 24px;
    color: var(--text-muted);
    font-size: 0.9375rem;

    display: none;
}

.faq-item.active {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.05);

}

.faq-item.active .faq-answer {
    display: block;

}

.faq-item.active svg {
    transform: rotate(180deg);
}

.faq-question svg {
    transition: transform 0.3s ease;
    color: var(--primary);
}

/* --- Animations --- */












@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1,
.hero p,
.hero-btns {
    animation: fadeInUp 0.8s ease forwards;


}

.hero p {
    animation-delay: 0.1s;
}

.hero-btns {
    animation-delay: 0.2s;
}

/* --- Legal Content Styles --- */

.legal-hero {
    padding: 140px 0 60px;
    background: linear-gradient(180deg, rgba(243, 126, 33, 0.05) 0%, transparent 100%);
    border-bottom: 1px solid var(--glass-border);
}

.legal-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 16px;
}

.legal-hero p {
    color: var(--text-muted);
    font-size: 1.125rem;
}

.legal-body {
    padding: 80px 0;
}

.legal-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 60px;
}

.legal-content h2 {
    font-size: 1.75rem;
    margin: 40px 0 20px;
    color: var(--accent);
}

.legal-content h3 {
    font-size: 1.25rem;
    margin: 30px 0 15px;
    color: var(--text-main);
}

.legal-content p {
    margin-bottom: 20px;
    color: var(--text-muted);
    line-height: 1.8;
}

.legal-content ul {
    margin-bottom: 24px;
    list-style: none;



}

.legal-content li {
    margin-bottom: 12px;
    color: var(--text-muted);
    display: flex;
    gap: 12px;
}

.legal-content li::before {
    content: '→';
    color: var(--primary);
    font-weight: bold;
}

.legal-content strong {
    color: var(--text-main);
}

.legal-content a {
    color: var(--primary);
    text-decoration: underline;
}

.legal-content a:hover {
    color: var(--accent);
}

/* --- Responsive --- */

@media (max-width: 1024px) {

    .features-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);













    }
}

@media (max-width: 768px) {

    .features-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .nav-links {

        display: none;
    }















}