:root {
    --bg-color: #050505;
    --bg-secondary: #0f0f16;
    --text-primary: #ffffff;
    --text-secondary: #a0a0b0;
    --accent-primary: #7000ff;
    --accent-secondary: #00d4ff;
    --gradient-main: linear-gradient(135deg, #7000ff 0%, #00d4ff 100%);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Space Grotesk', sans-serif;
    --font-body: 'Outfit', sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

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

.container-fluid {
    width: 100%;
    padding: 0 20px;
    max-width: 1600px;
    margin: 0 auto;
}

/* Background Glow Effect */
.background-glow {
    position: fixed;
    top: -20%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: radial-gradient(circle, rgba(112, 0, 255, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
}

/* Navbar */
.navbar {
    padding: 20px 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    backdrop-filter: blur(10px);
    background: rgba(5, 5, 5, 0.8);
    border-bottom: 1px solid var(--glass-border);
}

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

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.logo .dot {
    color: var(--accent-secondary);
}

.nav-links {
    display: flex;
    gap: 30px;
}

.nav-links a {
    color: var(--text-secondary);
    font-weight: 500;
}

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

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-primary);
}

/* Buttons */
.btn {
    padding: 10px 24px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.btn-primary {
    background: var(--gradient-main);
    color: white;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(112, 0, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--glass-border);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: var(--glass-bg);
    border-color: var(--text-primary);
}

/* Hero Section */
.hero {
    padding: 160px 0 100px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: center;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.badge {
    background: rgba(0, 212, 255, 0.1);
    color: var(--accent-secondary);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(0, 212, 255, 0.2);
    margin-bottom: 20px;
    display: inline-block;
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    line-height: 1.1;
    margin-bottom: 20px;
}

.gradient-text {
    background: var(--gradient-main);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 15px;
    margin-bottom: 50px;
}

.stats {
    display: flex;
    gap: 40px;
    border-top: 1px solid var(--glass-border);
    padding-top: 30px;
}

.stat-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-item p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin: 0;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    height: 400px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sphere {
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle at 30% 30%, #7000ff, #000);
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.card-visual {
    position: relative;
    width: 320px;
    padding: 20px;
    border-radius: 16px;
    z-index: 2;
    transform: rotate(-5deg);
    transition: transform 0.3s;
}

.card-visual:hover {
    transform: rotate(0deg) scale(1.02);
}

.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.card-header {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--glass-border);
}

.circle {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.red { background: #ff5f56; }
.yellow { background: #ffbd2e; }
.green { background: #27c93f; }

.network-detail {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.9rem;
}

.detail-label {
    color: var(--text-secondary);
}

.detail-value {
    font-weight: 600;
    color: var(--text-primary);
}

.network-activity {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 15px;
    margin: 20px 0;
    border: 1px solid var(--glass-border);
}

.speed-metric {
    margin-bottom: 15px;
}

.speed-metric:last-child {
    margin-bottom: 0;
}

.speed-label {
    font-size: 0.75rem;
    color: var(--text-secondary);
    margin-bottom: 5px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.speed-value {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 6px;
    display: flex;
    align-items: baseline;
    gap: 4px;
}

.unit {
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    border-radius: 2px;
    width: 0%;
    transition: width 0.5s ease-out;
    position: relative;
    overflow: hidden;
}

.progress-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    transform: translateX(-100%);
    animation: shimmer 1.5s infinite;
}

.dl-fill {
    background: var(--accent-secondary);
    width: 85%;
}

.ul-fill {
    background: var(--accent-primary);
    width: 60%;
}

@keyframes shimmer {
    100% { transform: translateX(100%); }
}

.status {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: flex-end;
}

.connected {
    color: #27c93f;
    font-weight: 600;
}

.connected::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    background: #27c93f;
    border-radius: 50%;
    margin-right: 5px;
    box-shadow: 0 0 10px #27c93f;
}

/* Status Indicator / Toggle */
.status-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
}

.iepl-toggle-container {
    display: flex;
    align-items: center;
    gap: 12px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 46px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #333;
    transition: .4s;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 2px;
    bottom: 2px;
    background-color: #888;
    transition: .4s;
    border-radius: 50%;
}

input:checked + .slider {
    background-color: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

input:checked + .slider:before {
    transform: translateX(22px);
    background-color: #ffd700;
    box-shadow: 0 0 10px #ffd700;
}

.status-text {
    font-size: 0.9rem;
    color: var(--text-secondary);
    transition: 0.3s;
    min-width: 60px;
    text-align: right;
}

/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

.network-section {
    padding: 80px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: start;
}

#network-map {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    height: 600px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

@media (max-width: 768px) {
    #network-map {
        height: 400px;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 10px;
}

.section-header p {
    color: var(--text-secondary);
}

.feature-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.feature-card {
    flex: 1 1 300px;
    padding: 40px;
    border-radius: 20px;
    transition: 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-primary);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: rgba(112, 0, 255, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--accent-secondary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* Wide Feature Card Styles */
.wide-feature {
    display: flex;
    flex-direction: column;
}

.wide-feature .feature-action-wrapper {
    margin-top: 15px;
}

.wide-feature .btn {
    font-size: 0.9rem;
    padding: 8px 20px;
}

/* When the card is wide enough (e.g., taking full width on larger screens) */
@media (min-width: 600px) {
    .wide-feature {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
    
    .wide-feature .feature-content-wrapper {
        flex: 1;
        padding-right: 20px;
    }

    .wide-feature .feature-action-wrapper {
        margin-top: 0;
        flex-shrink: 0;
    }
}

/* Pricing Section */
.pricing {
    padding: 100px 0;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: start;
}

.plan-selector-wrapper {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    margin-top: 40px;
}

.plan-controls {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.03);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(10px);
}

.control-group {
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
}

.control-label {
    color: var(--text-secondary);
    font-size: 0.95rem;
    min-width: 100px;
    text-align: right;
    font-weight: 500;
}

.control-options {
    display: flex;
    gap: 8px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px;
    border-radius: 12px;
    flex-wrap: wrap;
}

.control-btn {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
}

.control-btn:hover {
    color: var(--text-primary);
    background: rgba(255, 255, 255, 0.05);
}

.control-btn.active {
    background: var(--accent-primary);
    color: #fff;
    box-shadow: 0 0 20px rgba(112, 0, 255, 0.4);
}

.pricing-display {
    position: relative;
    min-height: 500px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.plan-card {
    display: none;
    flex: 1 1 300px;
    max-width: 350px;
    animation: cardEnter 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    flex-direction: column;
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.plan-card.active {
    display: flex;
}

@keyframes cardEnter {
    from { 
        opacity: 0; 
        transform: rotateX(10deg) translateY(30px) scale(0.95); 
    }
    to { 
        opacity: 1; 
        transform: rotateX(0) translateY(0) scale(1); 
    }
}

/* Pricing Configurator */
.pricing-configurator {
    display: grid;
    grid-template-columns: 1.5fr minmax(300px, 1fr);
    gap: 40px;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    margin-top: 40px;
    position: relative;
    z-index: 1;
    transition: border-color 0.5s ease, box-shadow 0.5s ease;
}

.pricing-configurator::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 215, 0, 0.1) 0%, rgba(255, 215, 0, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    pointer-events: none;
}

.pricing-configurator.iepl-active::before {
    opacity: 1;
}

.config-controls {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.control-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.label-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
}

.label-row label {
    font-weight: 600;
    color: var(--text-secondary);
}

.control-value {
    font-weight: 700;
    color: var(--accent-secondary);
    font-size: 1.1rem;
}

/* Range Slider Styling */
input[type=range] {
    -webkit-appearance: none;
    appearance: none;
    width: 100%;
    background: transparent;
}

input[type=range]:focus {
    outline: none;
}

input[type=range]::-webkit-slider-runnable-track {
    width: 100%;
    height: 8px;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
}

input[type=range]::-webkit-slider-thumb {
    height: 24px;
    width: 24px;
    border-radius: 50%;
    background: var(--accent-secondary);
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -8px;
    box-shadow: 0 0 10px rgba(0, 212, 255, 0.5);
    transition: transform 0.2s;
}

input[type=range]::-webkit-slider-thumb:hover {
    transform: scale(1.1);
}

.slider-labels {
    display: flex;
    justify-content: space-between;
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-top: 5px;
}

/* Toggle Switch */
.toggle-item {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid var(--glass-border);
}

.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 26px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.1);
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    transition: .4s;
}

input:checked + .slider {
    background-color: rgba(255, 215, 0, 0.2);
    border-color: #ffd700;
}

input:checked + .slider:before {
    transform: translateX(24px);
    background-color: #ffd700;
    box-shadow: 0 0 10px #ffd700;
}

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

/* Recommendation Display */
.recommendation-display {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 15px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.recommendation-display::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-main);
}

.recommendation-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    gap: 20px;
}

.recommendation-header h3 {
    font-size: 1.2rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-tag {
    text-align: right;
}

.price-tag span:first-child {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    display: block;
    line-height: 1;
}

.price-tag .period {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.plan-details {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.plan-name-badge {
    display: inline-block;
    background: rgba(112, 0, 255, 0.2);
    color: var(--accent-secondary);
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 20px;
    align-self: flex-start;
    border: 1px solid rgba(112, 0, 255, 0.3);
    min-width: 120px;
    text-align: center;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
    /* min-height moved to media query */
}

.plan-features li {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.plan-features li i {
    color: var(--accent-secondary);
}

.plan-features li.disabled {
    opacity: 0.5;
    text-decoration: line-through;
}

.plan-features li.highlight-feature {
    color: var(--text-primary);
    font-weight: 500;
}

.plan-features li.highlight-feature i {
    color: #ffd700; /* Gold for premium feature */
}

@media (max-width: 768px) {
    html {
        scroll-snap-type: none;
    }

    .control-group {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .control-label {
        text-align: left;
        min-width: auto;
    }
    
    .control-options {
        width: 100%;
    }
    
    .control-btn {
        flex: 1;
        padding: 12px 10px;
        font-size: 0.85rem;
        text-align: center;
    }
    
    .pricing-display {
        min-height: auto;
    }

    .navbar .btn {
        display: none; /* Hide desktop button, maybe add a mobile one or just hide for now */
    }

    .hero {
        padding-top: 120px;
        scroll-snap-align: start;
    }

    .features,
    .network-section,
    .pricing {
        scroll-snap-align: start;
    }

    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

    .footer .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .footer-col p {
        margin: 0 auto;
    }

    .pricing-configurator {
        grid-template-columns: 1fr;
        padding: 20px;
        min-height: auto;
    }
    
    .plan-features {
        min-height: auto;
    }
}

@media (min-width: 769px) {
    .pricing-configurator {
        min-height: 500px;
    }
    
    .plan-features {
        min-height: 220px;
    }
}

/* Laptop / Small Desktop Optimization */
@media (max-width: 1366px), (max-height: 800px) {
    :root {
        font-size: 14px; /* Scale down base font size */
    }

    .container {
        max-width: 1000px;
    }

    .hero {
        padding: 100px 0 60px;
    }

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

    .hero-visual {
        height: 350px;
    }

    .sphere {
        width: 250px;
        height: 250px;
    }

    .card-visual {
        width: 280px;
    }

    .features, .network-section, .pricing {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .feature-card {
        padding: 30px;
    }

    #network-map {
        height: 450px;
    }

    .pricing-configurator {
        min-height: 450px;
        padding: 30px;
    }
}

.highlight-feature {
    color: #ffd700 !important;
    font-weight: 700;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}

.highlight-feature i {
    color: #ffd700 !important;
}

.plan-header {
    text-align: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--glass-border);
}

.plan-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--accent-secondary);
    display: inline-block;
    margin-bottom: 10px;
}

.plan-header h3 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--text-primary);
}

.plan-header .period {
    font-size: 1rem;
    color: var(--text-secondary);
    font-weight: 400;
}

.plan-features {
    margin-bottom: 30px;
    flex-grow: 1;
}

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

.plan-features li i {
    color: #27c93f;
}

.plan-features li.disabled {
    color: rgba(255, 255, 255, 0.3);
}

.plan-features li.disabled i {
    color: #ff5f56;
}

.plan-card .btn {
    width: 100%;
    justify-content: center;
}

/* Network Banner */
.network-banner {
    padding: 100px 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    scroll-snap-align: center;
}

.network-content {
    text-align: center;
    padding: 60px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(112, 0, 255, 0.1) 0%, rgba(0, 0, 0, 0) 100%);
}

.network-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.network-content p {
    color: var(--text-secondary);
    margin-bottom: 30px;
}

/* Footer */
.footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    scroll-snap-align: center;
}

.footer .container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col p {
    color: var(--text-secondary);
    max-width: 300px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--text-secondary);
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

/* Animations */
@keyframes float {
    0% { transform: translateY(0px); }
    50% { transform: translateY(-20px); }
    100% { transform: translateY(0px); }
}

/* Responsive */
@media (max-width: 768px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        position: absolute;
        top: 70px; /* Adjust based on navbar height */
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        align-items: center;
        padding: 30px 0;
        gap: 25px;
        border-bottom: 1px solid var(--glass-border);
        transform: translateY(-20px);
        opacity: 0;
        pointer-events: none;
        transition: 0.3s ease;
    }

    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
}

/* IEPL Active State */
.pricing-configurator.iepl-active .control-item input[type=range] {
    transform: scale(1.02);
}

.pricing-configurator.iepl-active .control-item input[type=range]::-webkit-slider-thumb {
    background: #ffd700;
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.6);
    transform: scale(1.2);
}

.pricing-configurator.iepl-active {
    border-color: rgba(255, 215, 0, 0.3);
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.15);
}

.pricing-configurator.iepl-active .status-indicator {
    background: rgba(255, 215, 0, 0.15);
    color: #ffd700;
    border: 1px solid rgba(255, 215, 0, 0.3);
}

.pricing-configurator.iepl-active .status-dot {
    background-color: #ffd700;
    box-shadow: 0 0 8px #ffd700;
}

.pricing-configurator.iepl-active .status-text {
    font-weight: 600;
    text-shadow: 0 0 10px rgba(255, 215, 0, 0.3);
}