/* Copying base styles from Solar_GE and adjusting colors */
:root {
    --primary-color: #7209b7;
    /* Solvexia Purple */
    --secondary-color: #10002b;
    /* Dark Violet/Black */
    --accent-color: #f3e5f5;
    /* Light Purple Tint */
    --white: #ffffff;
    --text-color: #333333;
    --transition: all 0.3s ease;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bg-light {
    background-color: var(--accent-color);
}

/* ... (Remaining styles identical to Solar_GE, condensed) */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.link-reset {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

.list-reset {
    list-style: none;
}

.img-responsive {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section {
    padding: 80px 0;
}

.divider {
    width: 60px;
    height: 4px;
    background-color: var(--primary-color);
    margin: 20px auto;
    border-radius: 2px;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-title {
    font-size: 2.5rem;
    color: var(--secondary-color);
}

.btn-primary,
.btn-primary-lg,
.btn-cta,
.btn-cta-mobile {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    text-decoration: none;
}

.btn-primary:hover,
.btn-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(114, 9, 183, 0.4);
}

.btn-secondary,
.btn-secondary-lg {
    background-color: transparent;
    color: var(--secondary-color);
    border: 2px solid var(--secondary-color);
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn-secondary:hover {
    background-color: var(--secondary-color);
    color: var(--white);
}

.btn-primary-lg,
.btn-secondary-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
}

.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--white);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    transition: opacity 0.5s ease;
}

.loader-text {
    font-size: 2rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 0, 0, 0.1);
    border-top: 5px solid var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.cookie-banner {
    position: fixed;
    bottom: -100px;
    left: 0;
    width: 100%;
    background-color: var(--secondary-color);
    color: var(--white);
    padding: 20px;
    z-index: 5000;
    transition: bottom 0.5s ease;
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cookie-buttons {
    display: flex;
    gap: 10px;
}

.navbar {
    background-color: var(--white);
    box-shadow: var(--shadow);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-link-item {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.nav-link-item:hover {
    color: var(--primary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.hamburger-line {
    width: 25px;
    height: 3px;
    background-color: var(--secondary-color);
}

.mobile-menu {
    position: fixed;
    top: 70px;
    right: -100%;
    width: 80%;
    height: 100vh;
    background-color: var(--white);
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    padding: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
}

.mobile-menu.active {
    right: 0;
}

.mobile-link {
    text-decoration: none;
    color: var(--secondary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.hero {
    padding: 100px 0;
    background: linear-gradient(135deg, #e2eafc 0%, #ffffff 100%);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--secondary-color);
}

.hero-sub {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 30px;
}

.price-tag {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.price-label {
    font-size: 1rem;
    color: #888;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

.hero-image {
    position: relative;
    animation: fadeUp 1s ease;
}

.hero-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Scroll Animation Classes */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.about-img img {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.about-img-content {
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.check-list {
    list-style: none;
}

.check-item {
    margin-bottom: 10px;
    padding-left: 25px;
    position: relative;
}

.check-item:before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.card:hover {
    transform: translateY(-10px);
}

.icon-box {
    font-size: 3rem;
    margin-bottom: 20px;
}

.card-title {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.img-full-width {
    margin-top: 50px;
}

.img-full-content {
    border-radius: 15px;
    width: 100%;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
}

.testimonial-author {
    margin-top: 15px;
    font-weight: 600;
    color: var(--secondary-color);
}

.faq-item {
    border-bottom: 1px solid #ddd;
    padding: 15px 0;
}

.faq-question {
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
}

.faq-answer {
    display: none;
    padding-top: 10px;
    color: #666;
}

.faq-item.active .faq-answer {
    display: block;
}

.footer {
    background-color: var(--secondary-color);
    color: #fff;
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-heading {
    color: var(--white);
    margin-bottom: 20px;
    font-size: 1.2rem;
    font-weight: bold;
}

.footer-text {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-list {
    list-style: none;
}

.footer-list-item {
    color: #aaa;
    margin-bottom: 10px;
}

.footer-link {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: var(--primary-color);
}

.footer-disclaimer {
    font-size: 0.8rem;
    opacity: 0.7;
    margin-top: 20px;
    border-top: 1px solid #444;
    padding-top: 10px;
}

.footer-disclaimer-title {
    font-weight: bold;
    display: block;
    margin-bottom: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid #333;
    padding-top: 20px;
    color: #666;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 6000;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background-color: var(--white);
    padding: 40px;
    border-radius: 15px;
    max-width: 600px;
    width: 90%;
    position: relative;
    max-height: 80vh;
    overflow-y: auto;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 2rem;
    cursor: pointer;
}

.modal-list {
    list-style: disc;
    padding-left: 20px;
    margin-top: 10px;
}

.modal-list li {
    margin-bottom: 5px;
}


@media (max-width: 768px) {

    .nav-links,
    .btn-cta {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .hero-grid,
    .grid-2,
    .grid-3,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .cookie-content {
        flex-direction: column;
        gap: 15px;
    }
}