:root {
    --primary-blue: #1e257c;
    --primary-orange: #ff5e00;
    --logout-red: #d93025;

    --brand-gold: #ff5e00;
    --brand-gold-dark: #e65500;

    --bg-dark: #070910;
    --card-dark: #111422;
    --text-main: #f8fafc;
    --text-dim: #94a3b8;
    --glass: rgba(255, 255, 255, 0.03);
    --border: rgba(255, 255, 255, 0.08);

    --primary-gold: #ff5e00;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    overflow-x: hidden;
}

/* --- WHATSAPP FLOATING --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background-color: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.08) rotate(6deg);
}

/* --- GRADIENT TEXT --- */
.gradient-text {
    background: linear-gradient(135deg, var(--primary-orange), #ff9a3d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- NAVBAR --- */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 3px solid #E65500;
    padding: 10px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--primary-blue);
    text-decoration: none;
    text-transform: uppercase;
    min-width: 0;
}

.logo img {
    width: 172px;
    height: 32px;
    object-fit: cover;
    flex-shrink: 0;
}



.nav-links {
    list-style: none;
    display: flex;
    gap: 22px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 0.95rem;
    transition: 0.3s;
    background: none;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.nav-links a:hover {
    color: var(--primary-orange);
}

/* Buttons */
.btn-nav {
    padding: 4px 16px 8px 16px;
    border-radius: 50px;
    color: white !important;
    font-size: 13px;
    text-decoration: none;
    display: inline-block;
    border: var(--primary-orange) !important;
    cursor: pointer;
    
}

.btn-register {
    background: #ff5e00 !important;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.2);
    border: var(--primary-orange) !important;
}

.btn-logout {
    background: var(--logout-red);
    box-shadow: 0 4px 10px rgba(217, 48, 37, 0.2);
}

.login-btn {
    background: var(--primary-orange);
    color: #ff8000 !important;
    padding: 4px 16px 8px 16px !important;
    border: 1px solid #ff8000 !important;
    border-radius: 50px;
    font-weight: 700;
    box-shadow: 0 4px 10px rgba(255, 94, 0, 0.2);
}

.login-btn:hover {
    background: #e65500;
    color: #fff !important;
}

/* Hamburger */
.hamburger {
    display: none;
    cursor: pointer;
    font-size: 28px;
    color: var(--primary-blue);
    background: none;
    border: none;
    line-height: 1;
}

/* --- MOBILE DRAWER --- */
.mobile-drawer {
    position: fixed;
    top: 0;
    left: -300px;
    width: 280px;
    height: 100%;
    background: white;
    z-index: 2000;
    transition: 0.4s ease;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    box-shadow: 10px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-drawer.active {
    left: 0;
}

.mobile-drawer a {
    text-decoration: none;
    color: #1a1a1a;
    font-weight: 600;
    font-size: 15px;
}

.mobile-drawer hr {
    border: none;
    border-top: 1px solid #ddd;
    margin: 10px 0;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1500;
}

.drawer-overlay.active {
    display: block;
}

.close-btn {
    align-self: flex-end;
    font-size: 30px;
    cursor: pointer;
    color: var(--primary-blue);
}

/* --- HERO SECTION --- */
.hero {
    padding: 120px 20px;
    text-align: center;
    background: radial-gradient(circle at top center, rgba(255, 94, 0, 0.12), transparent 50%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.badge-new {
    background: rgba(255, 94, 0, 0.1);
    color: var(--primary-orange);
    padding: 6px 16px;
    border-radius: 100px;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid rgba(255, 94, 0, 0.25);
    display: inline-block;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-top: 20px;
    line-height: 1.1;
    font-weight: 800;
}

.hero p {
    max-width: 700px;
    margin: 25px auto;
    color: var(--text-dim);
    font-size: 1.1rem;
    line-height: 1.7;
}

.hero-btns {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.btn-primary {
    background: var(--primary-blue);
    color: #fff;
    border: none;
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(30, 37, 124, 0.28);
    transition: 0.3s ease;
    font-family: inherit;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(30, 37, 124, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid rgba(255, 94, 0, 0.35);
    padding: 16px 35px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
    font-family: inherit;
}

.btn-outline:hover {
    background: rgba(255, 94, 0, 0.08);
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

/* --- HOW IT WORKS --- */
.how-it-works {
    padding: 80px 20px;
    text-align: center;
}

.section-header {
    max-width: 800px;
    margin: 0 auto 50px;
    text-align: center;
}

.section-header h2,
.section-header h3 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    font-weight: 800;
}

.section-header p {
    color: var(--text-dim);
    line-height: 1.7;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.how-item {
    background: var(--card-dark);
    padding: 30px;
    border-radius: 20px;
    border: 1px solid var(--border);
    transition: 0.3s ease;
}

.how-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 94, 0, 0.35);
}

.how-icon {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.how-item h4 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.how-item p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* --- FEATURES SECTION --- */
.features-section {
    padding: 80px 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.features-container {
    display: flex;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.feature-img {
    flex: 1;
    min-width: 300px;
}

.feature-img img {
    width: 100%;
    border-radius: 20px;
    border: 5px solid var(--border);
    display: block;
}

.feature-list {
    flex: 1;
    min-width: 300px;
}

.f-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.f-item i {
    font-size: 1.5rem;
    color: var(--primary-orange);
    margin-top: 5px;
}

.f-item h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.f-item p {
    color: var(--text-dim);
    line-height: 1.6;
}

/* --- STATS SECTION --- */
.stats {
    padding: 0 20px 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

.stat-item {
    background: var(--card-dark);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: center;
    transition: 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 94, 0, 0.35);
}

.stat-item i {
    font-size: 2rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
}

.stat-item h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-dim);
}

/* --- PRICING SECTION --- */
.pricing {
    padding: 80px 20px;
    text-align: center;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.price-card {
    background: var(--card-dark);
    padding: 40px;
    border-radius: 24px;
    border: 1px solid var(--border);
    text-align: left;
    transition: 0.4s ease;
    position: relative;
}

.price-card:hover {
    border-color: var(--primary-orange);
    transform: translateY(-10px);
}

.price-card.featured {
    border: 2px solid var(--primary-orange);
}

.popular-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-orange);
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 700;
}

.card-top h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.card-top p,
.best-for {
    color: var(--text-dim);
}

.amount {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 20px 0;
}

.amount span {
    font-size: 1rem;
    color: var(--text-dim);
}

.features {
    list-style: none;
    margin: 30px 0;
}

.features li {
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dim);
    line-height: 1.6;
}

.features i {
    color: var(--primary-orange);
    margin-right: 10px;
}

.btn-card {
    width: 100%;
    padding: 14px;
    border-radius: 12px;
    border: 1px solid var(--border);
    background: transparent;
    color: white;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    transition: 0.3s ease;
}

.btn-card:hover {
    border-color: var(--primary-orange);
    color: var(--primary-orange);
}

.btn-card.primary {
    background: var(--primary-orange);
    color: #fff;
    border: none;
}

.btn-card.primary:hover {
    background: #e65500;
    color: #fff;
}

.btn-dark {
    background: #111;
    color: #fff;
    border: 1px solid #333;
}

.btn-dark:hover {
    background: #333;
    color: #fff;
}

/* --- ADDONS TABLE --- */
.addons-section {
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
}

.table-responsive {
    overflow-x: auto;
    border-radius: 12px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
    border: 1px solid var(--border);
}

.addon-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    background: var(--card-dark);
    color: var(--text-main);
}

.addon-table th,
.addon-table td {
    padding: 16px 20px;
}

.addon-table thead tr {
    background: var(--primary-orange);
    color: #fff;
    font-weight: 700;
}

.addon-table tbody tr {
    border-bottom: 1px solid var(--border);
    transition: background 0.3s ease;
}

.addon-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.05);
}

.addon-table tbody tr:last-child {
    border-bottom: none;
}

.addon-price {
    color: #2ecc71;
    font-weight: 700;
    font-size: 1.1rem;
}

.col-price {
    width: 120px;
}

.text-right {
    text-align: right;
}

.text-left {
    text-align: left;
}

.btn-addon {
    padding: 8px 20px;
    border: 1px solid var(--primary-orange);
    background: transparent;
    color: var(--primary-orange);
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: inherit;
}

.btn-addon:hover {
    background: var(--primary-orange);
    color: #fff;
    box-shadow: 0 4px 15px rgba(255, 94, 0, 0.25);
    transform: translateY(-2px);
}

/* --- FAQ SECTION --- */
.faq-section {
    padding: 80px 20px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-container details {
    background: var(--card-dark);
    border: 1px solid var(--border);
    margin-bottom: 15px;
    padding: 18px 20px;
    border-radius: 12px;
    cursor: pointer;
    transition: 0.3s ease;
}

.faq-container details:hover {
    border-color: rgba(255, 94, 0, 0.35);
}

.faq-container summary {
    font-weight: 600;
    outline: none;
    list-style: none;
}

.faq-container summary::-webkit-details-marker {
    display: none;
}

.faq-container p {
    color: var(--text-dim);
    padding-top: 12px;
    font-size: 0.95rem;
    line-height: 1.7;
}

/* --- FOOTER --- */
.main-footer {
    background: #0a0d16;
    padding: 80px 20px 30px;
    border-top: 1px solid var(--border);
    margin-top: 100px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto 60px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-orange);
    text-decoration: none;
    display: block;
    margin-bottom: 20px;
}

.footer-brand p {
    color: var(--text-dim);
    line-height: 1.7;
    font-size: 0.95rem;
    margin-bottom: 25px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: var(--glass);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-main);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-orange);
    color: #fff;
    transform: translateY(-5px);
    border-color: var(--primary-orange);
}

.footer-links h4,
.footer-contact h4 {
    color: var(--text-main);
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
}

.footer-links h4::after,
.footer-contact h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--primary-orange);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 15px;
}

.footer-links ul li a {
    color: var(--text-dim);
    text-decoration: none;
    font-size: 0.9rem;
    transition: 0.3s ease;
}

.footer-links ul li a:hover {
    color: var(--primary-orange);
    padding-left: 8px;
}

.footer-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-main);
    margin-bottom: 12px;
    font-size: 0.9rem;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary-orange);
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    color: var(--text-dim);
    font-size: 0.85rem;
}

.footer-bottom a {
    color: var(--primary-orange);
    text-decoration: none;
}

.footer-legal {
    display: flex;
    gap: 20px;
}

.footer-legal a {
    color: var(--text-dim);
    font-size: 0.85rem;
    text-decoration: none;
    transition: 0.3s ease;
}

.footer-legal a:hover {
    color: var(--text-main);
}

/* --- RESPONSIVE --- */
@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr 1fr;
    }

    .features-container {
        flex-direction: column;
        text-align: center;
    }

    .f-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .f-item i {
        margin-bottom: 10px;
    }

    .nav-links {
        gap: 16px;
    }

    .nav-links a {
        font-size: 0.88rem;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .hamburger {
        display: block;
    }

    .logo span {
        max-width: 150px;
        font-size: 1rem;
    }

    .hero {
        padding: 80px 15px;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .btn-outline,
    .btn-primary {
        width: 100%;
        max-width: 100%;
    }

    .how-it-works,
    .pricing,
    .features-section,
    .faq-section {
        padding-left: 15px;
        padding-right: 15px;
    }

    .price-card {
        padding: 30px 20px;
    }

    .whatsapp-float {
        width: 52px;
        height: 52px;
        font-size: 26px;
        right: 18px;
        bottom: 18px;
    }

    .section-header h2,
    .section-header h3 {
        font-size: 2rem;
    }
}

@media (max-width: 600px) {
    .hero-btns {
        display: flex;
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-links h4::after,
    .footer-contact h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .footer-legal {
        justify-content: center;
    }

    .addon-table th,
    .addon-table td {
        padding: 12px 10px;
        font-size: 0.9rem;
    }

    .btn-addon {
        padding: 6px 12px;
        font-size: 0.85rem;
    }

    .nav-container {
        padding: 0 14px;
    }

    .logo img {
        width: 38px;
        height: 38px;
    }

    .logo span {
        max-width: 120px;
    }

    .stat-item,
    .how-item,
    .price-card {
        padding: 24px 18px;
    }

    .hero p {
        font-size: 1rem;
    }
}