:root {
    --bg-color: #0d0d12;
    --text-main: #fffffe;
    --text-muted: #94a1b2;
    --primary: #7f5af0;
    --primary-hover: #6945ce;
    --secondary: #2cb67d;
    --card-bg: rgba(255, 255, 255, 0.03);
    --card-border: rgba(255, 255, 255, 0.08);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Background Blobs for Atmosphere */
.blob-bg {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(127,90,240,0.15) 0%, rgba(13,13,18,0) 70%);
    top: -200px;
    left: -200px;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    animation: floatBlob 10s ease-in-out infinite;
}
.blob-2 {
    background: radial-gradient(circle, rgba(44,182,125,0.1) 0%, rgba(13,13,18,0) 70%);
    top: 40%;
    right: -200px;
    left: auto;
    animation-direction: reverse;
    animation-duration: 12s;
}

@keyframes floatBlob {
    0% { transform: translate(0px, 0px) scale(1); }
    33% { transform: translate(30px, -50px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
    100% { transform: translate(0px, 0px) scale(1); }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.text-center {
    text-align: center;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(13, 13, 18, 0.7);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    z-index: 100;
    border-bottom: 1px solid var(--card-border);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.5px;
}

.logo span {
    color: var(--primary);
}

nav a {
    color: var(--text-muted);
    text-decoration: none;
    margin: 0 16px;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav a:hover {
    color: var(--text-main);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: var(--font-body);
}

.btn-outline {
    background: transparent;
    color: var(--text-main);
    border: 1px solid var(--card-border);
}
.btn-outline:hover {
    background: rgba(255,255,255,0.05);
}

.btn-primary {
    background: var(--primary);
    color: #fff;
    border: none;
    box-shadow: 0 8px 24px rgba(127, 90, 240, 0.3);
}
.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(127, 90, 240, 0.4);
}

.btn-secondary {
    background: var(--card-bg);
    color: var(--text-main);
    border: 1px solid var(--card-border);
}
.btn-secondary:hover {
    background: rgba(255,255,255,0.08);
}

.btn-large {
    padding: 16px 40px;
    font-size: 1.1rem;
}

/* Typography */
.gradient-text {
    background: linear-gradient(270deg, #7f5af0, #2cb67d, #7f5af0);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 4s linear infinite;
}

@keyframes shine {
    to {
        background-position: 200% center;
    }
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.section-desc {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto 48px auto;
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-bg-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    z-index: -2;
    object-fit: cover;
    opacity: 0.6;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(13,13,18,0.5) 0%, rgba(13,13,18,1) 100%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(127, 90, 240, 0.1);
    color: var(--primary);
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
    border: 1px solid rgba(127, 90, 240, 0.2);
}

.hero h1 {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -2px;
}

.hero p {
    color: var(--text-muted);
    font-size: 1.25rem;
    max-width: 700px;
    margin: 0 auto 40px auto;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* General Sections */
.section {
    padding: 100px 0;
}

.dark-section {
    background: rgba(0,0,0,0.2);
    border-top: 1px solid var(--card-border);
    border-bottom: 1px solid var(--card-border);
}

/* Grid & Cards */
.grid-2-cols {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
.align-center {
    align-items: center;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(255, 255, 255, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

/* Feature List */
.feature-list {
    list-style: none;
    margin-top: 32px;
}
.feature-list li {
    margin-bottom: 24px;
    font-size: 1.1rem;
    position: relative;
    padding-left: 36px;
    line-height: 1.6;
}
.feature-list li i {
    position: absolute;
    left: 0;
    top: 2px;
}

/* Comparison Grid */
.comparison-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    align-items: stretch;
}

.vs-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--text-muted);
    z-index: 10;
    box-shadow: 0 8px 32px rgba(0,0,0,0.5);
    backdrop-filter: blur(16px);
}

.comparison-card {
    position: relative;
    padding: 48px;
    height: 100%;
}

.bad-bot {
    border: 1px solid rgba(255, 71, 87, 0.2);
    background: linear-gradient(180deg, rgba(255,71,87,0.02) 0%, transparent 100%);
}

.good-bot {
    border: 1px solid rgba(44, 182, 125, 0.4);
    background: linear-gradient(180deg, rgba(44,182,125,0.05) 0%, transparent 100%);
    box-shadow: 0 0 40px rgba(44, 182, 125, 0.1);
    transform: scale(1.02);
    z-index: 2;
}

.good-bot:hover {
    transform: scale(1.04);
}

.bad-title {
    color: #ff4757;
    margin-bottom: 32px;
    font-size: 1.8rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.good-title {
    color: var(--secondary);
    margin-bottom: 32px;
    font-size: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
    text-shadow: 0 0 16px rgba(44,182,125,0.4);
}

.bad-list li {
    color: var(--text-muted);
}

.bad-list li i {
    color: #ff4757;
    stroke-width: 2;
    opacity: 0.7;
}

.good-list li i {
    color: var(--secondary);
    stroke-width: 3;
    filter: drop-shadow(0 0 8px rgba(44,182,125,0.6));
}

/* Chat Mockup */
.chat-mockup {
    display: flex;
    flex-direction: column;
    gap: 16px;
}
.chat-msg {
    max-width: 80%;
    padding: 16px;
    border-radius: 16px;
    font-size: 0.95rem;
}
.client {
    background: rgba(255,255,255,0.05);
    align-self: flex-start;
    border-bottom-left-radius: 4px;
}
.bot {
    background: var(--primary);
    color: white;
    align-self: flex-end;
    border-bottom-right-radius: 4px;
    box-shadow: 0 4px 12px rgba(127,90,240,0.2);
}

.msg-img {
    width: 100%;
    height: 120px;
    background: url('../img/bumper.jpg') center/cover;
    border-radius: 8px;
    margin-bottom: 8px;
    opacity: 0.9;
}

.bot-typing {
    display: flex;
    gap: 4px;
    align-items: center;
    height: 20px;
}
.bot-typing span {
    width: 6px;
    height: 6px;
    background: white;
    border-radius: 50%;
    animation: typing 1.4s infinite both;
}
.bot-typing span:nth-child(1) { animation-delay: 0s; }
.bot-typing span:nth-child(2) { animation-delay: 0.2s; }
.bot-typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing {
    0%, 80%, 100% { transform: scale(0); opacity: 0.5; }
    40% { transform: scale(1); opacity: 1; }
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Premium Stats Section */
.stats-section {
    position: relative;
    padding: 120px 0;
    margin: 120px 0;
    overflow: hidden;
    transform: skewY(-3deg);
}

.stats-section > * {
    transform: skewY(3deg);
}

.stats-bg {
    position: absolute;
    top: -100px;
    left: 0;
    width: 100%;
    height: calc(100% + 200px);
    z-index: -2;
    overflow: hidden;
    background: #000;
}

.stats-bg canvas {
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
    pointer-events: none;
}

.stats-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(13,13,18,0.9) 0%, rgba(13,13,18,0.5) 50%, rgba(13,13,18,0.9) 100%);
    z-index: -1;
}

.stats-content {
    display: flex;
    flex-direction: column;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1px;
    text-transform: uppercase;
    text-align: left;
}

.stats-grid {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 32px;
}

.stat-item {
    text-align: left;
}

.stat-value {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: #fca311; /* Premium metallic orange */
    line-height: 1;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 4px;
    text-shadow: 0 4px 20px rgba(252, 163, 17, 0.4);
}

.stat-value span:not(.counter) {
    font-size: 1.5rem;
    font-weight: 600;
}

.stat-label {
    font-size: 1rem;
    font-weight: 500;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.glass-card {
    background: var(--card-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--card-border);
    border-radius: 24px;
    padding: 40px;
    transition: transform 0.3s ease, border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(600px circle at var(--mouse-x, -500px) var(--mouse-y, -500px), rgba(255, 255, 255, 0.05), transparent 40%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    z-index: 0;
}

.glass-card:hover::before {
    opacity: 1;
}

.glass-card > * {
    position: relative;
    z-index: 1;
}

.glass-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255,255,255,0.15);
}

/* Cards Grid */
.cards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.cards-grid > :last-child:nth-child(odd) {
    grid-column: 1 / -1;
}

.card-icon {
    margin-bottom: 24px;
}
.card-icon svg {
    width: 48px;
    height: 48px;
    stroke: var(--primary);
    stroke-width: 1.5;
    filter: drop-shadow(0 0 12px rgba(127, 90, 240, 0.4));
    transition: all 0.3s ease;
}
.glass-card:hover .card-icon svg {
    stroke: var(--secondary);
    filter: drop-shadow(0 0 16px rgba(44, 182, 125, 0.5));
    transform: scale(1.1);
}
.glass-card h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
}
.glass-card p {
    color: var(--text-muted);
}

/* Niches */
.niche-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    max-width: 900px;
    margin: 0 auto;
}

.niche-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--card-border);
    padding: 16px 28px;
    border-radius: 100px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: var(--text-main);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    cursor: pointer;
}

.niche-card svg {
    width: 24px;
    height: 24px;
    stroke: var(--primary);
    stroke-width: 2;
    transition: all 0.3s ease;
}

.niche-card:hover {
    background: rgba(127, 90, 240, 0.1);
    border-color: rgba(127, 90, 240, 0.5);
    box-shadow: 0 8px 32px rgba(127, 90, 240, 0.2);
    transform: translateY(-4px) scale(1.02);
}

.niche-card:hover svg {
    stroke: var(--secondary);
    filter: drop-shadow(0 0 8px rgba(44, 182, 125, 0.6));
    transform: scale(1.1) rotate(5deg);
}

/* CTA */
.cta-card {
    padding: 80px 40px;
}
.cta-card h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    margin-bottom: 16px;
}
.cta-card p {
    color: var(--text-muted);
    font-size: 1.2rem;
    margin-bottom: 40px;
}

/* Admin Panel Section */
.admin-features {
    display: flex;
    flex-direction: column;
}

.feature-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon i {
    width: 24px;
    height: 24px;
}

/* Creative Comparison Effects */
.card-watermark {
    position: absolute;
    width: 250px;
    height: 250px;
    bottom: -30px;
    right: -30px;
    opacity: 0.03;
    z-index: 0;
    pointer-events: none;
    transform: rotate(-15deg);
    transition: all 0.5s ease;
}

.bad-bot {
    position: relative;
}

.bad-bot-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: repeating-linear-gradient(
        0deg,
        rgba(0,0,0,0.1),
        rgba(0,0,0,0.1) 1px,
        transparent 1px,
        transparent 4px
    );
    pointer-events: none;
    opacity: 0.5;
    z-index: 1;
    border-radius: 24px;
}

.bad-bot:hover .card-watermark {
    animation: jitter 0.2s infinite;
    color: #ff4757;
    opacity: 0.1;
}

.shine-effect {
    position: absolute;
    top: 0; left: -100%; width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    transform: skewX(-20deg);
    z-index: 5;
    pointer-events: none;
}

.good-bot:hover .shine-effect {
    animation: shine 1.2s ease-in-out infinite;
}

.good-bot:hover .card-watermark {
    transform: rotate(0) scale(1.1);
    opacity: 0.08;
    color: var(--secondary);
}

.glitch-text {
    display: inline-block;
}

.bad-bot:hover .glitch-text {
    animation: simple-glitch 0.2s infinite;
    text-shadow: 2px 0 red, -2px 0 blue;
}

@keyframes simple-glitch {
    0% { transform: translate(0) }
    20% { transform: translate(-2px, 1px) }
    40% { transform: translate(-1px, -1px) }
    60% { transform: translate(2px, 1px) }
    80% { transform: translate(1px, -2px) }
    100% { transform: translate(0) }
}

@keyframes shine {
    0% { left: -100%; }
    100% { left: 200%; }
}

@keyframes jitter {
    0% { transform: translate(0, 0) rotate(-15deg); }
    25% { transform: translate(2px, -2px) rotate(-15deg); }
    50% { transform: translate(-2px, 2px) rotate(-15deg); }
    75% { transform: translate(2px, 2px) rotate(-15deg); }
    100% { transform: translate(-2px, -2px) rotate(-15deg); }
}

/* Premium Titles */
.premium-title-wrapper {
    display: inline-flex;
    align-items: center;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.05);
    padding: 8px 24px 8px 8px;
    border-radius: 100px;
    margin-bottom: 32px;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.5);
    backdrop-filter: blur(10px);
}

.bad-title-wrapper {
    border-color: rgba(255, 71, 87, 0.2);
    box-shadow: inset 0 2px 20px rgba(255, 71, 87, 0.05);
}

.good-title-wrapper {
    border-color: rgba(0, 229, 255, 0.2);
    box-shadow: inset 0 2px 20px rgba(0, 229, 255, 0.1);
}

.premium-icon-box {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    flex-shrink: 0;
}

.bad-icon-box {
    background: rgba(255, 71, 87, 0.1);
    color: #ff4757;
    border: 1px solid rgba(255, 71, 87, 0.3);
}

.premium-text {
    font-size: 1.3rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.bad-text {
    color: #a4b0be;
}

/* CTA Section */
.cta-glow-btn {
    position: relative;
    font-size: 1.2rem;
    padding: 24px 56px;
    border-radius: 100px;
    background: linear-gradient(135deg, #7b2cbf, #00e5ff);
    color: white;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(123, 44, 191, 0.4);
}

.cta-glow-btn .btn-text {
    position: relative;
    z-index: 2;
}

.cta-glow-btn::before {
    content: '';
    position: absolute;
    top: 2px; left: 2px; right: 2px; bottom: 2px;
    background: #0d0d12;
    border-radius: 98px;
    z-index: 0;
    transition: opacity 0.3s ease;
}

.cta-glow-btn:hover::before {
    opacity: 0;
}

.cta-glow-btn:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.5);
}

/* Footer */
footer {
    padding: 40px 0;
    border-top: 1px solid var(--card-border);
    margin-top: 40px;
}
.footer-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-muted);
}



/* Responsive */
@media (max-width: 992px) {
    .grid-2-cols { grid-template-columns: 1fr; }
    .cards-grid { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr; }
    .hero h1 { font-size: 3.5rem; }
    .stats-title { font-size: 3rem; }
    .stat-value { font-size: 3rem; }
    .stats-grid { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 768px) {
    nav { display: none; }
    .hero h1 { font-size: 2.5rem; }
    .hero p { font-size: 1.1rem; }
    .hero-actions { flex-direction: column; width: 100%; gap: 12px; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .section-title { font-size: 2rem; }
    .section-desc { font-size: 1.1rem; }
    .section { padding: 60px 0; }
    .container { padding: 0 16px; }
    .glass-card { padding: 24px; }
    .stats-section { padding: 60px 0; margin: 60px 0; }
    .stats-title { font-size: 2.2rem; }
    .stat-value { font-size: 2.5rem; }
    .cta-card { padding: 40px 20px; }
    .cta-card h2 { font-size: 2rem; }
    .vs-badge { width: 48px; height: 48px; font-size: 1.2rem; }
    .comparison-card { padding: 24px; }
    .good-title, .bad-title { font-size: 1.5rem; }
    .premium-text { font-size: 1.1rem; }
    .footer-inner { flex-direction: column; gap: 16px; text-align: center; }
}
@media (max-width: 480px) {
    .hero h1 { font-size: 2.2rem; }
    .stats-title { font-size: 1.8rem; }
    .stat-value { font-size: 2rem; }
    .niche-card { width: 100%; justify-content: center; }
    .cta-glow-btn { font-size: 1rem; padding: 16px 32px; width: 100%; text-align: center; }
    .navbar .btn { display: none; }
}
