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

:root {
    --primary: #3571ff;
    --primary-rgb: 53, 113, 255;
    --secondary: #d81c55;
    --primary-light: #5a8bff;
    --secondary-light: #e94a76;
    /* --primary: #9f64fd;
    --primary-rgb: 159, 100, 253;
    --secondary: #6b6af3;
    --primary-light: #b88aff;
    --secondary-light: #8f8eff; */
    /* --primary: #563755;
    --secondary: #9f678c;
    --primary-light: #9f678c;
    --secondary-light: #eae9e3; */
    --dark-bg: #0a0e1a;
    --dark-card: #151927;
    /* --dark-bg: #eae9e3;
    --dark-card: #ffffff; */
    --text-light: #e2e8f0;
    --text-dim: #94a3b8;
    --white: #fff;
    --black: #000;
}

*::-webkit-scrollbar {
    width: 5px;
}

*::-webkit-scrollbar-track {
    background: transparent;
}

*::-webkit-scrollbar-thumb {
    background-color: var(--primary);
    border-radius: 8px;
    border: 1px solid transparent;
    background-clip: content-box;
}

*::-webkit-scrollbar-thumb:hover {
    background-color: var(--secondary);
}

a {
    color: inherit
}

body {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
        sans-serif;
    background: var(--dark-bg);
    color: var(--text-light);
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(10, 14, 26, 0.8);
    backdrop-filter: blur(10px);
    z-index: 1000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1320px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.beta-badge-wrapper {
    position: relative;
    display: inline-block;
}

.beta-badge {
    position: absolute;
    top: -5px;
    right: -30px;
    border: 1px solid #9f64fd;
    color: #fff;
    font-size: 9px;
    font-weight: 600;
    padding: 2px 6px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 4px rgba(0, 0, 0, 0.15);
    z-index: 10;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-links>a,
.nav-links>.dropdown {
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    color: var(--text-dim);

}

.nav-links>a:hover {
    color: var(--text-light);
}

/* Dropdown Styles */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    color: var(--text-dim);
    text-decoration: none;
    transition: color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    padding: 0.5rem 0;
}

.dropdown-toggle:hover {
    color: var(--text-light);
}

.dropdown-arrow {
    width: 0;
    height: 0;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid currentColor;
    transition: transform 0.3s ease;
    margin-left: 0.5rem;
}

.dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 0.5rem 0;
    min-width: 300px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 0 1px rgba(255, 255, 255, 0.05);
    z-index: 1001;
}

.dropdown.active .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-item {
    display: block;
    padding: 1rem 1.5rem;
    color: var(--text-dim);
    text-decoration: none;
    transition: all 0.2s ease;
    border-left: 1px solid transparent;
    position: relative;
}

.dropdown-item:hover {
    color: var(--text-light);
    background: rgba(53, 113, 255, 0.1);
    border-left-color: var(--primary);
}

.dropdown-item:hover::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 0 2px 2px 0;
}

.dropdown-item-title {
    font-weight: 600;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.dropdown-item-title::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover .dropdown-item-title::before {
    opacity: 1;
}

.dropdown-item-desc {
    font-size: 0.8rem;
    color: var(--text-dim);
    margin-top: 0.25rem;
    margin-left: 1.5rem;
    opacity: 0.7;
    transition: opacity 0.2s ease;
}

.dropdown-item:hover .dropdown-item-desc {
    opacity: 0.9;
}

/* Mobile Menu */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-light);
    margin: 3px 0;
    transition: 0.3s;
    border-radius: 2px;
}

.cta-button {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 113, 255, 0.7);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 6rem 2rem 2rem;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at bottom,
            #1a2744 0%,
            var(--dark-bg) 100%);
}

/* Astronaut Background Elements */
.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(2px 2px at 20% 30%, white, transparent),
        radial-gradient(2px 2px at 60% 70%, white, transparent),
        radial-gradient(1px 1px at 50% 50%, white, transparent),
        radial-gradient(1px 1px at 80% 10%, white, transparent),
        radial-gradient(2px 2px at 90% 60%, white, transparent),
        radial-gradient(1px 1px at 30% 80%, white, transparent);
    background-size: 200% 200%;
    animation: space 120s linear infinite;
    opacity: 0.5;
}

@keyframes space {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(-100%);
    }
}

/* Floating Elements */
.space-element {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    opacity: 0.1;
    animation: float 20s ease-in-out infinite;
}

.space-element:nth-child(1) {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
    animation-duration: 25s;
}

.space-element:nth-child(2) {
    width: 300px;
    height: 300px;
    bottom: -150px;
    left: -100px;
    animation-duration: 30s;
    animation-delay: 5s;
}

.space-element:nth-child(3) {
    width: 200px;
    height: 200px;
    top: 50%;
    left: 10%;
    animation-duration: 35s;
    animation-delay: 10s;
}

@keyframes float {

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

    25% {
        transform: translate(50px, -50px) rotate(90deg);
    }

    50% {
        transform: translate(-30px, 50px) rotate(180deg);
    }

    75% {
        transform: translate(-50px, -30px) rotate(270deg);
    }
}

/* Astronaut Icon */
.astronaut-float {
    position: absolute;
    top: 20%;
    right: 15%;
    font-size: 4rem;
    opacity: 0.1;
    animation: astronautFloat 30s ease-in-out infinite;
}

@keyframes astronautFloat {

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

    25% {
        transform: translate(-30px, 20px) rotate(15deg);
    }

    50% {
        transform: translate(20px, -30px) rotate(-5deg);
    }

    75% {
        transform: translate(-20px, -20px) rotate(10deg);
    }
}

.hero-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-content h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(to right,
            rgba(53, 113, 255, 0.7),
            rgba(216, 28, 85, 0.1));
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 20px;
}

.hero-short-desc {
    font-size: 0.9rem;
    color: var(--text-dim);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.feature-pill {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.3s;
    cursor: default;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.feature-icon {
    font-size: 1.5rem;
}

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

.hero-buttons .cta-button,
.hero-buttons .secondary-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}

.secondary-button {
    background: transparent;
    color: var(--text-light);
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary);
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s;
}

.secondary-button:hover {
    background: var(--primary);
    transform: translateY(-2px);
}

/* Chat Animation */
.chat-demo {
    position: relative;
    background: var(--dark-card);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    overflow: hidden;
    height: 500px;
}

.browser-bar {
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.dot:nth-child(1) {
    background: #ef4444;
}

.dot:nth-child(2) {
    background: #f59e0b;
}

.dot:nth-child(3) {
    background: #10b981;
}

.extension-badge {
    margin-left: auto;
    background: var(--primary);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.chat-interface {
    height: calc(100% - 50px);
    display: flex;
    flex-direction: column;
}

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

.ai-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    position: relative;
    animation: pulse 2s infinite;
}

.ai-avatar::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 12px;
    height: 12px;
    background: #10b981;
    border-radius: 50%;
    border: 3px solid var(--dark-card);
}

.ai-avatar.no-after::after {
    display: none !important;
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(53, 113, 255, 0.7);
    }

    70% {
        box-shadow: 0 0 0 10px rgba(53, 113, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(53, 113, 255, 0);
    }
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    opacity: 0;
    transform: translateY(20px);
}

.message.show {
    animation: fadeInUp 0.5s forwards;
}

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

.user-message {
    align-self: flex-end;
    background: var(--primary);
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 16px 16px 4px 16px;
    max-width: 70%;
    box-shadow: 0 5px 15px rgba(86, 55, 85, 0.3);
}

.ai-message {
    align-self: flex-start;
    background: rgba(255, 255, 255, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 16px 16px 16px 4px;
    max-width: 85%;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.ai-message::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: -8px;
    width: 0;
    height: 0;
    border-right: 10px solid rgba(255, 255, 255, 0.05);
    border-left: 10px solid transparent;
    border-bottom: 10px solid transparent;
}


/* Typing Indicator */
.typing-indicator {
    display: inline-flex;
    gap: 5px;
    padding: 0.5rem 0;
}

.typing-dot {
    width: 10px;
    height: 10px;
    background: var(--text-dim);
    border-radius: 50%;
    animation: typingBounce 1.4s infinite;
}

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

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

@keyframes typingBounce {

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

    30% {
        transform: translateY(-15px);
        opacity: 1;
    }
}

/* Table in chat */
.data-table {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    overflow-x: auto;
    margin-top: 0.75rem;
    font-size: 0.8rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
    /* Prevent content from wrapping */
    display: block;
    /* Required for scrolling */
}


.data-table table {
    width: 100%;
    border-collapse: collapse;
}

.data-table th {
    background: rgba(53, 113, 255, 0.15);
    padding: 0.5rem;
    text-align: left;
    font-weight: 600;
    color: var(--primary-light);
}

.data-table td {
    padding: 0.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.data-table tr:hover td {
    background: rgba(255, 255, 255, 0.02);
}

/* Metrics */

.sales-summary,
.pending-orders,
.follow-up-task {
    background: #fff;
    color: #000;
    padding: 1rem;
    margin-bottom: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 1px 5px rgba(0, 0, 0, 0.05);
}

.metrics-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.metric {
    text-align: center;
    flex: 1;
    min-width: 100px;
}

.metric .label {
    font-size: 0.75rem;
    color: var(--text-dim);
}

.metric .value {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-light);
}

.bar-chart {
    display: flex;
    justify-content: space-around;
    align-items: flex-end;
    height: 100px;
    margin-bottom: 0.75rem;
}

.bar {
    width: 16%;
    background: var(--primary);
    border-radius: 4px;
    transition: height 0.3s ease;
}

.bar:hover {
    background: var(--secondary);
}

.orders-table {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.5rem;
}

.orders-table .row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    padding: 0.5rem;
    border-bottom: 1px solid #eee;
    font-size: 0.875rem;
}

.orders-table .row.header {
    font-weight: bold;
    background-color: #f9f9f9;
}

.orders-table .row.high {
    background: #fff4f4;
    color: #d21f3c;
}

.orders-table .row.med {
    background: #fffbe5;
}

.task-list {
    list-style: none;
    padding: 0;
    font-size: 0.875rem;
}

.task-list li {
    margin-bottom: 0.4rem;
}

.auto-actions {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-dim);
}

.status-msg {
    margin-top: 1rem;
    font-weight: 500;
}

.status-msg.alert {
    color: #d21f3c;
}

.status-msg.question {
    color: #444;
}

/* Reports */
.report-card {
    background: #fdfdfd;
    border: 1px solid #e0e0e0;
    border-left: 4px solid #3571ff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 8px;
    font-family: 'Segoe UI', sans-serif;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
    max-width: 600px;
}

.report-header {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.report-icon {
    font-size: 24px;
    margin-right: 10px;
}

.report-header h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.report-section {
    margin-top: 15px;
}

.report-section p {
    margin: 6px 0;
    font-size: 15px;
}

.rating-change {
    color: green;
    font-weight: 500;
    margin-left: 5px;
}

.report-section ul {
    padding-left: 18px;
    margin: 0;
}

.report-section ul li {
    margin-bottom: 6px;
    font-size: 15px;
}

/* Status Badge */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
}

.status-confirmed {
    background: rgba(16, 185, 129, 0.2);
    color: var(--success);
}

.status-pending {
    background: rgba(245, 158, 11, 0.2);
    color: var(--warning);
}

.status-overdue {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

/* Chart UI */
.chart-container {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    padding: 1rem;
    margin-top: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mini-chart {
    display: flex;
    align-items: flex-end;
    gap: 0.4rem;
    height: 80px;
    margin-top: 0.75rem;
}

.chart-bar {
    flex: 1;
    background: linear-gradient(to top, var(--primary), var(--primary-light));
    border-radius: 4px 4px 0 0;
    opacity: 0;
    transform: scaleY(0);
    transform-origin: bottom;
}

.chart-bar.animate {
    animation: growBar 0.6s forwards;
}

@keyframes growBar {
    to {
        opacity: 1;
        transform: scaleY(1);
    }
}

/* Notifications */
.success-notification {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.success-icon {
    width: 20px;
    height: 20px;
    background: #10b981;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.info-notification {
    background: rgba(59, 130, 246, 0.1);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.info-icon {
    width: 20px;
    height: 20px;
    background: #3b82f6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.warning-notification {
    background: rgba(234, 179, 8, 0.1);
    border: 1px solid rgba(234, 179, 8, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.warning-icon {
    width: 20px;
    height: 20px;
    background: #eab308;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.error-notification {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.error-icon {
    width: 20px;
    height: 20px;
    background: #ef4444;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

.neutral-notification {
    background: rgba(107, 114, 128, 0.1);
    border: 1px solid rgba(107, 114, 128, 0.3);
    padding: 0.75rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.neutral-icon {
    width: 20px;
    height: 20px;
    background: #6b7280;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 0.75rem;
}

/* Features Section */
.features {
    padding: 6rem 2rem;
    background: linear-gradient(180deg,
            var(--dark-bg) 0%,
            rgba(53, 113, 255, 0.05) 100%);
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-light), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.features-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: transform 0.3s, border-color 0.3s;
}

.feature-card .feature-icon {
    color: var(--primary);
}

.feature-showcase-card h3,
.feature-card h3,
.step-card h3,
.persona-card h3,
.benefit-item h3 {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.5;
    padding: 8px 0;
}

.feature-showcase-card p,
.feature-card p,
.step-card p,
.persona-card p,
.benefit-item p {
    font-size: 15px;
    line-height: 22px;
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-icon {
    font-size: 1.5rem;
}

/* Demo Video Section */
.demo-section {
    padding: 6rem 2rem;
    text-align: center;
    background: linear-gradient(180deg,
            var(--dark-bg) 0%,
            rgba(53, 113, 255, 0.05) 50%,
            var(--dark-bg) 100%);
}

.demo-container {
    position: relative;
    margin-top: 3rem;
}

.dashboard-mockup {
    animation: dashboardFadeIn 0.8s ease-out;
}

@keyframes dashboardFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

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

.chat-mockup {
    animation: chatFadeIn 0.8s 0.3s ease-out backwards;
}

@keyframes chatFadeIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

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

.data-item {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.data-item:hover {
    background: rgba(255, 255, 255, 0.05);
    transform: translateX(5px);
}

.data-item.highlight {
    animation: highlightPulse 1s ease-out;
    border-color: var(--primary);
    background: rgba(53, 113, 255, 0.7);
}

@keyframes highlightPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(53, 113, 255, 0.7);
    }

    50% {
        box-shadow: 0 0 0 10px rgba(53, 113, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(53, 113, 255, 0);
    }
}

.demo-message {
    opacity: 0;
    transform: translateY(20px);
    animation: messageFadeIn 0.5s forwards;
}

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

.data-flow-indicator {
    transition: all 0.5s;
    z-index: 10;
}

.data-flow-indicator.show {
    opacity: 1;
    animation: flowMove 1.5s ease-in-out;
}

@keyframes flowMove {
    0% {
        transform: translate(-150%, -50%);
    }

    50% {
        transform: translate(-50%, -50%) scale(1.1);
    }

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

.crud-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    border-radius: 16px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-right: 0.5rem;
}

.crud-create {
    background: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.crud-read {
    background: rgba(53, 113, 255, 0.2);
    color: var(--primary-light);
}

.crud-update {
    background: rgba(245, 158, 11, 0.2);
    color: #f59e0b;
}

.crud-delete {
    background: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.demo-controls {
    margin-top: 2rem;
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.demo-button {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: var(--text-light);
    cursor: pointer;
    transition: all 0.3s;
}

.demo-button:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}

.demo-button.active {
    background: var(--primary);
    border-color: var(--primary);
}

/* Whitelist Form */
.final-cta {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
            rgba(53, 113, 255, 0.05),
            rgba(216, 28, 85, 0.05));
}

.form-container {
    max-width: 500px;
    margin: 0 auto;
    background: var(--dark-card);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
}

.form-container h3 {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.form-group {
    margin-bottom: 1.5rem;
    text-align: left;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--text-dim);
    font-size: 0.875rem;
}

.help-block {
    font-size: 13px;
    color: #dc3545;
    margin-top: 5px;
    display: block;
}

.form-group input {
    width: 100%;
    padding: 0.75rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 1rem;
    transition: border-color 0.3s;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
}

.form-group input:focus {
    outline: none;
    border-color: var(--primary);
}

.phone-input-container {
    display: flex;
    border: 1px solid rgba(255, 255, 255, 0.1);
    gap: 0;
    border-radius: 8px;
    overflow: hidden;
}

.country-code-select {
    border: none;
    padding: 10px 8px;
    font-size: 14px;
    min-width: 50px;
    cursor: pointer;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.country-code-select option {
    color: var(--black);
}

.country-code-select:focus {
    outline: none;
    background-color: rgba(255, 255, 255, 0.05);
}

.phone-input-container input {
    border: none;
    border-top-left-radius: unset;
    border-bottom-left-radius: unset;
}

.phone-input {
    flex: 1;
    border: none;
    padding: 10px;
    font-size: 14px;
}

.phone-input:focus {
    outline: none;
    box-shadow: none;
}

.phone-format-hint {
    font-size: 12px;
    color: #6c757d;
    margin-top: 5px;
    font-style: italic;
}

.form-group input.invalid {
    border-color: #dc3545;
}

.phone-input-container.invalid {
    border-color: #dc3545;
}

.submit-button {
    width: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 1rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.3s, box-shadow 0.3s;
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
}

.submit-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(53, 113, 255, 0.7);
}

.submit-button:disabled {
    background-color: #6c757d;
    cursor: not-allowed;
}

.submit-button .loading {
    display: none;
}

.submit-button.loading .button-text {
    display: none;
}

.submit-button.loading .loading {
    display: inline;
}

input::placeholder,
textarea::placeholder {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
    font-size: 14px;
    color: #999;
    opacity: 1;
}

/* WebKit-based browsers (Chrome, Safari, Opera) */
input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
    font-size: 14px;
}

/* Mozilla Firefox 19+ */
input::-moz-placeholder,
textarea::-moz-placeholder {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
    font-size: 14px;
}

/* Internet Explorer 10–11 */
input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
    font-size: 14px;
}

/* Microsoft Edge */
input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
    font-family: "Poppins", -apple-system, BlinkMacSystemFont, "Segoe UI";
    font-size: 14px;
}

/* Industry Selector */
.industries-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg, rgba(53, 113, 255, 0.05) 0%, var(--dark-bg) 100%);
}

.two-column-layout {
    display: flex;
    gap: 2rem;
    max-width: 1320px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
}

.chatbot-column {
    flex: 1 1 480px;
    min-width: 0;
    width: 100%;
}

.industries-column {
    flex: 1 1 320px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.industry-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 16px;
    color: white;
    transition: all 0.3s;
}

.industry-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
    border-color: var(--primary);
}

.industry-card .industry-icon {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--primary);
}

.industry-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.industry-card p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
}

.industry-btn {
    background: var(--dark-card);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1rem 2rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
}

.industry-btn::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.industry-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.industry-btn:hover::before {
    transform: scaleX(1);
}

.industry-btn.active {
    border-color: var(--primary);
    background: rgba(53, 113, 255, 0.7);
}

.industry-btn.active::before {
    transform: scaleX(1);
}

.industry-name {
    font-weight: 500;
}

/* Chatbot  */
.chatbot-container {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    height: 600px;
    background: var(--dark-card);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Industry-specific gradients */
.ai-avatar.default {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.ai-avatar.textile {
    background: linear-gradient(135deg, var(--primary), var(--textile));
}

.ai-avatar.trading {
    background: linear-gradient(135deg, var(--primary), var(--trading));
}

.ai-avatar.event {
    background: linear-gradient(135deg, var(--primary), var(--event));
}

.ai-avatar.artist {
    background: linear-gradient(135deg, var(--primary), var(--artist));
}

.chatbot-container .ai-avatar::after {
    display: none;
}

.chat-info {
    flex: 1;
}

.chat-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.chat-subtitle {
    font-size: 0.875rem;
    color: var(--text-dim);
    transition: all 0.3s;
}

/* Suggestions */
.suggestions-container {
    padding: 1.5rem 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.02);
}

.suggestions-title {
    font-size: 0.875rem;
    color: var(--text-dim);
    margin-bottom: 1rem;
}

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

.suggestion-chip {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}


.suggestion-chip:hover {
    background: rgba(53, 113, 255, 0.7);
    border-color: var(--primary);
    transform: translateY(-2px);
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    animation: fadeIn 0.3s ease;
}

.modal.show {
    display: flex;
    align-items: center;
    justify-content: center;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translate(-50%, -50%) scale(0.9);
    }

    to {
        opacity: 1;
        transform: translate(-50%, -50%) scale(1);
    }
}

.modal-content {
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    max-height: 80vh;
    overflow-y: auto;
    position: relative;
    animation: slideIn 0.3s ease;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.modal-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.modal-header h3 {
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.modal-header p {
    color: var(--text-dim);
    font-size: 1rem;
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--text-dim);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
}

.close-modal:hover {
    background: var(--bg-light);
    color: var(--text-primary);
}

/* Footer */
footer {
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-dim);
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1320px;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-container p {
    margin: 0;
    font-size: 0.875rem;
}

/* Problem vs Solution Section */
.problem-solution {
    padding: 6rem 2rem;
    background: linear-gradient(180deg,
            rgba(53, 113, 255, 0.05) 0%,
            var(--dark-bg) 100%);
}

.comparison-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    position: relative;
}

.comparison-container::before {
    content: "";
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent, var(--primary), transparent);
    transform: translateX(-50%);
}

.comparison-side {
    padding: 2rem;
}

.comparison-side h3 {
    font-size: 1.75rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.before-side h3 {
    color: var(--secondary);
}

.after-side h3 {
    color: var(--primary);
}

.comparison-item {
    background: var(--dark-card);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInLeft 0.6s forwards;
}

.after-side .comparison-item {
    transform: translateX(20px);
    animation: slideInRight 0.6s forwards;
}

.comparison-item:nth-child(2) {
    animation-delay: 0.1s;
}

.comparison-item:nth-child(3) {
    animation-delay: 0.2s;
}

.comparison-item:nth-child(4) {
    animation-delay: 0.3s;
}

@keyframes slideInLeft {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.comparison-icon {
    font-size: 1.5rem;
}

.comparison-side h4 {
    font-size: 18px;
    font-weight: 600;
    padding: 7px 0;
}

.comparison-side p {
    font-size: 16px;
}

.before-side .comparison-icon,
.after-side .comparison-icon {
    color: var(--primary);
}

/* Key Features Section */
.key-features {
    padding: 6rem 2rem;
    padding-top: 0rem;
    background: var(--dark-bg);
}

.features-showcase {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.feature-showcase-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
}

.feature-showcase-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
}

.feature-showcase-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.feature-showcase-card:hover::before {
    transform: scaleX(1);
}

.feature-demo {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 1rem;
    margin-bottom: 1.5rem;
    font-family: "Monaco", "Consolas", monospace;
    font-size: 0.875rem;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
    position: relative;
    overflow: hidden;
}

.feature-demo::after {
    content: "";
    position: absolute;
    top: -2px;
    right: -2px;
    bottom: -2px;
    left: -2px;
    background: linear-gradient(45deg, var(--primary), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s;
    z-index: -1;
}

.feature-showcase-card:hover .feature-demo::after {
    opacity: 0.1;
}

.typing-text {
    display: inline-block;
    overflow: hidden;
    border-right: 2px solid var(--primary);
    white-space: nowrap;
    animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
}

@keyframes typing {
    from {
        width: 0;
    }

    to {
        width: 100%;
    }
}

@keyframes blink-caret {

    from,
    to {
        border-color: transparent;
    }

    50% {
        border-color: var(--primary);
    }
}

/* How It Works Section */
.how-it-works {
    padding: 6rem 2rem;
    background: linear-gradient(135deg,
            rgba(53, 113, 255, 0.05),
            rgba(216, 28, 85, 0.05));
}

.steps-container {
    max-width: 1320px;
    margin: 0 auto;
    position: relative;
}

.steps-timeline {
    position: absolute;
    top: 40px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 0;
}

.steps-progress {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    width: 0;
    animation: progressGrow 3s ease-out forwards;
}

@keyframes progressGrow {
    to {
        width: 100%;
    }
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.step-card {
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    animation: stepFadeIn 0.6s forwards;
}

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

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

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

.step-card:nth-child(4) {
    animation-delay: 0.8s;
}

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

.step-icon {
    width: 80px;
    height: 80px;
    background: var(--dark-card);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.step-icon i {
    color: var(--secondary);
}

/* .step-number {
              position: absolute;
              top: -10px;
              right: -10px;
              width: 30px;
              height: 30px;
              background: linear-gradient(135deg, var(--primary), var(--secondary));
              border-radius: 50%;
              display: flex;
              align-items: center;
              justify-content: center;
              font-size: 0.875rem;
              font-weight: 600;
            } */

/* Use Cases Section */
.use-cases {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.personas-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(4, 1fr);
}

.persona-card {
    background: var(--dark-card);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.persona-card::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, var(--primary) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s;
}

.persona-card:hover::before {
    opacity: 0.05;
}

.persona-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
}

.persona-avatar {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
}

.persona-query {
    background: rgba(255, 255, 255, 0.02);
    padding: 1rem;
    border-radius: 12px;
    margin-top: 1rem;
    font-style: italic;
    font-size: 14px;
    color: var(--primary-light);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

/* Extension Section */
.extension-section {
    padding: 6rem 2rem;
    background: linear-gradient(180deg,
            var(--dark-bg) 0%,
            rgba(53, 113, 255, 0.05) 100%);
}

.extension-container {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.extension-mockup {
    position: relative;
    background: var(--dark-card);
    border-radius: 16px;
    padding: 1rem;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.browser-mockup {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
}

.browser-toolbar {
    background: rgba(255, 255, 255, 0.03);
    padding: 0.75rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.extension-icon {
    width: 32px;
    height: 32px;
    background: var(--primary);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 600;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.3s;
    animation: extensionPulse 2s infinite;
}

@keyframes extensionPulse {

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

    50% {
        transform: scale(1.05);
    }
}

.extension-popup {
    position: absolute;
    top: 60px;
    right: 20px;
    width: 300px;
    background: var(--dark-card);
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.1);
    opacity: 0;
    transform: translateY(-10px);
    animation: popupAppear 0.5s 1s forwards;
}

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

/* Benefits Section */
.benefits-section {
    padding: 6rem 2rem;
    background: var(--dark-bg);
}

.benefits-grid {
    max-width: 1320px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    text-align: center;
}

.benefit-item {
    opacity: 0;
    transform: translateX(-20px);
    animation: benefitSlide 0.6s forwards;
}

.benefit-item:nth-child(1) {
    animation-delay: 0.1s;
}

.benefit-item:nth-child(2) {
    animation-delay: 0.2s;
}

.benefit-item:nth-child(3) {
    animation-delay: 0.3s;
}

.benefit-item:nth-child(4) {
    animation-delay: 0.4s;
}

.benefit-item:nth-child(5) {
    animation-delay: 0.5s;
}

.benefit-item:nth-child(6) {
    animation-delay: 0.6s;
}

@keyframes benefitSlide {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.benefit-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin: 0 auto 10px auto;
}

/* Final CTA Section */
.final-cta {
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-container {
    padding: 4rem 2rem;
    max-width: 1320px;
    margin: 0 auto;
    border-radius: 25px;
    position: relative;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    overflow: hidden;
}

.final-cta-container::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle,
            rgba(255, 255, 255, 0.1) 0%,
            transparent 70%);
    animation: ctaRotate 20s linear infinite;
    z-index: 0;
}

@keyframes ctaRotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.final-cta-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.final-cta h2 {
    font-size: 2.5rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--white);
}

.final-cta p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .cta-button {
    background: white;
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
}

.cta-buttons .secondary-button {
    background: transparent;
    color: white;
    border-color: white;
}

.cta-buttons .secondary-button:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Hero Section */
.pricing-hero {
    padding: 8rem 2rem 4rem;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pricing-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--white), var(--text-dim));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pricing-hero p {
    font-size: 1.25rem;
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 3rem;
}

/* Pricing Toggle */
.pricing-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 4rem;
}

.toggle-switch {
    position: relative;
    width: 60px;
    height: 30px;
    background: var(--dark-card);
    border-radius: 15px;
    cursor: pointer;
    transition: background 0.3s;
}

.toggle-switch.active {
    background: var(--primary);
}

.toggle-slider {
    position: absolute;
    width: 26px;
    height: 26px;
    background: var(--white);
    border-radius: 50%;
    top: 2px;
    left: 2px;
    transition: transform 0.3s;
}

.toggle-switch.active .toggle-slider {
    transform: translateX(30px);
}

.badge-save {
    background: var(--secondary);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Pricing Cards */
.pricing-container {
    max-width: 1320px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 5rem;
}

.pricing-card {
    background: var(--dark-card);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: transform 0.3s, box-shadow 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.pricing-card.featured {
    border: 2px solid var(--primary);
    transform: scale(1.05);
}

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

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--primary);
    color: var(--white);
    padding: 0.5rem 1.5rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 600;
}

.plan-name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.plan-description {
    color: var(--text-dim);
    margin-bottom: 2rem;
}

.price {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}

.price-currency {
    font-size: 1.5rem;
    color: var(--text-dim);
}

.price-period {
    font-size: 1rem;
    color: var(--text-dim);
}

.price-annual {
    text-decoration: line-through;
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 2rem;
}

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

.features-list li {
    padding: 0.75rem 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.features-list i {
    color: var(--primary);
    font-size: 1.2rem;
}

.btn-pricing {
    width: 100%;
    padding: 0.8rem 2rem;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-primary-pricing {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    color: var(--white);
}

.btn-primary-pricing:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(86, 55, 85, 0.3);
}

.btn-secondary-pricing {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary-pricing:hover {
    background: var(--primary);
    color: var(--white);
}

/* Feature Comparison Table */
.comparison-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.comparison-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.comparison-table {
    background: var(--dark-card);
    border-radius: 20px;
    overflow: hidden;
    overflow-x: auto;
}

.comparison-table table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 500;
}

.comparison-table thead th {
    background: rgba(255, 255, 255, 0.05);
    font-weight: 600;
    font-size: 1.1rem;
}

.comparison-table tbody tr:hover {
    background: rgba(255, 255, 255, 0.02);
}

.check-icon {
    color: var(--primary);
    font-size: 1.5rem;
}

.times-icon {
    color: var(--text-dim);
    font-size: 1.2rem;
}

/* FAQ Section */
.faq-section {
    max-width: 900px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.faq-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.faq-item {
    background: var(--dark-card);
    border-radius: 15px;
    padding: 1.5rem;
    margin-bottom: 1rem;
    cursor: pointer;
    transition: all 0.3s;
}

.faq-item:hover {
    background: rgba(255, 255, 255, 0.05);
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.faq-answer {
    color: var(--text-dim);
    margin-top: 1rem;
    display: none;
    line-height: 1.8;
}

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

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

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

/* Responsive */
@media (max-width: 991px) {

    .personas-grid,
    .benefits-grid,
    .features-grid,
    .features-showcase {
        grid-template-columns: repeat(2, 1fr);
    }

    .industries-column {
        grid-template-columns: 1fr;
    }

    .two-column-layout {
        align-items: flex-start;
    }
}

@media (max-width: 768px) {

    nav {
        padding: 1rem 0.7rem;
    }

    .personas-grid,
    .benefits-grid,
    .features-grid,
    .hero-container,
    .comparison-container,
    .extension-container,
    .steps-grid,
    .demo-grid,
    .features-showcase {
        grid-template-columns: 1fr !important;
    }

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

    .problem-solution,
    .how-it-works,
    .key-features,
    .use-cases,
    .extension-section,
    .benefits-section,
    .features,
    .demo-section,
    .final-cta,
    .industries-section,
    .pricing-container,
    .comparison-section,
    .faq-section {
        padding: 3rem 1rem;
    }

    .pricing-hero {
        padding: 8rem 1rem 0rem 1rem;
    }

    .pricing-toggle {
        margin-bottom: 0rem;
    }

    .pricing-hero h1 {
        font-size: 2rem;
    }

    .pricing-hero p {
        font-size: 17px;
    }

    .pricing-container {
        grid-template-columns: 1fr;
    }

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

    .comparison-table {
        font-size: 0.875rem;
    }

    .footer,
    .form-container {
        padding: 1rem;
    }

    .hero {
        padding: 6rem 1rem;
    }

    .final-cta {
        margin: 0 1rem;
    }

    .final-cta-container {
        padding: 2rem 1rem;
    }

    .section-header {
        margin-bottom: 1rem;
    }

    .comparison-container {
        gap: 0rem;
    }

    .comparison-side {
        padding: 0px;
    }

    .section-header h2 {
        font-size: 1.8rem;
    }

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

    .chat-demo {
        order: -1;
    }

    .hero-content {
        order: 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background: rgba(10, 14, 26, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        gap: 1rem;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .nav-links.active {
        display: flex;
    }

    .mobile-menu-toggle {
        display: flex;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: rgba(255, 255, 255, 0.05);
        margin-top: 0.5rem;
        border-radius: 8px;
    }

    .dropdown.active .dropdown-menu {
        display: block;
    }

    .dropdown-menu {
        display: none;
    }

    .steps-timeline {
        display: none;
    }

    .demo-grid {
        gap: 1rem !important;
    }

    .comparison-container::before {
        display: none;
    }

    .extension-container {
        gap: 2rem;
    }

    .final-cta h2 {
        font-size: 2rem;
    }
}

@media (max-width: 479px) {
    .industries-column {
        grid-template-columns: 1fr;
    }

    .chatbot-container .chat-messages {
        padding: 1rem;
    }

    .pricing-hero p {
        font-size: 16px;
    }
}