@import url('https://fonts.googleapis.com/css2?family=Baumans&display=swap');

:root {
    /* Color Palette - Minimalist Dark */
    --primary: hsl(260, 60%, 70%);
    /* Softer purple */
    --primary-light: hsl(260, 60%, 80%);
    --secondary: hsl(200, 60%, 70%);
    /* Softer blue */
    --accent: hsl(330, 60%, 70%);
    /* Softer pink */

    /* Gradients - Subtle & Ambient */
    --gradient-primary: linear-gradient(135deg, hsl(260, 60%, 70%), hsl(290, 60%, 70%));

    /* Backgrounds */
    --bg-primary: #0a0a0a;
    /* Deep black/gray */
    --bg-secondary: #111111;
    --surface: rgba(255, 255, 255, 0.03);
    --glass-bg: rgba(255, 255, 255, 0.02);
    --glass-border: rgba(255, 255, 255, 0.05);

    /* Text */
    --text-primary: #ffffff;
    --text-secondary: rgba(255, 255, 255, 0.7);
    --text-tertiary: rgba(255, 255, 255, 0.4);

    /* Borders */
    --border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-primary: 'Inter', sans-serif;
    --font-display: 'Space Grotesk', sans-serif;
    --font-brand: 'Baumans', sans-serif;
}

/* Brand name styling */
.brand-name {
    font-family: var(--font-brand);
    font-size: 2rem;
    font-weight: 600;
}

/* Brand name in section titles - inherit parent size */
.brand-name.inherit-size {
    font-size: inherit;
}

/* Brand name in copyright - smaller */
.brand-name.small {
    font-size: 0.875rem;
    font-weight: 400;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    color: var(--text-primary);
    background: var(--bg-primary);
    line-height: 1.7;
    /* Increased line height */
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-display);
    font-weight: 600;
    /* Lighter weight for headings */
    line-height: 1.2;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
}

.gradient-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 2rem 0;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform: translateY(-100%);
    /* Hidden initially */
    opacity: 0;
}

.navbar.visible {
    transform: translateY(0);
    opacity: 1;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.6);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

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

.nav-links a {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-secondary);
}

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

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 2px;
    background: var(--text-primary);
    border-radius: 999px;
}

/* Buttons */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: white;
    background: var(--gradient-primary);
    border-radius: 999px;
    transition: all 0.25s;
    box-shadow: 0 4px 16px rgba(147, 51, 234, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(147, 51, 234, 0.4);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
    transition: all 0.25s;
}

.btn-secondary:hover {
    background: var(--bg-secondary);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.5rem 3rem;
    font-size: 1rem;
}

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

.hero-background {
    position: absolute;
    inset: 0;
    z-index: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s ease-in-out infinite;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, hsl(260, 85%, 65%), transparent 70%);
    top: -200px;
    left: -200px;
    background: var(--primary);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -100px;
    right: -100px;
    animation-delay: -5s;
}

@keyframes float {

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

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

    66% {
        transform: translate(-50px, 50px) scale(0.9);
    }
}

.hero-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 999px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-size: 4.5rem;
    /* Larger title */
    font-weight: 700;
    margin-bottom: 2rem;
    margin-top: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.hero-subtitle {
    font-size: 1.35rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 300;
}

.hero-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    /* Reduced margin */
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    /* Subtle separator */
}

.stat-item {
    text-align: center;
    padding: 1rem;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.stat-item:hover .stat-value {
    text-shadow: 0 0 20px rgba(147, 51, 234, 0.6), 0 0 40px rgba(147, 51, 234, 0.3);
    transform: scale(1.05);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    transition: all 0.3s;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all 0.3s;
}

.stat-item:hover .stat-label {
    color: var(--text-primary);
}

.powered-by {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    color: var(--text-tertiary);
    opacity: 0.7;
}

.naxia-logo {
    height: 20px;
    width: auto;
    object-fit: contain;
}

/* Sections */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Features */
.features {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
}

/* Cards - Glassmorphism */
.feature-card,
.benefit-card,
.integration-card,
.testimonial-card {
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    /* More rounded */
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
    /* Glass effect */
}

.feature-card:hover,
.benefit-card:hover,
.integration-card:hover,
.testimonial-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.5);
    background: var(--glass-bg);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: var(--glass-bg);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--primary);
    border: 1px solid var(--border);
}

.sales-icon {
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.1), rgba(147, 51, 234, 0.05));
    color: var(--primary);
}

.support-icon {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(59, 130, 246, 0.05));
    color: var(--secondary);
}

.postsales-icon {
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(236, 72, 153, 0.05));
    color: var(--accent);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

.feature-title {
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.feature-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
}

.feature-list li::before {
    content: "✓";
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
}

/* Benefits */
.benefits {
    padding: 6rem 0;
}

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

.benefit-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s;
}

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

.benefit-number {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 1.5rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Integrations */
.integrations {
    padding: 6rem 0;
    background: var(--bg-secondary);
}

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

.integration-card.primary {
    border-color: var(--primary);
    background: linear-gradient(135deg, rgba(147, 51, 234, 0.05), var(--surface));
}

.integration-logo {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border-radius: 1rem;
    transition: all 0.25s;
    padding: 1rem;
}

.integration-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.integration-card:hover .integration-logo {
    transform: scale(1.1);
    background: var(--surface);
}

.integration-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.integration-card p {
    font-size: 0.875rem;
    color: var(--text-tertiary);
}



/* CTA */
.cta-section {
    position: relative;
    padding: 6rem 0;
    background: var(--bg-secondary);
    overflow: hidden;
}

.cta-background {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.orb-4 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, hsl(260, 85%, 65%), transparent 70%);
    top: -150px;
    right: -150px;
}

.orb-5 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, hsl(200, 95%, 60%), transparent 70%);
    bottom: -100px;
    left: -100px;
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
}

.cta-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    margin-bottom: 4rem;
}

.cta-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.cta-form input,
.cta-form select {
    width: 100%;
    padding: 1.25rem;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 1rem;
    color: var(--text-primary);
    font-size: 1rem;
    margin-bottom: 1rem;
    transition: all 0.3s;
}

.cta-form input:focus,
.cta-form select:focus {
    border-color: var(--primary);
    background: var(--glass-bg);
    outline: none;
    box-shadow: 0 0 0 4px rgba(147, 51, 234, 0.1);
}

/* Custom Checkbox */
.checkbox-container {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    user-select: none;
}

.checkbox-container input {
    width: 1.25rem;
    height: 1.25rem;
    accent-color: var(--primary);
    cursor: pointer;
    opacity: 1;
    /* Reset opacity */
    position: static;
    /* Reset position */
}

.form-group input::placeholder {
    color: var(--text-tertiary);
}

.form-checkboxes {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
    margin-top: 0;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    color: var(--text-secondary);
    transition: color 0.25s;
}

.checkbox-label:hover {
    color: var(--text-primary);
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--primary);
    flex-shrink: 0;
}

.checkbox-label span {
    line-height: 1.5;
}

.privacy-link {
    color: var(--primary);
    text-decoration: underline;
    transition: color 0.25s;
}

.privacy-link:hover {
    color: var(--primary-light);
}

.cta-note {
    font-size: 0.875rem;
    color: var(--text-tertiary);
    line-height: 1.6;
    text-align: justify;
}

/* Footer */
.footer {
    padding: 6rem 0 2rem;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-tagline {
    margin-top: 1.5rem;
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-column h4 {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.footer-column a {
    display: block;
    margin-bottom: 1rem;
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.footer-column a:hover {
    color: var(--primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    font-size: 0.875rem;
    color: var(--text-tertiary);
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

/* Responsive */
/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .hero-stats {
        gap: 1rem;
    }

    .stat-value {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 1rem 0;
    }

    .nav-links {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.95);
        backdrop-filter: blur(20px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        transform: translateX(100%);
        transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links a {
        font-size: 1.5rem;
        color: var(--text-primary);
    }

    .mobile-menu-toggle {
        display: flex;
        z-index: 1000;
    }

    .mobile-menu-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }

    .mobile-menu-toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .mobile-menu-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .hero {
        padding: 120px 0 80px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }

    .hero-cta {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .btn-large {
        width: 100%;
        justify-content: center;
    }

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-top: 2rem;
    }

    .stat-item {
        padding: 0.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .features-grid,
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .integration-showcase {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    .integration-card {
        width: 100%;
        max-width: 260px;
        padding: 1.5rem;
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .integration-card h3,
    .integration-card p {
        text-align: center;
        width: 100%;
    }

    .integration-logo {
        margin: 0 auto 1.5rem;
    }
}

/* Chatbot Widget */
.chatbot-widget {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    opacity: 0;
    transform: translateY(20px);
    pointer-events: none;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-widget.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: all;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(124, 58, 237, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1002;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 30px rgba(124, 58, 237, 0.6);
}

.chatbot-toggle svg {
    width: 28px;
    height: 28px;
}

.chatbot-toggle .close-icon {
    font-size: 1.5rem;
    font-weight: bold;
}

.chatbot-popups {
    position: absolute;
    bottom: 70px;
    right: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.4rem;
    pointer-events: none;
    z-index: 1001;
}

.popup-pill {
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    padding: 0.4rem 0.85rem;
    border-radius: 999px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    opacity: 0;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chatbot-popups.visible .popup-pill {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

/* Staggered animation for pills */
.chatbot-popups.visible .popup-pill:nth-child(1) {
    transition-delay: 0.1s;
}

.chatbot-popups.visible .popup-pill:nth-child(2) {
    transition-delay: 0.2s;
}

.chatbot-popups.visible .popup-pill:nth-child(3) {
    transition-delay: 0.3s;
}

.popup-icon {
    font-size: 0.9rem;
}

.popup-text {
    font-size: 0.8125rem;
    font-weight: 500;
    color: #1a1a1a;
}

.chatbot-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    border: 1px solid var(--border);
    border-radius: 1.5rem;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    transform-origin: bottom right;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1001;
}

.chatbot-window.visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: all;
}

.chatbot-header {
    padding: 1.5rem;
    background: #7C3AED;
    /* Purple primary color */
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: none;
    color: white;
}

.chatbot-header-content {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.chatbot-avatar {
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
}

.chatbot-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.chatbot-name {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.2;
}

.chatbot-status {
    font-size: 0.875rem;
    opacity: 0.9;
    font-weight: 400;
}

.chatbot-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-dot {
    width: 10px;
    height: 10px;
    background: #4ADE80;
    /* Green status */
    border-radius: 50%;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.5);
}

.chatbot-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    font-size: 1.25rem;
    padding: 0.25rem;
    transition: color 0.2s;
}

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

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

.message {
    max-width: 80%;
    padding: 0.75rem 1rem;
    border-radius: 1rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    animation: messageSlideIn 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    opacity: 0;
    transform: translateY(10px);
}

.message.bot {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-primary);
    border-bottom-left-radius: 0.25rem;
    align-self: flex-start;
}

.message.user {
    background: var(--primary);
    color: white;
    border-bottom-right-radius: 0.25rem;
    align-self: flex-end;
}

.chatbot-input {
    padding: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.02);
}

.chatbot-input input {
    flex: 1;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: 999px;
    padding: 0.75rem 1.25rem;
    color: var(--text-primary);
    font-family: inherit;
    font-size: 0.875rem;
}

.chatbot-input input:disabled {
    cursor: not-allowed;
    opacity: 0.7;
}

.chatbot-input button {
    background: none;
    border: none;
    color: var(--primary);
    cursor: pointer;
    padding: 0.5rem;
    opacity: 0.5;
    cursor: not-allowed;
}

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

@media (max-width: 480px) {
    .chatbot-widget {
        bottom: 1rem;
        right: 1rem;
    }

    .chatbot-window {
        width: calc(100vw - 2rem);
        height: 60vh;
        bottom: 70px;
    }
}

/* Footer */
.footer {
    padding: 4rem 0;
    background: var(--bg-primary);
    border-top: 1px solid var(--border);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 2rem;
    padding-top: 0;
    border-top: none;
}

.footer-brand-inline {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-brand-inline .logo {
    font-size: 1.25rem;
}

.footer-tagline-inline {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    padding-left: 1rem;
    border-left: 1px solid var(--border);
}

.footer-copyright p {
    color: var(--text-tertiary);
    font-size: 0.875rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
}

.footer-legal a {
    color: var(--text-tertiary);
    font-size: 0.875rem;
    transition: color 0.25s;
}

.footer-legal a:hover {
    color: var(--primary);
}

/* Responsive Footer */
@media (max-width: 1024px) {
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .footer-tagline-inline {
        display: none;
        /* Hide tagline on smaller screens if needed, or stack it */
    }

    .footer-brand-inline {
        flex-direction: column;
        gap: 0.5rem;
    }

    .footer-tagline-inline {
        display: block;
        padding-left: 0;
        border-left: none;
    }
}



@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }
}

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

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

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }

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

@keyframes float {

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

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

/* Utility Classes for Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.stagger-1 {
    transition-delay: 0.1s;
}

.stagger-2 {
    transition-delay: 0.2s;
}

.stagger-3 {
    transition-delay: 0.3s;
}