/* ═══════════════════════════════════════════════════
   EVALIX AI — style.css
   Theme: Dark · Glassmorphism · Precision Gradients
═══════════════════════════════════════════════════ */

/* ── Variables ── */
:root {
    --bg-0: #05050a;
    --bg-1: #080810;
    --bg-2: #0d0d1a;
    --bg-card: rgba(15, 15, 28, 0.7);
    --bg-glass: rgba(255, 255, 255, 0.04);

    --accent-1: #7c5cfc;
    --accent-2: #a78bfa;
    --accent-3: #c4b5fd;
    --accent-hot: #f472b6;
    --accent-green: #10b981;
    --accent-amber: #f59e0b;
    --accent-blue: #38bdf8;

    --grad: linear-gradient(135deg, #7c5cfc 0%, #a78bfa 50%, #f472b6 100%);
    --grad-subtle: linear-gradient(135deg, rgba(124, 92, 252, 0.15) 0%, rgba(244, 114, 182, 0.08) 100%);

    --text-primary: #f0eeff;
    --text-secondary: #9b93cc;
    --text-muted: #5a5480;

    --border: rgba(124, 92, 252, 0.18);
    --border-hover: rgba(124, 92, 252, 0.45);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --shadow-card: 0 4px 32px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 60px rgba(124, 92, 252, 0.2);

    --font-display: 'Syne', sans-serif;
    --font-body: 'DM Sans', sans-serif;

    --nav-h: 70px;
}

/* ── Reset ── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-0);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    overflow-x: hidden;
}

img,
svg {
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button {
    cursor: pointer;
    font-family: var(--font-body);
    border: none;
    background: none;
}

ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* ── Cursor Glow ── */
.cursor-glow {
    position: fixed;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 92, 252, 0.07) 0%, transparent 70%);
    pointer-events: none;
    transform: translate(-50%, -50%);
    z-index: 0;
    transition: transform 0.08s ease-out;
}

/* ── Layout ── */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* ── Buttons ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: var(--grad);
    color: #fff;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
    box-shadow: 0 0 30px rgba(124, 92, 252, 0.35);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.25s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 50px rgba(124, 92, 252, 0.55);
}

.btn-primary:hover::before {
    opacity: 1;
}

.btn-outline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 26px;
    background: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 14px;
    transition: all 0.25s ease;
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: var(--border-hover);
    transform: translateY(-2px);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: transparent;
    color: var(--text-secondary);
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s;
}

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

.btn-large {
    padding: 15px 32px;
    font-size: 15px;
}

.btn-sm {
    padding: 7px 14px;
    font-size: 13px;
}

/* ── Gradient Text ── */
.gradient-text {
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ── Section Tag ── */
.section-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--accent-2);
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.25);
    border-radius: 100px;
    padding: 5px 14px;
    margin-bottom: 18px;
}

/* ── Section Header ── */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-secondary);
    font-size: 16px;
}

/* ═════════════════════════════════════
   NAVBAR
═════════════════════════════════════ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    transition: all 0.3s ease;

    /* Always dark */
    background: rgba(5, 5, 10, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
    background: rgba(5, 5, 10, 0.88);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}

.nav-inner {
    max-width: 1200px;
    width: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    gap: 48px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 9px;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    flex-shrink: 0;
}

.logo-icon {
    width: 34px;
    height: 34px;
    background: var(--grad);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.logo-ai {
    color: var(--accent-2);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 36px;
    margin-left: auto;
}

.nav-links a {
    font-size: 14px;
    font-weight: 400;
    color: var(--text-secondary);
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--text-primary);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin-left: auto;
    padding: 6px;
}

.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--text-secondary);
    border-radius: 2px;
    transition: all 0.3s;
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Nav */
.mobile-nav {
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: rgba(8, 8, 16, 0.97);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 24px 40px 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 999;
    transform: translateY(-110%);
    transition: transform 0.35s ease;
}

.mobile-nav.open {
    transform: translateY(0);
}

.mobile-nav a {
    font-size: 16px;
    color: var(--text-secondary);
    font-weight: 400;
}

.mobile-nav a:hover {
    color: var(--text-primary);
}

.mobile-nav-actions {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}

/* ═════════════════════════════════════
   HERO
═════════════════════════════════════ */
.hero {
    min-height: 100vh;
    padding-top: calc(var(--nav-h) + 80px);
    padding-bottom: 100px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, #7c5cfc 0%, transparent 70%);
    top: -100px;
    left: -200px;
    animation: orbFloat1 12s ease-in-out infinite;
}

.hero-orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #f472b6 0%, transparent 70%);
    top: 100px;
    right: -150px;
    animation: orbFloat2 15s ease-in-out infinite;
}

.hero-orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #38bdf8 0%, transparent 70%);
    bottom: -80px;
    left: 40%;
    animation: orbFloat1 10s ease-in-out infinite reverse;
}

@keyframes orbFloat1 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(40px, -30px);
    }
}

@keyframes orbFloat2 {

    0%,
    100% {
        transform: translate(0, 0);
    }

    50% {
        transform: translate(-30px, 40px);
    }
}

#particleCanvas {
    position: absolute;
    inset: 0;
    opacity: 0.4;
}

.hero>* {
    position: relative;
    z-index: 1;
}

.hero {
    padding-left: 40px;
    padding-right: 40px;
    max-width: 1300px;
    margin: 0 auto;
    gap: 60px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    width: 100%;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    color: var(--accent-2);
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.28);
    border-radius: 100px;
    padding: 6px 14px;
    margin-bottom: 24px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent-green);
    box-shadow: 0 0 8px var(--accent-green);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.6;
        transform: scale(0.8);
    }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}

.hero-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 480px;
    margin-bottom: 36px;
}

.br-hide {
    display: none;
}

.hero-cta {
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.hero-trust {
    font-size: 12px;
    color: var(--text-muted);
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.trust-logos {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.trust-item {
    font-size: 12px;
    color: var(--text-secondary);
    font-weight: 500;
}

.trust-sep {
    color: var(--text-muted);
}

/* Dashboard Card */
.hero-visual {
    position: relative;
}

.dashboard-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(20px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.dc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(255, 255, 255, 0.03);
    border-bottom: 1px solid var(--border);
}

.dc-dots {
    display: flex;
    gap: 5px;
}

.dc-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.dc-dots span:first-child {
    background: #ff5f57;
}

.dc-dots span:nth-child(2) {
    background: #febc2e;
}

.dc-dots span:last-child {
    background: #28c840;
}

.dc-title {
    font-size: 13px;
    font-weight: 600;
    margin-left: 6px;
}

.dc-badge {
    margin-left: auto;
    font-size: 11px;
    font-weight: 600;
    color: var(--accent-green);
    animation: livePulse 2s ease-in-out infinite;
}

@keyframes livePulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.dc-body {
    padding: 20px 18px;
}

.dc-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.dc-stat {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    text-align: center;
}

.dc-stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
}

.dc-stat-num small {
    font-size: 12px;
    color: var(--text-secondary);
}

.dc-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    margin-top: 2px;
    display: block;
}

.dc-jobs {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 18px;
}

.dc-job {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dc-job-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.dc-job-name {
    font-size: 12px;
    color: var(--text-secondary);
}

.dc-job-status {
    font-size: 11px;
    font-weight: 500;
}

.dc-job-status.done {
    color: var(--accent-green);
}

.dc-job-status.processing {
    color: var(--accent-amber);
}

.dc-job-status.queue {
    color: var(--text-muted);
}

.dc-job-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.dc-job-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 2px;
    transition: width 0.8s ease;
}

.processing-fill {
    animation: processingAnim 2s ease-in-out infinite;
}

@keyframes processingAnim {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.dc-chart {}

.dc-chart-label {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 10px;
    display: block;
}

.dc-bars {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    height: 70px;
}

.dc-bar-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
}

.dc-bar-col {
    width: 100%;
    height: var(--h);
    background: var(--grad-subtle);
    border: 1px solid var(--border);
    border-radius: 4px 4px 0 0;
    transition: height 0.6s ease;
}

.dc-bar-col:hover {
    background: var(--grad);
    box-shadow: 0 0 12px rgba(124, 92, 252, 0.4);
}

.dc-bar-wrap span {
    font-size: 10px;
    color: var(--text-muted);
}

/* Floating chips */
.float-chip {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(10, 10, 20, 0.9);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 8px 12px;
    font-size: 12px;
    font-weight: 500;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    box-shadow: var(--shadow-card);
    animation: chipFloat 3s ease-in-out infinite;
}

.chip-1 {
    top: -18px;
    right: -10px;
    animation-delay: 0s;
}

.chip-2 {
    bottom: 80px;
    right: -20px;
    animation-delay: 1s;
}

.chip-3 {
    bottom: -14px;
    left: 30px;
    animation-delay: 2s;
}

@keyframes chipFloat {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-6px);
    }
}

/* Floating animation */
.floating {
    animation: floatCard 6s ease-in-out infinite;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-12px);
    }
}

/* ═════════════════════════════════════
   STATS
═════════════════════════════════════ */
.stats-section {
    padding: 72px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: var(--bg-1);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 24px 20px;
    border-right: 1px solid var(--border);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 400;
}

/* ═════════════════════════════════════
   FEATURES
═════════════════════════════════════ */
.features-section {
    padding: 120px 0;
    background: var(--bg-0);
}

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

.feature-card-wide {
    grid-column: span 3;
    display: flex;
    gap: 24px;
    align-items: flex-start;
}

.feature-card-wide .fc-icon {
    flex-shrink: 0;
}

.feature-card-wide h3 {
    margin-bottom: 10px;
}

.feature-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--grad-subtle);
    opacity: 0;
    transition: opacity 0.3s;
}

.feature-card:hover {
    border-color: var(--border-hover);
    box-shadow: 0 0 40px rgba(124, 92, 252, 0.12), var(--shadow-card);
    transform: translateY(-4px);
}

.feature-card:hover::before {
    opacity: 1;
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.fc-icon {
    width: 44px;
    height: 44px;
    background: rgba(124, 92, 252, 0.12);
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    margin-bottom: 16px;
}

.fc-icon svg {
    width: 22px;
    height: 22px;
}

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.feature-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* ═════════════════════════════════════
   WORKFLOW
═════════════════════════════════════ */
.workflow-section {
    padding: 120px 0;
    background: var(--bg-1);
    overflow: hidden;
}

.workflow-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    position: relative;
}

.wf-step {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    position: relative;
    transition: all 0.3s ease;
}

.wf-step:hover {
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 0 30px rgba(124, 92, 252, 0.1);
}

.wf-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 8px;
    position: absolute;
    top: 20px;
    right: 24px;
}

.wf-icon {
    width: 48px;
    height: 48px;
    background: rgba(124, 92, 252, 0.1);
    border: 1px solid rgba(124, 92, 252, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    margin-bottom: 18px;
}

.wf-icon svg {
    width: 24px;
    height: 24px;
}

.wf-step h4 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}

.wf-step p {
    font-size: 13.5px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.wf-arrow {
    position: absolute;
    top: 50%;
    right: -18px;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--accent-1);
    z-index: 2;
    display: none;
}

/* ═════════════════════════════════════
   DEMO SECTION
═════════════════════════════════════ */
.demo-section {
    padding: 120px 0;
    background: var(--bg-2);
}

.demo-ui {
    max-width: 760px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-card), var(--shadow-glow);
}

.demo-upload {
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.upload-icon {
    width: 72px;
    height: 72px;
    background: rgba(124, 92, 252, 0.1);
    border: 2px dashed rgba(124, 92, 252, 0.35);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.demo-upload p {
    font-size: 15px;
    color: var(--text-secondary);
}

.demo-upload span {
    font-size: 13px;
    color: var(--text-muted);
}

/* Progress UI */
.demo-progress {
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dp-step {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0.4;
    transition: opacity 0.3s;
}

.dp-step.active {
    opacity: 1;
}

.dp-icon {
    font-size: 22px;
    flex-shrink: 0;
}

.dp-info {
    flex: 1;
}

.dp-info>span {
    display: block;
    font-size: 13px;
    color: var(--text-secondary);
    margin-bottom: 6px;
}

.progress-bar {
    height: 4px;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: var(--grad);
    border-radius: 2px;
    width: 0%;
    transition: width 0.05s linear;
}

.dp-check {
    font-size: 16px;
    color: var(--accent-green);
    opacity: 0;
    transition: opacity 0.3s;
}

.dp-check.visible {
    opacity: 1;
}

/* Result Table */
.demo-result {
    padding: 28px 32px;
}

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

.result-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent-green);
}

.result-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 13px;
    margin-bottom: 20px;
}

.result-table th {
    text-align: left;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.04);
    color: var(--text-muted);
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.result-table td {
    padding: 10px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    color: var(--text-secondary);
}

.grade-a {
    color: var(--accent-green) !important;
    font-weight: 600;
}

.grade-b {
    color: var(--accent-amber) !important;
    font-weight: 600;
}

.result-actions {
    display: flex;
    gap: 12px;
}

/* ═════════════════════════════════════
   COMPARE
═════════════════════════════════════ */
.compare-section {
    padding: 120px 0;
    background: var(--bg-1);
}

.compare-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 24px;
    align-items: start;
    max-width: 900px;
    margin: 0 auto;
}

.compare-vs {
    width: 56px;
    height: 56px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 80px;
    flex-shrink: 0;
}

.compare-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.compare-card.evalix {
    border-color: rgba(124, 92, 252, 0.35);
    box-shadow: 0 0 40px rgba(124, 92, 252, 0.1);
}

.cc-header {
    padding: 20px 24px 16px;
    border-bottom: 1px solid var(--border);
}

.cc-label {
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 700;
    padding: 6px 14px;
    border-radius: 6px;
}

.cc-label.bad {
    background: rgba(239, 68, 68, 0.12);
    color: #f87171;
}

.cc-label.good {
    background: rgba(16, 185, 129, 0.12);
    color: var(--accent-green);
}

.cc-list {
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cc-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.cc-list li.bad {
    color: var(--text-muted);
}

.cc-list li.good {
    color: var(--text-secondary);
}

.cc-list li span {
    font-size: 15px;
    font-weight: 600;
}

.cc-list li.bad span {
    color: #f87171;
}

.cc-list li.good span {
    color: var(--accent-green);
}

/* ═════════════════════════════════════
   TESTIMONIALS
═════════════════════════════════════ */
.testimonials-section {
    padding: 120px 0;
    background: var(--bg-0);
    overflow: hidden;
}

.testimonials-track {
    overflow: hidden;
    cursor: grab;
    user-select: none;
}

.testimonials-track:active {
    cursor: grabbing;
}

.testimonials-inner {
    display: flex;
    gap: 20px;
    transition: transform 0.4s ease;
    padding: 16px 4px;
}

.testi-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-left: 3px solid var(--accent-1);
    border-radius: var(--radius-md);
    padding: 32px 28px;
    min-width: 340px;
    max-width: 340px;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.testi-card:hover {
    border-color: var(--border-hover);
    border-left-color: var(--accent-hot);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.testi-quote {
    font-family: var(--font-display);
    font-size: 3rem;
    line-height: 0.8;
    background: var(--grad);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 14px;
}

.testi-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 24px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--grad);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.testi-author strong {
    display: block;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-primary);
}

.testi-author span {
    font-size: 12px;
    color: var(--text-muted);
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
}

.testi-dot {
    width: 6px;
    height: 6px;
    border-radius: 3px;
    background: var(--text-muted);
    cursor: pointer;
    transition: all 0.3s ease;
}

.testi-dot.active {
    width: 24px;
    background: var(--accent-1);
}

/* ═════════════════════════════════════
   PRICING
═════════════════════════════════════ */
.pricing-section {
    padding: 120px 0;
    background: var(--bg-2);
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: start;
}

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
}

.pricing-card:hover {
    border-color: var(--border-hover);
    transform: translateY(-6px);
    box-shadow: var(--shadow-card);
}

.pricing-card.recommended {
    border-color: rgba(124, 92, 252, 0.45);
    background: rgba(124, 92, 252, 0.06);
    box-shadow: 0 0 60px rgba(124, 92, 252, 0.15), var(--shadow-card);
}

.pc-recommended-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--grad);
    color: #fff;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    padding: 4px 16px;
    border-radius: 100px;
    white-space: nowrap;
}

.pc-header {
    margin-bottom: 28px;
}

.pc-tier {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--accent-2);
    margin-bottom: 12px;
}

.pc-price {
    font-family: var(--font-display);
    font-size: 2.6rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.03em;
    display: flex;
    align-items: baseline;
    gap: 2px;
    line-height: 1;
    margin-bottom: 8px;
}

.pc-curr {
    font-size: 1.4rem;
    font-weight: 600;
    align-self: flex-start;
    margin-top: 4px;
}

.pc-per {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-muted);
}

.pc-header p {
    font-size: 13px;
    color: var(--text-muted);
}

.pc-features {
    display: flex;
    flex-direction: column;
    gap: 11px;
    margin-bottom: 28px;
}

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

.pc-features li.disabled {
    color: var(--text-muted);
    text-decoration: line-through;
    opacity: 0.5;
}

.pc-cta {
    display: block;
    text-align: center;
}

/* ═════════════════════════════════════
   FAQ
═════════════════════════════════════ */
.faq-section {
    padding: 120px 0;
    background: var(--bg-1);
}

.faq-list {
    max-width: 740px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: var(--border-hover);
}

.faq-q {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
}

.faq-q:hover {
    color: var(--accent-3);
}

.faq-arrow {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: var(--text-muted);
}

.faq-item.open .faq-arrow {
    transform: rotate(180deg);
    color: var(--accent-2);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    padding: 0 24px;
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-a {
    max-height: 200px;
    padding: 0 24px 20px;
}

/* ═════════════════════════════════════
   CTA SECTION
═════════════════════════════════════ */
.cta-section {
    padding: 120px 0;
    background: var(--bg-0);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(124, 92, 252, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 16px;
}

.cta-content p {
    color: var(--text-secondary);
    font-size: 16px;
    max-width: 480px;
    margin: 0 auto 36px;
}

.cta-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ═════════════════════════════════════
   FOOTER
═════════════════════════════════════ */
.site-footer {
    background: #030306;
    border-top: 1px solid var(--border);
    padding: 72px 0 28px;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 2px;
    background: var(--grad);
    filter: blur(2px);
    opacity: 0.4;
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 56px;
}

.footer-brand .nav-logo {
    margin-bottom: 16px;
    display: inline-flex;
}

.footer-brand p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 260px;
    margin-bottom: 20px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: var(--bg-glass);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    transition: all 0.2s ease;
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-social a:hover {
    background: rgba(124, 92, 252, 0.15);
    border-color: var(--border-hover);
    color: var(--accent-2);
    transform: translateY(-2px);
}

.footer-col h5 {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col a {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 11px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: var(--text-primary);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 12px;
    color: var(--text-muted);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 12px;
    color: var(--text-muted);
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--text-secondary);
}

/* ═════════════════════════════════════
   SCROLL REVEAL
═════════════════════════════════════ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.65s ease, transform 0.65s ease;
}

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

.reveal-delay-1 {
    transition-delay: 0.12s;
}

.reveal-delay-2 {
    transition-delay: 0.24s;
}

.reveal-delay-3 {
    transition-delay: 0.36s;
}

.reveal-delay-4 {
    transition-delay: 0.48s;
}

.reveal-delay-5 {
    transition-delay: 0.60s;
}

/* ═════════════════════════════════════
   RESPONSIVE
═════════════════════════════════════ */
@media (max-width: 1024px) {
    .hero {
        grid-template-columns: 1fr;
        text-align: center;
        padding-top: calc(var(--nav-h) + 60px);
        padding-bottom: 60px;
    }

    .hero-sub {
        max-width: 100%;
    }

    .hero-cta,
    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        display: none;
    }

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

    .feature-card-wide {
        grid-column: span 2;
    }

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

    .stat-item {
        border-right: none;
        border-bottom: 1px solid var(--border);
    }

    .stat-item:last-child {
        border-bottom: none;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    .workflow-steps {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .nav-links,
    .nav-actions {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-inner {
        gap: 0;
    }

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

    .feature-card-wide {
        grid-column: span 1;
        flex-direction: column;
    }

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

    .workflow-steps {
        grid-template-columns: 1fr;
    }

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

    .compare-vs {
        display: none;
    }

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

    .footer-top {
        grid-template-columns: 1fr 1fr;
    }

    .footer-brand {
        grid-column: span 2;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 10px;
    }

    .testi-card {
        min-width: 280px;
        max-width: 280px;
    }

    .demo-upload {
        padding: 40px 24px;
    }

    .demo-progress,
    .demo-result {
        padding: 24px;
    }

    .result-table {
        font-size: 11px;
    }

    .result-table th,
    .result-table td {
        padding: 6px 6px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
    }

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

    .footer-top {
        grid-template-columns: 1fr;
    }

    .footer-brand {
        grid-column: span 1;
    }
}