:root {
    --primary-color: #00B900;
    --primary-dark: #008f00;
    --brand-dark: #1A1A1A;
    --brand-light: #F8F9FA;
    --text-main: #333333;
    --text-muted: #666666;
    --white: #FFFFFF;
    --shadow-soft: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-bold: 0 20px 50px rgba(0, 0, 0, 0.1);
    --header-height: 80px;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Reset and Base Styles */
html {
    scroll-behavior: smooth;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--white);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Advertorial Disclosure */
.ad-disclosure {
    background-color: #f0f0f0;
    text-align: center;
    padding: 8px 0;
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease, visibility 0.5s;
}

.loader-inner {
    text-align: center;
}

.loader-logo {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.loader-bar-container {
    width: 200px;
    height: 4px;
    background: #eee;
    border-radius: 2px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.loader-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    left: -100%;
    animation: loading-strip 1.5s infinite;
}

@keyframes loading-strip {
    0% {
        left: -100%;
    }

    50% {
        left: 0;
    }

    100% {
        left: 100%;
    }
}

/* Header */
.main-nav {
    position: fixed;
    top: 32px;
    /* Adjusted for ad-disclosure if it was fixed, but it's not fixed here */
    width: 100%;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    z-index: 1000;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.nav-content {
    max-width: 1200px;
    margin: 0 auto;
    height: var(--header-height);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.brand-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--brand-dark);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.brand-logo span {
    color: var(--primary-color);
}

.nav-items {
    display: flex;
    align-items: center;
    gap: 40px;
}

.nav-links-list {
    display: flex;
    list-style: none;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.nav-link-item {
    text-decoration: none;
    color: var(--text-main);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.nav-link-item:hover {
    color: var(--primary-color);
}

.cta-button {
    background: var(--primary-color);
    color: var(--white);
    padding: 14px 28px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition-smooth);
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 185, 0, 0.2);
}

.cta-button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 185, 0, 0.3);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    z-index: 2001;
}

.toggle-icon-bar {
    display: block;
    width: 25px;
    height: 3px;
    background: var(--brand-dark);
    margin: 5px 0;
    transition: var(--transition-smooth);
    border-radius: 3px;
}

/* Hero Section */
.hero-block {
    padding: 180px 20px 100px;
    background: radial-gradient(circle at top right, rgba(0, 185, 0, 0.05), transparent 40%);
}

.hero-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text-container {
    max-width: 650px;
}

.hero-badge {
    display: inline-block;
    background: rgba(0, 185, 0, 0.1);
    color: var(--primary-color);
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: 3.8rem;
    line-height: 1.1;
    color: var(--brand-dark);
    margin-bottom: 24px;
    font-weight: 800;
}

.hero-subline {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

.hero-visual {
    width: 100%;
}

.hero-img-wrapper {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-bold);
}

.hero-img-item {
    width: 100%;
    display: block;
}

/* Sections General */
.section-wrapper {
    padding: 100px 20px;
}

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

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: var(--brand-dark);
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-muted);
}

/* Features Grid */
.features-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.feature-item {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    box-shadow: var(--shadow-soft);
    transition: var(--transition-smooth);
}

.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-bold);
}

.feature-icon-box {
    font-size: 2.5rem;
    margin-bottom: 24px;
}

.feature-label {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 16px;
}

/* About Section */
.about-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-img-box {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-bold);
}

.about-img-item {
    width: 100%;
    display: block;
}

.about-content-box h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 24px;
}

/* Testimonials */
.testimonials-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
}

.testimonial-item {
    background: var(--white);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-quote {
    font-style: italic;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.testimonial-user {
    font-weight: 700;
    color: var(--primary-color);
}

/* FAQ */
.faq-list {
    max-width: 850px;
    margin: 0 auto;
}

.faq-card {
    margin-bottom: 16px;
    border: 1px solid #eee;
    border-radius: 16px;
    overflow: hidden;
}

.faq-trigger {
    width: 100%;
    padding: 24px;
    background: var(--white);
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1.1rem;
    font-weight: 700;
    transition: var(--transition-smooth);
}

.faq-trigger:hover {
    background: #fafafa;
}

.faq-icon-arrow {
    font-size: 1.4rem;
    color: var(--primary-color);
    transition: var(--transition-smooth);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
    background: var(--white);
}

.faq-panel-content {
    padding: 0 24px 24px;
    color: var(--text-muted);
}

.faq-card.is-active .faq-icon-arrow {
    transform: rotate(180deg);
}

.faq-card.is-active .faq-panel {
    max-height: 500px;
}

/* Footer */
.site-footer {
    background: #111;
    color: #999;
    padding: 100px 20px 40px;
}

.footer-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-col h3 {
    color: var(--white);
    margin-bottom: 24px;
    font-size: 1.3rem;
}

.footer-links-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-link-item {
    margin-bottom: 12px;
}

.footer-link-anchor {
    color: #999;
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer-link-anchor:hover {
    color: var(--primary-color);
}

.footer-contact-info p {
    margin-bottom: 10px;
}

.footer-ad-notice {
    max-width: 1200px;
    margin: 0 auto 40px;
    padding: 20px 0;
    border-top: 1px solid #222;
    font-size: 0.85rem;
    font-style: italic;
}

.footer-sub-bar {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid #222;
    font-size: 0.8rem;
}

/* Cookie Popup */
.consent-banner {
    position: fixed;
    bottom: 30px;
    left: 30px;
    right: 30px;
    background: var(--white);
    box-shadow: var(--shadow-bold);
    padding: 24px 40px;
    border-radius: 20px;
    z-index: 5000;
    display: none;
    /* Controlled by JS */
    justify-content: space-between;
    align-items: center;
    max-width: 1140px;
    margin: 0 auto;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.consent-text {
    font-size: 0.95rem;
    margin-right: 30px;
}

.consent-actions {
    display: flex;
    gap: 15px;
}

.consent-btn {
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    border: none;
    transition: var(--transition-smooth);
}

.consent-btn-accept {
    background: var(--primary-color);
    color: var(--white);
}

.consent-btn-reject {
    background: #f0f0f0;
    color: var(--text-muted);
}

/* Mobile Menu Overlay */
.mobile-nav-panel {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.1);
}

.mobile-nav-panel.is-open {
    transform: translateX(0);
}

.mobile-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 2.5rem;
    color: var(--brand-dark);
    cursor: pointer;
    line-height: 1;
    padding: 10px;
    transition: var(--transition-smooth);
}

.mobile-close-btn:hover {
    color: var(--primary-color);
}

.mobile-links-list {
    list-style: none;
    padding: 0;
    text-align: center;
}

.mobile-link-item {
    margin: 30px 0;
}

.mobile-link-anchor {
    text-decoration: none;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-dark);
}

/* Responsive Overrides */
@media (max-width: 1024px) {

    .hero-grid,
    .about-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-text-container {
        margin: 0 auto;
    }

    .hero-headline {
        font-size: 3rem;
    }

    .nav-links-list,
    .nav-items .cta-button {
        display: none;
    }

    .mobile-toggle {
        display: block;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 2.2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .consent-banner {
        flex-direction: column;
        text-align: center;
        padding: 30px;
        bottom: 20px;
        left: 20px;
        right: 20px;
    }

    .consent-text {
        margin-right: 0;
        margin-bottom: 20px;
    }
}