/* ==================== INDEX PAGE CSS ==================== */

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

body {
    font-family: "Inter", sans-serif;
    background: #020617;
    min-height: 100vh;
}



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

/* Typography */
h1 {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.btn-primary {
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    color: #fff;
}

.btn-primary:hover {
    background: linear-gradient(90deg, #22d3ee, #a78bfa);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

.btn-secondary {
    background: transparent;
    color: #fff;
    border: 1px solid #4a5565 !important;
}

.btn-secondary:hover {
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* Navbar */
.navbar {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    animation: slideDown 0.8s ease-out;
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 50;
}

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

.nav_sec {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
    padding: 16px 0;
    position: relative;
}

.logo {
    font-size: 28px;
    font-weight: bold;
    text-decoration: none;
    color: white;
    z-index: 100;
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 100;
}

.hamburger-line {
    width: 100%;
    height: 3px;
    background-color: white;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.hamburger.active .hamburger-line:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

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

.hamburger.active .hamburger-line:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -6px);
}

/* Nav Menu */
.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-link {
    color: #d1d5dc;
    text-decoration: none;
    font-size: 16px;
    font-weight: 500;
    padding: 8px 0;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: white;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(to right, #06b6d4, #a855f7);
    transition: width 0.3s ease;
}

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

/* Nav Buttons */
.nav-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-buttons button {
    color: #fff;
    font-size: 14px;
    border-radius: 6px;
    padding: 10px 16px !important;
    border: none;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

#navLoginBtn {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#navLoginBtn:hover {
    background-color: rgba(255, 255, 255, 0.1) !important;
}

#navGetStartedBtn {
    box-shadow: 0 0 30px rgba(6, 182, 212, 0.4), 0 0 60px rgba(6, 182, 212, 0.2);
    background: linear-gradient(to right, #06b6d4, #a855f7);
    transition: all 0.3s ease;
    border: 1px solid #0da2e7;
}

#navGetStartedBtn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.6), 0 0 80px rgba(6, 182, 212, 0.3);
}

#navAuthButtons {
    display: flex;
    gap: 10px;
}

#navDashboardBtn {
    background: linear-gradient(to right, #06b6d4, #a855f7);
    border: none;
}

#navDashboardBtn:hover {
    transform: translateY(-2px);
}

#navLogoutBtn {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

#navLogoutBtn:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .nav_sec {
        padding: 16px 0;
    }
}

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

    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        flex-direction: column;
        background: rgba(15, 23, 42, 0.95);
        backdrop-filter: blur(30px);
        -webkit-backdrop-filter: blur(30px);
        padding: 20px;
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        z-index: 99;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        padding: 0 10px 10px;
        gap: 10px;
    }

    .nav-link {
        width: 100%;
        text-align: left !important;
        padding: 10px 0;
        text-align: center;
        font-size: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .nav-link::after {
        display: none;
    }

    .nav-buttons {
        position: fixed;
        bottom: 60px;
        left: 50%;
        transform: translateX(-50%);
        flex-direction: column;
        width: 90%;
        max-width: 400px;
        z-index: 100;
    }

    .nav-buttons button {
        width: 100%;
        margin-bottom: 10px;
        padding: 15px !important;
        font-size: 16px;
    }

    #navAuthButtons {
        flex-direction: column;
        width: 100%;
    }

    .nav_sec {
        padding: 16px 0;
        min-height: 70px;
    }

    .modal-content {
        padding: 20px;

    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 24px;
    }

    .nav-buttons {
        width: 95%;
    }

    .nav-menu {
        top: 65px;
    }
}

/* Animation for slide down */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }

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






/* Hero Section */
section.banner-sec {
    margin-top: 70px;
}

.cyan-500 {
    color: #06b6d4;
}

.cyan-400 {
    color: #22d3ee;
}

.cyan-300 {
    color: #67e8f9;
}

.purple-500 {
    color: #8b5cf6;
}

.purple-400 {
    color: #a78bfa;
}

.bg-cyan-500 {
    background-color: #06b6d4;
}

.bg-purple-500 {
    background-color: #8b5cf6;
}

/* Gradient Backgrounds */
.gradient-cyan-purple {
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
}

.gradient-cyan-purple-hover {
    background: linear-gradient(90deg, #22d3ee, #a78bfa);
}

.gradient-text {
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: inline-block;
}

/* Animations */
@keyframes float {

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

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

@keyframes pulse {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

@keyframes bounce {

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

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

@keyframes typing {
    0% {
        width: 0;
    }

    100% {
        width: 100%;
    }
}



/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 130px 0 60px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 30%, rgba(6, 182, 212, 0.1) 0%,
            rgba(139, 92, 246, 0.05) 50%, transparent 100%);
    z-index: -1;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
    z-index: -1;
}

.glow-1 {
    width: 400px;
    height: 400px;
    background: rgba(6, 182, 212, 0.2);
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: rgba(139, 92, 246, 0.2);
    bottom: 20%;
    right: 20%;
    animation-delay: 2s;
}

.hero-content {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-text {
    flex: 1;
    min-width: 300px;
    color: #fff;
}

.hero-visual {
    flex: 1;
    min-width: 300px;
    position: relative;
}

/* Badge */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: 10px 20px;
    margin-bottom: 30px;
}

.badge i {
    color: #22d3ee;
}

.badge span {
    color: #cbd5e1;
    font-size: 14px;
    font-weight: 500;
}



.subtitle {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 500px;
}

/* Buttons */
.btn-container {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 60px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
    min-width: 160px;
}


/* Stats */
.stats {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.stat {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    line-height: 1;
}

.stat-label {
    color: #94a3b8;
    font-size: 14px;
    margin-top: 8px;
}

/* Chat Demo */
.chat-demo {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 25px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    max-width: 500px;
    margin: 0 auto;
    animation: float 6s ease-in-out infinite;
}

.chat-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22d3ee, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
}

.chat-title h3 {
    color: white;
    font-size: 18px;
    margin-bottom: 4px;
}

.chat-status {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #10b981;
    font-size: 13px;
}

.status-dot {
    width: 8px;
    height: 8px;
    background-color: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

/* Messages */
.messages {
    margin-bottom: 20px;
}

.message {
    padding: 12px 16px;
    border-radius: 18px;
    margin-bottom: 12px;
    max-width: 85%;
    font-size: 14px;
    line-height: 1.5;
}

.message.user {
    background: linear-gradient(90deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    margin-left: auto;
    border-bottom-right-radius: 4px;
    color: white;
}

.message.bot {
    background: rgba(255, 255, 255, 0.05);
    border-bottom-left-radius: 4px;
    color: #e2e8f0;
}

/* Typing Indicator */
.typing {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 13px;
    margin-top: 15px;
}

.typing-dots {
    display: flex;
    gap: 4px;
}

.typing-dot {
    width: 8px;
    height: 8px;
    background-color: #22d3ee;
    border-radius: 50%;
}

.typing-dot:nth-child(1) {
    animation: bounce 1s infinite;
}

.typing-dot:nth-child(2) {
    animation: bounce 1s infinite 0.2s;
}

.typing-dot:nth-child(3) {
    animation: bounce 1s infinite 0.4s;
}

/* Chat Input */
.chat-input-container {
    display: flex;
    gap: 10px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.chat-input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 12px 16px;
    color: white;
    font-size: 14px;
    outline: none;
}

.chat-input:focus {
    border-color: #22d3ee;
    box-shadow: 0 0 0 2px rgba(34, 211, 238, 0.2);
}

.send-btn {
    width: 45px;
    height: 45px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    border: none;
    border-radius: 12px;
    color: white;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.send-btn:hover {
    background: linear-gradient(90deg, #22d3ee, #a78bfa);
    transform: translateY(-2px);
}



/* Features Section */
.features {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    height: 50%;
    background: radial-gradient(circle at center, rgba(139, 92, 246, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.section-title p {
    color: #94a3b8;
    font-size: 1.25rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
}

/* Feature Card */
.feature-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: rgba(139, 92, 246, 0.3);
    animation: glow 2s ease-in-out infinite;
}

.feature-icon {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.2), rgba(139, 92, 246, 0.2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.4), rgba(139, 92, 246, 0.4));
    transform: scale(1.1);
}

.feature-icon i {
    font-size: 28px;
    color: #22d3ee;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon i {
    color: #67e8f9;
    transform: scale(1.1);
}

.feature-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.feature-card p {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 1rem;
}


/* ===== MODAL BACKDROP ===== */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    background: linear-gradient(120deg, rgba(10, 15, 30, .8), rgba(30, 41, 59, .9));
    backdrop-filter: blur(8px);
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

.modal.active {
    display: flex;
}

/* ===== MODAL CARD ===== */
.modal-content {
    background: linear-gradient(145deg, #0f172a, #020617);
    padding: 40px;
    border-radius: 18px;
    max-width: 420px;
    width: 92%;
    box-shadow: 0 25px 70px rgba(0, 0, 0, .6);
    animation: fadeInUp .35s ease;
    border: 1px solid rgba(255, 255, 255, .08);
    color: white;
}

/* ===== TITLE ===== */
.modal-content h2 {
    color: white;
    margin-bottom: 25px;
    text-align: center;
    font-size: 28px;
}

/* ===== CLOSE BUTTON ===== */
.close-modal {
    float: right;
    font-size: 28px;
    cursor: pointer;
    color: #94a3b8;
}

.close-modal:hover {
    color: white;
}

/* ===== FORM ===== */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    margin-bottom: 6px;
    color: #94a3b8;
    font-weight: 500;
    font-size: 13px;
}

.form-group input {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 10px;
    font-size: 15px !important;
    background: rgba(255, 255, 255, .05);
    color: white;
    transition: .3s;
    letter-spacing: 0px !important;
}

.form-group input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, .4);
}

/* ===== BUTTON ===== */
.btn-block {
    width: 100%;
    margin-top: 12px;
    padding: 12px;
    border-radius: 10px;
    border: none;
    font-weight: 600;
    background: linear-gradient(to right, #6366f1, #8b5cf6);
    color: white;
    cursor: pointer;
}

.btn-block:hover {
    opacity: .9;
}

/* ===== SWITCH MODE ===== */
.switch-mode {
    text-align: center;
    margin-top: 20px;
    color: #94a3b8;
}

.switch-mode a {
    color: #6366f1;
    text-decoration: none;
    font-weight: 600;
}

.switch-mode a:hover {
    text-decoration: underline;
}

/* ===== MESSAGES ===== */
.error-message {
    color: #f87171;
    font-size: 14px;
    margin-top: 10px;
}

.success-message {
    color: #4ade80;
    font-size: 14px;
    margin-top: 10px;
}

/* ===== ANIMATION ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px) scale(.96);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/* ========== PRICING SECTION ========== */
.pricing-section {
    padding: 60px 0;
    text-align: center;
}

.pricing-title {
    font-size: 42px;
    color: white;
    margin-bottom: 15px;
    font-weight: 700;
}

.pricing-subtitle {
    color: rgba(255, 255, 255, 0.85);
    font-size: 18px;
    margin-bottom: 50px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 24px;
    padding: 35px 30px;
    position: relative;
    transition: all 0.4s ease;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.25);
}

.pricing-card.popular {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: scale(1.05);
    z-index: 10;
}

.pricing-card.popular:hover {
    transform: scale(1.01) translateY(-10px);
}

.pricing-card.popular .plan-name,
.pricing-card.popular .plan-price,
.pricing-card.popular .plan-desc,
.pricing-card.popular .plan-features li {
    color: white;
}

.pricing-card.popular .check {
    color: #90EE90;
}

.popular-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #333;
    font-size: 12px;
    font-weight: 700;
    padding: 8px 20px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

.pricing-badge {
    display: inline-block;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 15px;
}

.pricing-badge.free {
    background: linear-gradient(135deg, #e0e0e0 0%, #c0c0c0 100%);
    color: #555;
}

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

.pricing-badge.enterprise {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
}

.plan-name {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 10px;
}

.plan-price {
    margin-bottom: 10px;
}

.plan-price .currency {
    font-size: 24px;
    font-weight: 600;
    color: #667eea;
    vertical-align: top;
}

.plan-price .amount {
    font-size: 56px;
    font-weight: 800;
    color: #1a1a2e;
    line-height: 1;
}

.plan-price .period {
    font-size: 16px;
    color: #888;
}

.pricing-card.popular .plan-price .currency,
.pricing-card.popular .plan-price .amount {
    color: white;
}

.pricing-card.popular .plan-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.plan-desc {
    color: #666;
    font-size: 14px;
    margin-bottom: 25px;
}

.plan-features {
    list-style: none;
    text-align: left;
    margin-bottom: 30px;
}

.plan-features li {
    padding: 10px 0;
    color: #444;
    font-size: 14px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    gap: 10px;
}

.plan-features li:last-child {
    border-bottom: none;
}

.plan-features .check {
    color: #10a37f;
    font-weight: bold;
    font-size: 16px;
}

.plan-features .cross {
    color: #e74c3c;
    font-weight: bold;
    font-size: 16px;
}

.watermark-note {
    background: #fff3cd;
    padding: 8px 12px !important;
    border-radius: 8px;
    font-size: 12px !important;
    color: #856404 !important;
    margin-top: 10px;
}

.pricing-btn {
    width: 100%;
    padding: 14px 30px;
    font-size: 16px;
    border-radius: 12px;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.pricing-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.pro-btn {
    background: white !important;
    color: #667eea !important;
}

.pro-btn:hover {
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Google Sign-In Button */
.google-signin-btn {
    width: 100%;
    padding: 12px 20px;
    background: white;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-top: 0;
}

.google-signin-btn:hover {
    background: #f8f9fa;
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.google-signin-btn:active {
    transform: scale(0.98);
}

/* Animation Utility */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== STATS SECTION ========== */
.stats-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 40px 0;
    margin-top: -40px;
    position: relative;
    z-index: 10;
}

.stats-grid {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
    color: white;
}

.stat-item h2 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 5px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e0e0 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.stat-item p {
    font-size: 16px;
    opacity: 0.9;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}


/* Responsive FAQ */
@media (max-width: 900px) {
    .faq-grid-layout {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .faq-hero-image {
        width: 300px;
        margin-bottom: 20px;
    }

    .faq-content-side .section-title {
        text-align: center !important;
    }
}

/* ========== BACK TO TOP BUTTON ========== */
#backToTopBtn {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    bottom: 50px;
    right: 30px;
    z-index: 99;
    font-size: 20px;
    border: none;
    outline: none;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    cursor: pointer;
    padding: 0;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
}

#backToTopBtn.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#backToTopBtn:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* ========== GLOBAL ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }

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

@keyframes shine {
    0% {
        left: -100%;
        opacity: 0;
    }

    20% {
        opacity: 0.5;
    }

    100% {
        left: 100%;
        opacity: 0;
    }
}

/* Base Classes for Scroll Animation */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}



/* Hero Animations */
.hero h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

/* Feature Cards Hover Shine */
.feature-card {
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.15);
}

.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(to right, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: skewX(-25deg);
    transition: 0.5s;
}

.feature-card:hover::after {
    animation: shine 1s;
}

/* Demo Section */
.demo {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.demo-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.demo-container {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.demo-title {
    text-align: center;
    margin-bottom: 60px;
}

.demo-title h2 {
    font-size: 3rem;
    margin-bottom: 20px;
    color: #fff;
}

.demo-title p {
    color: #94a3b8;
    font-size: 1.25rem;
}

/* Video Demo Container */
.video-demo {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
    animation: float 8s ease-in-out infinite;
}

.video-demo::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    z-index: 1;
}

.video-placeholder {
    position: relative;
    aspect-ratio: 16/9;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.play-button {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 3;
    box-shadow: 0 0 40px rgba(6, 182, 212, 0.4);
    /* animation: pulse 2s ease-in-out infinite; */
}

.play-button:hover {
    transform: scale(1.1);
    background: linear-gradient(90deg, #22d3ee, #a78bfa);
    box-shadow: 0 0 60px rgba(6, 182, 212, 0.6);
}

.play-button i {
    color: white;
    font-size: 28px;
    margin-left: 5px;
}

.video-controls {
    position: absolute;
    bottom: 20px;
    left: 20px;
    right: 20px;
    background: rgba(30, 41, 59, 0.8);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    z-index: 3;
}

.progress-bar {
    flex: 1;
    height: 6px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 33%;
    background: linear-gradient(90deg, #22d3ee, #a78bfa);
    border-radius: 3px;
}

.time-display {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 500;
    min-width: 90px;
}


/* Pricing Cards Staggered Entry */
.pricing-card {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.pricing-section.visible .pricing-card:nth-child(1) {
    transition-delay: 0.2s;
    opacity: 1;
    transform: translateY(0);
}

.pricing-section.visible .pricing-card:nth-child(2) {
    transition-delay: 0.4s;
    opacity: 1;
    transform: translateY(0) scale(1.01);
    /* Pro card scale */
}

.pricing-section.visible .pricing-card:nth-child(3) {
    transition-delay: 0.6s;
    opacity: 1;
    transform: translateY(0);
}

/* Stats Item Hover */
.stat-item {
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: scale(1.05);
}


/* ========== VIDEO DEMO SECTION ========== */
.video-section {
    padding: 80px 20px;
    text-align: center;
    position: relative;
    z-index: 5;
}

.section-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    margin-top: -50px;
    /* Pull closer to title if title margin is large */
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.video-container {
    max-width: 900px;
    margin: 40px auto 0;
    position: relative;
    z-index: 1;
}

.video-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    transition: transform 0.3s ease;
    background: #000;
    aspect-ratio: 16/9;
    /* Enforce standard video aspect ratio */
}

.video-wrapper:hover {
    transform: scale(1.02);
}

.video-thumbnail {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transition: opacity 0.3s ease;
}

.video-wrapper:hover .video-thumbnail {
    opacity: 0.7;
}

/* Play Button Styles */
.play-button-wrapper {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* .play-button {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    z-index: 3;
} */

/* .play-icon {
    font-size: 30px;
    color: #667eea;
    margin-left: 5px;
} */

.pulse-ring {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    animation: pulse 2s infinite;
    z-index: 1;
}

.video-wrapper:hover .play-button {
    background: #fff;
    transform: scale(1.1);
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.8);
        opacity: 0;
    }

    100% {
        transform: scale(1.8);
        opacity: 0;
    }
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 9999;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-modal.active {
    display: flex;
    /* Flex is set via JS too, but this helps transition */
    opacity: 1;
}

.video-modal-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 10px;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 255, 255, 0.1);
}

.close-video {
    position: absolute;
    top: -40px;
    right: 0;
    color: white;
    font-size: 30px;
    cursor: pointer;
    background: none;
    border: none;
    transition: color 0.3s;
}

.close-video:hover {
    color: #ff4757;
}


/* ========== FOOTER ========== */
/* Footer Styles */
.footer {
    background: #0f172a;
    padding: 80px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

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

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 300px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.logo-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon i {
    font-size: 24px;
    color: white;
}

.logo-text {
    font-size: 2rem;
    font-weight: 800;
    color: white;
}

.footer-tagline {
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 1.125rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94a3b8;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 18px;
    text-decoration: none;
}

/* Individual icon colors on hover */
.social-icon:nth-child(1):hover {
    /* Facebook */
    color: #1877F2;
    background: rgba(24, 119, 242, 0.1);
    border-color: #1877F2;
}

.social-icon:nth-child(2):hover {
    /* Instagram */
    color: #E4405F;
    background: rgba(228, 64, 95, 0.1);
    border-color: #E4405F;
}

.social-icon:nth-child(3):hover {
    /* LinkedIn */
    color: #0A66C2;
    background: rgba(10, 102, 194, 0.1);
    border-color: #0A66C2;
}

.social-icon:nth-child(4):hover {
    /* YouTube */
    color: #FF0000;
    background: rgba(255, 0, 0, 0.1);
    border-color: #FF0000;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Footer Links */
.footer-links {
    min-width: 150px;
}

.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}



.footer-menu {
    list-style: none;
    padding: 0;
}

.footer-menu li {
    margin-bottom: 12px;
}

.footer-menu a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    font-size: 1rem;
}

.footer-menu a:hover {
    color: #22d3ee;
    transform: translateX(5px);
}

/* Footer Bottom */
.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.copyright {
    color: #64748b;
    font-size: 0.875rem;
}

.contact-email {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 0.875rem;
}

.contact-email i {
    color: #22d3ee;
}

.contact-email a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-email a:hover {
    color: #22d3ee;
}

/* Responsive Design */
@media (min-width: 767px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .steps-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px;
    }

    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 40px;
    }
}

@media (min-width: 1280px) {
    .footer-grid {
        gap: 60px;
    }
}

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

/* Responsive */
@media (max-width: 768px) {
    .hero {
        padding: 80px 0 40px;
    }

    .hero-content {
        flex-direction: column;
        text-align: center;
    }

    h1 {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 1.1rem;
    }

    .btn-container {
        justify-content: center;
    }

    .stats {
        justify-content: center;
    }

    .glow-1,
    .glow-2 {
        width: 250px;
        height: 250px;
    }

}

@media (max-width: 480px) {
    h1 {
        font-size: 2rem;
    }

    .btn {
        width: 100%;
    }

    .chat-demo {
        padding: 20px;
    }
}

/* Pricing Responsive */
@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        padding: 0;
        gap: 40px;
    }

    .popular-badge {
        font-size: 11px;
    }

    .pricing-card.popular {
        transform: scale(1);
    }

    .pricing-card.popular:hover {
        transform: translateY(-10px);
    }

    .pricing-title {
        font-size: 32px;
    }

    .stats-grid {
        flex-direction: column;
        gap: 40px;
    }
}

/* Footer Responsive */
@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        /* text-align: center; */
    }

    .footer-col {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .newsletter-box {
        justify-content: center;
        width: 100%;
        max-width: 400px;
        margin: 15px auto 0;
    }

    .newsletter-box input {
        width: 60%;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 15px;
    }

    .footer-desc {
        margin: 0 auto 25px;
    }
}


/* Marquee Animation Styles */
.companies {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
    overflow: hidden;
}

.companies-title {
    text-align: center;
    font-size: 1.5rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 40px;
    letter-spacing: 0.05em;
}

.marquee-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding: 20px 0;
}

.marquee-wrapper {
    width: 100%;
    overflow: hidden;
}

.marquee {
    display: flex;
    animation: marquee-scroll 30s linear infinite;
    width: max-content;
    gap: 60px;
    padding: 0 30px;
    margin: 10px 0;
}

.company {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 30px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.company:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #22d3ee;
}

.company span {
    font-weight: 600;
    color: #334155;
    font-size: 1.125rem;
}

.marquee-gradient-left,
.marquee-gradient-right {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 150px;
    z-index: 2;
    pointer-events: none;
}

.marquee-gradient-left {
    left: 0;
    background: linear-gradient(to right, #f8fafc, rgba(248, 250, 252, 0));
}

.marquee-gradient-right {
    right: 0;
    background: linear-gradient(to left, #f8fafc, rgba(248, 250, 252, 0));
}

/* Marquee Animation */
@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* Pause animation on hover */
.marquee-container:hover .marquee {
    animation-play-state: paused;
}

/* FAQ Section */
.faq {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

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

.faq-item {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 16px;
    margin-bottom: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: #22d3ee;
}

.faq-question {
    width: 100%;
    padding: 24px;
    text-align: left;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #22d3ee;
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 24px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    color: #94a3b8;
    line-height: 1.6;
}

.faq-item.active .faq-answer {
    padding: 0 24px 24px;
    max-height: 500px !important;
}

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

.cta-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.2) 0%,
            rgba(139, 92, 246, 0.1) 50%, transparent 100%);
    z-index: -1;
}

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

.cta-content h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: #fff;
}

.cta-content p {
    font-size: 1.25rem;
    color: #94a3b8;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-btn {
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    color: white;
    padding: 20px 50px;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-btn:hover {
    background: linear-gradient(90deg, #22d3ee, #a78bfa);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(6, 182, 212, 0.3);
}

/* How It Works Section */
.how-it-works {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}


.how-it-works .section-title h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
}

.how-it-works .section-subtitle {
    font-size: 1.125rem;
    color: #94a3b8;
    max-width: 600px;
    margin: 0 auto;
}

/* Steps Container */
.steps-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}


/* Steps Grid */
.steps-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    position: relative;
    z-index: 2;
}

/* Step Card */
.step-card {
    text-align: center;
    position: relative;
    padding: 20px;
    /* background: rgba(30, 41, 59, 0.7); */
    backdrop-filter: blur(10px);
    border-radius: 20px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    transition: all 0.3s ease;
}

.step-card:hover {
    transform: translateY(-10px);
    border-color: #22d3ee;
    /* box-shadow: 0 20px 40px rgba(34, 211, 238, 0.2); */
}

/* Step Icon Container */
.step-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.step-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    position: relative;
    /* box-shadow: 0 10px 30px rgba(34, 211, 238, 0.3); */
}

.step-icon::before {
    content: '';
    position: absolute;
    inset: -2px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 22px;
    z-index: -1;
    filter: blur(10px);
    opacity: 0.5;
}

.step-icon i {
    font-size: 32px;
    color: white;
}

.step-number {
    position: absolute;
    top: -8px;
    right: -8px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #0f172a;
    border: 2px solid #22d3ee;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #22d3ee;
    font-weight: 700;
    font-size: 16px;
}

/* Step Content */
.step-title {
    font-size: 20px;
    font-weight: 700;
    color: white;
    margin-bottom: 16px;
}

.step-description {
    color: #94a3b8;
    line-height: 1.6;
    font-size: 16px;
}

/* Responsive Design */
@media (min-width: 900px) {
    .steps-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px;
    }

    .connection-line {
        display: block;
    }

    .step-card {
        padding: 40px 30px;
    }
}

@media (min-width: 1024px) {

    .step-card {
        padding: 50px 40px;
    }
}

/* Animation for step cards on scroll */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.step-card {
    animation: fadeInUp 0.6s ease-out forwards;
    opacity: 0;
}

.step-card:nth-child(1) {
    animation-delay: 0.1s;
}

.step-card:nth-child(2) {
    animation-delay: 0.3s;
}

.step-card:nth-child(3) {
    animation-delay: 0.5s;
}


@media (max-width: 768px) {
    .nav-buttons {
        display: none;
    }

    .stat-number {
        font-size: 1.5rem;

    }

    .mobile-nav-buttons {
        display: flex !important;
        /* flex-direction: column; */
        gap: 12px;
        /* margin-top: 20px; */
    }

    #navLoginBtn,
    #navGetStartedBtn {
        padding: 10px 8px;
        font-size: 14px;
        color: #fff;
    }

    .cta-content h2,
    .section-title h2,
    .how-it-works .section-title h2,
    .demo-title h2,
    .section-title h2 {
        font-size: 2.3rem;
    }

    .cta-content p {
        font-size: 16px;
    }

    section {
        padding: 40px 0 !important;
    }

    .video-placeholder {
        aspect-ratio: 9/9;
    }
}

.mobile-nav-buttons {
    display: none;
}

/* Advantages Section Styles - FIXED FLOAT ANIMATION */
.advantages {
    padding: 80px 0;
    /* background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%); */
    position: relative;
    overflow: hidden;
}

.advantages .section-title {
    margin-bottom: 60px;
}

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

.advantage-card {
    background: rgba(30, 41, 59, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s ease;
    cursor: pointer;
}

/* FIXED: Better float animation without transform conflicts */
@keyframes gentleFloat {
    0% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }

    50% {
        transform: translateY(-10px);
        box-shadow: 0 20px 40px rgba(6, 182, 212, 0.15), 0 10px 30px rgba(139, 92, 246, 0.1);
    }

    100% {
        transform: translateY(0px);
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    }
}

.advantage-card:hover {
    animation: gentleFloat 3s ease-in-out infinite;
    border-color: transparent;
    z-index: 10;
}

/* Remove conflicting transform from hover state */
.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
}

/* Gradient border effect */
.advantage-card::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: 21px;
    background: linear-gradient(45deg,
            #06b6d4,
            #8b5cf6,
            #06b6d4,
            #8b5cf6);
    background-size: 300% 300%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card:hover::before {
    opacity: 1;
    animation: shimmerBorder 3s linear infinite;
}

@keyframes shimmerBorder {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

/* Scale effect - using separate property to avoid conflict */
.advantage-card {
    transform-origin: center;
    transition: transform 0.3s ease;
}

.advantage-card:hover {
    transform: scale(1.02);
}

/* Glowing effect */
.advantage-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(6, 182, 212, 0.1), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: -1;
    border-radius: 20px;
}

.advantage-card:hover::after {
    opacity: 1;
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    font-size: 28px;
    color: white;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.advantage-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.advantage-card:hover .advantage-icon::before {
    transform: translateX(100%);
}

.advantage-card:hover .advantage-icon {
    transform: scale(1.15) rotate(15deg);
    background: linear-gradient(135deg, #22d3ee, #a78bfa);
    box-shadow: 0 15px 30px rgba(34, 211, 238, 0.3);
}

.advantage-card h3 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #FFF;
    transition: all 0.3s ease;
}

.advantage-card:hover h3 {
    color: #FFF;
}

.advantage-card p {
    color: #64748b;
    line-height: 1.7;
    font-size: 16px;
    transition: color 0.3s ease;
}

.advantage-card:hover p {
    color: #DDD;
}

/* Entry animation */
@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: translateY(30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* .advantage-card {
    animation: cardFadeIn 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
    opacity: 0;
} */

.advantage-card:nth-child(1) {
    animation-delay: 0.1s;
}

.advantage-card:nth-child(2) {
    animation-delay: 0.2s;
}

.advantage-card:nth-child(3) {
    animation-delay: 0.3s;
}

.advantage-card:nth-child(4) {
    animation-delay: 0.4s;
}

.advantage-card:nth-child(5) {
    animation-delay: 0.5s;
}

.advantage-card:nth-child(6) {
    animation-delay: 0.6s;
}

/* Hover hint */
.hover-hint {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    text-align: center;
    font-size: 12px;
    color: #94a3b8;
    opacity: 0.7;
    transition: all 0.3s ease;
    pointer-events: none;
}

.advantage-card:hover .hover-hint {
    opacity: 0;
    transform: translateY(10px);
}

/* Responsive */
@media (max-width: 768px) {
    .advantages {
        padding: 60px 0;
    }

    .advantages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .advantage-card {
        padding: 30px 25px;
    }

    .advantage-icon {
        width: 60px;
        height: 60px;
        font-size: 24px;
    }

    .advantage-card h3 {
        font-size: 20px;
    }

    /* Simpler animation for mobile */
    .advantage-card:hover {
        animation: none;
        transform: scale(1.02) translateY(-5px);
    }
}

/* Alternative: If you want NO float animation, just hover effects */

.advantage-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 50px rgba(6, 182, 212, 0.15);
    animation: none;
}

/* ==================== PREMIUM NOTIFICATIONS ==================== */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    min-width: 300px;
    background: rgba(15, 23, 42, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: translateX(120%);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.toast.active {
    transform: translateX(0);
}

.toast-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 14px;
}

.toast-success .toast-icon {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.toast-error .toast-icon {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.toast-message {
    font-size: 14px;
    font-weight: 500;
}

.toast-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, #06b6d4, #8b5cf6);
    width: 100%;
    border-radius: 0 0 12px 12px;
    transform-origin: left;
}

@keyframes toastProgress {
    from {
        transform: scaleX(1);
    }

    to {
        transform: scaleX(0);
    }
}