:root {
    --primary-gradient: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --secondary-gradient: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --accent-gradient: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --text-dark: #121212;
    --text-light: #f8f9fa;
    --bg-dark: #0a0e27;
    --bg-card: rgba(255, 255, 255, 0.03);
    --glass-border: rgba(255, 255, 255, 0.1);
}

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

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

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: 'Playfair Display', serif;
}


/* Navigation */
.navbar {
    padding: 1.5rem 0;
    background: transparent;
    transition: all 0.3s ease;
}

.navbar.scrolled {

}

.navbar-brand img {
    transition: all 0.3s ease;
}

.navbar-brand:hover img {
    transform: scale(1.05);
}

.nav-link {
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s;
    margin: 0 0.5rem;
    position: relative;
}

.nav-link:focus {
    color: rgba(255, 255, 255, 0.8);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--accent-gradient);
    transition: all 0.3s;
    transform: translateX(-50%);
}

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

.nav-link:hover {
    color: #fff;
}

.navbar-toggler {
    border-color: var(--glass-border);
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Off-canvas Nav Styling */
.offcanvas {
    background: var(--bg-dark);
    color: var(--text-light);
    border-left: 1px solid var(--glass-border);
}

.offcanvas-header {
    border-bottom: 1px solid var(--glass-border);
}

.offcanvas-title {
    font-weight: 600;
}

.offcanvas .btn-close {
    filter: invert(1) brightness(2);
    /* Make the 'X' button white */
}

/* On mobile, stack links */
@media (max-width: 991px) {
    .offcanvas .navbar-nav .nav-link {
        font-size: 1.25rem;
        /* Make links bigger for mobile */
        padding: 1rem 0;
        text-align: center;
    }

    .offcanvas .navbar-nav .nav-item {
        width: 100%;
    }

    .offcanvas .navbar-nav .btn-gradient {
        width: 90%;
        margin-top: 1rem;
        margin-left: auto;
        margin-right: auto;
        display: block;
    }

    .offcanvas .navbar-nav .nav-item.ms-3 {
        margin-left: 0 !important;
    }
}

/* Buttons */
.btn-gradient {
    background: var(--primary-gradient);
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.btn-gradient::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-gradient:hover::before {
    left: 100%;
}

.btn-gradient:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.4);
}

/* Animated Badge */
.animated-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(10px);
    animation: badgePulse 2s ease infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }

    50% {
        box-shadow: 0 0 30px rgba(102, 126, 234, 0.6);
    }
}

.party-emoji {
    animation: party 1s ease infinite;
}

@keyframes party {

    0%,
    100% {
        transform: rotate(-10deg);
    }

    50% {
        transform: rotate(10deg);
    }
}



/* Browser Mockup */
.browser-mockup {
    margin-top: 4rem;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.4);
    transition: transform 0.5s ease;
}

.browser-mockup:hover {
    transform: translateY(-10px) scale(1.02);
}

.browser-header {
    background: rgba(255, 255, 255, 0.05);
    padding: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid var(--glass-border);
}

.browser-dots {
    display: flex;
    gap: 8px;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.dot-1 {
    background: #ff5f56;
}

.dot-2 {
    background: #ffbd2e;
}

.dot-3 {
    background: #27c93f;
}

.browser-address-bar {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.browser-content img {
    width: 100%;
    display: block;
}

/* Benefits Section */
.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 3rem;
    backdrop-filter: blur(20px);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(102, 126, 234, 0.1) 0%, transparent 70%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.5s;
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-card:hover {
    transform: translateY(-12px);
    border-color: rgba(102, 126, 234, 0.5);
    box-shadow: 0 30px 60px rgba(102, 126, 234, 0.2);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    border-radius: 20px;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin-bottom: 1.5rem;
    transition: all 0.3s;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1) rotate(5deg);
}

.benefit-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

/* Feature Highlight */
.feature-highlight {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 30px;
    padding: 4rem;
    backdrop-filter: blur(20px);
    position: relative;
    overflow: hidden;
}

.feature-highlight::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(245, 87, 108, 0.2) 0%, transparent 70%);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translate(0, 0);
    }

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

/* Stats Counter */
.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

/* FAQ */
.accordion-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: 16px !important;
    margin-bottom: 1rem;
    overflow: hidden;
}

.accordion-button {
    background: transparent;
    color: white;
    font-weight: 600;
    padding: 1.5rem;
    border: none;
}

.accordion-button:not(.collapsed) {
    background: rgba(102, 126, 234, 0.1);
    color: white;
}

.accordion-button::after {
    filter: invert(1);
}

.accordion-body {
    color: rgba(255, 255, 255, 0.8);
    padding: 1.5rem;
}

/* Footer */
footer {
    background: rgba(0, 0, 0, 0.3);
    border-top: 1px solid var(--glass-border);
    padding: 4rem 0 2rem;
}

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    margin-right: 1rem;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

/* Section Animations */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 991px) {
    #hero h1 {
        font-size: 3rem;
    }

    .benefit-card {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    #hero h1 {
        font-size: 2.2rem;
    }

    .feature-highlight {
        padding: 2rem;
    }
}

/* WhatsApp Button */
.btn-whatsapp {
    background: #25D366;
    color: white;
    font-weight: 600;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    transition: all 0.3s;
}

.btn-whatsapp:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0 auto;
}

section {
    padding: 100px 0;
}


.fab-container {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: none;
    flex-direction: column;
    gap: 15px;
}

.fab {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.fab-app {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.fab-top {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.fab:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

/* Icon Utilities */
.icon-gradient-text {
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.icon-xxl {
    font-size: 8rem;
}

/* Background Utilities */
.bg-dark-glass {
    background: rgba(0,0,0,0.3);
}

.bg-dark-glass-light {
    background: rgba(0,0,0,0.2);
}

.bg-gradient-primary-to-secondary {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(245, 87, 108, 0.1) 100%);
}

/* Keyboard/Code Snippet Utilities */
.kbd-snippet {
    background: rgba(255,255,255,0.1);
    padding: 4px 8px;
    border-radius: 4px;
}

.kbd-big {
    background: rgba(102, 126, 234, 0.2);
    color: #fff;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 1.2rem;
    border: 1px solid rgba(102, 126, 234, 0.5);
}

/* Component-like utilities */
.stat-box {
    background: rgba(102, 126, 234, 0.1);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(102, 126, 234, 0.2);
}

.code-mockup {
    background: #1a1a2e;
    border: 1px solid #0f3460;
    border-radius: 12px;
    padding: 20px;
}

.code-mockup-header {
    display: flex;
    gap: 8px;
    margin-bottom: 15px;
}

.code-mockup-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.code-mockup pre {
    background: #16213e;
    padding: 15px;
    border-radius: 8px;
    color: #a0aec0;
    font-size: 13px;
    margin: 0;
    overflow-x: auto;
}

.code-mockup code .token-keyword { color: #f472b6; }
.code-mockup code .token-function { color: #60a5fa; }
.code-mockup code .token-comment { color: #7c3aed; }
.code-mockup code .token-variable { color: #34d399; }
.code-mockup code .token-string { color: #fbbf24; }
.code-mockup code .token-number { color: #a78bfa; }

.icon-box {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box i {
    font-size: 24px;
}

.sub-text {
    font-size: 13px;
    color: #888;
    margin-left: 65px;
}

.lead-paragraph-lg {
    margin: 0 auto;
}

.lead {
    font-size: 1.3rem;
}