:root {
    /* New Premium Palette from User Images */
    --primary: #4CAF50;
    /* Green */
    --primary-hover: #43A047;
    --secondary: #1E3B5D;
    /* Dark Blue */
    --accent: #2196F3;
    /* Blue */
    --dark: #111827;
    /* Darkest Blue/Gray */
    --light: #f0f2f5;
    /* Slightly darker gray for better contrast */
    --white: #ffffff;
    --text-main: #374151;
    --text-light: #9CA3AF;

    --transition: all 0.3s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-main);
    line-height: 1.6;
    background-color: var(--white);
    overflow-x: hidden;
    margin: 0;
}

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

/* ---- NAVIGATION ---- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(17, 24, 39, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

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

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}

.nav-links a:hover {
    color: var(--white);
}

.btn-contact {
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.btn-contact:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
}

/* ---- SECTION SYSTEM ---- */
section {
    padding: 80px 10%;
    position: relative;
}

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

.section-dark .section-title {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--dark);
    margin-bottom: 1.5rem;
    max-width: 1000px;
    line-height: 1.4;
    font-weight: 600;
}

.section-dark .section-subtitle {
    color: var(--white);
    opacity: 0.9;
}

.section-dark {
    background-color: var(--dark);
    color: var(--white);
}

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

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

/* ---- HERO SECTION ---- */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    background: url('caratula2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    text-align: left;
    padding-top: 100px;
    padding-left: 10%;
}

.hero-content {
    max-width: 900px;
    position: relative;
    z-index: 2;
    background: rgba(10, 9, 19, 0.705);
    padding: 1rem 2.5rem;
    border-radius: 12px;

}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.hero p {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: 0;
    margin-right: 0;

}

.btn-hero {
    background: var(--dark);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: var(--transition);

}

.btn-hero:hover {
    background: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(76, 175, 80, 0.4);
}

.grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(rgba(76, 175, 80, 0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(76, 175, 80, 0.1) 1px, transparent 1px);
    background-size: 40px 40px;
    pointer-events: none;
    opacity: 0.5;
}

/* ---- STATS BLOCKS ---- */
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 40px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem 1.5rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
}

.section-light .stat-card {
    background: var(--white);
    border: 1px solid #e5e7eb;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.stat-card:hover {
    transform: translateY(-10px);
}

.section-dark .stat-card:hover {
    background: rgba(255, 255, 255, 0.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    /* Use primary color for numbers instead of white */
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.section-light .stat-label {
    color: var(--text-main);
}

/* ---- FEATURE CARDS ---- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    border: 1px solid #F3F4F6;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--light);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.feature-icon i {
    width: 32px;
    height: 32px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--dark);
    font-weight: 700;
}

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

/* ---- FOOTER ---- */
footer {
    background-color: var(--dark);
    padding: 80px 10% 40px 10%;
    color: var(--white);
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-col h4 {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

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

.footer-col ul li {
    margin-bottom: 0.8rem;
}

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

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

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ---- UTILITIES ---- */
.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 700px;
    margin-bottom: 3.5rem;
}

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

.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

@media (max-width: 992px) {
    .two-col {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ---- TABLES ---- */
.comparison-table,
.roi-table {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.95rem;
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.comparison-table th,
.roi-table th {
    background: var(--dark);
    color: var(--white);
    padding: 1.2rem;
    text-align: left;
}

.comparison-table td,
.roi-table td {
    padding: 1rem 1.2rem;
    border-bottom: 1px solid #f3f4f6;
}

.comparison-table .highlight-col {
    background: rgba(76, 175, 80, 0.05);
    font-weight: 700;
}

.tbl-check {
    color: var(--primary);
    font-weight: 700;
}

.tbl-cross {
    color: #ef4444;
    font-weight: 700;
}

.tbl-partial {
    color: #f59e0b;
    font-weight: 700;
}

/* ---- CALLOUTS & BANNERS ---- */
.callout {
    background: rgba(76, 175, 80, 0.08);
    border-left: 5px solid var(--primary);
    padding: 2rem;
    border-radius: 0 12px 12px 0;
    margin: 40px 0;
}

.callout h3 {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.feature-banner {
    display: flex;
    gap: 20px;
    padding: 2rem;
    background: var(--light);
    border-radius: 16px;
    margin-bottom: 1.5rem;
    align-items: center;
}

.feature-banner--dark {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--white);
}

.f-icon {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---- CARDS ---- */
.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid #f3f4f6;
    margin-bottom: 1rem;
}

.section-dark .benefit-card {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.tech-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    margin-bottom: 1.5rem;
    position: relative;
}

.tech-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 4px;
    font-weight: 700;
}

/* ---- PRICE HIGHLIGHT ---- */
.price-highlight {
    background: rgba(255, 255, 255, 0.05);
    color: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    margin: 40px auto;
    max-width: 650px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    margin: 0.5rem 0;
}

.price-vs {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
}

.vs-val--loss {
    color: #ef4444;
    font-weight: 700;
}

.vs-val--save {
    color: var(--primary);
    font-weight: 700;
}

/* ---- REVIEWS & THUMBS ---- */
.report-thumbs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 2rem 0;
}

.report-thumb {
    cursor: pointer;
    transition: var(--transition);
}

.report-thumb:hover {
    transform: scale(1.02);
}

.report-thumb img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    cursor: zoom-in;
}

.report-thumb-label {
    text-align: center;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-light);
}

.icon-list {
    list-style: none;
    margin: 1.5rem 0;
}

.icon-list li {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.icon-box {
    color: var(--primary);
    flex-shrink: 0;
}

/* ---- MODAL LIGHTBOX ---- */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(17, 24, 39, 0.95);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    transform: scale(0.9);
    transition: transform 0.3s ease;
    cursor: zoom-out;
}

.modal.active .modal-content {
    transform: scale(1);
}

.close-modal {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    background: none;
    border: none;
    padding: 10px;
    line-height: 1;
}

/* ---- VISUAL BANNER ---- */
.visual-banner {
    height: 250px;
    background: url('caratula2.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align content to the right */
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.offline-badge {
    background: rgba(17, 24, 39, 0.85);
    backdrop-filter: blur(8px);
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 100px;
    /* Return to pill shape */
    text-align: right;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    display: inline-block;
}

.offline-badge h3 {
    margin: 0;
    font-size: 1.8rem;
    letter-spacing: 2px;
    font-weight: 800;
}

.offline-badge p {
    margin: 5px 0 0 0;
    font-size: 1rem;
    color: var(--primary);
    text-transform: uppercase;
    font-weight: 700;
}

@media (max-width: 768px) {
    .visual-banner {
        height: 250px;
        background-attachment: scroll;
    }
}

@media (max-width: 768px) {
    .header {
        padding: 1rem 5%;
    }

    section {
        padding: 60px 5%;
    }

    .hero h1 {
        font-size: 2.5rem;
    }
}

/* Global paragraph fix for contrast */
.section-light p {
    color: #1f2937;
    /* Darker gray for better contrast */
    opacity: 1 !important;
}

.container {
    max-width: 1100px;
}