:root {
    /* Exact Blues from New Branding */
    --primary: #0076FF;        /* Main Brand Blue */
    --primary-glow: #00D2FF;   /* Cyan/Teal highlight from logo */
    --primary-dark: #0056BD;   /* Deep Blue for hover states */
    
    --bg-navy: #070c1a;        /* Dark Navy for alternating */
    --dark: #0a192f;
    --light: #f6f6f7;
    --white: #ffffff;
    --subdued: #6d7175;
    --border: #1a2a41;         /* Darkened border to match theme */
}

body {
    margin: 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: var(--white);       /* Switched body text to white for dark mode */
    background-color: #000;
    scroll-behavior: smooth;
}

h1, h2, h3, h4 { 
    margin-top: 0; 
    margin-bottom: 0.5rem; 
    line-height: 1.2;
}

/* Gradient effect for main titles to match the hero image vibe */
h1, .section-title {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* --- Navigation Container --- */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
    border-bottom: 1px solid var(--border);
    background: rgba(0, 0, 0, 0.8); 
    backdrop-filter: blur(10px); /* Frosted glass effect as you scroll */
    -webkit-backdrop-filter: blur(10px);
    position: sticky;
    top: 0;
    z-index: 100;
}

/* --- Link Container --- */
.nav-links {
    display: flex;
    align-items: center;
}

/* --- Individual Links --- */
.nav-links a:not(.cta-button) {
    margin-right: 20px;
    text-decoration: none;
    color: var(--white);
    font-size: 14px;
    position: relative;
    padding: 4px 0;
    transition: color 0.3s ease;
}

/* The "Smooth" Animation Underline */
.nav-links a:not(.cta-button)::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 0;
    background: linear-gradient(90deg, var(--primary), var(--primary-glow));
    transition: width 0.3s ease-in-out;
}

.nav-links a:not(.cta-button):hover {
    color: var(--primary-glow);
}

.nav-links a:not(.cta-button):hover::after {
    width: 100%;
}

/* --- Nav Specific CTA adjustment --- */
.nav-cta {
    padding: 0.5rem 1rem !important; /* Forces the smaller size for nav */
    font-size: 14px !important;
}

.logo {
    font-size: 1.5rem;
    font-weight: bold;
    color: var(--primary);
    text-decoration: none;
    transition: transform 0.3s ease, opacity 0.2s ease;
    display: inline-block;
}

.logo:hover {
    opacity: 0.9;
    transform: scale(1.02); /* Very subtle growth on hover */
}

/* Alternating Sections */
header {
    border-bottom: 1px solid var(--border);
    padding: 4rem 5%;
    background-color: #000;    /* 1. BLACK */
}

#what-we-do { 
    background-color: var(--bg-navy); /* 2. NAVY */
    border-bottom: 1px solid var(--border); 
}

#features-section { 
    background-color: #000;    /* 3. BLACK */
}

#pricing-section { 
    background-color: var(--bg-navy); /* 4. NAVY */
    border-bottom: 1px solid var(--border); 
}

#support-section { 
    background-color: #000;    /* 5. BLACK */
}

footer { 
    text-align: center; 
    padding: 2.5rem; 
    color: var(--subdued); 
    border-top: 1px solid var(--border); 
    background: var(--bg-navy); /* 6. NAVY */
}

/* --- Pro Footer Reset --- */
.site-footer {
    background: var(--bg-navy);
    border-top: 1px solid var(--border);
    padding: 60px 5% 30px 5%;
    color: var(--white);
}

.footer-container {
    max-width: 1100px; /* Tightened for better grouping */
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr; /* Distinct columns */
    gap: 2rem;
    margin-bottom: 50px;
    align-items: start;
}

.footer-brand, .footer-links-group, .footer-status {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Force left-alignment */
    text-align: left;
}

.footer-tagline {
    color: var(--subdued);
    font-size: 0.9rem;
    margin-top: 15px;
    line-height: 1.5;
    max-width: 260px;
}

.footer-heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--primary-glow);
    margin-bottom: 20px;
    font-weight: 700;
}

.footer-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-nav a {
    text-decoration: none;
    color: var(--white);
    font-size: 0.9rem;
    opacity: 0.8;
    transition: all 0.2s ease;
}

.footer-nav a:hover {
    opacity: 1;
    color: var(--primary-glow);
    transform: translateX(4px); /* Subtle slide effect */
}

.cookie-pill {
    background: rgba(0, 210, 255, 0.05); 
    border: 1px solid var(--border);
    padding: 10px 18px;
    border-radius: 100px;
    font-size: 0.8rem;
    white-space: nowrap;
    color: var(--white);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    color: var(--subdued);
    font-size: 0.75rem;
}

/* --- Hero Layout Styles --- */
.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr; 
    gap: 4rem;
    align-items: center;
}

.hero-content { text-align: left; }
h1 { font-size: 3rem; letter-spacing: -0.02em; }
.subtitle { font-size: 1.25rem; color: var(--subdued); margin-bottom: 2rem; }

.hero-graphic { text-align: right; }
.hero-graphic img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* --- BUTTONS --- */
.cta-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    padding: 0.8rem 1.8rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    border: none;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 118, 255, 0.2);
}
.cta-button:hover { 
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(0, 118, 255, 0.3);
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
}

.cta-button.secondary {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--primary);
    box-shadow: none;
}
.cta-button.secondary:hover { background: rgba(0, 118, 255, 0.05); }

/* --- OTHER SECTIONS --- */
.container { max-width: 1200px; margin: 0 auto; padding: 3.5rem 5%; }
.section-title { text-align: center; font-size: 2.25rem; margin-bottom: 2.5rem; }

.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 3rem; }
.process-step { text-align: left; }
.step-header { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.step-number { 
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
    color: white; 
    min-width: 28px; 
    height: 28px; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    font-weight: bold;
    font-size: 0.9rem;
}

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1rem; }
.feature-card { 
    background: #0d1626;  
    border: 1px solid var(--border); 
    border-radius: 12px; 
    padding: 1.5rem; 
    display: flex; 
    flex-direction: column; 
    transition: border-color 0.2s;
}
.feature-card:hover {
    border-color: var(--primary-glow);
}
.feature-card p { color: var(--subdued); margin: 0 0 1.5rem 0; font-size: 0.95rem; line-height: 1.5; flex-grow: 1; }

.feature-tag {
    display: inline-block;
    background: #1a2a41;
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    text-transform: uppercase;
    align-self: flex-start;
}

.pricing-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 1rem; }
.pricing-card { border: 1px solid var(--border); border-radius: 12px; padding: 2rem; background: #0d1626; display: flex; flex-direction: column; }

.pricing-card.popular { 
    border: 2px solid var(--primary); 
    box-shadow: 0 12px 24px rgba(0, 118, 255, 0.1); 
    position: relative; 
}
.popular-badge { 
    position: absolute; 
    top: -12px; 
    left: 50%; 
    transform: translateX(-50%); 
    background: var(--primary); 
    color: white; 
    padding: 2px 12px; 
    border-radius: 20px; 
    font-size: 11px; 
    font-weight: bold; 
}

.price { font-size: 2.5rem; font-weight: 800; margin: 0.5rem 0; }
.price span { font-size: 1rem; color: var(--subdued); font-weight: normal; }
.price-list { list-style: none; padding: 0; margin: 0 0 1.5rem 0; flex-grow: 1; color: var(--subdued); font-size: 0.85rem; }
.price-list li { margin-bottom: 6px; display: flex; align-items: flex-start; }
.price-list li::before { 
    content: "✓"; 
    color: var(--primary-glow); 
    margin-right: 8px; 
    font-weight: bold; 
}

.support-container { max-width: 600px; margin: 0 auto; background: #000; padding: 2.5rem; border-radius: 12px; border: 1px solid var(--border); box-shadow: 0 4px 12px rgba(0,0,0,0.5); }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.85rem; }
.form-control { width: 100%; padding: 0.75rem; border: 1px solid var(--border); border-radius: 4px; font-size: 1rem; box-sizing: border-box; font-family: inherit; background: #000; color: #fff; }
.form-control:focus { 
    outline: none;
    border-color: var(--primary-glow); 
    box-shadow: 0 0 0 3px rgba(0, 210, 255, 0.1);
}

/* --- MOBILE --- */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center; 
        gap: 1.2rem;
        padding: 1.5rem 5%;
    }

    .nav-links {
        display: flex;
        flex-direction: row; 
        justify-content: center;
        align-items: center;
        gap: 20px;
        margin-right: 0;
        width: 100%;
    }

    .nav-links a:not(.cta-button) {
        margin-right: 0;
        font-size: 16px;
        white-space: nowrap;
    }

    .nav-cta {
        margin-top: 5px;
        width: auto;
        min-width: 180px;
        max-width: 220px;
        font-size: 14px !important;
        padding: 0.6rem 1.2rem !important;
    }

    header { 
        padding: 4rem 5%; 
    }
    
    .hero-container { 
        grid-template-columns: 1fr; 
        text-align: center; 
    }
    
    .hero-content { 
        text-align: center;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .hero-content div[style*="display: flex"] {
        justify-content: center !important;
        flex-direction: column !important;
        align-items: center !important;
        width: 100%;
        gap: 12px;
    }
    
    h1 { 
        font-size: 2.2rem; 
        margin-bottom: 1rem; 
    }
    
    .hero-graphic { 
        display: none; 
    }
    
    .cta-button { 
        width: 100%; 
        box-sizing: border-box; 
        max-width: 320px; 
        margin: 0 auto;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
        text-align: center;
    }
    .footer-brand, .footer-links-group, .footer-status {
        align-items: center;
        text-align: center;
    }
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
    }
}