/* AI + Business Page Custom Styles */
:root {
    --bg-dark: #000000;
    --accent-cyan: #00f2ff;
    --accent-purple: #7000ff;
    --accent-blue: #0088ff;
    --text-white: #ffffff;
    --text-dim: #a0a0a0;
    --glass-border: rgba(255, 255, 255, 0.1);
    --glass-bg: rgba(255, 255, 255, 0.05);
    --font-heading: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

body.ai-business-page {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Inter', sans-serif;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Sticky Nav Enhancement */
.sticky-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    background: rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid var(--glass-border);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    color: var(--text-white);
    font-size: 1.5rem;
    font-weight: 800;
    font-family: var(--font-heading);
}

.nav-logo img {
    width: 40px;
    height: 40px;
}

.nav-links {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-white);
    font-size: 0.95rem;
    font-weight: 600;
    transition: color 0.3s ease;
}

.nav-links a:hover {
    color: var(--accent-cyan);
}

.nav-links .nav-cta {
    background: var(--accent-cyan);
    color: black;
    padding: 8px 20px;
    border-radius: 40px;
    box-shadow: 0 0 15px rgba(0, 242, 255, 0.4);
}

/* Sections Base */
section {
    position: relative;
    padding: 120px 40px;
    max-width: none;
    margin: 0;
}

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

/* Hero Business */
.hero-business {
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background: url('hero-network.png') center center;
    background-size: cover;
    text-align: center;
    position: relative;
    padding: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.8));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding-top: 80px;
}

.hero-content h1 {
    font-size: 5rem;
    margin: 30px 0;
    line-height: 1;
    letter-spacing: -3px;
    font-weight: 800;
}

.hero-content p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 50px;
    line-height: 1.5;
}

.voice-wave-container-mini {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mo-logo-mini {
    width: 60px;
    height: 60px;
    z-index: 2;
}

.mo-logo-mini img {
    width: 100%;
    opacity: 0.9;
    filter: drop-shadow(0 0 10px var(--accent-cyan));
}

.btn-group-center {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Two Column Section */
.two-column-section .container {
    display: flex;
    gap: 80px;
    align-items: center;
}

.text-block {
    flex: 1;
}

.text-block h2 {
    font-size: 3.5rem;
    margin-bottom: 30px;
}

.text-block p {
    font-size: 1.25rem;
    color: var(--text-dim);
    margin-bottom: 25px;
}

.text-block p.detail {
    font-size: 1rem;
    color: var(--accent-cyan);
    font-weight: 600;
    opacity: 0.8;
}

.section-tag {
    color: var(--accent-cyan);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.2rem;
    margin-bottom: 20px;
}

.image-block {
    flex: 1.2;
    border-radius: 30px;
    overflow: hidden;
    position: relative;
}

.image-block img {
    width: 100%;
    height: auto;
    display: block;
}

.glass-effect {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    padding: 10px;
}

/* Content Text Only */
.content-text-only {
    background: #050505;
    text-align: center;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.content-text-only h2 {
    font-size: 3rem;
    margin-bottom: 40px;
}

.content-text-only p {
    max-width: 900px;
    margin: 0 auto 30px;
    color: var(--text-dim);
    font-size: 1.35rem;
}

/* Horizontal Cards Section */
.centered-head {
    text-align: center;
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.centered-sub {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    color: var(--text-dim);
    font-size: 1.25rem;
}

.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.business-card {
    background: linear-gradient(to bottom right, #080808, #111111);
    border: 1px solid var(--glass-border);
    padding: 50px 40px;
    border-radius: 40px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    display: flex;
    flex-direction: column;
}

.business-card:hover {
    transform: translateY(-20px) scale(1.02);
    border-color: var(--accent-cyan);
    box-shadow: 0 40px 80px rgba(0, 242, 255, 0.15);
}

.card-icon {
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.card-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
    transition: transform 0.5s ease;
}

.card:hover .card-icon img {
    transform: scale(1.05);
}


.card-list {
    list-style: none;
    margin-top: 25px;
    padding: 0;
}

.card-list li {
    color: var(--text-dim);
    margin-bottom: 8px;
    font-weight: 500;
}

/* Business Grid Section */
.grid-4 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.grid-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 40px;
    border-radius: 25px;
    border: 1px solid var(--glass-border);
}

.industry-tag {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-white);
    margin-bottom: 15px;
    font-family: var(--font-heading);
}

.business-visual {
    width: 100%;
    margin-top: 60px;
    border-radius: 40px;
    overflow: hidden;
    height: 600px;
}

.business-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Wide Center Section */
.center-text {
    text-align: center;
}

.large-p {
    font-size: 1.75rem;
    color: var(--text-dim);
    max-width: 900px;
    margin: 0 auto 50px;
}

.platform-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 80px;
}

.feature-tag {
    padding: 10px 25px;
    border: 1px solid var(--accent-cyan);
    color: var(--accent-cyan);
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.1rem;
    background: rgba(0, 242, 255, 0.05);
}

.image-wide-container {
    width: 100%;
    height: 600px;
    border-radius: 50px;
    overflow: hidden;
}

.image-wide-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50px;
}

/* Why Different Section */
.different-section {
    background: #000000;
}

.container-box {
    background: linear-gradient(to right, #0a0a0a, #151515);
    padding: 100px;
    border-radius: 100px;
    border: 1px solid var(--glass-border);
}

.diff-split {
    display: flex;
    gap: 100px;
    margin: 60px 0;
}

.diff-left {
    flex: 1;
}

.diff-right {
    flex: 1;
}

.diff-left p {
    font-size: 1.8rem;
    line-height: 1.4;
    color: var(--text-white);
}

.check-list {
    list-style: none;
    padding: 0;
}

.check-list li {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 20px;
    font-weight: 300;
}

.final-note {
    font-size: 1.25rem;
    color: var(--accent-cyan);
    font-weight: 800;
    text-align: center;
}

/* Cinematic Vision Section */
.cinematic-section {
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.cinematic-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.cinematic-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cinematic-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.9) 100%);
    z-index: 2;
}

.cinematic-section .container {
    position: relative;
    z-index: 3;
    max-width: 900px;
}

.cinematic-section h2 {
    font-size: 5rem;
    line-height: 1;
    margin-bottom: 40px;
    letter-spacing: -2px;
}

.cinematic-section p {
    font-size: 1.6rem;
    color: var(--text-dim);
    margin-bottom: 30px;
}

/* Footer */
.business-footer {
    padding: 120px 40px;
    text-align: center;
    background: #000;
    border-top: 1px solid var(--glass-border);
}

.business-footer img {
    width: 40px;
    height: auto;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 10px;
}

.business-footer p {
    font-size: 1.2rem;
    color: var(--text-dim);
}

.copy {
    font-size: 0.9rem !important;
    margin-top: 50px;
    opacity: 0.5;
}

/* Reveal Animations */
.to-reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 1, 0.3, 1);
}

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

/* CTA Gradient */
.cta-gradient {
    padding: 150px 40px;
    background: radial-gradient(circle at center, #1a0033 0%, #000000 100%);
    text-align: center;
    border-top: 1px solid var(--accent-cyan);
}

.cta-gradient h2 {
    font-size: 5rem;
    margin-bottom: 30px;
}

.cta-gradient p {
    max-width: 800px;
    margin: 0 auto 50px;
    font-size: 1.5rem;
    color: var(--text-dim);
}

/* Responsive */
@media (max-width: 1024px) {
    .cards-grid-3 {
        grid-template-columns: 1fr;
    }

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

    .diff-split {
        flex-direction: column;
        gap: 40px;
    }

    .grid-4 {
        grid-template-columns: 1fr;
    }

    .two-column-section .container {
        flex-direction: column;
        text-align: center;
    }

    .cta-gradient h2 {
        font-size: 3rem;
    }
}