:root {
    --primary-color: #FFC107;
    /* Gold/Yellow */
    --secondary-color: #6f42c1;
    /* Purple */
    --dark-bg: #0d001a;
    /* Very dark purple */
    --card-bg: rgba(255, 255, 255, 0.05);
    --text-color: #ffffff;
    --accent-gradient: linear-gradient(45deg, #ff00cc, #333399);
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--dark-bg);
    color: var(--text-color);
    overflow-x: hidden;
}

/* Background Gradients */
.bg-gradient-hero {
    background: url('assets/image/bg/hero-bg-img.jpg') no-repeat center center;
    background-size: cover;
    position: relative;
    z-index: 0;
}

.bg-gradient-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top center, rgba(13, 0, 26, 0.7) 0%, rgba(13, 0, 26, 0.95) 100%);
    z-index: -1;
}

.bg-gradient-section {
    background: linear-gradient(180deg, #0d001a 0%, #1f052e 50%, #0d001a 100%);
}

/* Text Gradients */
.text-gradient {
    background: linear-gradient(90deg, #FFC107, #dfb318);
    /* Solid Gold/Yellow Gradient */
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-gradient-purple {
    background: linear-gradient(90deg, #d53369, #daae51);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Header Specifics */
.header-gradient {
    background: linear-gradient(90deg, #051824 0%, #3e0a47 100%);
    padding: 15px 0;
    width: 100%;
    position: fixed;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.brand-wrapper {
    display: flex;
    flex-direction: column;
}

.brand-logo {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
    letter-spacing: -2px;
    text-transform: none;
    background: transparent;
}

/* Style the 'i' dot specifically if we can target it, or just the letter */
.brand-logo-i {
    color: #d946ef !important;
    /* Pink/Purple accent */
    position: relative;
}

.brand-tagline {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 2px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.btn-early-access {
    background-color: #FEC84B;
    /* Specific yellow from screenshot */
    color: #000;
    font-weight: 600;
    font-size: 0.9rem;
    border-radius: 50px;
    /* Pill shape */
    padding: 10px 25px;
    border: none;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.btn-early-access:hover {
    transform: translateY(-2px);
    background-color: #ffd670;
    color: #000;
    box-shadow: 0 6px 12px rgba(253, 200, 64, 0.3);
}


/* Buttons (General) - Keeping original styles too */
.btn-primary-custom {
    background: linear-gradient(90deg, #FFC107, #ffdb4d);
    color: #000;
    font-weight: 700;
    border: none;
    border-radius: 5px;
    padding: 10px 25px;
    transition: all 0.3s ease;
}

.btn-primary-custom:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 193, 7, 0.4);
    color: #000;
}

.btn-outline-custom {
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    background: rgba(255, 255, 255, 0.05);
}

.btn-outline-custom:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
}

/* Cards */
.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 2rem;
    transition: transform 0.3s ease;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 193, 7, 0.3);
}

/* Icons */
.icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 193, 7, 0.1);
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

/* Section Spacing */
section {
    padding: 80px 0;
    position: relative;
}

/* Specific component styles */
.feature-list li {
    margin-bottom: 15px;
    display: flex;
    align-items: start;
}

.feature-list li i {
    color: var(--primary-color);
    margin-right: 15px;
    margin-top: 5px;
}

.stat-box {
    text-align: center;
    padding: 20px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-box:last-child {
    border-right: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.pricing-tag {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary-color);
}

/* Glow Effects */
.glow-circle {
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(111, 66, 193, 0.2) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
}

/* Modal Styling */
.modal-content.custom-modal {
    background-color: #0f172a;
    /* Dark Navy Blue */
    color: #cbd5e1;
    border: 1px solid #1e293b;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.modal-header {
    border-bottom: none;
    padding: 1.5rem 1.5rem 0.5rem 1.5rem;
}

.modal-body {
    padding: 1.5rem;
}

.modal-title-custom {
    color: #facc15;
    /* Bright Yellow */
    font-weight: 700;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title-icon {
    background: rgba(255, 255, 255, 0.1);
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #facc15;
    font-size: 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-close-white {
    filter: invert(1) grayscale(100%) brightness(200%);
    opacity: 0.5;
    background-size: 0.8em;
}

.form-label-custom {
    color: #e2e8f0;
    font-weight: 500;
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.form-label-custom i {
    color: #facc15;
}

.form-control-dark {
    background-color: #1e293b;
    /* Dark slate */
    border: 1px solid #334155;
    color: #f1f5f9;
    padding: 0.85rem 1rem;
    border-radius: 8px;
    font-size: 1rem;
}

.form-control-dark:focus {
    background-color: #1e293b;
    border-color: #facc15;
    color: #f1f5f9;
    box-shadow: 0 0 0 2px rgba(250, 204, 21, 0.2);
}

.form-control-dark::placeholder {
    color: #475569;
}

.modal-footer-custom {
    display: flex;
    gap: 1rem;
    padding-top: 1.5rem;
}

.btn-modal-cancel {
    background-color: transparent;
    border: 1px solid #334155;
    color: #cbd5e1;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 600;
    flex: 1;
    transition: all 0.2s;
}

.btn-modal-cancel:hover {
    background-color: #1e293b;
    color: #fff;
    border-color: #475569;
}

.btn-modal-submit {
    background-color: #facc15;
    border: 1px solid #facc15;
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    font-weight: 700;
    flex: 1;
    transition: all 0.2s;
}

.btn-modal-submit:hover {
    background-color: #eab308;
    border-color: #eab308;
    color: #000;
}

/* Video Player Styles */
.video-container-wrapper {
    position: relative;
    padding: 10px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(140, 20, 252, 0.4), rgba(40, 10, 80, 0.2));
    box-shadow: 0 0 30px rgba(111, 66, 193, 0.3);
    border: 1px solid rgba(160, 100, 255, 0.3);
}

.live-badge {
    position: absolute;
    top: 25px;
    left: 25px;
    background: #e60023;
    /* Youtube-ish Live Red */
    color: white;
    padding: 5px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
    z-index: 10;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.live-pulse {
    width: 6px;
    height: 6px;
    background-color: white;
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }

    50% {
        transform: scale(1.5);
        opacity: 0;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.custom-play-button-overlay {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #9C27B0, #E040FB);
    color: white;
    padding: 10px 25px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(156, 39, 176, 0.4);
    transition: all 0.3s ease;
    white-space: nowrap;
}

.custom-play-button-overlay:hover {
    transform: translateX(-50%) scale(1.05);
    box-shadow: 0 6px 20px rgba(156, 39, 176, 0.6);
}

@media (max-width: 576px) {
    .custom-play-button-overlay {
        bottom: 15px;
        padding: 8px 16px;
        font-size: 0.85rem;
        width: max-content;
    }
}

.custom-play-button-overlay i {
    font-size: 0.8rem;
}

.sales-assist-fab {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.sales-assist-fab img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.sales-assist-fab img:hover {
    transform: scale(1.05);
}

.sales-assist-tooltip {
    background: white;
    color: black;
    padding: 8px 15px;
    border-radius: 20px 20px 0 20px;
    margin-bottom: 10px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    font-size: 0.9rem;
    position: relative;
    max-width: 200px;
    font-weight: 500;
}

.sales-assist-tooltip .close-tooltip {
    position: absolute;
    top: -6px;
    right: -6px;
    background: #10b981;
    /* Green dot */
    width: 16px;
    height: 16px;
    border-radius: 50%;
    color: white;
    font-size: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

/* Video Call Modal Styles */
.video-call-modal {
    background-color: #1a1a2e !important;
}

.video-call-modal .modal-header {
    background-color: #24243e !important;
    border-color: #333 !important;
}

.btn-control-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    transition: all 0.2s;
    font-size: 1.1rem;
}

.btn-control-icon:hover {
    transform: scale(1.1);
}

.pip-window {
    transition: all 0.3s ease;
    cursor: move;
}

.pip-window:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5) !important;
}

/* CTA Button Styles */
/* CTA Button Styles */
.btn-cta {
    border: 2px solid #FFC107 !important;
    color: #FFC107 !important;
    background: rgba(0, 0, 0, 0.5) !important;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.4) !important;
    transition: all 0.3s ease !important;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.btn-cta i {
    color: inherit !important;
}

.btn-cta:hover {
    background-color: #FFC107 !important;
    color: #000 !important;
    box-shadow: 0 0 40px rgba(255, 193, 7, 0.8) !important;
    border-color: #FFC107 !important;
    transform: translateY(-2px);
}

.btn-cta:hover i {
    color: #000 !important;
}

/* Group Hover Effects for Cards */
.group-hover-effect {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.group-hover-effect:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.2) !important;
}

.group-hover-effect:hover .icon-circle {
    background: rgba(255, 193, 7, 0.2) !important;
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.4);
    transform: scale(1.1);
    transition: all 0.3s ease;
}

.group-hover-effect .icon-circle {
    transition: all 0.3s ease;
}