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

body {
    font-family: 'Inter', sans-serif;
    background-color: #050505;
    color: #ffffff;
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(5, 5, 5, 0.95);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
    padding: 1rem 0;
}

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



.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #00d4ff, #00d4ff);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo-icon {
    width: 50px;
    /* control image size */
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    /* prevents image from squishing */
}

.logo-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    /* keeps logo from stretching */
    border-radius: 8px;
    /* optional: makes it slightly rounded */
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
}

.nav-link {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.3s;
}

.nav-link:hover {
    color: #00d4ff;
}

.cta-button {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: white;
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #00d4ff;
    margin: 4px 0;
    transition: 0.3s;
}

/* ============ HERO SECTION ============ */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 215, 0, .12);
    color: #FFD54A;
    padding: 10px 18px;
    border-radius: 30px;
    margin-bottom: 25px;
    font-weight: 600;
    border: 1px solid rgba(255, 215, 0, .2);
}

.hero-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 30px 0;
}

.hero-tags span {
    padding: 10px 18px;
    border-radius: 25px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    color: #fff;
    font-size: 14px;
}

.hero-tags i {
    color: #FFD54A;
    margin-right: 6px;
}

.hero-trust {
    display: flex;
    gap: 25px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #d8d8d8;
}

.trust-item i {
    color: #22c55e;
}

.hero-image {
    width: 430px;
    max-width: 100%;
    animation: float 5s ease-in-out infinite;
}

.hero-glow {
    position: absolute;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, #FFD54A33, transparent);
    filter: blur(30px);
    border-radius: 50%;
    z-index: -1;
}

.floating-card {
    position: absolute;
    background: #111827;
    color: #fff;
    padding: 12px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    border: 1px solid rgba(255, 255, 255, .08);
    animation: float 4s ease-in-out infinite;
}

.floating-card i {
    color: #FFD54A;
}

.card-1 {
    top: 20px;
    left: -30px;
}

.card-2 {
    top: 90px;
    right: -40px;
}

.card-3 {
    bottom: 70px;
    left: -20px;
}

.card-4 {
    bottom: 20px;
    right: -25px;
}

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

    50% {
        transform: translateY(-15px);
    }

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


.hero {
    padding-top: 120px;
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;

    background: url("images/imgs (6).jpg") center center/cover no-repeat;
}

/* =========================
   ABOUT SECTION
========================= */

.about {
    padding: 100px 0;
    background: #0d1117;
}

.about-content {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 70px;
    align-items: center;
}

.testimonials {
    text-align: center;
    padding: 30px 0;
}

.section-tag {
    display: inline-block;
    color: #00d084;
    font-weight: 600;
    margin-bottom: 15px;
    letter-spacing: 1px;
    font-size: 14px;
}

.about-section-title {
    font-size: 42px;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.about-text {
    margin: 20px 0;
    color: #b8bcc8;
    line-height: 1.9;
    font-size: 16px;
}

.about-note {
    margin-top: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 15px;
    padding: 18px 20px;
}

.about-note i {
    color: #FFD700;
    font-size: 24px;
    flex-shrink: 0;
}

.about-note span {
    color: #fff;
    line-height: 1.6;
}

.about-right {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.about-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 18px;
    padding: 28px;
    transition: .35s;
}

.about-card:hover {
    transform: translateY(-8px);
    border-color: #00d084;
}

.about-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #00d084, #00a6ff);
    color: #fff;
    font-size: 24px;
    margin-bottom: 20px;
}

.about-card h4 {
    margin-bottom: 12px;
    color: #fff;
    font-size: 20px;
}

.about-card p {
    color: #b8bcc8;
    line-height: 1.7;
    font-size: 15px;
}


/* Dark Overlay */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(5, 5, 5, 0.75);
    /* Adjust opacity here */
    z-index: 1;
}

/* Keep content above the overlay */
.hero .container {
    position: relative;
    z-index: 2;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.animated-gradient {
    position: absolute;
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0px) translateX(0px);
    }

    50% {
        transform: translateY(-30px) translateX(30px);
    }
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #FBBF24;
    border-radius: 50%;
    animation: drift 20s infinite linear;
}

.particle-1 {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.particle-2 {
    top: 50%;
    left: 80%;
    animation-delay: 5s;
}

.particle-3 {
    top: 70%;
    left: 40%;
    animation-delay: 10s;
}

@keyframes drift {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 1;
    }

    100% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0;
    }
}

.candlestick-chart {
    position: absolute;
    top: 50%;
    right: 10%;
    width: 200px;
    height: 150px;
    opacity: 0.2;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-headline {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.gradient-text {
    background: linear-gradient(135deg, #7C3AED, #A855F7, #22D3EE);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #b0b0b0;
    margin-bottom: 2rem;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px 30px;
    /* row gap | column gap */
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

.hero-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
}

.checkmark {
    color: #00d4ff;
    /* or your theme color */
    flex-shrink: 0;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: white;
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.5);
}

.btn-secondary {
    background: transparent;
    color: #22D3EE;
    border: 2px solid #22D3EE;
}

.btn-secondary:hover {
    background: rgba(34, 211, 238, 0.1);
}

.btn-large {
    padding: 18px 42px;
    font-size: 1.1rem;
    border-radius: 50px;

    background: linear-gradient(135deg, #7C3AED, #A855F7);
    color: #fff;
    border: none;
    cursor: pointer;

    transition: .35s;
    box-shadow: 0 10px 35px rgba(124, 58, 237, .4);
}

.btn-large:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 45px rgba(124, 58, 237, .6);
}

.hero-right {
    position: relative;
    height: 400px;
}

.robot-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.robot {
    font-size: 8rem;
    animation: bounce 3s ease-in-out infinite;
}


@keyframes bounce {

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

    50% {
        transform: translateY(-30px);
    }
}

.floating-coin {
    position: absolute;
    font-size: 2rem;
    animation: spin 4s linear infinite;
}

.coin-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.coin-2 {
    top: 60%;
    right: 20%;
    animation-delay: 2s;
}

@keyframes spin {
    0% {
        transform: rotateZ(0deg) translateY(0);
        opacity: 1;
    }

    50% {
        opacity: 1;
    }

    100% {
        transform: rotateZ(360deg) translateY(-50px);
        opacity: 0;
    }
}

.glow-circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid #7C3AED;
    animation: pulse 2s ease-in-out infinite;
}

.glow-1 {
    width: 150px;
    height: 150px;
    top: 25%;
    left: 50%;
    opacity: 0.3;
}

.glow-2 {
    width: 200px;
    height: 200px;
    top: 15%;
    left: 35%;
    opacity: 0.2;
    animation-delay: 1s;
}

@keyframes pulse {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.3;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.6;
    }
}

/* ============ STATISTICS SECTION ============ */
.statistics {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(124, 58, 237, 0.05), rgba(168, 85, 247, 0.05));
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    font-family: 'Space Grotesk', sans-serif;
}

.about-section-title {
    text-align: start;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 4rem;
    font-family: 'Space Grotesk', sans-serif;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.stat-card {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.1));
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.stat-card:hover {
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.2);
}

.stat-value {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
}

.stat-label {
    color: #b0b0b0;
    font-size: 1rem;
}

/* ============ HOW IT WORKS ============ */
.how-it-works {
    position: relative;
    padding: 100px 0;
    overflow: hidden;

    background: url("images/imgs\ \(7\).jpg") center center/cover no-repeat;
}

.how-it-works::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.25), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.18), transparent 35%),
        linear-gradient(rgba(5, 5, 5, .88), rgba(5, 5, 5, .92));

    z-index: 1;
}

.how-it-works .container {
    position: relative;
    z-index: 2;
}

.work-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.work-card {
    background: rgba(255, 255, 255, 0.06);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;

    padding: 35px;
    transition: .4s ease;
}

.work-card:hover {
    transform: translateY(-10px);
    border-color: #7C3AED;
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.3);
}

/* .work-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
} */

.work-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;

    background: linear-gradient(135deg, #7C3AED, #A855F7);

    color: #fff;

    font-size: 32px;

    box-shadow: 0 15px 35px rgba(124, 58, 237, .35);

    transition: .4s ease;
}

.work-card:hover .work-icon {
    transform: rotate(-10deg) scale(1.1);
    box-shadow: 0 20px 45px rgba(124, 58, 237, .6);
}

.work-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.work-card p {
    color: #b0b0b0;
    line-height: 1.6;
}

/* ============ FEATURES SECTION ============ */
.features {
    padding: 80px 0;
    background: linear-gradient(180deg, rgba(34, 211, 238, 0.05), rgba(124, 58, 237, 0.05));
}

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

.dashboard-mockup {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5), rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
    border-radius: 15px;
    padding: 1.5rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dashboard-header {
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: #FBBF24;
}

.dashboard-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.5rem;
    height: 150px;
    margin-bottom: 1.5rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(135deg, #7C3AED, #A855F7);
    border-radius: 5px;
    transition: all 0.3s;
}

.dashboard-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.stat-item span:first-child {
    color: #b0b0b0;
    font-size: 0.9rem;
}

.stat-item .value {
    color: #FBBF24;
    font-weight: 700;
}

.features-right h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    font-family: 'Space Grotesk', sans-serif;
}

.features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
}

.feature-icon {
    font-size: 1.8rem;
    flex-shrink: 0;
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.feature-item p {
    color: #b0b0b0;
    font-size: 0.9rem;
}

/* ============ DASHBOARD PREVIEW ============ */
.dashboard-preview {
    padding: 80px 0;
}

.dashboard-large {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1), rgba(168, 85, 247, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.2);
    border-radius: 20px;
    padding: 2rem;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
}

.dashboard-panel {
    background: rgba(0, 0, 0, 0.5);
    border-radius: 15px;
    padding: 2rem;
}

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

.panel-header h3 {
    font-size: 1.3rem;
    font-family: 'Space Grotesk', sans-serif;
}

.live-badge {
    background: #22D3EE;
    color: #050505;
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.portfolio-chart {
    height: 200px;
    margin-bottom: 2rem;
}

.chart-line {
    width: 100%;
    height: 100%;
}

.portfolio-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.portfolio-stat {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.portfolio-stat span:first-child {
    color: #b0b0b0;
}

.profit {
    color: #22D3EE;
    font-size: 1.3rem;
    font-weight: 700;
}

.wins {
    color: #FBBF24;
    font-size: 1.3rem;
    font-weight: 700;
}

/* ============ PRICING SECTION ============ */

.pricing {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background: url("images/imgs\ \(3\).jpg") center center/cover no-repeat;
}

/* Dark overlay with purple glow */
.pricing::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.22), transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(34, 211, 238, 0.15), transparent 35%),
        linear-gradient(rgba(5, 5, 5, 0.80),
            rgba(5, 5, 5, 0.90));

    z-index: 1;
}

/* Keep content above overlay */
.pricing .container {
    position: relative;
    z-index: 2;
}


.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.pricing-card {
    position: relative;
    background: rgba(255, 255, 255, 0.05);
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 24px;

    padding: 45px 35px;

    transition: .4s ease;

    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-12px);
    border-color: #7C3AED;
    box-shadow: 0 25px 60px rgba(124, 58, 237, .35);
}

.pricing-card.featured {
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.2), rgba(168, 85, 247, 0.2));
    border: 2px solid #7C3AED;
    box-shadow: 0 0 40px rgba(124, 58, 237, 0.3);
}

.featured-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #FBBF24;
    color: #050505;
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-family: 'Space Grotesk', sans-serif;
}

.price {
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1rem;
}

.amount {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #7C3AED, #FBBF24);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.period {
    color: #b0b0b0;
}

.price-description {
    color: #b0b0b0;
    margin-bottom: 1.5rem;
}

.price-features {
    list-style: none;
    margin-bottom: 2rem;
}

.price-features li {
    padding: 0.7rem 0;
    color: #b0b0b0;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

/* ============ TESTIMONIALS ============ */
.stars {
    display: flex;
    gap: 5px;
    margin-bottom: 18px;
}

.stars i {
    color: #FFD700;
    font-size: 18px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 30px;
    transition: .35s;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    border-color: #00d084;
}

.testimonial-text {
    color: #d6d6d6;
    line-height: 1.8;
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.author-avatar {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d084, #00a6ff);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
}

.author-name {
    font-weight: 700;
    color: #fff;
}

.author-title {
    color: #b8bcc8;
    font-size: 14px;
}

/* ============ FAQ ============ */
.faq {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background: url("images/imgs\ \(1\).jpg") center center/cover no-repeat;
}

.faq::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 15% 20%, rgba(124, 58, 237, 0.22), transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(34, 211, 238, 0.12), transparent 35%),
        linear-gradient(rgba(5, 5, 5, 0.80),
            rgba(5, 5, 5, 0.65));

    z-index: 1;
}

.faq .container {
    position: relative;
    z-index: 2;
}

.faq-container {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 20px;

    background: rgba(255, 255, 255, .05);
    -webkit-backdrop-filter: blur(16px);
    backdrop-filter: blur(16px);

    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;

    overflow: hidden;

    transition: .35s ease;
}

.faq-item:hover {
    border-color: #7C3AED;
    box-shadow: 0 20px 45px rgba(124, 58, 237, .25);
}

.faq-question {
    width: 100%;
    padding: 22px 28px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: transparent;
    border: none;

    color: #fff;
    font-size: 1.1rem;
    font-weight: 600;

    cursor: pointer;
}

.faq-question:hover {
    background: rgba(124, 58, 237, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    color: #FBBF24;
    transition: .35s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 28px 22px;
    color: #cbd5e1;
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    display: block;
}

.faq::after {
    content: "";
    position: absolute;

    width: 400px;
    height: 400px;

    left: -120px;
    bottom: -120px;

    background: rgba(124, 58, 237, .22);

    border-radius: 50%;
    filter: blur(120px);

    z-index: 0;
}

/* ============ CTA FINAL ============ */
.cta-final {
    position: relative;
    padding: 120px 0;
    overflow: hidden;

    background: url("images/imgs\ \(4\).jpg") center center/cover no-repeat;
}

/* Dark overlay with purple & gold glow */
.cta-final::before {
    content: "";
    position: absolute;
    inset: 0;

    background:
        radial-gradient(circle at 20% 20%, rgba(124, 58, 237, 0.30), transparent 45%),
        radial-gradient(circle at 80% 70%, rgba(251, 191, 36, 0.15), transparent 35%),
        linear-gradient(rgba(5, 5, 5, 0.85),
            rgba(5, 5, 5, 0.92));

    z-index: 1;
}

/* Keep content above overlay */
.cta-final .container {
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 800px;
    margin: auto;
    text-align: center;
}

.cta-content h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
    font-family: 'Space Grotesk', sans-serif;
}

.cta-content>p {
    color: #d1d5db;
    font-size: 1.2rem;
    margin-bottom: 40px;
}

.cta-stats {
    display: flex;
    justify-content: center;
    gap: 25px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.cta-stats div {
    background: rgba(255, 255, 255, .06);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 20px 30px;
    min-width: 170px;
    transition: .3s;
}

.cta-stats div:hover {
    transform: translateY(-8px);
    border-color: #7C3AED;
    box-shadow: 0 20px 40px rgba(124, 58, 237, .25);
}

.cta-stats strong {
    display: block;
    font-size: 2rem;
    color: #FBBF24;
    margin-bottom: 8px;
}

.cta-guarantee {
    color: #22D3EE;
    font-weight: 600;
    margin-top: 2rem;
}

/* ============ FOOTER ============ */
.footer {
    background: rgba(0, 0, 0, 0.5);
    border-top: 1px solid rgba(124, 58, 237, 0.2);
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    font-family: 'Space Grotesk', sans-serif;
}

.footer-section p {
    color: #b0b0b0;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.7rem;
}

.footer-section a {
    color: #b0b0b0;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #7C3AED;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(124, 58, 237, 0.1);
    border-radius: 50%;
    transition: all 0.3s;
}

.social-icon:hover {
    background: #7C3AED;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(124, 58, 237, 0.1);
    color: #666666;
    font-size: 0.9rem;
}

/* =========================================
   PROOF / SCREENSHOTS SECTION
========================================= */

.proof-section {
    padding: 110px 0;
    background:
        radial-gradient(circle at 20% 20%, rgba(168, 85, 247, 0.08), transparent 35%),
        radial-gradient(circle at 80% 80%, rgba(234, 179, 8, 0.08), transparent 35%),
        #08080d;
    position: relative;
    overflow: hidden;
}

.proof-section .container {
    position: relative;
    z-index: 2;
}

.proof-subtitle {
    max-width: 650px;
    margin: -25px auto 55px;
    text-align: center;
    color: #a7a7b3;
    font-size: 17px;
    line-height: 1.7;
}

.screenshots-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.screenshot-card {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #111118;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.35),
        0 0 30px rgba(168, 85, 247, 0.05);
    cursor: pointer;
    transition: all 0.4s ease;
}

.screenshot-card:hover {
    transform: translateY(-10px);
    border-color: rgba(168, 85, 247, 0.55);
    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.5),
        0 0 35px rgba(168, 85, 247, 0.15);
}

.screenshot-card img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: contain;
    background: #f5f1eb;
    transition: transform 0.5s ease;
}

.screenshot-card:hover img {
    transform: scale(1.025);
}

.screenshot-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 10px;
    background: rgba(8, 8, 13, 0.72);
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
    -webkit-backdrop-filter: blur(3px);
    backdrop-filter: blur(3px);
}

.screenshot-card:hover .screenshot-overlay {
    opacity: 1;
}

.screenshot-overlay i {
    width: 52px;
    height: 52px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #a855f7, #f59e0b);
    font-size: 19px;
}

.screenshot-overlay span {
    font-size: 14px;
    font-weight: 600;
}

/* Disclaimer */
.proof-note {
    max-width: 850px;
    margin: 45px auto 0;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.025);
    color: #888894;
    font-size: 13px;
    line-height: 1.6;
}

.proof-note i {
    color: #a855f7;
    flex-shrink: 0;
}


/* =========================================
   LIGHTBOX
========================================= */

.screenshot-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px;
    background: rgba(0, 0, 0, 0.94);
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);

    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.screenshot-lightbox.active {
    opacity: 1;
    visibility: visible;
}

.screenshot-lightbox img {
    max-width: min(90vw, 900px);
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.7);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    border: none;
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.25s ease;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: linear-gradient(135deg, #a855f7, #f59e0b);
    transform: scale(1.08);
}

.lightbox-close {
    top: 25px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}


/* =========================================
   RESPONSIVE
========================================= */

@media (max-width: 1100px) {
    .screenshots-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 850px;
        margin: auto;
    }
}

@media (max-width: 600px) {
    .proof-section {
        padding: 80px 0;
    }

    .screenshots-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 420px;
    }

    .proof-subtitle {
        font-size: 15px;
        margin-bottom: 35px;
    }

    .proof-note {
        margin: 30px 15px 0;
        padding: 14px;
        font-size: 12px;
    }

    .screenshot-overlay {
        display: none;
    }

    .screenshot-lightbox {
        padding: 20px;
    }

    .screenshot-lightbox img {
        max-width: 95vw;
        max-height: 85vh;
    }

    .lightbox-prev,
    .lightbox-next {
        width: 42px;
        height: 42px;
    }

    .lightbox-prev {
        left: 12px;
    }

    .lightbox-next {
        right: 12px;
    }

    .lightbox-close {
        top: 15px;
        right: 15px;
    }
}


/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .hamburger {
        display: flex;
    }

    .nav-links {
        display: none;
    }

    .hero-headline {
        font-size: 2rem;
    }

    .hero-content {
        grid-template-columns: 1fr;
    }

    .hero-right {
        height: 300px;
    }

    .robot {
        font-size: 5rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .features-content {
        grid-template-columns: 1fr;
    }

    .features-list {
        grid-template-columns: 1fr;
    }

    .cta-stats {
        gap: 1.5rem;
    }
}


/* Tablets */
@media (max-width: 992px) {
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
        align-items: flex-start;
    }

    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }

    .hero-headline {
        font-size: 2.8rem;
    }

    .hero-features {
        display: inline-block;
        text-align: left;
    }

    .hero-buttons {
        justify-content: center;
    }

    .about {
        padding: 80px 0;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-section-title {
        font-size: 34px;
    }

    .about-right {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-author {
        gap: 12px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}


/* Mobile */
@media (max-width: 768px) {

    .hero {
        min-height: auto;
        padding: 110px 20px 70px;
        align-items: flex-start;
    }

    .hero-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero-headline {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1.5rem;
    }

    .hero-right {
        order: -1;
        /* Remove this line if you want the robot below the text */
    }

    .robot {
        font-size: 8rem;
    }

    .hero-buttons {
        justify-content: center;
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

    .hamburger {
        display: flex;
    }

    .cta-button {
        display: none;
    }

    .nav-links {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);

        background: rgba(5, 5, 5, 0.98);
        -webkit-backdrop-filter: blur(20px);
        backdrop-filter: blur(20px);

        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;

        gap: 2rem;

        padding-top: 3rem;

        transition: 0.4s ease;
    }

    .hero-features {
        grid-template-columns: 1fr;
    }

    .nav-links.active {
        left: 0;
    }

    .nav-links li {
        list-style: none;
    }

    .nav-links a {
        font-size: 1.2rem;
        color: white;
        text-decoration: none;
    }

    /* Animate hamburger */
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translateY(12px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translateY(-12px);
    }

    .about {
        padding: 60px 0;
    }

    .about-content {
        gap: 40px;
    }

    .about-section-title {
        font-size: 30px;
        text-align: center;
    }

    .section-tag {
        display: block;
        text-align: center;
    }

    .about-text {
        text-align: center;
        font-size: 15px;
        line-height: 1.8;
    }

    .about-note {
        flex-direction: column;
        text-align: center;
        padding: 20px;
    }

    .about-right {
        grid-template-columns: 1fr;
    }

    .about-card {
        padding: 24px;
        text-align: center;
    }

    .about-icon {
        margin: 0 auto 18px;
    }

    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .testimonial-card {
        padding: 25px;
    }

}

/* =========================
   SMALL PHONES
========================= */

@media (max-width:480px) {

    .about {
        padding: 50px 0;
    }

    .about-section-title {
        font-size: 26px;
    }

    .about-text {
        font-size: 14px;
    }

    .about-card {
        padding: 20px;
    }

    .about-icon {
        width: 55px;
        height: 55px;
        font-size: 20px;
    }

    .about-card h4 {
        font-size: 18px;
    }

}