@charset "utf-8";
/* Space AI Landing Page - Light Theme Styles */

/******************************
[Table of Contents]

1. Variables & Theme
2. Base Overrides
3. Header/Navbar
4. Hero Section
5. Integrations Bar
6. Stats & Flow Section
7. Features Section
8. Pricing Section
9. Testimonials Section
10. Footer
11. Animations
12. Responsive

******************************/

/***********
1. Variables & Theme (LIGHT MODE)
***********/

.space-ai {
    --space-bg-primary: #ffffff;
    --space-bg-secondary: #f5f5f5;
    --space-bg-card: #ffffff;
    --space-bg-card-hover: #fafafa;
    --space-accent: #00d4aa;
    --space-accent-light: #00f0c0;
    --space-accent-dark: #00a88a;
    --space-accent-glow: rgba(0, 212, 170, 0.2);
    --space-text-primary: #1f1f1f;
    --space-text-secondary: #555555;
    --space-text-muted: #888888;
    --space-border: rgba(0, 0, 0, 0.08);
    --space-gradient-primary: linear-gradient(135deg, #00d4aa 0%, #00a88a 100%);
    --space-gradient-hero: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    --space-gradient-footer: linear-gradient(135deg, #0a2540 0%, #003333 50%, #001a2e 100%);
    --space-shadow-card: 0 4px 24px rgba(0, 0, 0, 0.06);
    --space-shadow-glow: 0 0 30px rgba(0, 212, 170, 0.2);
}

/***********
2. Base Overrides
***********/

.space-ai {
    background-color: var(--space-bg-primary);
    color: var(--space-text-primary);
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
}

.space-ai section {
    background-color: var(--space-bg-primary);
    padding-top: 100px;
    padding-bottom: 100px;
}

.space-ai p {
    color: var(--space-text-secondary);
}

.space-ai h1,
.space-ai h2,
.space-ai h3,
.space-ai h4,
.space-ai h5,
.space-ai h6 {
    color: var(--space-text-primary);
}

.space-ai .section_title_container p {
    color: var(--space-text-primary);
    border-bottom-color: var(--space-border);
}

.space-ai .section_title_container h2 {
    color: var(--space-text-primary);
}

/***********
3. Header/Navbar
***********/

.space-ai .header {
    position: fixed;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.space-ai .header.scrolled {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--space-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.05);
}

.space-ai .header.scrolled .header_bg_lg,
.space-ai .header.scrolled .header_bg_l_1,
.space-ai .header.scrolled .header_bg_l_2,
.space-ai .header.scrolled .header_bg_r_1,
.space-ai .header.scrolled .header_bg_r_2 {
    background-color: transparent;
}

.space-ai .space-logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.space-ai .space-logo-img {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
}

/* Logo swap: white logo visible by default, black logo hidden */
.space-ai .space-logo-img.logo-light {
    display: block;
}

.space-ai .space-logo-img.logo-dark {
    display: none;
}

/* When scrolled (white header): show black logo, hide white logo */
.space-ai .header.scrolled .space-logo-img.logo-light {
    display: none;
}

.space-ai .header.scrolled .space-logo-img.logo-dark {
    display: block;
}

.space-ai .header-logo a span {
    color: var(--space-text-primary);
}

.space-ai .main-nav ul li a {
    color: var(--space-text-secondary);
    font-weight: 500;
    transition: color 0.3s ease;
}

.space-ai .main-nav ul li a:hover {
    color: var(--space-accent);
}

/* Header elements on scrolled white header */
.space-ai .header.scrolled .main-nav ul li a {
    color: var(--space-text-primary);
}

.space-ai .header.scrolled .main-nav ul li a:hover {
    color: var(--space-accent);
}

.space-ai .header.scrolled .header_btn {
    background: var(--space-text-primary);
    color: var(--space-bg-primary);
}

.space-ai .header.scrolled .hamburger_inner,
.space-ai .header.scrolled .hamburger_inner::before,
.space-ai .header.scrolled .hamburger_inner::after {
    background-color: var(--space-text-primary);
}

.space-ai .header_btn,
.space-ai .space-btn-primary {
    background: var(--space-text-primary);
    color: var(--space-bg-primary);
    font-weight: 600;
    border: none;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.space-ai .header_btn:hover,
.space-ai .space-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    color: var(--space-bg-primary);
    background: var(--space-text-primary);
}

.space-ai .space-btn-secondary {
    background: transparent;
    color: var(--space-text-primary);
    font-weight: 600;
    border: 1px solid var(--space-border);
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.space-ai .space-btn-secondary:hover {
    border-color: var(--space-text-primary);
    background: rgba(0, 0, 0, 0.03);
}

.space-ai .hamburger_inner,
.space-ai .hamburger_inner::before,
.space-ai .hamburger_inner::after {
    background-color: var(--space-text-primary);
}

/***********
4. Hero Section (DARK with Soundwave)
***********/

.space-ai .hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding-top: 120px;
    background: #000000;
}

.space-ai .hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    z-index: 0;
}

.space-ai .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.space-ai .hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.space-ai .hero_content h1 {
    font-size: clamp(40px, 8vw, 80px);
    font-weight: 800;
    margin-bottom: 24px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.03em;
    color: #ffffff;
}

.space-ai .hero_content h1 .highlight {
    background: var(--space-gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.space-ai .hero_content .hero-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.space-ai .hero_buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.space-ai .hero_buttons .btn {
    padding: 16px 32px;
    font-size: 18px;
    font-weight: 600;
    height: auto;
}

/* Hero-specific button styles */
.space-ai .hero .space-btn-primary {
    background: #1f1f1f;
    color: #ffffff;
    border: 1px solid rgba(0, 212, 170, 0.3);
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.space-ai .hero .space-btn-primary:hover {
    background: #2a2a2a;
    border-color: var(--space-accent);
    box-shadow: 0 0 30px rgba(0, 212, 170, 0.4);
}

.space-ai .hero .space-btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.space-ai .hero .space-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: #ffffff;
}

/* Header in hero context (transparent with white text) */
.space-ai .header:not(.scrolled) .space-logo-text {
    color: #ffffff;
}

.space-ai .header:not(.scrolled) .main-nav ul li a {
    color: rgba(255, 255, 255, 0.8);
}

.space-ai .header:not(.scrolled) .main-nav ul li a:hover {
    color: var(--space-accent);
}

.space-ai .header:not(.scrolled) .header_btn {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
}

.space-ai .header:not(.scrolled) .header_btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.space-ai .header:not(.scrolled) .hamburger_inner,
.space-ai .header:not(.scrolled) .hamburger_inner::before,
.space-ai .header:not(.scrolled) .hamburger_inner::after {
    background-color: #ffffff;
}

/***********
5. Brands
***********/

.space-ai .brands {
    padding: 100px 0;
    background-color: var(--space-bg-primary);
}

.space-ai .brands_slider_container {
    min-height: 130px;
}

.space-ai .brands_item {
    height: 130px;
    background-color: var(--space-bg-secondary);
    clip-path: polygon(0px 24px,
            12px 24px,
            12px 12px,
            24px 12px,
            24px 0px,
            100% 0px,
            100% calc(100% - 24px),
            calc(100% - 12px) calc(100% - 24px),
            calc(100% - 12px) calc(100% - 12px),
            calc(100% - 24px) calc(100% - 12px),
            calc(100% - 24px) 100%,
            0% 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

/* ... existing brands styles ... */

.space-ai .brands_item img {
    max-width: 120px !important;
    max-height: 40px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
}

/***********
6. How It Works (Tools)
***********/

.space-ai .tools {
    padding-top: 100px;
    padding-bottom: 100px;
    background-color: var(--space-bg-primary);
}

.space-ai .tools_container {
    gap: 8px;
}

.space-ai .tools_item {
    width: calc((100% - 8px) / 2);
    padding: 32px;
    background-color: var(--space-bg-secondary);
    user-select: none;
    clip-path: polygon(0px 24px,
            12px 24px,
            12px 12px,
            24px 12px,
            24px 0px,
            100% 0px,
            100% calc(100% - 24px),
            calc(100% - 12px) calc(100% - 24px),
            calc(100% - 12px) calc(100% - 12px),
            calc(100% - 24px) calc(100% - 12px),
            calc(100% - 24px) 100%,
            0% 100%);
}

.space-ai .tools_item>div {
    width: 100%;
}

.space-ai .tools_content {
    gap: 16px;
}

.space-ai .tools_icon {
    width: 56px;
    height: 56px;
    overflow: hidden;
    user-select: none;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 170, 0.3);
}

.space-ai .tools-number {
    font-size: 24px;
    font-weight: 800;
    color: var(--space-accent);
}

.space-ai .tools_icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: none;
    /* Hide if any left */
}

.space-ai .tools_content h3 {
    line-height: 1.2;
    margin-bottom: 8px;
    font-size: 24px;
    font-weight: 700;
    color: var(--space-text-primary);
}

.space-ai .tools_content p {
    font-size: 16px;
    color: var(--space-text-secondary);
    line-height: 1.5;
    margin-top: 0;
}

.space-ai .tools_bar {
    width: 100%;
    height: 6px;
    background-color: rgba(0, 0, 0, 0.1);
    margin-top: 24px;
    position: relative;
    border-radius: 3px;
    overflow: hidden;
}

.space-ai .tools_bar>div {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    /* Animated via JS */
}

/* Specific bar colors */
.space-ai .tools_container>div:nth-child(1) .tools_bar>div {
    background-color: #80bafa;
}

.space-ai .tools_container>div:nth-child(2) .tools_bar>div {
    background-color: #9d56f7;
}

.space-ai .tools_container>div:nth-child(3) .tools_bar>div {
    background-color: #126aed;
}

.space-ai .tools_container>div:nth-child(4) .tools_bar>div {
    background-color: #24272e;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .space-ai .tools_item {
        width: 100%;
    }
}

/***********
6. Stats & Flow Section
***********/

.space-ai .stats-flow {
    padding: 120px 0;
    background: var(--space-bg-secondary);
}

.space-ai .stats_container {
    display: flex;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 80px;
}

.space-ai .stats_item {
    background: var(--space-bg-card);
    border: 1px solid var(--space-border);
    padding: 48px 60px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: var(--space-shadow-card);
    opacity: 1 !important;
    transform: none !important;
    visibility: visible !important;
}

.space-ai .stats_item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
}

.space-ai .stats_item h3 {
    font-size: 56px;
    font-weight: 800;
    color: var(--space-text-primary);
    margin-bottom: 8px;
}

.space-ai .stats_item p {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--space-text-muted);
}

.space-ai .flow-diagram {
    margin-top: 60px;
}

.space-ai .flow-diagram-title {
    text-align: center;
    margin-bottom: 40px;
}

.space-ai .flow-diagram-title h3 {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--space-text-muted);
    margin-bottom: 16px;
    border-bottom: 1px dashed var(--space-border);
    padding-bottom: 16px;
}

.space-ai .flow-diagram-title h2 {
    font-size: 36px;
    color: var(--space-text-primary);
    padding-top: 16px;
}

.space-ai .flow-diagram-image {
    text-align: center;
    padding: 40px;
    background: var(--space-bg-card);
    border: 1px solid var(--space-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--space-shadow-card);
}

.space-ai .flow-diagram-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

/***********
7. Features Section
***********/

.space-ai .features {
    padding: 120px 0;
    background: var(--space-bg-primary);
}

.space-ai .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-top: 60px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.space-ai .feature-card {
    background: var(--space-bg-card);
    border: 1px solid var(--space-border);
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: var(--space-shadow-card);
}

.space-ai .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--space-gradient-primary);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.space-ai .feature-card:hover {
    border-color: rgba(0, 212, 170, 0.3);
    transform: translateY(-8px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

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

.space-ai .feature-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 212, 170, 0.1);
    border: 1px solid rgba(0, 212, 170, 0.3);
    border-radius: 12px;
    margin-bottom: 24px;
}

.space-ai .feature-icon i {
    font-size: 28px;
    color: var(--space-accent);
}

.space-ai .feature-icon .feature-number-text {
    font-size: 24px;
    font-weight: 800;
    color: var(--space-accent);
}

.space-ai .feature-card h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--space-text-primary);
}

.space-ai .feature-card p {
    font-size: 16px;
    line-height: 1.6;
    color: var(--space-text-secondary);
}

/***********
8. Pricing Section
***********/

.space-ai .pricing {
    padding: 120px 0;
    background: var(--space-bg-secondary);
}

.space-ai .pricing_container {
    display: flex;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: 60px;
}

.space-ai .pricing_item {
    background: var(--space-bg-card);
    border: 1px solid var(--space-border);
    max-width: 380px;
    flex: 1;
    transition: all 0.3s ease;
    overflow: hidden;
    box-shadow: var(--space-shadow-card);
}

.space-ai .pricing_item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.1);
}

.space-ai .pricing_item.featured {
    border-color: var(--space-accent);
    position: relative;
}

.space-ai .pricing_item.featured::before {
    content: 'Popular';
    position: absolute;
    top: 16px;
    right: -32px;
    background: var(--space-gradient-primary);
    color: var(--space-bg-primary);
    font-size: 12px;
    font-weight: 700;
    padding: 4px 40px;
    transform: rotate(45deg);
    text-transform: uppercase;
}

.space-ai .pricing_top {
    padding: 40px;
    background: var(--space-bg-card);
    border-bottom: 1px solid var(--space-border);
}

.space-ai .pricing_item_title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--space-text-primary);
}

.space-ai .price {
    font-size: 48px;
    font-weight: 800;
    color: var(--space-text-primary);
    margin-bottom: 16px;
}

.space-ai .price span {
    font-size: 18px;
    font-weight: 500;
    color: var(--space-text-muted);
}

.space-ai .price_item_description {
    color: var(--space-text-secondary);
    font-size: 15px;
    line-height: 1.6;
}

.space-ai .pricing_item_categories {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.space-ai .pricing_item_categories li {
    padding: 6px 12px;
    background: rgba(0, 212, 170, 0.1);
    color: var(--space-accent-dark);
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    text-transform: uppercase;
}

.space-ai .pricing_bottom {
    padding: 40px;
}

.space-ai .pricing_item_features {
    margin-bottom: 32px;
}

.space-ai .pricing_item_features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--space-border);
}

.space-ai .pricing_item_features li:last-child {
    border-bottom: none;
}

.space-ai .pricing_item_features li i {
    color: var(--space-accent);
    font-size: 14px;
}

.space-ai .pricing_item_features li span {
    color: var(--space-text-secondary);
    font-size: 15px;
}

.space-ai .pricing_btn {
    width: 100%;
    text-align: center;
    background: var(--space-text-primary);
    color: var(--space-bg-primary);
    font-weight: 600;
    padding: 16px 32px;
    height: auto;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.space-ai .pricing_btn:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    transform: translateY(-2px);
    color: var(--space-bg-primary);
}

/***********
9. Testimonials Section
***********/

.space-ai .testimonials {
    padding: 120px 0;
    background: var(--space-bg-primary);
}

.space-ai .testimonials_item {
    background: var(--space-bg-card);
    border: 1px solid var(--space-border);
    padding: 40px;
    border-radius: 16px;
    height: 100%;
    box-shadow: var(--space-shadow-card);
}

.space-ai .testimonials_rating li i {
    color: #ffc107;
}

.space-ai .testimonials_content blockquote {
    color: var(--space-text-primary);
    font-size: 18px;
    line-height: 1.7;
    margin-top: 20px;
}

.space-ai .testimonials_author {
    margin-top: 30px;
    padding: 20px;
    background: var(--space-bg-secondary);
    border-radius: 12px;
}

.space-ai .testimonials_author img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--space-border);
}

.space-ai .testimonials_author strong {
    color: var(--space-text-primary);
    font-weight: 600;
}

.space-ai .testimonials_author small {
    color: var(--space-text-muted);
}

.space-ai .slider_nav li {
    background: var(--space-bg-card);
    border: 1px solid var(--space-border);
    padding: 12px;
    transition: all 0.3s ease;
}

.space-ai .slider_nav li:hover {
    border-color: var(--space-text-primary);
    background: var(--space-bg-secondary);
}

/***********
10. Footer (Dark for contrast)
***********/

.space-ai .footer {
    position: relative;
    padding: 100px 0 40px;
    background: var(--space-gradient-footer);
    overflow: hidden;
}

.space-ai .footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--space-accent), transparent);
}

.space-ai .footer .background_image {
    opacity: 0.05;
}

.space-ai .footer_content {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 0;
}

.space-ai .footer_content h2 {
    font-size: 48px;
    margin-bottom: 24px;
    color: #ffffff;
}

.space-ai .footer_content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

.space-ai .footer-form {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 40px;
    border-radius: 16px;
    margin-bottom: 60px;
}

.space-ai .footer-form .form-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.space-ai .footer-form input,
.space-ai .footer-form textarea {
    width: 100%;
    padding: 16px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    font-size: 16px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.space-ai .footer-form input:focus,
.space-ai .footer-form textarea:focus {
    outline: none;
    border-color: var(--space-accent);
    box-shadow: 0 0 0 3px rgba(0, 212, 170, 0.2);
}

.space-ai .footer-form input::placeholder,
.space-ai .footer-form textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.space-ai .footer-form textarea {
    min-height: 120px;
    resize: vertical;
}

.space-ai .footer-form .form-submit {
    margin-top: 20px;
}

.space-ai .footer-form .form-submit .btn {
    width: 100%;
    background: var(--space-gradient-primary);
    color: #000000;
}

.space-ai .footer .social_container ul {
    gap: 16px;
}

.space-ai .footer .social_container li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.space-ai .footer .social_container li a:hover {
    border-color: var(--space-accent);
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-4px);
}

.space-ai .footer .social_container li a i {
    color: rgba(255, 255, 255, 0.7);
    font-size: 20px;
    transition: color 0.3s ease;
}

.space-ai .footer .social_container li a:hover i {
    color: var(--space-accent);
}

.space-ai .footer_bottom {
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.space-ai .footer_bottom ul li {
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.space-ai .footer_bottom ul li span {
    color: rgba(255, 255, 255, 0.7);
    margin-left: 24px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.space-ai .footer_bottom ul li span:hover {
    color: var(--space-accent);
}

.space-ai .scroll_top a {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transition: all 0.3s ease;
}

.space-ai .scroll_top a:hover {
    border-color: var(--space-accent);
    background: rgba(0, 212, 170, 0.1);
    transform: translateY(-4px);
}

.space-ai .scroll_top img {
    filter: invert(1);
}

/***********
11. Animations
***********/

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 8px var(--space-accent);
    }

    50% {
        box-shadow: 0 0 24px var(--space-accent), 0 0 48px rgba(0, 212, 170, 0.3);
    }
}

@keyframes float {

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

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

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.space-ai .animate-fade-in {
    animation: fade-in-up 0.6s ease forwards;
}

.space-ai .animate-float {
    animation: float 4s ease-in-out infinite;
}

/***********
12. Menu Light Theme
***********/

.space-ai .menu {
    background-color: var(--space-bg-primary);
    border-bottom: 1px solid var(--space-border);
}

.space-ai .menu-nav li a {
    color: var(--space-text-primary);
}

.space-ai .menu-nav li a:hover {
    color: var(--space-accent);
}

.space-ai .menu_btn {
    background: var(--space-text-primary);
    color: var(--space-bg-primary);
}

/***********
13. Contact Section (Light)
***********/

.space-ai .contact {
    background: var(--space-bg-primary);
}

.space-ai .contact .footer-form {
    background: var(--space-bg-secondary);
    border: 1px solid var(--space-border);
}

.space-ai .contact .footer-form input,
.space-ai .contact .footer-form textarea {
    background: var(--space-bg-primary);
    border: 1px solid var(--space-border);
    color: var(--space-text-primary);
}

.space-ai .contact .footer-form input:focus,
.space-ai .contact .footer-form textarea:focus {
    border-color: var(--space-accent);
}

.space-ai .contact .footer-form input::placeholder,
.space-ai .contact .footer-form textarea::placeholder {
    color: var(--space-text-muted);
}

/***********
14. Responsive
***********/

@media only screen and (max-width: 1199px) {
    .space-ai .stats_container {
        gap: 0;
    }

    .space-ai .stats_item {
        padding: 30px 40px;
    }

    .space-ai .stats_item h3 {
        font-size: 42px;
    }
}

@media only screen and (max-width: 991px) {
    .space-ai .main-nav {
        display: none;
    }

    .space-ai .header_btn {
        display: none;
    }

    .space-ai .hamburger {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .space-ai .hero_content h1 {
        font-size: 48px;
    }

    .space-ai .features-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .space-ai .pricing_container {
        flex-direction: column;
        align-items: center;
    }

    .space-ai .pricing_item {
        max-width: 100%;
        width: 100%;
    }

    .space-ai .footer-form .form-row {
        grid-template-columns: 1fr;
    }
}

@media only screen and (max-width: 767px) {
    .space-ai section {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .space-ai .hero {
        min-height: 80vh;
    }

    .space-ai .hero_content h1 {
        font-size: 36px;
    }

    .space-ai .hero_buttons {
        flex-direction: column;
    }

    .space-ai .hero_buttons .btn {
        width: 100%;
    }

    .space-ai .integrations-logos {
        gap: 24px;
    }

    .space-ai .stats_container {
        flex-direction: column;
    }

    .space-ai .stats_item {
        width: 100%;
    }

    .space-ai .feature-card {
        padding: 30px;
    }

    .space-ai .footer_content h2 {
        font-size: 32px;
    }

    .space-ai .footer_bottom ul {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

    .space-ai .footer_bottom ul li span {
        margin-left: 16px;
    }
}

@media only screen and (max-width: 575px) {
    .space-ai .hero_content h1 {
        font-size: 28px;
    }

    .space-ai .section_title_container h2 {
        font-size: 28px;
    }

    .space-ai .stats_item h3 {
        font-size: 36px;
    }

    .space-ai .price {
        font-size: 36px;
    }

    .space-ai .footer-form {
        padding: 24px;
    }

    .space-ai .contact .footer-form {
        padding: 24px;
    }
}

/***********
15. Button Styles (Custom)
***********/

.space-ai a.space-btn-white,
.space-ai button.space-btn-white,
.space-ai .space-btn-white {
    background: #FFFFFF !important;
    color: #000000 !important;
    font-weight: 600;
    border: 1px solid #FFFFFF !important;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.space-ai a.space-btn-white:hover,
.space-ai button.space-btn-white:hover,
.space-ai .space-btn-white:hover {
    background: transparent !important;
    color: #FFFFFF !important;
    border-color: #FFFFFF !important;
}

/* Ensure header button adapts when scrolled */
.space-ai .header.scrolled a.space-btn-white,
.space-ai .header.scrolled .space-btn-white {
    background: #000000 !important;
    color: #FFFFFF !important;
    border-color: #000000 !important;
}

.space-ai .header.scrolled a.space-btn-white:hover,
.space-ai .header.scrolled .space-btn-white:hover {
    background: transparent !important;
    color: #000000 !important;
}

.space-ai a.space-btn-dark-outline,
.space-ai .space-btn-dark-outline {
    background: rgba(255, 255, 255, 0.1) !important;
    color: #FFFFFF !important;
    font-weight: 600;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 12px 24px;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.space-ai a.space-btn-dark-outline:hover,
.space-ai .space-btn-dark-outline:hover {
    background: #FFFFFF !important;
    color: #000000 !important;
    border-color: #FFFFFF !important;
}