:root {
    /* -- Raw Color Palette -- */
    --color-navy: #0F172A; /* Deep, professional base */
    --color-orange: #EA580C; /* High-energy action */
    --color-slate: #64748B; /* Soft neutral */
    --color-emerald: #10B981; /* Success/Growth */
    --color-off-white: #F8FAFC; /* Warm background */
    --color-white: #FFFFFF;
    /* -- Semantic Mapping -- */
    /* Map the raw colors to their actual jobs on the site */
    --bg-main: var(--color-off-white);
    --bg-card: var(--color-white);
    --text-primary: var(--color-navy);
    --text-secondary: var(--color-slate);
    --btn-primary-bg: var(--color-orange);
    --btn-primary-text: var(--color-white);
    --border-color: #E2E8F0;
    /* -- Spacing & Typography (Optional but helpful) -- */
    --radius-md: 0.5rem;
    --transition-fast: 0.2s ease-in-out;
}

/* -- Base Setup -- */
body {
    background-color: var(--bg-main);
    color: var(--text-primary);
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
}

/* -- Example Button Class -- */
.btn-primary {
    background-color: var(--btn-primary-bg);
    color: var(--btn-primary-text);
    border: none;
    border-radius: var(--radius-md);
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color var(--transition-fast);
}

    .btn-primary:hover {
        background-color: #C2410C; /* Slightly darker orange for hover state */
    }

/* --- Navbar CTA Button Hover Effect --- */
.nav-cta-btn {
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out, box-shadow 0.2s ease-in-out;
}

    .nav-cta-btn:hover {
        transform: scale(1.05); /* Increases size by 5% */
        background-color: #C2410C !important; /* Slightly darker orange for the hover state */
        border-color: #C2410C !important;
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.25);
    }

/* --- Footer Styling --- */

/* Standard text links */
.footer-link {
    color: var(--color-slate);
    transition: color 0.2s ease-in-out;
}

    .footer-link:hover {
        color: var(--color-white);
    }

/* Newsletter Input */
.footer-input {
    background-color: rgba(255, 255, 255, 0.05); /* Very subtle white wash over the navy */
}

    .footer-input:focus {
        background-color: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        color: var(--color-white);
    }

    .footer-input::placeholder {
        color: var(--color-slate);
    }

/* Newsletter Button */
.footer-btn {
    background-color: rgba(255, 255, 255, 0.1);
    transition: background-color 0.2s ease-in-out;
}

    .footer-btn:hover {
        background-color: var(--color-orange);
    }

/* Social Icons */
.footer-social:hover {
    opacity: 1 !important;
    filter: brightness(0) saturate(100%) invert(48%) sepia(87%) saturate(2222%) hue-rotate(349deg) brightness(97%) contrast(93%);
    /* This filter trick turns a standard black or white SVG image into your --color-orange on hover */
}

/* --- Hero Section Styling --- */

.hero-section {
    background-color: var(--bg-main); /* Your off-white variable */
    overflow: hidden;
}

/* Primary Hero Action Button */
.hero-btn-primary {
    background-color: var(--color-orange);
    color: var(--color-white);
    border: 2px solid var(--color-orange);
    transition: all 0.2s ease-in-out;
}

    .hero-btn-primary:hover {
        background-color: #C2410C; /* A slightly darker shade of your orange */
        border-color: #C2410C;
        transform: translateY(-2px);
        box-shadow: 0 4px 12px rgba(234, 88, 12, 0.2);
    }

/* Secondary Hero Action Button */
.hero-btn-secondary {
    background-color: transparent;
    color: var(--color-navy);
    border: 2px solid rgba(15, 23, 42, 0.2);
    transition: all 0.2s ease-in-out;
}

    .hero-btn-secondary:hover {
        background-color: rgba(15, 23, 42, 0.05);
        border-color: var(--color-navy);
        color: var(--color-navy);
    }

/* --- Feature Icon Wrapper --- */
.feature-icon-wrapper {
    width: 80px;
    height: 80px;
    background-color: rgba(234, 88, 12, 0.08); /* A very faint wash of the orange */
    transition: transform 0.2s ease-in-out, background-color 0.2s ease-in-out;
}

    .feature-icon-wrapper:hover {
        transform: scale(1.05);
        background-color: rgba(234, 88, 12, 0.15);
    }

/* --- Scroll Animations --- */
.animate-hidden {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

    /* This class gets added dynamically by our JavaScript when the element enters the screen */
    .animate-hidden.show {
        opacity: 1;
        transform: translateY(0);
    }

/* --- Premium Card Hover Effect --- */
.hover-lift {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

    .hover-lift:hover {
        transform: translateY(-8px);
        /* Creates a soft, deep shadow using your Navy variable for color harmony */
        box-shadow: 0 12px 24px rgba(15, 23, 42, 0.12) !important;
    }

/* --- Custom Pricing Slider --- */
.custom-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: rgba(15, 23, 42, 0.1); /* Light wash of navy for the track */
    outline: none;
}

    .custom-slider::-webkit-slider-thumb {
        -webkit-appearance: none;
        appearance: none;
        width: 24px;
        height: 24px;
        border-radius: 50%;
        background: var(--color-orange);
        cursor: pointer;
        border: 3px solid var(--color-white);
        box-shadow: 0 2px 6px rgba(0,0,0,0.2);
        transition: transform 0.1s;
    }

        .custom-slider::-webkit-slider-thumb:hover {
            transform: scale(1.15);
        }
