@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

/* Default Light Theme for the rest of the site */
body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: #f8fafc;
    color: #0f172a;
    margin: 0;
    scroll-behavior: smooth;
}

.hero-gradient {
    background: linear-gradient(135deg, #0284c7 0%, #0369a1 40%, #d4d4d8 40.1%, #e2e8f0 100%);
    min-height: 70vh;
    position: relative;
    overflow: hidden;
}

.top-bar {
    background-color: #0c4a6e;
    color: #f0f9ff;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
}

.glass-header {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footer-blue {
    background-color: #0f172a;
    color: white;
}

.nav-link {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: #0284c7;
    transition: width 0.3s;
}

.nav-link:hover::after {
    width: 100%;
}

.content-panel {
    display: none;
    animation: slideDown 0.4s ease-out forwards;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.active-panel {
    display: block !important;
}

.solution-card {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
}

/* Modal Styles - General */
#modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.7);
    backdrop-filter: blur(8px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal-content {
    background: white;
    max-width: 800px;
    width: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: modalIn 0.3s ease-out;
    position: relative;
}

@keyframes modalIn {
    from {
        opacity: 0;
        transform: scale(0.95) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.pulse-2026 {
    animation: pulse-slow 3s infinite;
}

@keyframes pulse-slow {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.6;
    }
}

.float-animation {
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translatey(0px);
    }

    50% {
        transform: translatey(-20px);
    }

    100% {
        transform: translatey(0px);
    }
}

.footer-link {
    transition: color 0.2s ease;
    color: #94a3b8;
}

.footer-link:hover {
    color: #38bdf8;
}

.flag-icon {
    width: 20px;
    height: 15px;
    object-fit: cover;
    border-radius: 2px;
    display: inline-block;
}

.price-card {
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: scale(1.03);
}

/* --- NEW PRICING SECTION STYLES --- */
#prices-panel {
    background-color: #050505;
    background-image:
        radial-gradient(circle at 10% 10%, rgba(245, 158, 11, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 90% 90%, rgba(139, 92, 246, 0.05) 0%, transparent 30%);
    font-family: 'Rajdhani', sans-serif;
    color: #e2e8f0;
}

.orbitron {
    font-family: 'Orbitron', sans-serif;
}

.receipt-font {
    font-family: 'Courier Prime', monospace;
}

.tech-card {
    background: rgba(20, 20, 25, 0.8);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.tech-card:hover {
    border-color: #f59e0b;
    box-shadow: 0 0 25px rgba(245, 158, 11, 0.15);
    transform: translateY(-5px);
}

.active-package {
    border: 1px solid #f59e0b !important;
    background: rgba(245, 158, 11, 0.05) !important;
    box-shadow: 0 0 40px rgba(245, 158, 11, 0.1) !important;
}

.disabled-addon {
    opacity: 0.3;
    cursor: not-allowed !important;
    filter: grayscale(1);
}

.star {
    position: absolute;
    background: white;
    border-radius: 50%;
    opacity: 0.2;
    animation: pulse var(--duration) infinite;
}

input[type="checkbox"]:checked+.addon-inner {
    border-color: #f59e0b !important;
    background: rgba(245, 158, 11, 0.1) !important;
}

.receipt-paper {
    background: #fefefe;
    color: #1a1a1a;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    position: relative;
}

.receipt-paper::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 100%;
    height: 10px;
    background: linear-gradient(-45deg, transparent 5px, #fefefe 5px), linear-gradient(45deg, transparent 5px, #fefefe 5px);
    background-size: 10px 10px;
}

.input-tech {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    padding: 12px;
    width: 100%;
    outline: none;
    transition: border-color 0.3s;
    border-radius: 0.5rem;
}

.input-tech:focus {
    border-color: #f59e0b;
}