:root {
    --primary-red: #CF202D;
    --bg-black: #000000;
    --text-white: #FFFFFF;
    --text-gray: #ccc;
    --font-primary: 'Figtree', sans-serif;
    
    /* Global Font Base */
    --base-font-size: 16px;
    --base-font-weight: 400;
    --body-font-size: 1rem;
    --small-font-size: 0.875rem;

    /* Title Controls */
    --title-font-weight: 600;
    --title-hero-size: clamp(2.5rem, 6vw, 4.375rem);
    --title-section-size: clamp(1.75rem, 3vw, 3.125rem);
    --title-card-size: 1.5rem;

    /* Subtitle & Body Controls */
    --subtitle-font-weight: 400;
    --subtitle-size: clamp(0.875rem, 1.2vw, 1.125rem);
    --body-line-height: 1.6;

    /* Badge & Tag Controls */
    --badge-font-weight: 500;
    --tag-font-size: 0.75rem;
    --badge-font-size: 0.8125rem;
    --label-font-size: 0.8125rem;
    --badge-border-radius: 6px;

    /* Feature Section Controls (Automation, Delegate, Sales, Projects) */
    --feature-title-size: clamp(1.4rem, 2.5vw, 2.1875rem);
    --feature-subtitle-size: clamp(0.875rem, 1vw, 1rem);
    --feature-title-weight: var(--title-font-weight);
    
    /* About Logo Controls */
    --about-logo-height: clamp(60px, 8vw, 80px);
}

html {
    font-size: var(--base-font-size);
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-primary);
    font-weight: var(--base-font-weight);
    background-color: var(--bg-black);
    color: var(--text-white);
    overflow-x: hidden;
    min-height: 100vh;
}

/* Top Banner */
.top-banner {
    width: 100%;
    padding: 14px 2rem;
    background: #ffffff;
    text-align: center;
    position: relative;
    z-index: 1000;
}

.top-banner p {
    font-size: 0.875rem;
    color: rgba(0, 0, 0, 0.8);
    font-weight: 500;
    letter-spacing: 0.01em;
    margin: 0;
    line-height: 1.4;
}

.top-banner p strong {
    color: var(--bg-black);
    font-weight: 600;
}


/* Reveal Animations */
.reveal-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-blur {
    opacity: 0;
    filter: blur(20px);
    transform: translateY(20px);
    transition: opacity 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                filter 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), 
                transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1);
    will-change: opacity, filter, transform;
}

.reveal-blur.visible {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
}

/* Staggered Delays */
.delay-100 { transition-delay: 0.1s; }
.delay-200 { transition-delay: 0.2s; }
.delay-300 { transition-delay: 0.3s; }
.delay-400 { transition-delay: 0.4s; }
.delay-500 { transition-delay: 0.5s; }

/* Particles Container */
#particles-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

/* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    z-index: 2;
}

/* Glowing Background Element using the SVG */
.glow-background {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    background-image: url('images/hero_bg.svg');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    filter: blur(10px);
    z-index: -1;
    opacity: 0.6;

}

@keyframes pulse-glow {

    0%,
    100% {
        opacity: 0.4;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.7;
        transform: translate(-50%, -50%) scale(1.1);
    }
}

/* Header / Logos */
.header-logos {
    position: absolute;
    top: 8%;
    display: flex;
    align-items: center;
    gap: 24px;
    z-index: 10;
}

.logo-img {
    height: 50px; /* Reduced from 120px for a more modern, subtle look */
    width: 210;
    object-fit: contain;
}

.logo-mahsing {
    height: 55px;
}

.logo-thebrandlift {
    height: 65px;
}



/* Hero Content */
.hero-content {
    max-width: 1400px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.hero-title {
    font-size: var(--title-hero-size);
    font-weight: var(--title-font-weight);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: #FFFFFF;
}

.hero-subtitle {
    font-size: var(--subtitle-size);
    color: var(--text-gray);
    max-width: 600px;
    line-height: var(--body-line-height);
    font-weight: var(--subtitle-font-weight);
}

/* Buttons */
.button-group {
    display: flex;
    gap: 1.2rem;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.8rem 1.8rem;
    border-radius: 6px;
    font-weight: var(--font-weight-semibold);
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-red);
    color: white;
    border: 1px solid var(--primary-red);
}

.btn-primary:hover {
    background-color: #e02231;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(207, 32, 45, 0.3);
}

.btn:hover .text-front {
    transform: translateY(-100%);
}

.btn:hover .text-back {
    transform: translateY(-100%);
}

.btn-primary:hover .icon-arrow {
    transform: rotate(45deg);
}


.text-flip {
    position: relative;
    display: inline-block;
    height: 1.2em;
    overflow: hidden;
}

.text-front,
.text-back {
    display: block;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

.text-back {
    position: absolute;
    top: 100%;
    left: 0;
}


.btn-secondary {
    background-color: transparent;
    color: white;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.icon-arrow {
    width: 16px;
    height: 16px;
    stroke: currentColor;
    stroke-width: 2.5;
    fill: none;
    transition: transform 0.4s cubic-bezier(0.7, 0, 0.3, 1);
}

/* Mobile Responsive */
/* Expertise Section */
.expertise-section {
    padding: 70px 0;
    position: relative;
    z-index: 2;
    background: var(--bg-black);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.section-title {
    font-size: var(--title-section-size);
    font-weight: var(--title-font-weight);
    text-align: center;
}

/* Marquee Styles */
.marquee-container {
    width: 100%;
    overflow: hidden;
    position: relative;
}

/* Fade edges for premium look */
.marquee-container::before,
.marquee-container::after {
    content: "";
    position: absolute;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.marquee-container::before {
    left: 0;
    background: linear-gradient(to right, var(--bg-black) 60%, transparent 100%);
}

.marquee-container::after {
    right: 0;
    background: linear-gradient(to left, var(--bg-black) 60%, transparent 100%);
}

.marquee-content {
    display: flex;
    gap: 4rem;
    width: max-content;
    animation: marquee-scroll 40s linear infinite;
}

.marquee-content:hover {
    animation-play-state: paused;
}

.logo-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.marquee-logo {
    height: 120px;
    width: 120px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 1;
    transition: opacity 0.3s ease, filter 0.3s ease;
}


@keyframes marquee-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(calc(-50% - 2rem));
    }
}

@media (max-width: 768px) {
    .header-logos {
        top: 5%;
        gap: 1rem;
    }

    .logo-img {
        height: 28px;
    }

    .hero-section {
        padding: 1.5rem;
        height: auto;
        min-height: 100vh;
        padding-top: 15vh;
    }

    .button-group {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }

    .btn {
        justify-content: center;
        width: 100%;
    }

    .expertise-section {
        padding: 70px 1rem;
    }

    .section-title {
        margin-bottom: 2rem;
    }

    .marquee-container::before,
    .marquee-container::after {
        width: 100px;
    }

    .marquee-content {
        gap: 2rem;
    }

    .marquee-logo {
        height: 35px;
    }
}

/* About Section */
.about-section {
    padding: 0px 0 70px 0;
    background: var(--bg-black);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: "";
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(26, 68, 160, 0.15) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-header {
    position: relative;
    width: 100%;
    height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 4rem;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-card {
    color: white;
    padding: 2rem 0;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    max-width: 1400px;
    margin: 0 auto;
}

.about-subtitle-top {
    color: #ffffff;
    font-size: var(--tag-font-size);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    display: block;
    padding: 0.6rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--badge-border-radius);
    background-color: rgba(13, 13, 13, 0.8);
}

.about-logo {
    height: var(--about-logo-height);
    width: auto;
    transition: all 0.3s ease;
}

.about-title {
    font-size: var(--title-section-size);
    line-height: 1.1;
    font-weight: var(--title-font-weight);
    color: var(--text-white);
    letter-spacing: -0.03em;
    max-width: 900px;
}

.about-desc {
    font-size: var(--subtitle-size);
    line-height: var(--body-line-height);
    color: var(--text-gray);
    max-width: 750px;
}

.about-stats {
    display: flex;
    gap: 5rem;
    margin-top: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 600;
    color: var(--text-white);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* Global Section Header */
.section-header {
    text-align: center;
    margin-bottom: 6rem;
    padding: 0 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.section-tag {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.6rem 1.2rem;
    border-radius: var(--badge-border-radius);
    font-size: var(--tag-font-size);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-white);
    display: inline-block;
}

.section-main-title {
    font-size: var(--title-section-size);
    font-weight: var(--title-font-weight);
    line-height: 1.05;
    letter-spacing: -0.03em;
    color: var(--text-white);
    max-width: 900px;
}

.section-subtitle {
    font-size: var(--subtitle-size);
    color: var(--text-gray);
    max-width: 700px;
    line-height: var(--body-line-height);
    font-weight: var(--subtitle-font-weight);
}

/* Automation Section */
.automation-section {
    padding: 70px 0 40px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.automation-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.automation-left {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.automation-card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    width: 100%;
    max-width: 500px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    pointer-events: none;
}

.card-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tab-group {
    display: flex;
    gap: 1.5rem;
}

.tab {
    font-size: 0.875rem;
    font-weight: var(--font-weight-semibold);
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s ease;
}

.tab.active {
    color: var(--text-white);
}

.task-scroller {
    height: 350px;
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.task-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    animation: task-scroll-up 20s linear infinite;
}

@keyframes task-scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 0.5rem));
    }
}

.task-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 1.2rem;
    display: flex;
    align-items: center;
    gap: 1.2rem;
    transition: background 0.3s ease;
    flex-shrink: 0;
}

.task-icon-box {
    width: 40px;
    height: 40px;
    background: #1A1A1A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.task-info {
    flex: 1;
}

.task-name {
    font-size: 0.75rem;
    font-weight: var(--font-weight-semibold);
    margin-bottom: 2px;
}

.task-status-text {
    font-size: 0.75rem;
    color: var(--text-gray);
}

.task-status-icon {
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.task-status-icon.clock,
.task-status-icon.check,
.task-status-icon.x,
.task-status-icon.loading {
    color: #8B5CF6; /* Violet theme */
}

.task-status-icon.loading .spin {
    animation: spin 2s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.automation-right {
    flex: 1;
}

.automation-tag-label {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.5rem 1rem;
    border-radius: var(--badge-border-radius);
    font-size: var(--label-font-size);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: var(--text-white);
    display: inline-block;
    margin-bottom: 1.5rem;
}

.automation-title {
    font-size: var(--feature-title-size);
    font-weight: var(--feature-title-weight);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.automation-desc {
    font-size: var(--feature-subtitle-size);
    line-height: var(--body-line-height);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.automation-badges {
    display: flex;
    gap: 1rem;
}

.badge {
    color: #ffffff;
    font-size: var(--badge-font-size);
    font-weight: var(--badge-font-weight);
    display: block;
    padding: 0.6rem 1rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--badge-border-radius);
    background-color: rgba(13, 13, 13, 0.8);
}


/* Delegate Section */
.delegate-section {
    padding: 40px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.delegate-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: start;
    gap: 5rem;
}

.delegate-left {
    flex: 1;
}

.delegate-title {
    font-size: var(--feature-title-size);
    font-weight: var(--feature-title-weight);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.delegate-desc {
    font-size: var(--feature-subtitle-size);
    line-height: var(--body-line-height);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.delegate-buttons {
    display: flex;
    gap: 1rem;
}

.delegate-right {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.chat-mockup-container {
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    pointer-events: none;
}

.chat-mockup-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.orb-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-img {
    width: 80px;
    height: 80px;
    z-index: 2;
    filter: drop-shadow(0 0 20px rgba(139, 92, 246, 0.4));
    animation: orb-float 4s ease-in-out infinite;
}

.orb-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    filter: blur(15px);
    z-index: 1;
    animation: orb-glow-pulse 4s ease-in-out infinite;
}

@keyframes orb-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes orb-glow-pulse {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.2); }
}

.chat-title {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.chat-subtitle {
    font-size: 12px;
    color: var(--text-gray);
    max-width: 300px;
    line-height: 18px;
    margin-bottom: 1rem;
}

.chat-input-area {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 1.5rem;
    text-align: left;
}

.input-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.input-content {
    display: flex;
    align-items: center;
    gap: 2px;
}

.input-text {
    font-size: 12px;
    color: var(--text-white);
    opacity: 0.9;
}

.cursor {
    font-size: 1.25rem;
    color: #8B5CF6;
    animation: blink 1s step-end infinite;
}

@keyframes blink {
    50% { opacity: 0; }
}

.send-icon {
    width: 22px;
    height: 22px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.add-doc-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.add-doc-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-white);
}

.chat-pills {
    display: flex;
    gap: 0.8rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chat-pill {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1rem;
    border-radius: 100px;
    font-size: 10px;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 0.6rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.chat-pill:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(139, 92, 246, 0.3);
    color: var(--text-white);
}

.chat-pill svg {
    color: #8B5CF6;
}

@media (max-width: 1024px) {
    .delegate-container {
        flex-direction: column;
        gap: 4rem;
        text-align: center;
    }

    .delegate-desc {
        margin: 0 auto 2rem;
    }

    .delegate-buttons {
        justify-content: center;
    }

    .delegate-right {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .delegate-section {
        padding: 70px 0;
    }
    
    .chat-mockup-container {
        padding: 2rem 1rem;
    }
    
    .chat-title {
        font-size: 1.5rem;
    }
}

.reveal-up {
    opacity: 0;
    transform: translateY(40px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
    .automation-container {
        flex-direction: column-reverse;
        gap: 4rem;
        text-align: center;
    }

    .automation-desc {
        margin: 0 auto 2rem;
    }

    .automation-badges {
        justify-content: center;
    }

    .automation-left {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .automation-section {
        padding: 70px 0;
    }

    .task-row {
        gap: 0.8rem;
    }

    .task-label {
        display: none;
    }

    .automation-card {
        padding: 1.5rem;
    }
}

/* Sales & Marketing Section */
.sales-marketing-section {
    padding: 40px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.sales-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.sales-visual {
    flex: 1;
    display: flex;
    justify-content: flex-start;
}

.sales-visual-card {
    width: 100%;
    max-width: 550px;
    background: linear-gradient(to bottom, #0D0D0D 60%, #000000 100%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
}

/* Card Header */
.visual-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 1rem 1.5rem;
}

.visual-card-title {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-white);
}

.visual-card-status {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Card Tags */
.visual-card-tags {
    display: flex;
    gap: 1rem;
    padding-left: 0.5rem;
}

.visual-tag {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.5rem 1.2rem;
    border-radius: 100px;
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
}

/* Lead Card Slideshow */
.lead-slideshow {
    width: 100%;
    height: 180px; /* Height for one card + gap */
    overflow: hidden;
    position: relative;
    mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 70%, transparent 100%);
}

.lead-scroller {
    display: flex;
    flex-direction: column;
    gap: 15px;
    transition: transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.lead-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex-shrink: 0;
}

.lead-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.lead-avatar {
    width: 22px;
    height: 22px;
    background: #1A1A1A;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.lead-name-box {
    flex: 1;
}

.lead-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 2px;
}

.lead-role {
    font-size: 10px;
    color: var(--text-gray);
}

.verified-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.2rem 0.6rem;
    border-radius: 100px;
    font-size: 10px;
    color: var(--text-gray);
    font-weight: 500;
}

.lead-details {
    display: flex;
    gap: 4rem;
    margin-top: 10px;
}

.detail-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.detail-label {
    font-size: 10px;
    color: var(--text-gray);
}

.detail-value {
    font-size: 10px;
    font-weight: 500;
    color: var(--text-white);
}

/* Visual Card Footer / Progress */
.visual-card-footer {
    margin-top: 1rem;
    position: relative;
}

.progress-stepper {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
}

/* The line behind the dots */
.progress-stepper::before {
    content: "";
    position: absolute;
    top: 6px; /* Half of dot height */
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: rgba(255, 255, 255, 0.05);
    z-index: 1;
}

.step-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
    position: relative;
    z-index: 2;
}

.step-dot {
    width: 12px;
    height: 12px;
    background: #1A1A1A;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.step-item.active .step-dot {
    background: #8B5CF6;
    border-color: #8B5CF6;
    box-shadow: 0 0 15px rgba(139, 92, 246, 0.5);
}

.step-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-gray);
}

.step-item.active .step-label {
    color: var(--text-white);
}

/* The actual progress fill */
.progress-bar-bg {
    position: absolute;
    top: 6px;
    left: 2rem; /* Start from first dot */
    right: 2rem; /* End at last dot */
    height: 2px;
    z-index: 1;
    pointer-events: none;
}

.progress-bar-fill {
    height: 100%;
    background: #8B5CF6;
    width: 0;
    transition: width 0.8s ease;
}

/* Sales Content Styling */
.sales-content {
    flex: 1;
}

.sales-title {
    font-size: var(--feature-title-size);
    font-weight: var(--feature-title-weight);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.sales-desc {
    font-size: var(--feature-subtitle-size);
    line-height: var(--body-line-height);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.sales-badges {
    display: flex;
    gap: 1rem;
}

/* Responsive Sales Section */
@media (max-width: 1024px) {
    .sales-container {
        flex-direction: column-reverse;
        gap: 4rem;
        text-align: center;
    }

    .sales-desc {
        margin: 0 auto 2rem;
    }

    .sales-badges {
        justify-content: center;
    }

    .sales-visual {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .sales-marketing-section {
        padding: 70px 0;
    }
    
    .lead-details {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Loading Spin */
.loading-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* Dynamic Content Transitions */
.lead-card {
    transition: all 0.5s ease-in-out;
}

.fade-out {
    opacity: 0;
    transform: translateX(-20px);
}

.fade-in {
    opacity: 1;
    transform: translateX(0);
}

.progress-fill {
    transition: width 0.5s ease-in-out;
}

/* Custom Projects Section */
.custom-projects-section {
    padding: 40px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.custom-projects-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    gap: 5rem;
}

.projects-content {
    flex: 1;
}

.projects-title {
    font-size: var(--feature-title-size);
    font-weight: var(--feature-title-weight);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.projects-desc {
    font-size: var(--feature-subtitle-size);
    line-height: var(--body-line-height);
    color: var(--text-gray);
    margin-bottom: 2rem;
    max-width: 500px;
}

.projects-badges {
    display: flex;
    gap: 1rem;
}

.projects-visual {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.dashboard-card {
    width: 100%;
    max-width: 550px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 2.5rem;
    position: relative;
    backdrop-filter: blur(10px);
}

.dashboard-header {
    margin-bottom: 2rem;
}

.greeting {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.sub-greeting {
    font-size: 10px;
    color: var(--text-gray);
}

/* Project Status Box */
.project-status-box {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 1rem;
    margin-bottom: 2rem;
}

.ongoing-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--label-font-size);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.project-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}

.project-icon {
    width: 22px;
    height: 22px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
}

.project-details {
    flex: 1;
}

.project-name {
    font-size: 12px;
    font-weight: var(--title-font-weight);
    margin-bottom: 4px;
}

.project-status {
    font-size: 10px;
    color: var(--text-gray);
}

.project-progress-circle {
    width: 22px;
    height: 22px;
}

.circular-chart {
    display: block;
    margin: 0 auto;
    max-width: 100%;
}

.circle-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 3.8;
}

.circle {
    fill: none;
    stroke-width: 2.8;
    stroke-linecap: round;
    stroke: #8B5CF6;
    transition: stroke-dasharray 0.3s ease;
}

/* Schedule Box */
.schedule-box {
    /* No specific background, just part of the card */
}

.schedule-header {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.calendar-days {
    display: flex;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 12px;
    padding: 10px;
    margin-bottom: 2rem;
}

.day {
    font-size: 12px;
    font-weight: 500;
    color: var(--text-gray);
    width: 22px;
    height: 22px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day.active {
    background: #8B5CF6;
    color: white;
}

.events-list-container {
    position: relative;
    min-height: 120px;
}

.day-events {
    display: none;
    flex-direction: column;
    gap: 1rem;
}

.day-events.active {
    display: flex;
}

.event-item {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.event-item:last-child {
    border-bottom: none;
}

.event-icon {
    width: 18px;
    height: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.event-info {
    flex: 1;
}

.event-name {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 4px;
}

.event-time {
    font-size: 10px;
    color: var(--text-gray);
}

.event-more {
    color: var(--text-gray);
    opacity: 0.5;
}

.no-meeting {
    text-align: center;
    color: var(--text-gray);
    padding: 2rem 0;
    font-size: 0.9375rem;
    width: 100%;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .custom-projects-container {
        flex-direction: column;
        gap: 3rem;
        text-align: center;
    }

    .projects-desc {
        margin: 0 auto 2rem;
    }

    .projects-badges {
        justify-content: center;
    }

    .projects-visual {
        justify-content: center;
    }
}

/* Process Section */
.process-section {
    padding: 70px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.process-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.process-card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 24px;
    padding: 1.5rem;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.process-card:hover {
    border-color: rgba(139, 92, 246, 0.2);
}

.step-badge {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 600;
    width: fit-content;
    color: var(--text-gray);
}

.process-step-title {
    font-size: 23px;
    font-weight: var(--title-font-weight);
}

.process-step-desc {
    font-size: 16px;
    color: var(--text-gray);
    line-height: 1.6;
    max-width: 400px;
}

.process-visual {
    width: 100%;
    height: 200px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    margin-top: 1rem;
    position: relative;
    overflow: hidden;
    padding: 0.5rem;
}

/* Step 1 Visual - Radar */
.step-1-visual {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.radar-container {
    flex: 1;
    height: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.radar-circles {
    position: absolute;
    width: 100px;
    height: 100px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radar-circles .circle {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50%;
}

.radar-circles .circle:nth-child(1) { width: 40px; height: 40px; }
.radar-circles .circle:nth-child(2) { width: 90px; height: 90px; }
.radar-circles .circle:nth-child(3) { width: 140px; height: 140px; }

.radar-sweep {
    position: absolute;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    background: conic-gradient(from 0deg, rgba(139, 92, 246, 0.4) 0%, transparent 20%, transparent 100%);
    animation: radar-rotate 4s linear infinite;
}

@keyframes radar-rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.radar-text {
    position: absolute;
    bottom: 0;
    font-size: 10px;
    color: var(--text-white);
    text-align: center;
    width: 100%;
}

.check-list {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex: 1;
}

.check-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.4rem 0.8rem;
    border-radius: 8px;
    font-size: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.check-item.active {
    background: rgba(139, 92, 246, 0.1);
    border-color: rgba(139, 92, 246, 0.2);
    color: var(--text-white);
}

/* Step 2 Visual - Code Window */
.step-2-visual {
    padding: 0;
}

.code-window {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.window-header {
    background: #1A1A1A;
    height: 40px;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.header-arrows {
    display: flex;
    gap: 0.5rem;
    color: var(--text-gray);
}

.header-search {
    flex: 1;
    height: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 4px;
}

.header-dots {
    display: flex;
    gap: 6px;
}

.header-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

.window-body {
    display: flex;
    flex: 1;
}

.sidebar {
    width: 40px;
    background: #0D0D0D;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 1rem;
    gap: 1.5rem;
    color: var(--text-gray);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
}

.code-area {
    flex: 1;
    background: #080808;
    overflow: hidden;
    position: relative;
}

.code-scroller {
    animation: code-scroll-up 15s linear infinite;
    padding: 1.5rem;
}

@keyframes code-scroll-up {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

.code-content {
    font-family: 'Fira Code', monospace;
    font-size: 11px;
    line-height: 1.8;
    color: #D1D1D1;
}

.code-keyword { color: #C678DD; }
.code-class { color: #E5C07B; }
.code-func { color: #61AFEF; }
.code-string { color: #98C379; }
.code-comment { color: #5C6370; }

/* Step 3 Visual - Integration */
.step-3-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.integration-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    height: 100%;
}

.integration-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.integration-node span {
    font-size: 12px;
    color: var(--text-gray);
    font-weight: 500;
}

.node-icon, .stack-box {
    width: 80px;
    height: 80px;
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.node-icon::after, .stack-box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 20px;
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.1);
    pointer-events: none;
}

.node-icon img, .stack-icon svg, .stack-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
    filter: drop-shadow(0 0 15px rgba(139, 92, 246, 0.4));
}

.connecting-lines {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.8rem;
    height: 100px; /* Match box height for center alignment */
}

.line {
    width: 100px;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    position: relative;
}

.line .dot {
    position: absolute;
    width: 5px;
    height: 5px;
    background: #8B5CF6;
    border-radius: 50%;
    top: -2px;
    left: 0;
    box-shadow: 0 0 15px #8B5CF6;
    animation: line-move 2.5s ease-in-out infinite;
}

.line:nth-child(2) .dot { animation-delay: 0.4s; }
.line:nth-child(3) .dot { animation-delay: 0.8s; }

@keyframes line-move {
    0% { left: 0; opacity: 0; }
    20% { opacity: 1; }
    80% { opacity: 1; }
    100% { left: 100%; opacity: 0; }
}

.stack-icon {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.6s ease-in-out, transform 0.6s ease-in-out;
}

.stack-icon {
    animation: stack-float 4s ease-in-out infinite;
}

@keyframes stack-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

/* Step 4 Visual - Status List */
.status-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.status-list.animate-scroll {
    animation: status-scroll-up 10s linear infinite;
}

.status-list.animate-scroll:hover {
    animation-play-state: paused;
}


@keyframes status-scroll-up {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(calc(-50% - 0.5rem));
    }
}


.status-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 8px 12px;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-icon-box {
    width: 18px;
    height: 18px;
    background: #1A1A1A;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-gray);
}

.status-info {
    flex: 1;
}

.status-name {
    display: block;
    font-size: 10px;
    font-weight: var(--title-font-weight);
}

.status-detail {
    display: block;
    font-size: 10px;
    color: var(--text-gray);
}

.status-indicator {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-indicator.loading { color: #8B5CF6; }
.status-indicator.update { color: #8B5CF6; }
.status-indicator.check { color: #10B981; }

@media (max-width: 992px) {
    .process-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .process-section {
        padding: 70px 0;
    }
    .process-card {
        padding: 1.5rem;
    }
    .step-1-visual {
        flex-direction: column;
        height: auto;
    }
    .radar-container {
        height: 200px;
        width: 100%;
    }
}

/* Benefits Section */
.benefits-section {
    padding: 100px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.benefits-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.benefit-card {
    background: #0D0D0D;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 20px;
    padding: 3rem 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.benefit-card:hover {
    border-color: rgba(139, 92, 246, 0.3);
    transform: translateY(-5px);
    background: #111111;
}

.benefit-icon {
    color: var(--text-white);
    margin-bottom: 0.5rem;
}

.benefit-card-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-white);
    letter-spacing: -0.01em;
}

.benefit-card-desc {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

/* Purple Glow Effect */
.benefit-glow {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 150px;
    background: radial-gradient(circle at bottom, rgba(129, 74, 200, 0.2) 0%, transparent 70%);
    pointer-events: none;
    opacity: 0.8;
    transition: opacity 0.4s ease;
}

.benefit-card:hover .benefit-glow {
    opacity: 1;
    background: radial-gradient(circle at bottom, rgba(129, 74, 200, 0.35) 0%, transparent 70%);
}

@media (max-width: 1024px) {
    .benefits-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .benefits-section {
        padding: 60px 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .benefit-card {
        padding: 2.5rem 2rem;
    }
}

/* CTA Section */
.cta-section {
    padding: 70px 0;
    background: var(--bg-black);
    position: relative;
    z-index: 2;
}

.cta-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-content {
    background: linear-gradient(135deg, rgba(129, 74, 200, 0.4) 0%, rgba(13, 13, 13, 0.8) 29%, rgba(13, 13, 13, 0.8) 74%, rgba(129, 74, 200, 0.4) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 40px;
    padding: 8rem 4rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-title {
    font-size: clamp(1.75rem, 3vw, 3.125rem);
    font-weight: 600;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-white);
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .cta-content {
        padding: 5rem 2rem;
        border-radius: 30px;
    }
    
    .cta-title {
        font-size: 2.2rem;
    }
}

/* Mobile Warning Overlay */
.mobile-warning {
    display: none;
}

@media (max-width: 1024px) {
    #main-body {
        overflow: hidden !important;
        height: 100vh;
        width: 100vw;
        position: fixed;
    }

    .mobile-warning {
        display: flex;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #000000;
        z-index: 10000;
        align-items: center;
        justify-content: center;
        padding: 2rem;
        overflow: hidden;
    }

    .warning-glow {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 300px;
        height: 300px;
        background: radial-gradient(circle, rgba(207, 32, 45, 0.2) 0%, transparent 70%);
        filter: blur(40px);
        z-index: -1;
    }

    .warning-content {
        max-width: 450px;
        width: 100%;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
        padding: 3rem 2rem;
        background: rgba(13, 13, 13, 0.6);
        backdrop-filter: blur(15px);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 32px;
        text-align: center;
        animation: warningSlideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    }

    @keyframes warningSlideUp {
        from {
            opacity: 0;
            transform: translateY(40px);
        }
        to {
            opacity: 1;
            transform: translateY(0);
        }
    }



    .warning-title {
        font-size: 1.75rem;
        font-weight: 700;
        color: white;
        line-height: 1.2;
    }

    .warning-desc {
        font-size: 1rem;
        color: var(--text-gray);
        line-height: 1.6;
        margin-bottom: 0.5rem;
    }

    .warning-footer {
        width: 100%;
        padding-top: 1.5rem;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    .warning-tag {
        display: inline-block;
        padding: 0.6rem 1.2rem;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.05em;
        color: var(--text-gray);
    }
}

/* Site Header */
.site-header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.5rem 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.header-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.site-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.site-logo:hover {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .site-header {
        padding: 1rem 0;
    }
    
    .site-logo {
        height: 30px;
    }
}
