@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

:root {
    --primary-color: #00C853;
    --primary-dark: #009624;
    --secondary-color: #2979ff;
    --text-color: #1a1a1a;
    --text-light: #555;
    --background-color: #ffffff;
    --white: #ffffff;
    --border-color: #e0e0e0;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    max-width: 1200px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 15px 30px;
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 32px; /* Adjust height to fit navbar */
    width: auto;
}

.nav-links {
    display: flex;
    gap: 30px;
}

.mobile-nav-buttons {
    display: none;
}

.mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    font-size: 1.5rem;
    color: var(--text-color);
    cursor: pointer;
    margin-left: 10px;
    padding: 5px;
    transition: all 0.3s;
}

.mobile-menu-btn:hover {
    color: var(--primary-color);
    transform: scale(1.1);
}

.nav-links a {
    font-size: 0.95rem;
    color: var(--text-light);
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--primary-color);
}

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

.btn-login {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-login:hover {
    background-color: rgba(0, 200, 83, 0.05);
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    border: 1px solid var(--primary-color); /* To match height with login button */
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 10px rgba(0, 200, 83, 0.2);
}

/* Hero Section */
.hero {
    padding-top: 140px; /* Space for navbar */
    padding-bottom: 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

/* Background gradients */
.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.hero::after {
    content: '';
    position: absolute;
    top: 20%;
    right: -10%;
    width: 40%;
    height: 80%;
    background: radial-gradient(circle, rgba(0,200,83,0.05) 0%, rgba(255,255,255,0) 70%);
    z-index: -1;
}

.badge {
    display: inline-block;
    background-color: #f0fdf4;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    border: 1px solid rgba(0, 200, 83, 0.2);
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: var(--text-color);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.hero h1 .highlight {
    color: var(--primary-color);
}

.hero p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    margin-bottom: 50px;
}

.btn-lg {
    padding: 14px 32px;
    font-size: 1rem;
}

.btn-text {
    font-weight: 600;
    color: var(--text-color);
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative; /* Added for positioning context if needed */
}

.badge-new {
    display: inline-block;
    background: #f0fdf4;
    color: var(--primary-color);
    font-size: 0.6rem;
    padding: 2px 6px;
    border-radius: 10px;
    border: 1px solid var(--primary-color);
    font-weight: 700;
    text-transform: uppercase;
    margin-left: 5px;
    vertical-align: middle;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-bottom: 60px;
}

.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item strong {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-color);
}

.stat-item span {
    font-size: 0.9rem;
    color: var(--text-light);
}

/* Dashboard Mockup */
.hero-dashboard-preview {
    margin-top: 40px;
    perspective: 1000px;
}

.dashboard-mockup {
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
    position: relative;
    transform: rotateX(5deg);
    transition: transform 0.5s ease;
}

.dashboard-mockup:hover {
    transform: rotateX(0deg);
}

.mockup-header {
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.dot.red { background: #ff5f56; }
.dot.yellow { background: #ffbd2e; }
.dot.green { background: #27c93f; }

.address-bar {
    background: #f1f1f1;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: #888;
    margin-left: 10px;
    width: 200px;
}

.mockup-content {
    padding: 30px;
    position: relative;
    overflow: hidden; /* Ensure image respects border radius */
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.mockup-content.p-0 {
    padding: 0;
}

.dashboard-img {
    width: 100%;
    height: auto;
    display: block;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

/* Partners */
.partners {
    text-align: center;
    padding: 40px 0;
    background-color: #f9f9f9;
}

.partners p {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 20px;
}

.partners-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    opacity: 0.7;
}

.partners-logos img {
    height: 30px;
    filter: grayscale(100%);
    transition: 0.3s;
}

.partners-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* Marquee Banner */
.marquee-banner {
    background-color: var(--primary-color);
    color: var(--white);
    padding: 15px 0;
    overflow: hidden;
    white-space: nowrap;
}

.marquee-content {
    display: inline-block;
    animation: marquee 20s linear infinite;
}

.marquee-content span {
    display: inline-block;
    margin-right: 40px;
    font-weight: 600;
    font-size: 0.9rem;
}

.marquee-content i {
    margin-right: 8px;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Features Section */
.features {
    padding: 80px 0;
    background-color: var(--white);
}

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

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 15px;
    color: var(--text-color);
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
}

.feature-row {
    display: flex;
    align-items: center;
    gap: 60px;
    margin-bottom: 100px;
}

.feature-row.reverse {
    flex-direction: row-reverse;
}

.feature-text {
    flex: 1;
}

.feature-text h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-color);
}

.feature-text p {
    font-size: 1.05rem;
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.7;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
    color: var(--text-color);
}

.feature-list i {
    color: var(--primary-color);
}

.feature-image {
    flex: 1;
    display: flex;
    justify-content: center;
}

/* Mockups for Features */
.mockup-window {
    width: 100%;
    max-width: 500px;
    background: #fff;
    border-radius: 12px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    overflow: hidden;
}

.window-header {
    background: #f1f1f1;
    padding: 10px 15px;
    display: flex;
    gap: 6px;
}

.window-content {
    padding: 20px;
}

.mockup-card {
    width: 100%;
    max-width: 400px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    padding: 25px;
    border: 1px solid var(--border-color);
}

.chat-mockup {
    width: 100%;
    max-width: 350px;
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Product Types */
.product-types {
    padding: 80px 0;
    background: #f8fcf9;
}

.types-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.type-card {
    background: #fff;
    padding: 40px;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    transition: 0.3s;
    border: 1px solid transparent;
}

.type-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.card-header-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-dark);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.mini-table-container {
    margin-top: 25px;
    background: #f9f9f9;
    border-radius: 12px;
    padding: 15px;
    border: 1px solid var(--border-color);
}

.table-header {
    display: flex;
    justify-content: space-between;
    padding-bottom: 10px;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 10px;
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 600;
    text-transform: uppercase;
}

.table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 0.9rem;
}

.table-row:not(:last-child) {
    border-bottom: 1px solid #f0f0f0;
}

.prod-name {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
    flex: 2;
}

.prod-val {
    flex: 1;
    text-align: center;
    font-weight: 500;
}

.prod-status {
    flex: 1;
    text-align: right;
}

.status-pill {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.status-pill.green {
    background: rgba(0, 200, 83, 0.15);
    color: var(--primary-dark);
}

.status-pill.orange {
    background: rgba(255, 152, 0, 0.15);
    color: #f57c00;
}

.text-green {
    color: var(--primary-color);
}

.icon-box {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.type-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.type-card p {
    color: var(--text-light);
}

/* Why Choose Section */
.why-choose {
    padding: 80px 0;
    background-color: var(--white);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.benefit-card {
    background: #fff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--primary-color);
}

.benefit-icon {
    width: 50px;
    height: 50px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-color);
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.benefit-card h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: var(--text-color);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 80px 0;
    background: #f8fcf9;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    text-align: center;
    position: relative;
}

.step-icon {
    width: 80px;
    height: 80px;
    background: #fff;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin: 0 auto 25px;
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.15);
    transition: 0.3s;
}

.process-step:hover .step-icon {
    transform: translateY(-5px);
    background: var(--primary-color);
    color: #fff;
}

.process-step h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.process-step p {
    font-size: 0.95rem;
    color: var(--text-light);
}

/* Comparison Section */
.comparison-section {
    padding: 80px 0;
    background: #f8fcf9;
}

.comparison-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.comparison-card {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border-color);
    padding: 30px;
    text-align: center;
}

.card-header-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 200, 83, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5rem;
    margin: 0 auto 20px;
}

.comparison-card h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.comparison-card p {
    color: var(--text-light);
    margin-bottom: 30px;
}

.competitors-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.competitor-row {
    display: flex;
    align-items: center;
    padding: 15px;
    border-radius: 12px;
    background: #f9f9f9;
    border: 1px solid #eee;
    text-align: left;
    transition: 0.3s;
}

.competitor-row.red {
    background: rgba(229, 57, 53, 0.05);
    border-color: rgba(229, 57, 53, 0.1);
}

.competitor-row.orange {
    background: rgba(255, 152, 0, 0.05);
    border-color: rgba(255, 152, 0, 0.1);
}

.competitor-row.green {
    background: rgba(0, 200, 83, 0.05);
    border-color: rgba(0, 200, 83, 0.2);
}

.competitor-row.main {
    border: 2px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 200, 83, 0.15);
    transform: scale(1.02);
}

.comp-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.competitor-row.red .comp-icon { color: #e53935; }
.competitor-row.orange .comp-icon { color: #f57c00; }
.competitor-row.green .comp-icon { background: var(--primary-color); color: #fff; }

.comp-info {
    flex: 1;
}

.comp-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-color);
}

.comp-info span {
    font-size: 0.8rem;
    color: var(--text-light);
}

.comp-rate {
    text-align: right;
}

.comp-rate strong {
    display: block;
    font-size: 1.1rem;
    color: var(--text-color);
}

.comp-rate span {
    font-size: 0.75rem;
    color: var(--text-light);
}

.arrow-divider {
    text-align: center;
    color: var(--text-light);
    margin: -10px 0;
    z-index: 1;
    position: relative;
}

.economy-badge {
    margin-top: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary-color);
    color: #fff;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.simulator-side { padding-left: 20px; }
.simulator-box {
    background: #fff;
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    padding: 30px;
    border: 1px solid var(--border-color);
    margin-top: 30px;
}
.sim-input-group label { display: block; font-weight: 600; margin-bottom: 10px; color: var(--text-light); }
.input-wrapper {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 10px 15px;
    font-size: 1.2rem;
}
.input-wrapper input {
    border: none; outline: none; font-size: 1.2rem; font-weight: 700; color: var(--text-color); width: 100%; margin-left: 5px;
}
.sim-results { margin-top: 25px; display: flex; flex-direction: column; gap: 15px; }
.sim-result-row { display: flex; justify-content: space-between; align-items: center; padding-bottom: 15px; border-bottom: 1px solid #eee; }
.sim-result-row.main { border-bottom: none; padding-top: 5px; }
.sim-result-row span { font-size: 0.9rem; color: var(--text-light); }
.sim-val { text-align: right; display: flex; flex-direction: column; }
.sim-val strong { font-size: 1.1rem; }
.sim-result-row.main .sim-val strong { font-size: 1.4rem; color: var(--primary-color); }
.economy-alert {
    margin-top: 20px;
    background: #e8f5e9;
    color: #2e7d32;
    padding: 15px;
    border-radius: 8px;
    text-align: center;
    font-weight: 600;
}

/* Footer */
.footer {
    background-color: #111;
    color: #fff;
    padding: 80px 0 30px;
}

.footer-container {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 25px;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: #aaa;
    transition: 0.3s;
    font-size: 0.95rem;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

.footer-col .logo img {
    height: 35px;
    opacity: 0.9;
    margin-bottom: 15px;
}

.footer-col p {
    color: #aaa;
    font-size: 0.9rem;
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #333;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-delay-100 { transition-delay: 0.1s; }
.reveal-delay-200 { transition-delay: 0.2s; }
.reveal-delay-300 { transition-delay: 0.3s; }
.reveal-delay-400 { transition-delay: 0.4s; }

/* Scale effect for cards */
.scale-reveal {
    opacity: 0;
    transform: scale(0.95);
    transition: all 0.6s ease-out;
}

.scale-reveal.active {
    opacity: 1;
    transform: scale(1);
}

/* Responsive */
@media (max-width: 992px) {
    .navbar {
        width: 95%;
        padding: 15px 20px;
    }
    
    .hero h1 {
        font-size: 2.8rem;
    }
    
    .feature-row {
        flex-direction: column;
        gap: 40px;
        text-align: center;
    }
    
    .feature-row.reverse {
        flex-direction: column;
    }
    
    .feature-list li {
        justify-content: center;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }
    
    .comparison-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .simulator-side {
        padding-left: 0;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none; /* Hide desktop menu */
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: #fff;
        flex-direction: column;
        padding: 20px;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        text-align: center;
        gap: 20px;
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        gap: 15px;
        margin-top: 15px;
        border-top: 1px solid #eee;
        padding-top: 15px;
    }

    .nav-buttons .btn-login, .nav-buttons .btn-primary {
        display: none; /* Hide header buttons on mobile */
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero {
        padding-top: 120px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 30px;
    }

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

    .footer-col .logo {
        justify-content: center;
    }

    .social-links {
        justify-content: center;
    }

    .hero-actions {
        flex-direction: column;
    }

    .btn-text {
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        border: 1px solid var(--border-color);
        padding: 12px;
        border-radius: 50px;
        position: relative;
        background: white;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
}

/* New Mockup Styles & Utilities */
.flex { display: flex; }
.items-center { align-items: center; }
.gap-3 { gap: 12px; }
.text-right { text-align: right; }
.font-bold { font-weight: 700; }
.p-0 { padding: 0 !important; }
.overflow-hidden { overflow: hidden; }
.text-gray-400 { color: #9ca3af; }

/* Dark Mode Mockup (Netflix Style) */
.mockup-window.dark-mode {
    background-color: #141414;
    color: white;
    border: 1px solid #333;
}
.mockup-window.dark-mode .window-header {
    background-color: #000;
    border-bottom: 1px solid #333;
}

.netflix-hero {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    background-size: cover;
    background-position: center;
    height: 220px;
    border-radius: 8px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    margin-bottom: 20px;
    position: relative;
}

.netflix-badge {
    background: #e50914;
    color: white;
    font-size: 0.6rem;
    font-weight: bold;
    padding: 2px 6px;
    border-radius: 4px;
    width: fit-content;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.netflix-hero h4 {
    font-size: 1.5rem;
    margin-bottom: 5px;
    font-weight: 800;
}

.netflix-hero p {
    font-size: 0.8rem;
    color: #ccc;
    margin-bottom: 15px;
}

.netflix-btn {
    background: white;
    color: black;
    padding: 6px 16px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: bold;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    cursor: pointer;
}

.netflix-row {
    display: flex;
    gap: 10px;
}

.netflix-card {
    flex: 1;
    height: 80px;
    background: #333;
    border-radius: 4px;
    transition: transform 0.3s;
}
.netflix-card:hover { transform: scale(1.05); background: #444; }

/* Affiliate Dashboard Mockup */
.affiliate-header {
    padding: 20px;
    background: #f8fcf9;
    border-bottom: 1px solid #eee;
    display: flex;
    justify-content: space-between;
}
.stat small { display: block; color: var(--text-light); font-size: 0.75rem; margin-bottom: 4px; }
.stat strong { font-size: 1.2rem; color: var(--text-color); }
.text-green { color: var(--primary-color) !important; }

.affiliate-table { padding: 0; }
.aff-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 15px 20px;
    border-bottom: 1px solid #f5f5f5;
    align-items: center;
    font-size: 0.9rem;
}
.aff-row.header {
    background: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    padding-top: 10px;
    padding-bottom: 10px;
}
.aff-user { display: flex; align-items: center; gap: 10px; font-weight: 600; }
.avatar-xs {
    width: 28px; height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.7rem;
}
.avatar-xs.purple { background: #651fff; }
.avatar-xs.orange { background: #ff9800; }

/* WhatsApp Style Chat */
.whatsapp-style {
    background: #efe7dd; /* WA bg color */
    border: none;
}
.whatsapp-style .chat-header {
    background: #008069;
    color: white;
    padding: 10px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatsapp-style .avatar {
    background: #fff;
    color: #008069;
    width: 32px; height: 32px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 600;
}
.whatsapp-style .chat-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 300px; /* Taller */
}
.whatsapp-style .message {
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    max-width: 80%;
    box-shadow: 0 1px 1px rgba(0,0,0,0.1);
    font-size: 0.9rem;
}
.whatsapp-style .message.received {
    background: #fff;
    border-top-left-radius: 0;
    align-self: flex-start;
}
.whatsapp-style .message.sent {
    background: #d9fdd3;
    border-top-right-radius: 0;
    align-self: flex-end;
}
.whatsapp-style .time {
    font-size: 0.65rem;
    color: #999;
    display: block;
    text-align: right;
    margin-top: 2px;
}
.whatsapp-style .chat-input {
    background: #f0f0f0;
    padding: 10px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.whatsapp-style .chat-input span {
    flex: 1;
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    color: #aaa;
    font-size: 0.9rem;
}
.whatsapp-style .chat-input i {
    color: #54656f;
    font-size: 1.2rem;
}

.btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    margin-top: 20px;
    transition: 0.3s;
}
.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 0 100px;
    background: #fff;
    overflow: hidden; /* Hide scrollbars from marquee */
}

.testimonials-marquee-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
}

.testimonials-marquee {
    display: flex;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.testimonials-content {
    display: flex;
    gap: 30px;
    animation: marquee 40s linear infinite;
    padding-left: 30px; /* Initial offset */
}

.testimonials-marquee.reverse .testimonials-content {
    animation: marquee-reverse 45s linear infinite;
}



@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); } /* Move half width assuming duplicated content */
}

@keyframes marquee-reverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.testimonial-card {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 16px;
    padding: 25px;
    width: 350px;
    flex-shrink: 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    border-color: var(--primary-color);
}

.testimonial-card .stars {
    color: #ffb400;
    font-size: 1.1rem;
    margin-bottom: 15px;
    letter-spacing: 2px;
}

.testimonial-card p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.6;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 80px; /* Align heights */
}

.testimonial-card .user-info {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px solid #f5f5f5;
    padding-top: 15px;
}

.avatar-circle {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #333;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
    font-size: 0.9rem;
}

.avatar-circle.green { background: var(--primary-color); }
.avatar-circle.purple { background: #651fff; }
.avatar-circle.orange { background: #ff9800; }
.avatar-circle.blue { background: #2196f3; }
.avatar-circle.red { background: #e53935; }

.user-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
}

.user-info small {
    font-size: 0.8rem;
    color: var(--text-light);
}

@media (max-width: 768px) {
    .testimonial-card {
        width: 300px;
        padding: 20px;
    }
    
    .testimonial-card p {
        font-size: 0.9rem;
    }
}

/* Awards Section */
.awards-section {
    padding: 80px 0;
    background: #f9f9f9;
}

.awards-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 40px auto 0;
    background: #fff;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.awards-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.award-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 500;
}

.award-milestone {
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-color);
    background: rgba(37, 211, 102, 0.1);
    display: inline-block;
    padding: 5px 20px;
    border-radius: 12px;
    align-self: flex-start;
    line-height: 1;
    margin-bottom: 10px;
}

.award-message-box {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.award-message-box .icon-box {
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--primary-color);
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    flex-shrink: 0;
}

.award-message-box p {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
}

.awards-controls {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.awards-controls .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    cursor: pointer;
    transition: 0.3s;
}

.awards-controls .dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

.awards-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 400px;
    position: relative;
}

/* Plaque Mockup CSS */
.plaque-mockup {
    width: 280px;
    height: 380px;
    background: radial-gradient(circle at center, #1a1a1a 0%, #000 100%);
    border-radius: 20px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #333;
    transition: transform 0.5s ease, opacity 0.5s ease;
}

.plaque-inner {
    width: 100%;
    height: 100%;
    border: 2px solid var(--primary-color);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    position: relative;
    background: linear-gradient(135deg, rgba(37,211,102,0.1) 0%, rgba(0,0,0,0) 100%);
    box-shadow: inset 0 0 20px rgba(37,211,102,0.1);
}

.plaque-logo {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    text-shadow: 0 0 10px rgba(37,211,102,0.5);
}

.plaque-title {
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin-bottom: 10px;
    opacity: 0.8;
}

.plaque-value {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1;
    background: linear-gradient(to bottom, #fff, #ccc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 10px rgba(0,0,0,0.5);
}

.plaque-subtitle {
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-top: 5px;
    color: var(--primary-color);
    text-transform: uppercase;
}

.plaque-footer {
    position: absolute;
    bottom: 20px;
    font-size: 0.8rem;
    opacity: 0.5;
}

.plaque-shine {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0) 50%);
    border-radius: 20px;
    pointer-events: none;
}

.awards-footer {
    text-align: center;
    margin-top: 40px;
    color: var(--primary-color);
    font-weight: 600;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
}

@media (max-width: 992px) {
    .awards-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .award-milestone {
        align-self: center;
    }
    
    .award-message-box {
        text-align: left;
    }
    
    .awards-controls {
        justify-content: center;
    }
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #fff;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: #d1d5db;
    box-shadow: 0 4px 12px rgba(0,0,0,0.02);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.1);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    background: none;
    border: none;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color);
    transition: color 0.3s;
}

.faq-item.active .faq-question {
    color: var(--primary-color);
}

.faq-question i {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
    color: var(--text-light);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
    color: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
    padding: 0 25px;
    opacity: 0;
}

.faq-item.active .faq-answer {
    padding-bottom: 25px;
    opacity: 1;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* CTA Footer Section */
.cta-footer-section {
    padding: 80px 0;
    background: #fff;
}

.cta-box {
    background: var(--primary-color);
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(37, 211, 102, 0.2);
}

/* Background pattern for CTA */
.cta-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top right, rgba(255,255,255,0.1) 0%, transparent 40%),
                radial-gradient(circle at bottom left, rgba(255,255,255,0.1) 0%, transparent 40%);
    pointer-events: none;
}

.cta-box h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.cta-box p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 1;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.btn-outline-white {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s;
}

.btn-outline-white:hover {
    background: #fff;
    color: var(--primary-color);
}

@media (max-width: 768px) {
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-box {
        padding: 40px 20px;
    }
    
    .cta-box h2 {
        font-size: 1.8rem;
    }
}

/* Footer Section */
.footer {
    background: #f9f9f9;
    padding: 80px 0 30px;
    border-top: 1px solid #e5e7eb;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col .logo img {
    height: 35px;
    margin-bottom: 20px;
}

.footer-desc {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-col h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--text-color);
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
}

/* Contact Cards */
.contact-card {
    display: flex;
    gap: 15px;
    background: #fff;
    padding: 15px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: 0.3s;
}

.contact-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.contact-icon {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: rgba(37, 211, 102, 0.1);
    color: var(--primary-color);
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contact-icon.warning {
    background: rgba(255, 152, 0, 0.1);
    color: #ff9800;
}

.contact-info strong {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.contact-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    line-height: 1.4;
    margin-bottom: 8px;
}

.contact-info a {
    font-size: 0.85rem;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #e5e7eb;
    color: var(--text-color);
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    transition: 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
    color: #fff;
}

.footer-bottom {
    border-top: 1px solid #e5e7eb;
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--text-light);
}

.made-with {
    font-size: 0.85rem;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 5px;
}

.made-with i {
    color: #ff4757;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0% { transform: scale(1); }
    50% { transform: scale(1.2); }
    100% { transform: scale(1); }
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 576px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}



