/* BEF Hosting Landing Page Stylesheet - Premium Dark Glassmorphism Design */

:root {
    --bg-dark: #08090f;
    --bg-card: rgba(255, 255, 255, 0.03);
    --border-color: rgba(255, 255, 255, 0.08);
    --accent-purple: #7000ff;
    --accent-cyan: #00f0ff;
    --text-primary: #ffffff;
    --text-secondary: #a0aec0;
    --text-muted: #718096;
    --font-heading: 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-dark);
    color: var(--text-primary);
    font-family: var(--font-body);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}

/* Background Glow Effects */
.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    filter: blur(140px);
    opacity: 0.15;
    pointer-events: none;
    z-index: 0;
}

.bg-glow-1 {
    background: var(--accent-purple);
    top: -200px;
    left: -200px;
}

.bg-glow-2 {
    background: var(--accent-cyan);
    bottom: 200px;
    right: -200px;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(8, 9, 15, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border-color);
}

.navbar-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--text-primary);
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.5px;
}

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

.nav-link {
    text-decoration: none;
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 15px;
    transition: color 0.3s ease;
}

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

.nav-auth {
    display: flex;
    gap: 15px;
}

/* Buttons */
.btn {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-purple) 0%, #9033ff 100%);
    color: #fff;
    box-shadow: 0 4px 15px rgba(112, 0, 255, 0.3);
}

.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(112, 0, 255, 0.5);
    transform: translateY(-2px);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.btn-large {
    padding: 14px 28px;
    font-size: 16px;
}

.btn-full {
    width: 100%;
    padding: 12px;
}

/* Hero Section */
.hero {
    max-width: 1200px;
    margin: 0 auto;
    padding: 140px 20px 80px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 50px;
    position: relative;
    z-index: 1;
}

.hero-container {
    flex: 1;
    min-width: 300px;
}

.badge {
    background: rgba(0, 240, 255, 0.08);
    border: 1px solid rgba(0, 240, 255, 0.2);
    color: var(--accent-cyan);
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    padding: 6px 14px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 25px;
    letter-spacing: 0.5px;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(34px, 5vw, 56px);
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    letter-spacing: -1px;
}

.gradient-text {
    background: linear-gradient(135deg, var(--accent-cyan) 0%, #a855f7 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 35px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.hero-preview {
    flex: 1;
    min-width: 320px;
    display: flex;
    justify-content: center;
}

/* Hero Interactive Mock Preview Card */
.preview-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 100%;
    max-width: 500px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(8px);
}

.preview-header {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
}

.dots {
    display: flex;
    gap: 6px;
}

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

.preview-url {
    font-family: monospace;
    font-size: 11px;
    color: var(--text-muted);
    margin-left: 20px;
}

.preview-body {
    height: 280px;
    display: flex;
}

.preview-sidebar {
    width: 60px;
    background: rgba(0, 0, 0, 0.1);
    border-right: 1px solid var(--border-color);
    padding: 15px 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sidebar-item {
    height: 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 3px;
}

.sidebar-item.active {
    background: var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0, 240, 255, 0.4);
}

.preview-canvas {
    flex: 1;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.canvas-header {
    height: 25px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.canvas-hero {
    flex: 1;
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 25px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
}

.line {
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
}

.line.long { width: 80%; }
.line.short { width: 50%; }

.btn-mock {
    width: 60px;
    height: 20px;
    background: var(--accent-purple);
    border-radius: 4px;
    margin-top: 5px;
}

/* Sections */
.section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
    position: relative;
    z-index: 1;
}

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

.section-title {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 15px;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 30px;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.05);
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    margin-bottom: 20px;
    background: rgba(255, 255, 255, 0.05);
}

.feature-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
}

.feature-desc {
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.6;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.price-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 40px 30px;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s ease;
}

.price-card:hover {
    transform: translateY(-3px);
    border-color: rgba(255, 255, 255, 0.15);
}

.price-card.popular {
    background: rgba(112, 0, 255, 0.03);
    border-color: rgba(112, 0, 255, 0.3);
    box-shadow: 0 15px 35px rgba(112, 0, 255, 0.1);
}

.popular-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-purple);
    color: #fff;
    font-family: var(--font-heading);
    font-size: 10px;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    letter-spacing: 1px;
}

.price-plan {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--accent-cyan);
    margin-bottom: 15px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 15px;
}

.price-period {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.price-desc {
    color: var(--text-secondary);
    font-size: 14px;
    margin-bottom: 30px;
    min-height: 42px;
}

.price-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}

.price-features li {
    font-size: 14px;
    color: var(--text-secondary);
}

.price-features li:first-child {
    font-weight: 500;
    color: var(--text-primary);
}

/* Footer */
.footer {
    text-align: center;
    padding: 40px 20px;
    border-top: 1px solid var(--border-color);
    font-size: 13px;
    color: var(--text-muted);
    background: rgba(0, 0, 0, 0.2);
}

/* Modal Popups styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(4, 5, 8, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2000;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show {
    opacity: 1;
    pointer-events: all;
}

.modal-card {
    background: rgba(15, 17, 26, 0.75);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    width: 100%;
    max-width: 440px;
    padding: 35px;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), inset 0 1px 0 rgba(255, 255, 255, 0.05);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.modal-overlay.show .modal-card {
    transform: scale(1);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 24px;
    letter-spacing: -0.5px;
}

.btn-close-modal {
    background: transparent;
    border: none;
    color: var(--text-secondary);
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.btn-close-modal:hover {
    color: var(--text-primary);
}

.form-group {
    margin-bottom: 18px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
}

.form-group input {
    width: 100%;
    padding: 12px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    font-family: var(--font-body);
    font-size: 14px;
    outline: none;
    box-sizing: border-box;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus {
    border-color: var(--accent-cyan);
    box-shadow: 0 0 10px rgba(0, 240, 255, 0.1);
}

/* Captcha styling */
.captcha-section {
    background: rgba(255, 255, 255, 0.02);
    border: 1px dashed var(--border-color);
    border-radius: 8px;
    padding: 15px;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.captcha-label {
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.captcha-equation {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 800;
    text-align: center;
    background: rgba(0, 0, 0, 0.2);
    padding: 8px;
    border-radius: 6px;
    letter-spacing: 2px;
    color: #fff;
    text-shadow: 0 0 8px rgba(255,255,255,0.1);
}

.captcha-section input {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid var(--border-color);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    font-size: 14px;
    text-align: center;
    outline: none;
    box-sizing: border-box;
}

.captcha-section input:focus {
    border-color: var(--accent-cyan);
}

/* Error/Success elements */
.error-message {
    color: #ef4444;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
    background: rgba(239, 68, 68, 0.05);
    border: 1px solid rgba(239, 68, 68, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.success-message {
    color: #10b981;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.15);
    padding: 8px 12px;
    border-radius: 6px;
    text-align: center;
}

.modal-footer {
    margin-top: 25px;
    text-align: center;
    font-size: 13px;
    color: var(--text-secondary);
}

.modal-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
}

.modal-footer a:hover {
    color: #00b8ff;
}

/* Responsive Media Queries */
@media (max-width: 991px) {
    .hero {
        padding-top: 100px;
        flex-direction: column;
        text-align: center;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100%;
        max-width: 100vw;
    }

    .hero-container, .hero-preview {
        min-width: 100% !important;
    }

    .hero {
        padding-left: 15px;
        padding-right: 15px;
        overflow-x: hidden;
    }

    .navbar-container {
        padding: 10px 15px;
        gap: 10px;
    }
    
    .logo img {
        height: 35px !important;
    }

    .nav-links {
        display: none;
    }
    
    .nav-auth {
        gap: 8px;
    }

    .nav-auth .btn {
        padding: 8px 12px;
        font-size: 13px;
    }
    
    .section-title {
        font-size: 28px;
    }
}

/* --- AI Feature Section --- */
.ai-section {
    padding-top: 2rem;
}

.ai-showcase {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.ai-box {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 320px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    overflow: hidden;
    position: relative;
}

.ai-box-header {
    background: rgba(255,255,255,0.05);
    padding: 10px 15px;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ai-box-content {
    padding: 20px;
    height: 160px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.code-typing code {
    color: var(--accent-cyan);
    font-family: monospace;
    font-size: 14px;
    line-height: 1.6;
    display: block;
}

.code-typing code:nth-child(2) { color: #fff; }

.visual-result {
    background: #111;
    border-radius: 6px;
    padding: 15px;
    position: relative;
    border: 1px dashed rgba(255,255,255,0.2);
}

.v-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #fff;
}

.v-btn {
    background: var(--accent-purple);
    color: #fff;
    padding: 6px 12px;
    border-radius: 4px;
    display: inline-block;
    font-size: 12px;
}

.v-tools {
    position: absolute;
    top: -10px;
    right: 10px;
    background: var(--accent-cyan);
    color: #000;
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 10px;
    display: flex;
    gap: 5px;
}

.ai-transfer-arrow {
    position: relative;
    width: 100px;
    height: 2px;
    background: rgba(255,255,255,0.1);
}

.animated-line {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 30px;
    background: var(--accent-purple);
    box-shadow: 0 0 10px var(--accent-purple);
    animation: transferData 2s infinite ease-in-out;
}

@keyframes transferData {
    0% { left: 0; width: 0; opacity: 0; }
    50% { width: 40px; opacity: 1; }
    100% { left: 100%; width: 0; opacity: 0; }
}

.ai-sparkle {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--accent-cyan);
    font-size: 20px;
    animation: pulse 2s infinite;
}

.ai-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 2rem;
}

.ai-f-card {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    padding: 20px;
    border-radius: 10px;
    text-align: center;
}

.ai-f-card .ai-icon {
    font-size: 24px;
    color: var(--accent-cyan);
    margin-bottom: 10px;
}

.ai-f-card h4 {
    margin-bottom: 8px;
    color: #fff;
}

.ai-f-card p {
    font-size: 13px;
    color: var(--text-secondary);
}

@media (max-width: 768px) {
    .ai-showcase { flex-direction: column; }
    .ai-transfer-arrow { width: 2px; height: 50px; }
    @keyframes transferData {
        0% { top: 0; height: 0; opacity: 0; }
        50% { height: 20px; opacity: 1; }
        100% { top: 100%; height: 0; opacity: 0; }
    }
    .ai-sparkle { top: 50%; left: -15px; transform: translateY(-50%); }
    .ai-features-grid { grid-template-columns: 1fr; }
}

/* --- Theme Marquee Section --- */
.theme-section {
    overflow: hidden;
    position: relative;
    padding-bottom: 4rem;
}

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

.theme-marquee::before, .theme-marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 150px;
    height: 100%;
    z-index: 2;
}

.theme-marquee::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-dark), transparent);
}

.theme-marquee::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-dark), transparent);
}

.marquee-track {
    display: flex;
    gap: 30px;
    width: max-content;
    animation: scrollMarquee 30s linear infinite;
}

.marquee-track:hover {
    animation-play-state: paused;
}

@keyframes scrollMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.t-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 300px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    cursor: pointer;
    overflow: hidden;
}

.t-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-purple);
}

.t-mock {
    height: 180px;
    background: #111;
    padding: 10px;
    position: relative;
    overflow: hidden;
    border-bottom: 1px solid var(--border-color);
}

/* Theme 1 - Standard */
.tm-nav { display: flex; justify-content: space-between; margin-bottom: 20px; }
.tm-nav.space { margin-bottom: 10px; }
.tm-logo { width: 30px; height: 10px; background: rgba(255,255,255,0.2); border-radius: 2px; }
.tm-menu { width: 50px; height: 10px; background: rgba(255,255,255,0.1); border-radius: 2px; }
.tm-search { width: 20px; height: 10px; background: var(--accent-cyan); border-radius: 2px; }

.tm-hero { margin-bottom: 20px; }
.tm-hero.centered { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.tm-hero.split { display: flex; gap: 10px; }
.tm-h-line { height: 8px; background: rgba(255,255,255,0.3); border-radius: 4px; margin-bottom: 6px; width: 80%; }
.tm-h-line.short { width: 50%; }
.tm-btn { width: 40px; height: 12px; background: var(--accent-purple); border-radius: 4px; margin-top: 10px; }
.tm-circle { width: 40px; height: 40px; background: var(--accent-purple); border-radius: 50%; }
.tm-img { flex: 1; height: 60px; background: rgba(255,255,255,0.1); border-radius: 4px; }
.tm-txt { flex: 1; }

.tm-grid { display: flex; gap: 8px; }
.tm-box { flex: 1; height: 40px; background: rgba(255,255,255,0.05); border-radius: 4px; }

.tm-split { display: flex; gap: 10px; height: 60px; }
.tm-left { flex: 1; background: rgba(0,240,255,0.2); border-radius: 4px; }
.tm-right { flex: 2; background: rgba(255,255,255,0.05); border-radius: 4px; }

.tm-banner { height: 40px; background: rgba(112,0,255,0.2); border-radius: 4px; margin-bottom: 10px; }
.tm-products { display: flex; gap: 5px; }
.tm-p { flex: 1; height: 30px; background: rgba(255,255,255,0.1); border-radius: 2px; }

.tm-sidebar { width: 30px; background: rgba(255,255,255,0.05); position: absolute; left: 0; top: 0; bottom: 0; }
.tm-content { margin-left: 40px; padding-top: 10px; }
.tm-cards { display: flex; gap: 10px; margin-top: 10px; }
.tm-c { flex: 1; height: 50px; background: rgba(255,255,255,0.05); border-radius: 4px; border-top: 2px solid var(--accent-cyan); }

.tm-dark { background: #0a0a0a; }
.tm-colorful { background: linear-gradient(45deg, #1a1a2e, #16213e); }

.t-info {
    padding: 15px;
    font-weight: 600;
    font-size: 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.t-tag {
    font-size: 10px;
    background: rgba(255,255,255,0.1);
    padding: 3px 8px;
    border-radius: 20px;
    font-weight: normal;
    text-transform: uppercase;
}

/* Enhance Pricing Section context */
#pricing {
    border-top: 1px solid var(--border-color);
    background: linear-gradient(to bottom, var(--bg-dark), #0f111a);
}


/* --- AI Chat Feature Section --- */
.ai-chat-showcase {
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 30px;
    margin: 3rem auto;
    max-width: 900px;
}

.chat-mockup {
    flex: 1;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.chat-header {
    background: rgba(255,255,255,0.05);
    padding: 15px;
    border-bottom: 1px solid var(--border-color);
}

.chat-bot-info {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-weight: 600;
}

.chat-bot-info i {
    color: var(--accent-cyan);
    font-size: 20px;
}

.chat-body {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    background: rgba(0,0,0,0.2);
}

.chat-bubble {
    max-width: 85%;
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    line-height: 1.5;
}

.user-bubble {
    background: rgba(255,255,255,0.1);
    color: #fff;
    align-self: flex-end;
    border-bottom-right-radius: 2px;
}

.bot-bubble {
    background: rgba(112, 0, 255, 0.2);
    border: 1px solid rgba(112, 0, 255, 0.4);
    color: #fff;
    align-self: flex-start;
    border-bottom-left-radius: 2px;
}

.typing-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    background: var(--accent-cyan);
    border-radius: 50%;
    margin: 0 2px;
    animation: typing 1.4s infinite ease-in-out both;
}

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

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); }
    40% { transform: scale(1); }
}

/* Typing animation logic */
.typing-bubble {
    animation: hideTyping 0s 2s forwards;
}
.final-bubble {
    opacity: 0;
    animation: showFinal 0.5s 2s forwards;
}

@keyframes hideTyping { to { display: none; width: 0; height: 0; padding: 0; margin: 0; overflow: hidden; } }
@keyframes showFinal { to { opacity: 1; } }

.chat-footer {
    padding: 15px;
    border-top: 1px solid var(--border-color);
    display: flex;
    gap: 10px;
    background: rgba(255,255,255,0.02);
}

.chat-input-mock {
    flex: 1;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    padding: 10px 15px;
    color: var(--text-muted);
    font-size: 13px;
    display: flex;
    align-items: center;
}

.chat-send-btn {
    width: 40px;
    height: 40px;
    background: var(--accent-purple);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.ai-chat-result {
    flex: 1;
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid var(--border-color);
}

.build-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
    font-weight: 600;
    font-size: 14px;
    gap: 15px;
    animation: hideOverlay 0.5s 2.5s forwards;
}

.build-overlay i {
    font-size: 30px;
    color: var(--accent-purple);
    animation: pulse 1s infinite;
}

@keyframes hideOverlay { to { opacity: 0; pointer-events: none; } }

@media (max-width: 768px) {
    .ai-chat-showcase { flex-direction: column; }
    .ai-chat-result { height: 250px; }
}


/* --- Testimonials Section --- */
.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 25px;
    width: 350px;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.testi-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 184, 0, 0.5);
}

.testi-stars {
    color: #ffb800;
    font-size: 18px;
    letter-spacing: 2px;
}

.testi-quote {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-muted);
    flex: 1;
    font-style: italic;
}

.testi-author {
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    margin-top: 10px;
    padding-top: 15px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.testi-author .t-tag {
    background: rgba(255, 184, 0, 0.1);
    color: #ffb800;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.5px;
}

/* --- WhatsApp Floating Button --- */
.wa-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    text-align: center;
    font-size: 35px;
    box-shadow: 0px 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.3s ease, background-color 0.3s ease;
}

.wa-float:hover {
    transform: scale(1.1);
    background-color: #1ebe57;
    color: #fff;
}

.wa-bubble {
    position: absolute;
    right: 75px;
    background: #fff;
    color: #333;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translateX(20px);
    animation: showWaBubble 0.5s 3s forwards;
}

.wa-bubble::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 0 6px 6px;
    border-style: solid;
    border-color: transparent transparent transparent #fff;
}

@keyframes showWaBubble {
    to {
        opacity: 1;
        transform: translateX(0);
        pointer-events: auto;
    }
}

@media (max-width: 768px) {
    .wa-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 30px;
    }
    .wa-bubble {
        right: 65px;
        font-size: 13px;
        padding: 8px 12px;
    }
}

/* --- Sector Badges Marquee --- */
.sector-badge {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    color: #a0aec0;
    padding: 10px 24px;
    border-radius: 40px;
    font-size: 15px;
    font-weight: 500;
    white-space: nowrap;
    transition: all 0.3s ease;
    cursor: default;
}

.sector-badge:hover {
    background: rgba(112, 0, 255, 0.15);
    color: #fff;
    border-color: rgba(112, 0, 255, 0.4);
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(112, 0, 255, 0.2);
}

/* --- Hero Slider --- */
.slider-hero {
    display: block !important;
    max-width: 100% !important;
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    margin: 0 !important;
}
.hero-slider-track {
    display: flex;
    width: 200vw;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.hero-slide {
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 140px 20px 80px 20px;
    flex-shrink: 0;
    box-sizing: border-box;
}
.hero-slide-inner {
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
    margin: 0 auto;
}
.campaign-slide {
    justify-content: center;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.05) 0%, transparent 60%);
    transition: background 0.3s ease;
}
.campaign-slide:hover {
    background: radial-gradient(circle at center, rgba(112, 0, 255, 0.15) 0%, transparent 60%);
}
.campaign-content {
    max-width: 900px;
    margin: 0 auto;
}
.camp-price {
    font-size: 70px;
    font-weight: 800;
    color: #00f0ff;
    margin-bottom: 10px;
    text-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}
.camp-term {
    font-size: 24px;
    color: #a0aec0;
    font-weight: 500;
}
.camp-title {
    font-size: 45px;
    line-height: 1.3;
}
.camp-subtitle {
    font-size: 20px;
    margin-top: 15px;
    color: #e2e8f0;
    font-weight: 400;
}
.slider-arrows {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
    pointer-events: none;
}
.hero-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    pointer-events: auto;
    transition: all 0.3s ease;
}
.hero-arrow:hover {
    background: rgba(112, 0, 255, 0.5);
    border-color: #b785ff;
}

@media (max-width: 992px) {
    .hero-slide-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .hero-slide {
        padding: 100px 20px 40px 20px;
    }
    .camp-title {
        font-size: 30px;
    }
    .camp-price {
        font-size: 50px;
    }
    .slider-arrows {
        display: none; /* Hide arrows on mobile to save space */
    }
}

/* --- Campaign Slide Upgrades --- */
.campaign-slide {
    background: transparent !important;
}
.camp-glass-card {
    position: relative;
    display: block;
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    background: rgba(20, 22, 35, 0.5);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 50px 40px;
    text-decoration: none !important;
    color: var(--text-primary) !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.8, 0.25, 1), box-shadow 0.4s ease, border-color 0.4s ease;
    transform-style: preserve-3d;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    overflow: hidden;
}
.camp-glass-card:hover {
    box-shadow: 0 30px 60px rgba(112, 0, 255, 0.25);
    border-color: rgba(112, 0, 255, 0.4);
}
.camp-glow-bg {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.15) 0%, transparent 40%);
    pointer-events: none;
    z-index: 0;
    transition: transform 0.1s linear;
}
.camp-content-inner {
    position: relative;
    z-index: 2;
    transform: translateZ(40px);
}
.camp-badge-wrap {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
    transform: translateZ(50px);
}
.camp-badge {
    background: linear-gradient(90deg, #ff0055, #ff00c8);
    color: white;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    box-shadow: 0 0 20px rgba(255, 0, 85, 0.5);
}
.camp-price-box {
    text-align: center;
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 8px;
    transform: translateZ(60px);
}
.camp-currency {
    font-size: 40px;
    font-weight: 600;
    color: var(--accent-cyan);
    margin-top: 10px;
}
.camp-amount {
    font-size: 100px;
    font-weight: 800;
    line-height: 1;
    color: var(--accent-cyan);
    text-shadow: 0 0 40px rgba(0, 240, 255, 0.5);
    background: linear-gradient(to bottom right, #ffffff, #00f0ff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.camp-term {
    font-size: 20px;
    color: var(--text-secondary);
    align-self: flex-end;
    margin-bottom: 15px;
    font-weight: 500;
}
.camp-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    transform: translateZ(30px);
}
.camp-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-width: 480px;
    margin: 0 auto 40px auto;
    transform: translateZ(40px);
}
.camp-f-item {
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 18px;
    color: #e2e8f0;
    font-weight: 400;
    background: rgba(255,255,255,0.03);
    padding: 16px 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.06);
    transition: background 0.3s ease;
}
.camp-f-item:hover {
    background: rgba(255,255,255,0.08);
}
.camp-f-item i {
    color: #00f0ff;
    font-size: 22px;
    filter: drop-shadow(0 0 8px rgba(0,240,255,0.5));
}
.camp-cta-wrap {
    text-align: center;
    transform: translateZ(50px);
}
.camp-cta-btn {
    background: linear-gradient(90deg, #7000ff, #00f0ff);
    border: none;
    font-size: 20px;
    font-weight: 700;
    padding: 20px 45px;
    border-radius: 40px;
    box-shadow: 0 10px 30px rgba(112, 0, 255, 0.4);
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}
.camp-cta-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 240, 255, 0.6);
}

@media (max-width: 768px) {
    .camp-amount { font-size: 70px; }
    .camp-currency { font-size: 30px; }
    .camp-title { font-size: 24px; }
    .camp-f-item { font-size: 15px; padding: 12px 16px; }
    .camp-glass-card { padding: 40px 20px; }
}
