/* ../css/pricing.css */

:root {
    --bg-black: #000000;
    --card-bg: #0a0a0a;
    --border-subtle: rgba(255, 255, 255, 0.1);
    --text-primary: #ffffff;
    --text-secondary: #8a8f98;
    --accent: #ffffff;
    --font-main: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-black);
    color: var(--text-primary);
    font-family: var(--font-main);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

/* --- NAVIGATION --- */
.navbar {
    height: 80px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-subtle);
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 1000;
}

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

.navbar nav ul {
    display: flex;
    list-style: none;
    gap: 32px;
}

.navbar nav ul li a {
    text-decoration: none;
    color: var(--text-secondary);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.navbar nav ul li a:hover {
    color: var(--text-primary);
}

/* --- GLASSMORPHISM MOBILE MENU --- */
.menu-btn {
    display: none;
}

.menu-icon {
    cursor: pointer;
    display: none;
    z-index: 1001;
}

.navicon,
.navicon:before,
.navicon:after {
    background: var(--text-primary);
    display: block;
    height: 2px;
    width: 24px;
    position: relative;
    transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.navicon:before {
    content: '';
    position: absolute;
    top: 8px;
}

.navicon:after {
    content: '';
    position: absolute;
    top: -8px;
}

@media (max-width: 768px) {
    .menu-icon {
        display: block;
    }

    .navbar nav {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background: rgba(0, 0, 0, 0.9);
        backdrop-filter: blur(20px);
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        transition: all 0.5s ease;
    }

    .menu-btn:checked~nav {
        max-height: 100vh;
        opacity: 1;
    }

    .navbar nav ul {
        flex-direction: column;
        padding: 40px 0;
        align-items: center;
    }

    .menu-btn:checked~.menu-icon .navicon {
        background: transparent;
    }

    .menu-btn:checked~.menu-icon .navicon:before {
        transform: rotate(-45deg);
        top: 0;
    }

    .menu-btn:checked~.menu-icon .navicon:after {
        transform: rotate(45deg);
        top: 0;
    }
}

/* --- BUTTONS & GLOBAL UI --- */
.btn {
    background: var(--accent);
    color: #000;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 600;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
}

.btn:hover {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.2);
}

.features-list {
    list-style: none;
    margin: 30px 0;
}

.features-list li {
    color: var(--text-secondary);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
}

.features-list li::before {
    content: "✦";
    margin-right: 12px;
    color: var(--accent);
}

.footer {
    padding: 80px 0;
    border-top: 1px solid var(--border-subtle);
    text-align: center;
    color: var(--text-secondary);
}

/* Add this to pricing.css if not there */
.slider {
    -webkit-appearance: none;
    /* For Chrome/Safari */
    appearance: none;
    /* Standard Property - THIS FIXES THE WARNING */
    width: 100%;
    height: 8px;
    border-radius: 5px;
    background: #333;
    outline: none;
    cursor: pointer;
}

.slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    /* Standard Property - ALSO ADD HERE */
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent, #00d2ff);
    cursor: pointer;
    border: none;
    /* Removes default borders */
}

/* For Firefox Compatibility */
.slider::-moz-range-thumb {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent, #00d2ff);
    cursor: pointer;
    border: none;
}