/* --- Global Variables & Base Reset --- */
:root {
    --color-bg-dark: #141418; /* Deep Space Black/Dark Gray */
    --color-bg-card: #1D1D21; /* Slightly lighter for panels/cards */
    --color-accent: #00FFFF; /* Electric Cyan */
    --color-accent-hover: #00E6E6;
    --color-text-light: #E0E0E0;
    --color-text-subtle: #A0A0A0;
    --color-border: #333338;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    /* Prevent horizontal scroll from fixed elements or hidden mobile menu */
    overflow-x: hidden; 
}

a {
    text-decoration: none;
    color: var(--color-text-light);
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent);
}

section {
    padding: 80px 5%;
}

/* ------------------------------------------- */
/* --- LOADER STYLES (Custom Progress) --- */
/* ------------------------------------------- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loader-spinner {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--color-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

.loader-text {
    color: var(--color-accent);
    font-size: 1.2em;
    font-weight: 700;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.loading #content-wrapper {
    display: none;
}


/* ------------------------------------------- */
/* --- 1. FIXED HEADER & NAVIGATION --- */
/* ------------------------------------------- */
.fixed-header {
    /* Subtle gradient for depth */
    background: linear-gradient(180deg, var(--color-bg-dark) 80%, rgba(20, 20, 24, 0.9) 100%);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-icon {
    font-size: 1.5em;
    color: var(--color-accent);
    text-shadow: 0 0 5px rgba(0, 255, 255, 0.5);
    margin-right: 10px;
}

.logo-text {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-text-light);
}
.header-logo-img{
    height: 50px; 
    margin-right: 10px;
    }
.version-tag {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--color-accent);
    vertical-align: top;
    margin-left: 3px;
    opacity: 0.8;
}

.main-nav a {
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95em;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a i {
    margin-right: 5px;
    color: var(--color-accent); /* Icon color */
}

.main-nav a:hover {
    color: var(--color-accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* --- Button Styling --- */
.btn-subtle {
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-subtle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* --- Mobile Menu Toggle & Overlay --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 24, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
}

.mobile-nav a {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-text-light);
}
.mobile-nav a i {
    margin-right: 10px;
}

/* ------------------------------------------- */
/* --- 2. HERO SECTION --- */
/* ------------------------------------------- */
.hero-section {
    padding-top: 120px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    /* Subtle radial glow */
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.05) 0%, rgba(20, 20, 24, 1) 45%);
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.headline {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.accent-text {
    color: var(--color-accent);
}

.sub-headline {
    font-size: 1.2em;
    color: var(--color-text-subtle);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-cta {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 13px 25px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 700;
    background: transparent;
}

/* --- Animated Logos Strip (Movable) --- */
.logo-animated-wrapper {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--color-border);
    padding: 20px 0 0;
    text-align: center;
}

.logo-scroll-container {
    display: flex;
    width: max-content;
    animation: scroll-logos 25s linear infinite; /* Adjust time for speed */
}

.brand-logo {
    height: 30px;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.7;
    margin: 0 40px; 
    flex-shrink: 0;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        /* Scrolls one set of duplicated logos */
        transform: translateX(-50%); 
    }
}

.screenshot-mockup {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1f1f25, #141418);
    box-shadow: 0 10px 50px rgba(0, 255, 255, 0.15);
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Shared Section Title Style */
.section-title {
    color: var(--color-accent);
    font-size: 2em;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ------------------------------------------- */
/* --- 3. WHY CHOOSE CERBERUS? --- */
/* ------------------------------------------- */
.why-choose-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-content {
    max-width: 900px;
    text-align: center;
}

.why-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-item {
    text-align: left;
    background: #242429;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.why-icon {
    font-size: 2em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.why-item h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: var(--color-text-light);
}

.why-item p {
    font-size: 0.9em;
    color: var(--color-text-subtle);
}


/* ------------------------------------------- */
/* --- 4. CORE FEATURES SECTION --- */
/* ------------------------------------------- */
.features-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #1A1A1E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--color-bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.icon-large {
    font-size: 2.5em;
    color: var(--color-accent);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.6));
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.feature-card p {
    color: var(--color-text-subtle);
    font-weight: 300;
}

.trust-card {
    border-color: var(--color-accent);
    background: rgba(0, 255, 255, 0.05);
}


/* ------------------------------------------- */
/* --- 5. MID-PAGE CTA SECTION --- */
/* ------------------------------------------- */
.mid-cta-section {
    background-color: var(--color-bg-card);
    text-align: center;
    padding: 60px 5%;
    border-radius: 10px;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    margin: 80px auto;
    max-width: 80%;
}

.mid-cta-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.mid-cta-section p {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: var(--color-text-subtle);
}

.mid-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.apply-reseller {
    border: 2px dashed var(--color-accent);
}


/* ------------------------------------------- */
/* --- 6. NEWSLETTER SIGNUP --- */
/* ------------------------------------------- */
.newsletter-section {
    background-color: #1A1A1E;
    text-align: center;
    padding: 60px 5%;
    border-top: 1px solid var(--color-border);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.newsletter-content h2 {
    font-size: 1.8em;
    margin-bottom: 10px;
}

.newsletter-content p {
    color: var(--color-text-subtle);
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: #0d0d10;
    color: var(--color-text-light);
    font-size: 1em;
    min-width: 150px;
}

.newsletter-form button {
    flex-grow: 0;
    padding: 12px 25px;
    font-size: 1em;
}


/* ------------------------------------------- */
/* --- 7. FOOTER --- */
/* ------------------------------------------- */
.main-footer {
    padding: 30px 5%;
    text-align: center;
    border-top: 1px solid var(--color-border);
    font-size: 0.9em;
    color: var(--color-text-subtle);
}

.footer-links {
    margin-top: 10px;
}

.footer-links a {
    color: var(--color-text-subtle);
    margin: 0 10px;
}

.footer-links a:hover {
    color: var(--color-accent);
}


/* ============================================== */
/* RESPONSIVENESS (MEDIA QUERIES)     */
/* ============================================== */

/* Tablet/Small Desktop (up to 1200px) */
@media (max-width: 1200px) {
    .features-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (up to 992px) */
@media (max-width: 992px) {
    /* Header/Navigation adjustments */
    .fixed-header {
        flex-direction: row;
        justify-content: space-between;
    }
    .main-nav, .header-actions {
        display: none; /* Hide desktop navigation and actions */
    }
    .menu-toggle {
        display: block; /* Show hamburger menu */
    }

    /* Hero adjustments */
    .hero-section {
        flex-direction: column; 
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .screenshot-mockup {
        order: -1; /* Move screenshot above text on smaller screens */
        margin-bottom: 30px;
    }
    
    /* Section adjustments */
    .headline {
        font-size: 3em;
    }
    .why-content {
        max-width: 100%;
        text-align: center;
    }
    .why-item {
        text-align: left; /* Keep text left-aligned in card */
    }

    /* Logo animation speed reduction for tablet */
    .logo-scroll-container {
        animation: scroll-logos 40s linear infinite; 
    }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    .headline {
        font-size: 2em;
    }
    .sub-headline {
        font-size: 1em;
    }
    
    /* Button stacking */
    .hero-actions, .mid-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .btn-cta, .btn-secondary, .apply-reseller {
        width: 100%;
    }
    
    /* Grid stacking */
    .features-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    /* Mid-CTA adjustments */
    .mid-cta-section {
        max-width: 95%;
        padding: 40px 5%;
        margin: 40px auto;
    }
    .mid-cta-section h2 {
        font-size: 1.5em;
    }/* --- Global Variables & Base Reset --- */
:root {
    --color-bg-dark: #141418; /* Deep Space Black/Dark Gray */
    --color-bg-card: #1D1D21; /* Slightly lighter for panels/cards */
    --color-accent: #00FFFF; /* Electric Cyan */
    --color-accent-hover: #00E6E6;
    --color-text-light: #E0E0E0;
    --color-text-subtle: #A0A0A0;
    --color-border: #333338;
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--color-bg-dark);
    color: var(--color-text-light);
    line-height: 1.6;
    overflow-x: hidden; 
}

a {
    text-decoration: none;
    color: var(--color-text-light);
    transition: color 0.3s;
}

a:hover {
    color: var(--color-accent);
}

section {
    padding: 80px 5%;
}

/* ------------------------------------------- */
/* --- LOADER STYLES (Custom Progress) --- */
/* ------------------------------------------- */
#loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background-color: var(--color-bg-dark);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: opacity 0.5s ease-out;
}

.loader-spinner {
    border: 5px solid rgba(255, 255, 255, 0.2);
    border-top: 5px solid var(--color-accent);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body.loading #content-wrapper {
    display: none;
}


/* ------------------------------------------- */
/* --- 1. FIXED HEADER & NAVIGATION --- */
/* ------------------------------------------- */
.fixed-header {
    background: linear-gradient(180deg, var(--color-bg-dark) 80%, rgba(20, 20, 24, 0.9) 100%);
    border-bottom: 1px solid rgba(0, 255, 255, 0.1);
    padding: 15px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo-container {
    display: flex;
    align-items: center;
}

/* Styling for the actual image logo */
.header-logo-img {
    height: 28px; 
    margin-right: 10px;
}

.logo-text {
    font-size: 1.3em;
    font-weight: 700;
    color: var(--color-text-light);
}

.version-tag {
    font-size: 0.6em;
    font-weight: 400;
    color: var(--color-accent);
    vertical-align: top;
    margin-left: 3px;
    opacity: 0.8;
}

.main-nav a {
    margin: 0 15px;
    font-weight: 500;
    font-size: 0.95em;
    position: relative;
    padding-bottom: 5px;
}

.main-nav a i {
    margin-right: 5px;
    color: var(--color-accent);
}

.main-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background-color: var(--color-accent);
    transition: width 0.3s ease-in-out;
}

.main-nav a:hover::after {
    width: 100%;
}

.header-actions {
    display: flex;
    gap: 10px;
}

/* --- Button Styling --- */
.btn-subtle {
    padding: 10px 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 700;
    text-transform: uppercase;
    transition: all 0.3s;
}
.btn-subtle:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.btn-primary {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 10px 15px;
    border-radius: 6px;
    font-size: 0.9em;
    font-weight: 700;
    transition: background-color 0.3s, transform 0.2s;
}

.btn-primary:hover {
    background-color: var(--color-accent-hover);
    transform: translateY(-1px);
}

/* --- Mobile Menu Toggle & Overlay --- */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--color-accent);
    font-size: 1.5em;
    cursor: pointer;
    z-index: 1001;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(20, 20, 24, 0.98);
    z-index: 999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s, visibility 0.3s;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 25px;
}

.mobile-nav a {
    font-size: 1.5em;
    font-weight: 700;
    color: var(--color-text-light);
}
.mobile-nav a i {
    margin-right: 10px;
}

/* ------------------------------------------- */
/* --- 2. HERO SECTION --- */
/* ------------------------------------------- */
.hero-section {
    padding-top: 120px; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 50px;
    background: radial-gradient(circle at top left, rgba(0, 255, 255, 0.05) 0%, rgba(20, 20, 24, 1) 45%);
}

.hero-content {
    max-width: 600px;
    text-align: left;
}

.headline {
    font-size: 3.5em;
    font-weight: 900;
    margin-bottom: 15px;
    letter-spacing: -1px;
}

.accent-text {
    color: var(--color-accent);
}

.sub-headline {
    font-size: 1.2em;
    color: var(--color-text-subtle);
    margin-bottom: 40px;
    font-weight: 300;
}

.hero-actions {
    margin-bottom: 40px;
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-cta {
    background-color: var(--color-accent);
    color: var(--color-bg-dark);
    padding: 15px 30px;
    border-radius: 8px;
    font-size: 1.1em;
    font-weight: 900;
    text-transform: uppercase;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.4);
}

.btn-secondary {
    color: var(--color-accent);
    border: 2px solid var(--color-accent);
    padding: 13px 25px;
    border-radius: 8px;
    font-size: 0.9em;
    font-weight: 700;
    background: transparent;
}

/* --- Animated Logos Strip (Movable) --- */
.logo-animated-wrapper {
    overflow: hidden;
    white-space: nowrap;
    border-top: 1px solid var(--color-border);
    padding: 20px 0 0;
    text-align: center;
}

.logo-scroll-container {
    display: flex;
    width: max-content;
    animation: scroll-logos 25s linear infinite;
}

.brand-logo {
    height: 30px;
    filter: grayscale(100%) brightness(150%);
    opacity: 0.7;
    margin: 0 40px; 
    flex-shrink: 0;
}

@keyframes scroll-logos {
    0% {
        transform: translateX(0%);
    }
    100% {
        transform: translateX(-50%); 
    }
}

.screenshot-mockup {
    width: 100%;
    max-width: 650px;
    padding: 20px;
    border-radius: 12px;
    background: linear-gradient(145deg, #1f1f25, #141418);
    box-shadow: 0 10px 50px rgba(0, 255, 255, 0.15);
}

.app-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.2);
}

/* Shared Section Title Style */
.section-title {
    color: var(--color-accent);
    font-size: 2em;
    margin-bottom: 50px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* ------------------------------------------- */
/* --- 3. WHY CHOOSE CERBERUS? --- */
/* ------------------------------------------- */
.why-choose-section {
    padding: 80px 5%;
    display: flex;
    justify-content: center;
    text-align: center;
    background-color: var(--color-bg-card);
    border-top: 1px solid var(--color-border);
    border-bottom: 1px solid var(--color-border);
}

.why-content {
    max-width: 900px;
    text-align: center;
}

.why-grid {
    margin-top: 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.why-item {
    text-align: left;
    background: #242429;
    padding: 20px;
    border-radius: 8px;
    border-left: 3px solid var(--color-accent);
}

.why-icon {
    font-size: 2em;
    color: var(--color-accent);
    margin-bottom: 10px;
}

.why-item h3 {
    font-size: 1.1em;
    margin-bottom: 5px;
    color: var(--color-text-light);
}

.why-item p {
    font-size: 0.9em;
    color: var(--color-text-subtle);
}


/* ------------------------------------------- */
/* --- 4. CORE FEATURES SECTION --- */
/* ------------------------------------------- */
.features-section {
    padding: 80px 5%;
    text-align: center;
    background-color: #1A1A1E;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    background-color: var(--color-bg-card);
    padding: 30px;
    border-radius: 10px;
    border: 1px solid var(--color-border);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 255, 255, 0.1);
}

.icon-large {
    font-size: 2.5em;
    color: var(--color-accent);
    margin-bottom: 15px;
    filter: drop-shadow(0 0 5px rgba(0, 255, 255, 0.6));
}

.feature-card h3 {
    font-size: 1.4em;
    margin-bottom: 10px;
    color: var(--color-text-light);
}

.feature-card p {
    color: var(--color-text-subtle);
    font-weight: 300;
}

.trust-card {
    border-color: var(--color-accent);
    background: rgba(0, 255, 255, 0.05);
}


/* ------------------------------------------- */
/* --- 5. MID-PAGE CTA SECTION --- */
/* ------------------------------------------- */
.mid-cta-section {
    background-color: var(--color-bg-card);
    text-align: center;
    padding: 60px 5%;
    border-radius: 10px;
    border: 1px solid var(--color-accent);
    box-shadow: 0 0 30px rgba(0, 255, 255, 0.1);
    margin: 80px auto;
    max-width: 80%;
}

.mid-cta-section h2 {
    font-size: 2em;
    margin-bottom: 10px;
    color: var(--color-accent);
}

.mid-cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.apply-reseller {
    border: 2px dashed var(--color-accent);
}


/* ------------------------------------------- */
/* --- 6. NEWSLETTER SIGNUP --- */
/* ------------------------------------------- */
.newsletter-section {
    background-color: #1A1A1E;
    text-align: center;
    padding: 60px 5%;
    border-top: 1px solid var(--color-border);
}

.newsletter-content {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-icon {
    font-size: 3em;
    color: var(--color-accent);
    margin-bottom: 15px;
}

.newsletter-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}

.newsletter-form input {
    flex-grow: 1;
    padding: 12px 15px;
    border: 1px solid var(--color-border);
    border-radius: 6px;
    background-color: #0d0d10;
    color: var(--color-text-light);
    font-size: 1em;
    min-width: 150px;
}

.newsletter-form button {
    flex-grow: 0;
    padding: 12px 25px;
    font-size: 1em;
}

.alert {
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 25px;
    text-align: center;
    font-size: 1em;
    font-weight: 500;
}

.success-message {
    background-color: rgba(0, 255, 255, 0.08); /* Light cyan background */
    color: var(--color-text-light); /* White text */
    border: 1px solid var(--color-accent); /* Neon cyan border */
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3); /* Neon glow */
}

.success-message i.fa-check-circle {
    color: var(--color-accent); /* Neon cyan icon */
    margin-right: 10px;
}

/* ============================================== */
/* RESPONSIVENESS (MEDIA QUERIES)     */
/* ============================================== */

/* Tablet/Small Desktop (up to 1200px) */
@media (max-width: 1200px) {
    .features-grid, .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Tablet (up to 992px) */
@media (max-width: 992px) {
    .main-nav, .header-actions {
        display: none; 
    }
    .menu-toggle {
        display: block;
    }

    .hero-section {
        flex-direction: column; 
        text-align: center;
    }
    .hero-content {
        max-width: 100%;
        text-align: center;
    }
    .hero-actions {
        justify-content: center;
    }
    .screenshot-mockup {
        order: -1;
        margin-bottom: 30px;
    }
    
    .headline {
        font-size: 3em;
    }
    .why-content {
        max-width: 100%;
        text-align: center;
    }
    .logo-scroll-container {
        animation: scroll-logos 40s linear infinite; 
    }
}

/* Mobile (up to 600px) */
@media (max-width: 600px) {
    /* Critical Mobile Spacing Adjustment */
    .hero-section {
        padding-top: 80px; 
    }

    .headline {
        font-size: 2em;
    }
    
    .hero-actions, .mid-cta-actions {
        flex-direction: column;
        gap: 15px;
    }
    .btn-cta, .btn-secondary, .apply-reseller {
        width: 100%;
    }
    
    .features-grid, .why-grid {
        grid-template-columns: 1fr;
    }
    
    .mid-cta-section {
        max-width: 95%;
        padding: 40px 5%;
        margin: 40px auto;
    }
    
    .brand-logo {
        height: 20px;
        margin: 0 20px;
    }
    .logo-scroll-container {
        animation: scroll-logos 50s linear infinite;
    }

    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
    }
}
    
    /* Branding adjustments */
    .logo-animated-wrapper {
        padding: 10px 0 0;
    }
    .brand-logo {
        height: 20px;
        margin: 0 20px;
    }
    .logo-scroll-container {
        animation: scroll-logos 50s linear infinite; /* Slower speed for mobile */
    }

    /* Newsletter form stacking */
    .newsletter-form {
        flex-direction: column;
    }
    .newsletter-form input, .newsletter-form button {
        width: 100%;
    }
}