@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    background: #050816;
    color: #fff;
    overflow-x: hidden;
    position: relative;
}

/* ==========================
BACKGROUND EFFECTS
========================== */

.bg-gradient {
    position: fixed;
    inset: 0;
    background:
        radial-gradient(circle at top left, #2563eb30, transparent 40%),
        radial-gradient(circle at bottom right, #7c3aed30, transparent 40%);
    z-index: -3;
}

.blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -2;
    pointer-events: none;
}

.blob1 {
    width: 400px;
    height: 400px;
    background: #2563eb;
    top: -100px;
    left: -100px;
    opacity: .25;
}

.blob2 {
    width: 400px;
    height: 400px;
    background: #7c3aed;
    right: -100px;
    bottom: -100px;
    opacity: .25;
}

/* ==========================
LAYOUT
========================== */

.container {
    max-width: 1280px;
    margin: auto;
    padding: 0 20px;
}

/* ==========================
HERO
========================== */

.hero {
    min-height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 900px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 22px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .12);
    backdrop-filter: blur(20px);
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    animation: fadeInDown 0.6s ease-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero h1 {
    font-size: 78px;
    font-weight: 900;
    line-height: 1.05;
    margin: 25px 0;
    letter-spacing: -1px;
}

.hero h1 span {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.gradient-text {
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero p {
    max-width: 700px;
    margin: auto;
    font-size: 20px;
    line-height: 1.7;
    color: #b4bfd1;
}

/* ==========================
BUTTONS
========================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 40px;
}

.btn-primary,
.btn-secondary {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 15px;
}

.btn-primary {
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, .4);
}

.btn-primary:active {
    transform: translateY(-1px);
}

.btn-primary:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

.btn-secondary {
    border: 1.5px solid rgba(255, 255, 255, .15);
    color: white;
    background: rgba(255, 255, 255, .05);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
    transform: translateY(-3px);
}

.btn-secondary:active {
    transform: translateY(-1px);
}

.btn-secondary:focus-visible {
    outline: 2px solid #60a5fa;
    outline-offset: 2px;
}

/* ==========================
SECTION
========================== */

.pricing-section {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: 54px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-header p {
    color: #94a3b8;
    font-size: 18px;
}

.plan-category {
    margin-bottom: 120px;
}

.plan-category h3 {
    font-size: 34px;
    margin-bottom: 35px;
}

/* ==========================
CARDS
========================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(360px, 1fr));
    gap: 35px;
}

.card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;

    padding: 35px;

    border-radius: 30px;

    background: rgba(255, 255, 255, .05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, .08);

    transition: all 0.35s ease;
    overflow: hidden;
}

.card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, .06),
        transparent);
    pointer-events: none;
}

.card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 80px rgba(37, 99, 235, .2);
    border-color: rgba(96, 165, 250, .2);
}

.featured {
    border: 2px solid #3b82f6;
    box-shadow:
        0 0 40px rgba(59, 130, 246, .25);
}

.enterprise {
    border: 2px solid #f59e0b;
    box-shadow:
        0 0 40px rgba(245, 158, 11, .15);
}

/* ==========================
BADGES
========================== */

.popular-badge {
    position: absolute;
    top: 20px;
    right: 20px;

    padding: 8px 15px;

    font-size: 12px;
    font-weight: 700;

    border-radius: 999px;

    background: #2563eb;
}

.gold {
    background: #f59e0b;
}

/* ==========================
CARD CONTENT
========================== */

.card-header h4 {
    font-size: 24px;
    font-weight: 700;
}

.card-header span {
    display: block;
    margin-top: 5px;
    color: #94a3b8;
}

.price {
    font-size: 64px;
    font-weight: 900;
    margin: 30px 0;
    line-height: 1;
}

/* ==========================
PRODUCT TAGS
========================== */

.products {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 25px;
}

.products span {
    padding: 10px 14px;
    font-size: 13px;
    border-radius: 999px;

    background:
        rgba(255, 255, 255, .06);

    border:
        1px solid rgba(255, 255, 255, .08);
}

/* ==========================
SELECT BUTTON
========================== */

.select-btn {
    width: 100%;
    padding: 16px;
    margin-top: 10px;

    border: none;
    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);

    color: white;
    font-size: 15px;
    font-weight: 700;

    cursor: pointer;
    transition: .3s;
}

.select-btn:hover {
    transform: translateY(-2px);
    box-shadow:
        0 15px 30px rgba(37, 99, 235, .35);
}

/* ==========================
CTA
========================== */

.cta {
    padding: 100px 20px;
}

.cta-box {
    max-width: 1100px;
    margin: auto;

    padding: 80px;

    border-radius: 40px;

    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);

    text-align: center;
}

.cta-box h2 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 15px;
}

.cta-box p {
    font-size: 18px;
    opacity: .9;
}

.cta-box button {
    margin-top: 30px;

    padding: 16px 35px;

    border: none;
    border-radius: 14px;

    font-weight: 700;
    font-size: 15px;

    cursor: pointer;
    transition: .3s;
}

.cta-box button:hover {
    transform: translateY(-3px);
}

/* ==========================
MODAL
========================== */

.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.modal-content {
    width: 90%;
    max-width: 450px;

    background: #111827;

    border-radius: 24px;
    padding: 35px;

    position: relative;

    border: 1px solid rgba(255, 255, 255, .08);

    text-align: center;
}

.close-btn {
    position: absolute;
    top: 15px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;
    border-radius: 50%;

    background: rgba(255, 255, 255, .08);
    color: white;

    cursor: pointer;
}

.plan-summary {
    margin: 25px 0;
}

#selectedPlan {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 15px;
}

.selected-price-box {
    padding: 16px;
    border-radius: 14px;
    background: rgba(255, 255, 255, .06);
    font-size: 30px;
    font-weight: 800;
}

#continueBtn {
    width: 100%;
    padding: 16px;
    border: none;
    border-radius: 14px;

    background:
        linear-gradient(135deg,
            #2563eb,
            #7c3aed);

    color: white;
    font-weight: 700;
    cursor: pointer;
}

/* ==========================
MOBILE
========================== */

@media(max-width:768px) {

    .hero h1 {
        font-size: 46px;
    }

    .hero p {
        font-size: 16px;
    }

    .section-header h2 {
        font-size: 36px;
    }

    .plan-category h3 {
        font-size: 28px;
    }

    .price {
        font-size: 48px;
    }

    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .cta-box {
        padding: 40px 25px;
    }

    .cta-box h2 {
        font-size: 34px;
    }

    .stats-grid,
    .features-grid,
    .why-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .contact-form {
        gap: 20px;
    }

    .hero {
        min-height: 70vh;
        padding: 60px 20px;
    }

}

/* ==========================
FOOTER
========================== */

.footer {
    padding: 80px 0 30px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    background: rgba(255, 255, 255, .02);
    backdrop-filter: blur(20px);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
}

.footer-column h3 {
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.footer-column p {
    color: #94a3b8;
    line-height: 1.8;
    font-size: 15px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 12px;
    color: #94a3b8;
    font-size: 15px;
}

.footer-column ul li a {
    color: #94a3b8;
    text-decoration: none;
    transition: .3s;
}

.footer-column ul li a:hover {
    color: #60a5fa;
    padding-left: 5px;
}

.footer-bottom {
    margin-top: 50px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .08);
    text-align: center;
    font-size: 14px;
    color: #94a3b8;
}

/* Mobile Footer */

@media(max-width:992px) {

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 35px;
    }

}

@media(max-width:768px) {

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-column ul li a:hover {
        padding-left: 0;
    }

}

.stats {
    padding: 40px 0 80px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
}

.stat h3 {
    font-size: 42px;
    font-weight: 800;
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat p {
    margin-top: 8px;
    color: #94a3b8;
}

@media(max-width:768px) {

    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

}

/* ==========================
TESTIMONIALS
========================== */

.testimonial-slider {
    overflow: hidden;
    position: relative;
    margin-top: 50px;
}

.testimonial-track {
    display: flex;
    gap: 25px;
    width: max-content;
    animation: slideTestimonials 25s linear infinite;
}

.testimonial-track:hover {
    animation-play-state: paused;
}

.testimonial-card {
    width: 380px;
    flex-shrink: 0;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);

    backdrop-filter: blur(20px);

    padding: 30px;
    border-radius: 24px;
}

@keyframes slideTestimonials {

    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }

}

.reveal {
    opacity: 0;
    transform: translateY(50px);
    transition: 1s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
NAVBAR
======================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    backdrop-filter: blur(20px);
    background: rgba(5, 8, 22, .75);
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    box-shadow: 0 10px 40px rgba(37, 99, 235, .1);
    padding: 12px 50px;
}

.navbar-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.logo:hover {
    transform: translateX(2px);
}

.logo-icon {
    font-size: 32px;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: #60a5fa;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-btn {
    padding: 12px 24px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, .3);
}

.nav-btn:active {
    transform: translateY(0);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 5px;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 2px;
    background: #fff;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
    transform: rotate(45deg) translateY(12px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
    transform: rotate(-45deg) translateY(-12px);
}

@media(max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(5, 8, 22, .95);
        backdrop-filter: blur(20px);
        padding: 20px;
        gap: 15px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav-menu.active {
        max-height: 300px;
    }

    .nav-link::after {
        display: none;
    }

    .navbar-container {
        padding: 15px 20px;
    }
}

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    z-index: 99999;
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    box-shadow: 0 0 10px rgba(96, 165, 250, .5);
    transition: width 0.1s ease;
}

/* ========================================
TRUST BADGES
======================================== */

.trust-badges {
    padding: 30px 0 80px;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trust-grid div {
    text-align: center;
    padding: 25px;
    border-radius: 20px;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    backdrop-filter: blur(20px);
    font-weight: 600;
}

/* ========================================
FEATURES
======================================== */

.features {
    padding: 120px 0;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.feature-card {
    text-align: center;
    padding: 35px;
    border-radius: 24px;

    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);

    transition: .4s;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, .2);
}

.icon {
    font-size: 48px;
    margin-bottom: 15px;
}

.feature-card h3 {
    margin-bottom: 12px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
}

/* ========================================
WHY US
======================================== */

.why-us {
    padding: 120px 0;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.why-card {
    padding: 40px;
    text-align: center;
    border-radius: 24px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
}

.why-card h3 {
    font-size: 42px;
    margin-bottom: 10px;
    background: linear-gradient(90deg, #60a5fa, #a855f7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* ========================================
FAQ
======================================== */

.faq {
    padding: 120px 0;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .03);
    border: 1px solid rgba(255, 255, 255, .08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(96, 165, 250, .3);
    background: rgba(255, 255, 255, .06);
}

.faq-question {
    width: 100%;
    padding: 22px 25px;
    border: none;
    background: transparent;
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.faq-question:hover {
    padding-left: 28px;
}

.faq-icon {
    font-size: 20px;
    transition: transform 0.3s ease;
    color: #60a5fa;
    font-weight: 300;
}

.faq-question[aria-expanded="true"] .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.7;
    padding: 0 25px;
}

.faq-answer.show {
    max-height: 300px;
    padding: 0 25px 20px;
}

/* ========================================
CONTACT FORM
======================================== */

.contact-section {
    padding: 120px 0;
}

.contact-form {
    max-width: 800px;
    margin: auto;
    display: grid;
    gap: 25px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 14px;
    font-weight: 600;
    color: #cbd5e1;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.contact-form input,
.contact-form textarea {
    padding: 16px 18px;
    background: rgba(255, 255, 255, .05);
    border: 1.5px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    color: white;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    outline: none;
    transition: all 0.3s ease;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: #64748b;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: rgba(96, 165, 250, .5);
    background: rgba(255, 255, 255, .08);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, .1);
}

.contact-form input.error,
.contact-form textarea.error {
    border-color: #ef4444;
    background: rgba(239, 68, 68, .05);
}

.error-message {
    font-size: 12px;
    color: #ef4444;
    min-height: 18px;
    display: block;
}

.submit-btn {
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .3);
}

.submit-btn:active {
    transform: translateY(0);
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-success {
    background: rgba(34, 197, 94, .1);
    border: 1px solid rgba(34, 197, 94, .3);
    color: #86efac;
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 20px;
    display: none;
}

/* ========================================
WHATSAPP FLOAT
======================================== */

.whatsapp-float {

    cursor: pointer;

    position: fixed;
    bottom: 30px;
    right: 30px;

    width: 65px;
    height: 65px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    text-decoration: none;
    font-size: 30px;

    background: #25D366;
    color: white;

    box-shadow: 0 10px 30px rgba(37, 211, 102, .4);

    z-index: 999;
}

#backToTop {
    position: fixed;
    right: 25px;
    bottom: 105px;

    width: 55px;
    height: 55px;

    border: none;
    border-radius: 50%;

    font-size: 22px;
    cursor: pointer;

    background: linear-gradient(135deg, #2563eb, #7c3aed);
    color: white;

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;

    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 99, 235, .3);
}

#backToTop.show {
    opacity: 1;
    visibility: visible;
}

#backToTop:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(37, 99, 235, .4);
}

/* ========================================
TESTIMONIAL IMPROVEMENTS
======================================== */

.testimonial-card {
    transition: .4s;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 60px rgba(37, 99, 235, .2);
}

.stars {
    font-size: 20px;
    margin-bottom: 15px;
}

.reviewer {
    margin-top: 20px;
}

.reviewer span {
    display: block;
    color: #94a3b8;
    margin-top: 5px;
}

/* ========================================
CARD GLOW EFFECT
======================================== */

.card:hover::after {
    content: '';
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at top,
            rgba(96, 165, 250, .15),
            transparent 60%);

    pointer-events: none;
}

/* ========================================
RESPONSIVE
======================================== */

@media(max-width:1024px) {

    .features-grid,
    .why-grid,
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media(max-width:768px) {

    .navbar {
        padding: 15px 20px;
    }

    .navbar nav {
        display: none;
    }

    .features-grid,
    .why-grid,
    .trust-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-card {
        width: 300px;
    }

    .logo {
        font-size: 22px;
    }
}

.mouse-glow{
    position:fixed;
    width:300px;
    height:300px;
    border-radius:50%;
    background:rgba(59,130,246,.08);
    filter:blur(80px);
    pointer-events:none;
    transform:translate(-50%,-50%);
    z-index:-1;
}

#backToTop{
    position:fixed;
    right:25px;
    bottom:25px;
    width:55px;
    height:55px;
    border:none;
    border-radius:50%;
    background:#2563eb;
    color:#fff;
    font-size:22px;
    cursor:pointer;
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

#backToTop.show{
    opacity:1;
    visibility:visible;
}

.reveal{
    opacity:0;
    transform:translateY(40px);
}

.active{
    opacity:1;
    transform:translateY(0);
    transition: all .8s ease;
}

#company-email,
#company-cin {
    white-space: nowrap;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin: 12px 0;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: #fff;
    padding-left: 8px;
}

.footer-column ul {
    list-style: none;
    padding: 0;
}

.footer-column ul li {
    margin-bottom: 10px;
    line-height: 1.6;
    word-break: break-word;
}