:root {
    --primary: #1b95bc;
    --primary-dark: #082e40;
    --accent: #3ba4c5;
    --bg-dark: #050d14;
    --text-white: #ffffff;
    --text-gray: #a0aec0;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

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

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

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -1px;
}

.logo-text .accent {
    color: var(--primary);
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

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

/* Dropdown */
.dropdown {
    position: relative;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-dark);
    border: 1px solid var(--glass-border);
    min-width: 160px;
    display: none;
    flex-direction: column;
    padding: 0.5rem 0;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}

.dropdown:hover .dropdown-content {
    display: flex;
}

.dropdown-content a {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: var(--glass);
}

/* Buttons */
.btn-primary {
    background: var(--primary);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
}

.btn-primary:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

.btn-primary-lg {
    background: var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.btn-outline-lg {
    border: 2px solid var(--primary);
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    display: inline-block;
}

.btn-outline-lg:hover {
    background: var(--primary);
}

/* Hero Section */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    padding-top: 80px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('hero-bg.png') no-repeat center center/cover;
    opacity: 0.4;
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(90deg, var(--primary), #fff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.hero-btns {
    display: flex;
    gap: 1.5rem;
}

/* About Us */
.about {
    padding: 100px 0;
    text-align: center;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

.compliance-info {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--glass);
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.compliance-info p {
    margin: 0;
    font-size: 0.95rem;
}

.compliance-info strong {
    color: var(--primary);
    display: block;
    margin-bottom: 0.5rem;
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    position: relative;
    z-index: 10;
    padding-bottom: 5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    padding: 2.5rem;
    border-radius: 20px;
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--glass);
    transform: translateY(-10px);
}

.icon-box {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

/* Packages */
.packages {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.badge {
    background: var(--primary);
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    display: inline-block;
}

.section-header h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.package-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.package-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    padding: 3rem;
    border-radius: 30px;
    text-align: center;
    position: relative;
    transition: var(--transition);
}

.package-card.featured {
    border-color: var(--primary);
    background: rgba(27, 149, 188, 0.05);
    transform: scale(1.05);
}

.package-speed {
    font-size: 4rem;
    font-weight: 700;
    color: var(--primary);
}

.package-speed span {
    font-size: 1.2rem;
    font-weight: 400;
}

.package-price {
    font-size: 2rem;
    margin: 1.5rem 0;
}

.package-price span {
    font-size: 1rem;
    color: var(--text-gray);
}

.package-features {
    text-align: left;
    margin: 2rem 0;
}

.package-features li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

.package-features i {
    color: var(--primary);
    margin-right: 0.5rem;
}

.btn-package {
    display: block;
    width: 100%;
    padding: 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-weight: 600;
}

.package-card:hover .btn-package {
    background: var(--primary);
    border-color: var(--primary);
}

/* Payment */
.payment {
    padding: 100px 0;
    background: rgba(27, 149, 188, 0.02);
}

.payment-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.payment-tabs {
    display: flex;
    gap: 1rem;
    margin: 2rem 0;
}

.tab-link {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 10px;
    cursor: pointer;
}

.tab-link.active {
    background: var(--primary);
}

.tab-content {
    display: none;
    background: var(--glass);
    padding: 2rem;
    border-radius: 20px;
}

.tab-content.show {
    display: block;
}

.tab-content ol {
    padding-left: 1.2rem;
}

.tab-content li {
    margin-bottom: 1rem;
}

.payment-image img {
    width: 100%;
    max-width: 400px;
    filter: drop-shadow(0 20px 50px rgba(27, 149, 188, 0.3));
}

/* Contact */
.contact {
    padding: 100px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-item i {
    width: 50px;
    height: 50px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.contact-form-box {
    background: var(--glass);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
}

.form-group {
    margin-bottom: 1.5rem;
}

input, textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--glass-border);
    border-radius: 10px;
    color: #fff;
    outline: none;
}

/* Payment Declaration */
.payment-declaration {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
}

.checkbox-container {
    display: block;
    position: relative;
    padding-left: 35px;
    margin-bottom: 1.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    user-select: none;
    color: var(--text-gray);
}

.checkbox-container input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: 5px;
}

.checkbox-container:hover input ~ .checkmark {
    background-color: rgba(255,255,255,0.1);
}

.checkbox-container input:checked ~ .checkmark {
    background-color: var(--primary);
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.checkbox-container input:checked ~ .checkmark:after {
    display: block;
}

.checkbox-container .checkmark:after {
    left: 7px;
    top: 3px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-container a {
    color: var(--primary);
    text-decoration: underline;
}

.btn-primary-full:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: var(--text-gray);
}

/* Footer */
footer {
    padding: 80px 0 30px;
    border-top: 1px solid var(--glass-border);
    background: #03080d;
}

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

.footer-about h3 {
    font-size: 1.8rem;
    margin-bottom: 1.5rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-links h4 {
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
    color: var(--text-gray);
}

/* Footer Banner */
.footer-banner {
    margin: 2rem auto;
    text-align: center;
}

.ssl-banner {
    width: 100%;
    max-width: 1000px;
    height: auto;
    filter: brightness(0.9);
    transition: var(--transition);
}

.ssl-banner:hover {
    filter: brightness(1);
}

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

/* Animations */
.animate-up {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }

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

/* WhatsApp */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
    z-index: 1000;
}

/* Responsive */
@media (max-width: 992px) {
    .package-grid, .features, .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    .payment-container, .contact-grid {
        grid-template-columns: 1fr;
    }
    .hero-title {
        font-size: 3rem;
    }
}

/* Subpage Header */
.page-header {
    padding: 150px 0 80px;
    background: linear-gradient(rgba(5, 13, 20, 0.9), rgba(5, 13, 20, 0.9)), url('hero-bg.png') no-repeat center center/cover;
    text-align: center;
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

/* Page Content */
.page-content {
    padding: 80px 0;
    min-height: 50vh;
}

.legal-text {
    background: var(--glass);
    padding: 4rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    max-width: 1000px;
    margin: 0 auto;
}

.legal-text h2 {
    color: var(--primary);
    margin: 2rem 0 1rem;
}

.legal-text p, .legal-text li {
    color: var(--text-gray);
    margin-bottom: 1.2rem;
    font-size: 1.1rem;
}

.legal-text ul {
    list-style: disc;
    padding-left: 2rem;
    margin-bottom: 2rem;
}

/* Login Page */
.login-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(rgba(5, 13, 20, 0.8), rgba(5, 13, 20, 0.8)), url('hero-bg.png') no-repeat center center/cover;
}

.login-box {
    background: var(--glass);
    padding: 3rem;
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    width: 100%;
    max-width: 400px;
    backdrop-filter: blur(20px);
}

.login-box h2 {
    text-align: center;
    margin-bottom: 2rem;
}

/* Dashboard Layout */
.dashboard-container {
    display: flex;
    min-height: 100vh;
    background: var(--bg-dark);
}

.sidebar {
    width: 280px;
    background: rgba(255, 255, 255, 0.02);
    border-right: 1px solid var(--glass-border);
    padding: 2rem;
}

.sidebar-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    display: block;
}

.sidebar-menu li {
    margin-bottom: 0.5rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    color: var(--text-gray);
}

.sidebar-menu a.active, .sidebar-menu a:hover {
    background: var(--glass);
    color: var(--primary);
}

.main-content {
    flex: 1;
    padding: 2rem 3rem;
    overflow-y: auto;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
}

.user-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.user-avatar {
    width: 45px;
    height: 45px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Dashboard Widgets */
.dashboard-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--glass);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

.stat-card h4 {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
}

.status-indicator {
    display: inline-block;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    margin-right: 0.5rem;
}

.status-online { background: #25d366; }
.status-offline { background: #ff4757; }

/* Progress Bars */
.progress-container {
    margin-top: 1rem;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--primary);
    width: 0%;
    transition: width 1s ease;
}

.usage-info {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    margin-top: 0.5rem;
}
